/* ============================================================
   FLEETPRO — Contact Page Specific Styles
   ============================================================ */

/* ============================================================
   CONTACT METHODS SECTION
   ============================================================ */

.contact-methods {
  background: var(--color-white);
  padding-block: var(--section-padding-y);
  border-bottom: 1px solid var(--color-grey-150);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.contact-method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--color-grey-50);
  border: 1px solid var(--color-grey-150);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition:
    box-shadow var(--transition-smooth),
    transform var(--transition-smooth),
    border-color var(--transition-base);
}

.contact-method-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--color-blue-100);
}

.contact-method-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xl);
  background: var(--color-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.contact-method-icon i {
  font-size: 24px;
  color: var(--color-blue-500);
}

.contact-method-card.whatsapp .contact-method-icon {
  background: #DCFCE7;
}

.contact-method-card.whatsapp .contact-method-icon i {
  color: #16A34A;
}

.contact-method-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-grey-500);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.contact-method-value {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-navy-900);
  line-height: var(--lh-snug);
  word-break: break-all;
}

/* ============================================================
   BOOKING FORM SECTION
   ============================================================ */

.booking-section {
  background: var(--color-grey-50);
  padding-block: var(--section-padding-y-lg);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-12);
  align-items: start;
}

.booking-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-grey-150);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.booking-form-header {
  padding: var(--space-8) var(--space-10);
  background: var(--color-navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.booking-form-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.booking-form-subtitle {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
}

.booking-form-body {
  padding: var(--space-10);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-section-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-navy-900);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-grey-150);
}

.form-section {
  margin-bottom: var(--space-8);
}

/* Location input with map button */
.location-input-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.location-input-wrap .form-control {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  border-right: none;
  flex: 1;
}

.location-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-4);
  background: var(--color-blue-50);
  border: 1.5px solid var(--color-grey-200);
  border-left: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--color-blue-600);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color var(--transition-base),
    color var(--transition-base);
  letter-spacing: 0.02em;
}

.location-map-btn:hover {
  background: var(--color-blue-500);
  border-color: var(--color-blue-500);
  color: var(--color-white);
}

.location-map-btn i {
  font-size: 13px;
}

/* Sidebar */
.contact-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.sidebar-card {
  background: var(--color-white);
  border: 1px solid var(--color-grey-150);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.sidebar-card-header {
  padding: var(--space-5) var(--space-6);
  background: var(--color-navy-900);
}

.sidebar-card-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.sidebar-card-body {
  padding: var(--space-6);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-grey-100);
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 14px;
  color: var(--color-blue-500);
}

.contact-info-text {
  flex: 1;
}

.contact-info-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-grey-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: var(--fs-sm);
  color: var(--color-navy-900);
  font-weight: var(--fw-medium);
}

.contact-info-value a {
  color: var(--color-navy-900);
  text-decoration: none;
}

.contact-info-value a:hover {
  color: var(--color-blue-500);
}

/* WhatsApp CTA Card */
.whatsapp-cta-card {
  background: linear-gradient(135deg, #1A7A4A, #15803D);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  color: var(--color-white);
  text-align: center;
}

.whatsapp-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.whatsapp-cta-icon i {
  font-size: 26px;
}

.whatsapp-cta-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.whatsapp-cta-desc {
  font-size: var(--fs-xs);
  opacity: 0.80;
  margin-bottom: var(--space-5);
  max-width: none;
  line-height: var(--lh-relaxed);
}

.whatsapp-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-3) var(--space-6);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: background-color var(--transition-base);
}

.whatsapp-cta-btn:hover {
  background: rgba(255,255,255,0.25);
  color: var(--color-white);
}

/* Response time note */
.response-note {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: var(--color-grey-500);
  margin-top: var(--space-4);
}

.response-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: #25D366;
  flex-shrink: 0;
}


 .booking-security {
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
} 

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .contact-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-inner {
     grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
  }
}

@media (max-width: 768px) {
  .contact-methods-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-form-body {
    padding: var(--space-6);
  }

  .booking-form-header {
    padding: var(--space-6);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   BOOKING SECURITY — CLOUDFLARE TURNSTILE
   ============================================================ */

.booking-security {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 70px;
    margin-top: var(--space-6);
    margin-bottom: var(--space-5);
    overflow: hidden;
}


.booking-security .cf-turnstile {
    display: flex;
    justify-content: center;
    max-width: 100%;
}


/* Android / small phones */
@media (max-width: 400px) {

    .booking-security {
        justify-content: center;
        width: 100%;
        overflow: hidden;
    }


    .booking-security .cf-turnstile {
        width: 100%;
        max-width: 300px;
        transform: scale(0.90);
        transform-origin: center;
    }

}

/* ============================================================
   QUOTATION FORM
   ============================================================ */

.form-row--identity {
  grid-template-columns:
    minmax(110px, 0.35fr)
    minmax(0, 1.65fr);
}

.vehicle-preference-intro {
  margin-bottom: var(--space-5);

  color: var(--color-grey-600);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

.vehicle-choice-list {
  display: grid;
  gap: var(--space-3);
}

.vehicle-choice {
  display: flex;
  align-items: flex-start;

  gap: var(--space-3);

  padding: var(--space-4);

  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-md);

  background: var(--color-white);

  cursor: pointer;

  transition:
    border-color var(--transition-base),
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.vehicle-choice:has(
  input:checked
) {
  border-color: var(--color-blue-500);

  background:
    rgba(34, 88, 181, 0.04);

  box-shadow:
    0 0 0 3px
    rgba(34, 88, 181, 0.08);
}

.vehicle-choice input {
  margin-top: 3px;

  accent-color: var(--color-blue-500);
}

.vehicle-choice-content {
  display: grid;
  gap: 5px;
}

.vehicle-choice-content strong {
  color: var(--color-navy-900);
  font-size: var(--fs-sm);
}

.vehicle-choice-content span {
  color: var(--color-grey-500);
  font-size: var(--fs-xs);
  line-height: var(--lh-relaxed);
}

.conditional-field {
  margin:
    var(--space-2)
    0
    var(--space-3)
    var(--space-8);

  padding:
    var(--space-4);

  border-left:
    3px solid
    var(--color-blue-200);

  background:
    var(--color-grey-50);
}

.conditional-field[hidden] {
  display: none;
}

.escort-options {
  display: flex;
  flex-wrap: wrap;

  gap: var(--space-3);
}

.escort-options label {
  display: inline-flex;
  align-items: center;

  gap: var(--space-2);

  padding:
    var(--space-3)
    var(--space-4);

  border:
    1px solid
    var(--color-grey-200);

  border-radius:
    var(--radius-md);

  color:
    var(--color-grey-700);

  background:
    var(--color-white);

  cursor: pointer;
}

.escort-options input {
  accent-color:
    var(--color-blue-500);
}


@media (max-width: 600px) {

  .form-row--identity {
    grid-template-columns: 1fr;
  }

  .conditional-field {
    margin-left: 0;
  }

  .escort-options {
    display: grid;
  }

}

.quote-process-note {
  margin-top: var(--space-3);

  color: var(--color-grey-500);

  font-size: var(--fs-xs);
  line-height: var(--lh-relaxed);

  text-align: center;
}



/* ============================================================
   BOOKING FORM — WIDTH SAFETY
   ============================================================ */

.booking-inner,
.booking-form-wrap,
.booking-form-body,
.form-section,
.form-row,
.form-group {
  min-width: 0;
  max-width: 100%;
}

.form-control {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}


/* ============================================================
   BOOKING FORM — MOBILE
   ============================================================ */

@media (max-width: 768px) {

  .booking-inner {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-form-wrap,
  .booking-form-body,
  .form-section,
  .form-row,
  .form-group {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .form-row,
  .form-row--identity {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-control {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

}


@media (max-width: 480px) {

  .booking-form-body {
    padding: var(--space-5);
  }

  .booking-form-header {
    padding: var(--space-5);
  }

}

/* keep the radio stying independent */
.escort-options label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.escort-options input[type="radio"] {
  width: auto;
  height: auto;
  flex: none;
  margin: 0;
  accent-color: var(--color-blue-500);
}

/* Then for mobile: */
@media (max-width: 600px) {

  .escort-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .escort-options label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: var(--space-3);
  }

  .escort-options input[type="radio"] {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

}
