/* ============================================
   MOBILE TRUCK SERVICE - MODAL STYLES
   Egyptian Heritage | Glassmorphism
   ============================================ */

/* Divider between existing cards and mobile trigger */
.mobile-truck-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0 30px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 107, 0.3), transparent);
}

.divider-symbol {
  font-size: 1.5rem;
  color: #D4AF37;
  opacity: 0.6;
}

/* Mobile Trigger Card */
.mobile-trigger-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(255, 215, 107, 0.3);
  border-radius: 28px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
}

.mobile-trigger-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 107, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 107, 0.1);
}

.mobile-trigger-content i:first-child {
  font-size: 3rem;
  color: #D4AF37;
  margin-bottom: 15px;
}

.mobile-trigger-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mobile-trigger-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.equipment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.equipment-icons span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 215, 107, 0.2);
}

.equipment-icons span i {
  font-size: 0.9rem;
  color: #D4AF37;
}

.mobile-trigger-btn {
  background: linear-gradient(135deg, #D4AF37, #b8941a);
  border: none;
  padding: 14px 32px;
  border-radius: 40px;
  color: #1a1a2e;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-trigger-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, #e6c55a, #c9a320);
}

/* Mobile Truck Modal - Larger Width */
.mobile-truck-modal {
  max-width: min(750px, calc(100vw - 40px)) !important;
}

.mobile-modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.mobile-modal-header i {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 10px;
}

.mobile-modal-header h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.mobile-modal-header h2 span {
  background: linear-gradient(135deg, #D4AF37, #00b894);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Loyalty Banner */
.mt-loyalty-banner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 184, 148, 0.15));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.mt-loyalty-banner i {
  color: #D4AF37;
  font-size: 1.2rem;
}

.mt-loyalty-banner.hidden {
  display: none;
}

/* Address Autocomplete Suggestions */
.address-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 107, 0.3);
  border-radius: 12px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10001;
  margin-top: 4px;
}

.address-suggestions div {
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.address-suggestions div:hover {
  background: rgba(212, 175, 55, 0.2);
}

.address-suggestions.hidden {
  display: none;
}

/* Address Details (readonly fields) */
.address-details {
  background: rgba(0, 184, 148, 0.08);
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 184, 148, 0.2);
}

.address-details.hidden {
  display: none;
}

.address-details input {
  background: rgba(255, 255, 255, 0.05) !important;
  cursor: default;
}

/* Form Row */
#mobileTruckForm .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  #mobileTruckForm .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group label {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: #D4AF37;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: white;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D4AF37;
  background: rgba(255, 255, 255, 0.12);
}

/* Radio Groups */
.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: normal;
}

.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #D4AF37;
  margin: 0;
}

/* Weather Section */
.weather-section {
  margin: 20px 0;
}

.weather-btn {
  width: 100%;
  padding: 12px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.weather-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.weather-result {
  margin-top: 15px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.weather-result.hidden {
  display: none;
}

.weather-result.good {
  border-left: 4px solid #00b894;
}

.weather-result.bad {
  border-left: 4px solid #e74c3c;
}

/* Equipment Notice */
.equipment-notice {
  background: rgba(0, 184, 148, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 20px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.equipment-notice i {
  color: #00b894;
}

/* Single Agreement Checkbox */
.agreement-single {
  margin: 20px 0 15px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #D4AF37;
  flex-shrink: 0;
}

.agreement-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

/* Policy Notice */
.policy-notice {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 20px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-notice i {
  color: #e74c3c;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-trigger-card {
    padding: 20px;
  }
  
  .mobile-trigger-content h3 {
    font-size: 1.3rem;
  }
  
  .equipment-icons {
    gap: 12px;
  }
  
  .equipment-icons span {
    font-size: 0.75rem;
    padding: 4px 12px;
  }
  
  .mobile-modal-header h2 {
    font-size: 1.4rem;
  }
}
/* ============================================
   CUSTOM SVG ICON STYLES - Mobile Truck
   ============================================ */

/* SVG icon styling for equipment icons */
.equipment-icons svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    flex-shrink: 0;
}

.equipment-icons span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Equipment notice SVG icon */
.equipment-notice svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-right: 2px;
}

/* Hover effect for equipment icons */
.equipment-icons span:hover svg {
    stroke: #ffffff;
    transition: stroke 0.3s ease;
}

/* Ensure SVG icons are responsive on mobile */
@media (max-width: 768px) {
    .equipment-icons svg {
        width: 14px;
        height: 14px;
    }
}