/* ==========================================================================
   TRANSPORT LP - MODERN CONVERSION DESIGN SYSTEM (WORDPRESS THEME)
   Designed for Nil4web Turnkey Transport Solutions
   ========================================================================== */

/* 1. CSS VARIABLES & THEME TOKENS */
:root {
  --primary-navy: #0B132B;
  --primary-blue: #1C3D7A;
  --primary-accent: #2563EB;
  --primary-hover: #1D4ED8;
  
  --accent-amber: #F59E0B;
  --accent-amber-hover: #D97706;
  --accent-orange: #EA580C;

  --whatsapp-green: #22C55E;
  --whatsapp-dark: #16A34A;
  --viber-purple: #7360F2;

  --bg-body: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-glass: rgba(255, 255, 255, 0.92);
  --bg-dark-section: #0F172A;

  --text-main: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #F8FAFC;

  --border-light: #E2E8F0;
  --border-focus: #3B82F6;
  
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. BASE & RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-body);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
  padding-bottom: 75px; /* Space for mobile sticky footer */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
}

.text-center { text-align: center; }
.text-highlight { color: var(--accent-amber); }

/* 3. TOP ANNOUNCEMENT BAR */
.top-bar {
  background-color: var(--primary-navy);
  color: #94A3B8;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: #E2E8F0;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--whatsapp-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-phone {
  color: #F8FAFC;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.top-phone:hover {
  color: var(--accent-amber);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.lang-btn {
  background: none;
  border: none;
  color: #94A3B8;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 2px 4px;
}

.lang-btn.active {
  color: #FFF;
  font-weight: 800;
}

.lang-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

@media (max-width: 640px) {
  .top-bar {
    padding: 0.35rem 0;
  }
  .top-bar-left {
    display: none;
  }
  .top-bar-right {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .top-phone {
    font-size: 0.84rem;
    font-weight: 700;
  }
  .lang-switch {
    padding: 2px 6px;
  }
  .lang-btn {
    font-size: 0.72rem;
    padding: 1px 3px;
  }
}

/* 4. MAIN HEADER & NAVIGATION */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 0.65rem 0;
  transition: var(--transition-fast);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-blue));
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.brand-sub {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-amber);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  white-space: nowrap;
}

.nav-menu {
  display: none;
}

@media (min-width: 1080px) {
  .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.45rem, 1vw, 1.25rem);
    margin: 0 auto;
  }

  .nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    white-space: nowrap;
    padding: 0.4rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
  }

  .nav-link i {
    color: var(--primary-accent);
    font-size: 0.82rem;
    opacity: 0.9;
  }

  .nav-link:hover {
    color: var(--primary-accent);
    background-color: rgba(37, 99, 235, 0.06);
  }
}

@media (min-width: 1080px) and (max-width: 1240px) {
  .nav-menu {
    gap: 0.45rem;
  }
  .nav-link {
    font-size: 0.84rem;
    padding: 0.35rem 0.38rem;
    gap: 0.25rem;
  }
  .nav-link i {
    font-size: 0.78rem;
  }
  .btn-whatsapp-nav {
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  text-align: center;
}

.btn-whatsapp-nav {
  background-color: var(--whatsapp-green);
  color: #FFF;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
  white-space: nowrap;
  padding: 0.55rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.btn-whatsapp-nav:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 1079px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 2px solid var(--primary-accent);
    gap: 0.5rem;
    z-index: 1000;
  }

  .nav-menu.mobile-open {
    display: flex;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    white-space: nowrap;
  }

  .nav-link:hover, .nav-link:active {
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary-accent);
  }

  .nav-link i {
    width: 24px;
    text-align: center;
    color: var(--primary-accent);
    font-size: 1.05rem;
  }
}

@media (min-width: 1080px) {
  .mobile-toggle {
    display: none;
  }
}

/* 5. HERO SECTION */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #1E3A8A 0%, var(--primary-navy) 60%, #030712 100%);
  color: var(--text-light);
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1.15fr 0.95fr;
    gap: 3.5rem;
  }
}

.urgent-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #FDE68A;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #CBD5E1;
  margin-bottom: 1.75rem;
  max-width: 580px;
}

/* Direction Switch Card */
.direction-switch-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.direction-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94A3B8;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.direction-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.btn-direction {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: var(--transition-fast);
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 576px) {
  .direction-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .btn-direction {
    padding: 0.75rem 0.5rem;
    font-size: 0.95rem;
    gap: 0.4rem;
  }
}

.btn-direction .flag {
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  margin-right: 3px;
}

.btn-direction:hover {
  background: rgba(37, 99, 235, 0.3);
  border-color: var(--primary-accent);
}

.btn-direction.active {
  background: var(--primary-accent);
  border-color: #60A5FA;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.departure-days-info {
  font-size: 0.875rem;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.departure-days-info i {
  color: var(--accent-amber);
}

/* Hero Trust Grid */
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-item i {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.875rem;
  color: #FFFFFF;
  line-height: 1.2;
}

.trust-item small {
  font-size: 0.75rem;
  color: #94A3B8;
}

/* 6. BOOKING CARD (HERO DISPATCHER) */
.booking-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  color: var(--text-body);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.booking-card-header {
  background: #F1F5F9;
  padding: 0.5rem 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.booking-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 0.85rem 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.tab-btn.active {
  background: #FFFFFF;
  color: var(--primary-accent);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
}

.tab-btn i {
  font-size: 1rem;
}

.booking-card-body {
  padding: 1.15rem 0.9rem;
}

@media (min-width: 480px) {
  .booking-card-body {
    padding: 1.5rem;
  }
}

.booking-form-pane {
  display: none;
}

.booking-form-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form Styles */
.form-row {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

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

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

@media (min-width: 480px) {
  .form-row.two-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 520px) {
  .form-row.three-cols {
    grid-template-columns: 1fr 1fr;
  }
  .form-row.three-cols > .form-group:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .form-row.three-cols {
    grid-template-columns: 1fr 1fr 1.2fr;
  }
  .form-row.three-cols > .form-group:nth-child(3) {
    grid-column: auto;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}

.form-group label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-group label i {
  color: var(--primary-accent);
}

.form-group input,
.form-group select,
.custom-select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: #F8FAFC;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: var(--transition-fast);
}

.form-group select,
.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232563EB' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 0.95rem 0.95rem;
  padding-right: 2.25rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.custom-select:focus {
  border-color: var(--primary-accent);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Number Stepper */
.number-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #F8FAFC;
  overflow: hidden;
}

.number-stepper button {
  width: 36px;
  height: 38px;
  background: #E2E8F0;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
}

.number-stepper button:hover {
  background: #CBD5E1;
}

.number-stepper input {
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  padding: 0;
  width: 100%;
}

/* Estimated Price Box */
.estimated-price-box {
  background: #EFF6FF;
  border: 1px dashed #93C5FD;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin: 1rem 0;
}

.price-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-info span {
  font-size: 0.875rem;
  color: #1E40AF;
  font-weight: 600;
}

.price-info strong {
  font-size: 1.25rem;
  color: var(--primary-blue);
  font-family: var(--font-heading);
}

.price-notice {
  display: block;
  font-size: 0.75rem;
  color: #3B82F6;
  margin-top: 0.25rem;
}

/* Form Action Buttons */
.form-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 480px) {
  .form-actions {
    grid-template-columns: 1.4fr 0.9fr;
  }
}

.btn-whatsapp-submit {
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
  color: #FFFFFF;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.35);
}

.btn-whatsapp-submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-phone-submit {
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

.btn-phone-submit:hover {
  background: var(--primary-blue);
}

/* Weight range & chips in Hero */
.weight-control-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.weight-control-row input[type="range"] {
  flex: 1;
  accent-color: var(--primary-accent);
}

.weight-bubble {
  background: var(--primary-navy);
  color: #FFF;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  white-space: nowrap;
}

.quick-kg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.kg-chip {
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.kg-chip.active, .kg-chip:hover {
  background: var(--primary-accent);
  color: #FFF;
  border-color: var(--primary-accent);
}

.customs-checkbox-group {
  margin: 0.85rem 0;
}

.custom-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.custom-checkbox-label input {
  margin-top: 3px;
  accent-color: var(--whatsapp-green);
}

/* 7. QUICK STATS BAR */
.stats-bar {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* 8. COMMON SECTION HEADERS */
section {
  padding: 4.5rem 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-accent);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

/* 9. SMART CALCULATOR SECTION */
.calculator-section {
  background-color: #F8FAFC;
}

.calculator-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .calc-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.calc-inputs-col {
  padding: 1.25rem 0.9rem;
}

@media (min-width: 480px) {
  .calc-inputs-col {
    padding: 2rem;
  }
}

.calc-block {
  margin-bottom: 2rem;
}

.calc-block:last-child {
  margin-bottom: 0;
}

.calc-block-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.calc-block-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.calc-block-header small {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
}

.rate-badge {
  background: #DCFCE7;
  color: #166534;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.range-wrapper {
  margin-bottom: 1rem;
}

.range-wrapper input[type="range"] {
  width: 100%;
  height: 8px;
  background: #E2E8F0;
  border-radius: 4px;
  outline: none;
  accent-color: var(--primary-accent);
}

.range-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.range-value-pill {
  background: var(--primary-navy);
  color: #FFF;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.range-value-pill strong {
  font-size: 1.25rem;
}

.quick-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-btn {
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.85rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chip-btn.active, .chip-btn:hover {
  background: var(--primary-accent);
  color: #FFF;
  border-color: var(--primary-accent);
}

/* Calculator Bulky Items Accordion */
.calc-accordion-block {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.calc-accordion-block.expanded {
  border-color: #CBD5E1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.calc-accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1.15rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-fast);
  gap: 0.75rem;
}

.calc-accordion-toggle:hover {
  background: #F1F5F9;
}

.calc-accordion-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.calc-accordion-title i.fa-dolly {
  font-size: 1.25rem;
  color: var(--primary-accent);
  background: #EFF6FF;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calc-accordion-title h3,
.calc-accordion-title h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge-optional {
  font-size: 0.72rem;
  font-weight: 600;
  background: #E2E8F0;
  color: #475569;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.calc-accordion-title small {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.15rem;
}

.calc-accordion-status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.bulky-count-badge {
  background: #DCFCE7;
  color: #166534;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid #BBF7D0;
  display: inline-flex;
  align-items: center;
}

.calc-accordion-toggle .toggle-icon {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: transform 0.28s ease, color var(--transition-fast);
}

.calc-accordion-block.expanded .calc-accordion-toggle .toggle-icon {
  transform: rotate(180deg);
  color: var(--primary-accent);
}

.calc-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.calc-accordion-block.expanded .calc-accordion-content {
  border-top: 1px solid var(--border-light);
  background: #FFFFFF;
}

.calc-accordion-content .bulky-items-grid {
  padding: 1rem 1.15rem;
}

@media (max-width: 480px) {
  .calc-accordion-toggle {
    padding: 0.85rem 0.85rem;
    gap: 0.5rem;
  }
  .calc-accordion-title h3 {
    font-size: 0.96rem;
  }
  .calc-accordion-content .bulky-items-grid {
    padding: 0.75rem 0.85rem;
  }
}

/* Bulky Items Grid */
.bulky-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .bulky-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bulky-item-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #F8FAFC;
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
}

.bulky-item-card:hover {
  border-color: var(--primary-accent);
  background: #EFF6FF;
}

.bulky-item-card.selected {
  border-color: var(--primary-accent);
  background: #EFF6FF;
  box-shadow: 0 0 0 1px var(--primary-accent);
}

.bulky-icon {
  font-size: 1.4rem;
}

.bulky-info {
  flex: 1;
}

.bulky-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.bulky-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-accent);
}

.bulky-check {
  color: #CBD5E1;
  font-size: 1.1rem;
}

.bulky-item-card.selected .bulky-check {
  color: var(--primary-accent);
}

/* Calculator Direction Switcher */
.calc-direction-wrapper {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.calc-field-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.6rem;
}

.calc-direction-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.calc-direction-buttons .btn-direction {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: var(--primary-navy);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
}

.calc-direction-buttons .btn-direction:hover {
  border-color: var(--primary-accent);
  background: #F0F7FF;
}

.calc-direction-buttons .btn-direction.active {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.calc-days-info {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.calc-days-info strong {
  color: var(--primary-navy);
}

@media (max-width: 576px) {
  .calc-direction-buttons {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* Calculator Summary Column */
.calc-summary-col {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  border-top: 1px solid var(--border-light);
  padding: 1.25rem 0.9rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 480px) {
  .calc-summary-col {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .calc-summary-col {
    border-top: none;
    border-left: 1px solid var(--border-light);
  }
}

.summary-sticky-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.summary-header h4 {
  font-size: 1.25rem;
  color: var(--primary-navy);
}

.live-pill {
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.summary-breakdown {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.breakdown-divider {
  height: 1px;
  background: var(--border-light);
  margin: 0.85rem 0;
}

.breakdown-row.total-row {
  margin-bottom: 0;
}

.total-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  display: block;
}

.total-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.total-amount-box {
  text-align: right;
}

.total-amount-box strong {
  font-size: 1.75rem;
  font-family: var(--font-heading);
  color: var(--primary-accent);
  display: block;
  line-height: 1;
}

.total-amount-box span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.calc-guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.guarantee-item {
  font-size: 0.825rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guarantee-item i {
  color: var(--whatsapp-green);
}

.customs-alert-card {
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.alert-icon {
  color: #D97706;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.alert-text {
  font-size: 0.8rem;
  color: #92400E;
  line-height: 1.35;
}

.btn-whatsapp-calc {
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
  color: #FFFFFF;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.btn-whatsapp-calc:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.btn-whatsapp-calc i {
  font-size: 1.6rem;
}

.btn-double-text {
  text-align: left;
}

.btn-double-text .main-txt {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
}

.btn-double-text .sub-txt {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 500;
}

.direct-call-alt {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
}

.direct-call-alt a {
  color: var(--primary-navy);
}

/* 10. ROUTE & CITIES EXPLORER */
.route-section {
  background-color: #FFFFFF;
}

.route-search-wrapper {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.search-input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-box i.fa-magnifying-glass {
  position: absolute;
  left: 1.25rem;
  color: var(--primary-accent);
  font-size: 1.1rem;
}

.search-input-box input {
  width: 100%;
  padding: 0.9rem 3rem 0.9rem 3.25rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 1rem;
  background: #F8FAFC;
  outline: none;
  transition: var(--transition-fast);
}

.search-input-box input:focus {
  border-color: var(--primary-accent);
  background: #FFF;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.clear-search-btn {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  display: none;
}

/* Country Filter Pills */
.route-country-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.25rem 0 1.75rem;
}

.country-pill-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.country-pill-btn .pill-count {
  background: #F1F5F9;
  color: #64748B;
  font-size: 0.72rem;
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
  font-weight: 700;
}

.country-pill-btn:hover {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
  transform: translateY(-1px);
}

.country-pill-btn.active {
  background: var(--primary-navy);
  border-color: var(--primary-navy);
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(11, 19, 43, 0.2);
}

.country-pill-btn.active .pill-count {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

/* Expand / Collapse Button */
.expand-cities-wrapper {
  text-align: center;
  margin: 1.5rem 0 2.5rem;
}

.btn-expand-cities {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  border: 2px solid var(--primary-accent);
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
  transition: all 0.25s ease;
}

.btn-expand-cities:hover {
  background: var(--primary-accent);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}

.btn-expand-cities.expanded {
  background: #F1F5F9;
  border-color: #CBD5E1;
  color: #475569;
  box-shadow: none;
}

.btn-expand-cities.expanded:hover {
  background: #E2E8F0;
  color: #0F172A;
}


.city-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.city-card:hover {
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.city-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.city-name-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.city-flag {
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.city-name-box strong {
  font-size: 1.05rem;
  color: var(--text-main);
  display: block;
  line-height: 1.2;
}

.city-name-box small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.city-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.city-badge.badge-delivery {
  background: #DCFCE7;
  color: #15803D;
}

.city-badge.badge-transit {
  background: #EFF6FF;
  color: #1D4ED8;
}

.city-card-info {
  margin-bottom: 1rem;
}

.city-coverage {
  font-size: 0.775rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.city-coverage i {
  color: var(--whatsapp-green);
}

.city-card-actions {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 0.5rem;
  margin-top: auto;
}

.btn-city-action {
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-city-select {
  background: #EFF6FF;
  color: var(--primary-accent);
  padding: 0.55rem 0.85rem;
  font-size: 0.825rem;
  gap: 0.4rem;
}

.btn-city-select:hover {
  background: var(--primary-accent);
  color: #FFFFFF;
}

.btn-city-wa {
  background: #DCFCE7;
  color: #15803D;
  font-size: 1.15rem;
}

.btn-city-wa:hover {
  background: var(--whatsapp-green);
  color: #FFFFFF;
}

/* Form Highlight Pulse Animation */
.booking-card.form-highlight-pulse {
  animation: formGlowPulse 2.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes formGlowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7), 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-accent);
  }
  30% {
    box-shadow: 0 0 0 12px rgba(37, 99, 235, 0.25), 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border-color: #60A5FA;
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 99, 235, 0), 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  }
}

/* Floating Toast Notification */
.app-toast {
  position: fixed;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  max-width: 90%;
}

@media (min-width: 992px) {
  .app-toast {
    bottom: 30px;
  }
}

.app-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.door-to-door-banner {
  background: linear-gradient(135deg, var(--primary-navy), #1E3A8A);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .door-to-door-banner {
    flex-direction: row;
    text-align: left;
  }
}

.banner-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent-amber);
  flex-shrink: 0;
}

.banner-content {
  flex: 1;
}

.banner-content h3 {
  color: #FFFFFF;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.banner-content p {
  color: #CBD5E1;
  font-size: 0.95rem;
}

.btn-banner-cta {
  background: var(--whatsapp-green);
  color: #FFFFFF;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

.btn-banner-cta:hover {
  background: var(--whatsapp-dark);
}

/* 11. FLEET & COMFORT SECTION */
.fleet-section {
  background-color: #F8FAFC;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition-fast);
}

.feature-card:hover {
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feat-icon {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--primary-navy);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Fleet Showcase */
.fleet-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .fleet-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fleet-vehicle-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.fleet-vehicle-card:hover {
  box-shadow: var(--shadow-lg);
}

.vehicle-img-box {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.vehicle-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-vehicle-card:hover .vehicle-img-box img {
  transform: scale(1.05);
}

.vehicle-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 19, 43, 0.85);
  color: #FFF;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.vehicle-details {
  padding: 1.5rem;
}

.vehicle-details h3 {
  font-size: 1.35rem;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.vehicle-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.vf-tag {
  background: #F1F5F9;
  color: var(--text-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

/* 12. CUSTOMS GUIDE SECTION */
.customs-guide-section {
  background-color: #FFFFFF;
}

.customs-guide-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .customs-guide-wrapper {
    grid-template-columns: 1.3fr 0.9fr;
  }
}

.customs-rules-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.rule-box {
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid transparent;
}

.rule-box.allowed {
  background: #F0FDF4;
  border-color: #BBF7D0;
}

.rule-box.forbidden {
  background: #FEF2F2;
  border-color: #FECACA;
}

.rule-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.rule-box.allowed .rule-header i { color: #16A34A; font-size: 1.25rem; }
.rule-box.allowed .rule-header h4 { color: #166534; font-size: 1.15rem; }

.rule-box.forbidden .rule-header i { color: #DC2626; font-size: 1.25rem; }
.rule-box.forbidden .rule-header h4 { color: #991B1B; font-size: 1.15rem; }

.rule-box ul {
  padding-left: 1.5rem;
}

.rule-box li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  list-style: disc;
}

.rule-box.allowed li { color: #14532D; }
.rule-box.forbidden li { color: #7F1D1D; }

/* Docs Checklist */
.docs-checklist-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.docs-checklist-card h3 {
  font-size: 1.25rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.doc-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.doc-num {
  width: 32px;
  height: 32px;
  background: var(--primary-accent);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.doc-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.doc-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.docs-help-box {
  background: #EFF6FF;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: #1E40AF;
  margin-top: 1rem;
}

/* 13. REVIEWS SECTION & MODERN SLIDER */
.reviews-section {
  background-color: #F8FAFC;
  overflow: hidden;
  position: relative;
}

.reviews-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.reviews-track-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 4px 20px;
}

.reviews-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
}

@media (min-width: 768px) {
  .review-slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .review-slide {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: var(--primary-navy);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  color: #FFF;
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.slider-prev {
  left: -20px;
}

.slider-arrow.slider-next {
  right: -20px;
}

@media (max-width: 768px) {
  .slider-arrow {
    display: none;
  }
}

.reviews-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 1.25rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.slider-dot.active {
  width: 28px;
  border-radius: 12px;
  background: var(--primary-accent);
}

.review-stars {
  color: #F59E0B;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  letter-spacing: 2px;
}

.review-comment {
  font-size: 0.95rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.review-author-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--border-light);
  padding-top: 0.85rem;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.author-info small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-service-tag {
  background: #EFF6FF;
  color: var(--primary-accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

/* 14. FAQ ACCORDION */
.faq-section {
  background-color: #FFFFFF;
}

.faq-container {
  max-width: 800px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #F8FAFC;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--primary-accent);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #FFFFFF;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* 15. FINAL CTA BANNER */
.final-cta-section {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  padding: 4rem 0;
}

.cta-banner-card {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #FFFFFF;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #CBD5E1;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 540px) {
  .cta-btn-group {
    flex-direction: row;
  }
}

.btn-cta-primary {
  background: var(--whatsapp-green);
  color: #FFFFFF;
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.btn-cta-primary:hover {
  background: var(--whatsapp-dark);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* 16. MAIN FOOTER */
.main-footer {
  background-color: #030712;
  color: #94A3B8;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1.2fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.footer-logo i {
  color: var(--primary-accent);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.footer-legal {
  font-size: 0.8rem;
  color: #64748B;
}

.developer-credit a {
  color: var(--primary-accent);
  font-weight: 700;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.15rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: #94A3B8;
}

.footer-col ul li a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-list li i {
  color: var(--primary-accent);
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-list li span {
  display: block;
  font-size: 0.75rem;
  color: #64748B;
  text-transform: uppercase;
}

.contact-list li a, .contact-list li p {
  color: #E2E8F0;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* 17. MOBILE STICKY BOTTOM BAR */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.9fr;
  z-index: 999;
  padding: 0.4rem 0.4rem calc(0.4rem + env(safe-area-inset-bottom));
  gap: 0.3rem;
  overflow: hidden;
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  gap: 0.2rem;
}

.sticky-btn i {
  font-size: 1.15rem;
}

.sticky-call {
  background: #F1F5F9;
  color: var(--primary-navy);
}

.sticky-whatsapp {
  background: var(--whatsapp-green);
  color: #FFFFFF;
}

.sticky-calc {
  background: #EFF6FF;
  color: var(--primary-accent);
}

/* 18. CUSTOM INTERACTIVE CALENDAR & DATEPICKER */
.datepicker-field-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.datepicker-field-wrap .custom-datepicker-input {
  width: 100%;
  padding-right: 2.75rem;
  cursor: pointer;
  background-color: #FFFFFF;
  font-weight: 500;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.925rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.datepicker-field-wrap .custom-datepicker-input:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.datepicker-trigger-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--primary-accent);
  font-size: 1.15rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.datepicker-trigger-btn:hover {
  color: var(--accent-amber);
  background: rgba(37, 99, 235, 0.08);
}

.custom-calendar-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.custom-calendar-modal.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.custom-calendar-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 43, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.custom-calendar-dialog {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 380px;
  padding: 1.25rem;
  z-index: 2;
  animation: calPopIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes calPopIn {
  0% { transform: scale(0.92) translateY(10px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.cal-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.cal-nav-btn {
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-navy);
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.cal-nav-btn:hover {
  background: var(--primary-accent);
  color: #FFFFFF;
  border-color: var(--primary-accent);
}

.cal-close-btn {
  background: transparent;
  border: none;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  line-height: 1;
  margin-left: 0.25rem;
}

.cal-close-btn:hover {
  color: var(--danger-red);
  background: #FEE2E2;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 1rem;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  position: relative;
  border: 1px solid transparent;
}

.cal-day.empty {
  cursor: default;
  background: transparent;
}

.cal-day.disabled {
  color: #CBD5E1;
  cursor: not-allowed;
  background: transparent;
}

.cal-day.available {
  background: #EFF6FF;
  color: var(--primary-accent);
  border-color: #BFDBFE;
  font-weight: 700;
}

.cal-day.available::after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 6px #22C55E;
}

.cal-day.available:hover {
  background: var(--primary-accent);
  color: #FFFFFF;
  border-color: var(--primary-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.cal-day.available:hover::after {
  background: #FFFFFF;
  box-shadow: 0 0 6px #FFFFFF;
}

.cal-day.selected {
  background: linear-gradient(135deg, var(--accent-amber), #D97706) !important;
  color: #0B132B !important;
  border-color: var(--accent-amber) !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4) !important;
  font-weight: 800 !important;
}

.cal-day.selected::after {
  background: #0B132B !important;
}

.cal-day.today {
  border-color: var(--primary-accent);
}

.cal-footer {
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
}

.cal-legend {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-dot.active {
  background: #22C55E;
  box-shadow: 0 0 5px #22C55E;
}

.legend-dot.disabled {
  background: #CBD5E1;
}

.cal-notice {
  background: #F8FAFC;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--primary-navy);
  font-size: 0.775rem;
  border: 1px dashed #CBD5E1;
}

.cal-notice strong {
  color: var(--primary-accent);
}

/* ==========================================
   19. COMPREHENSIVE MOBILE OPTIMIZATIONS
   ========================================== */

@media (max-width: 991px) {
  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  .section-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }
  .hero-section {
    padding: 2.25rem 0 3.5rem;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 1.25rem;
  }
  .hero-container {
    gap: 1.75rem;
  }
  .calc-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .calc-step-card {
    padding: 1.15rem 0.9rem;
  }
  .calc-summary-card {
    padding: 1.25rem 1rem;
  }
  .route-country-filters {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .route-country-filters::-webkit-scrollbar {
    display: none;
  }
  .filter-pill {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .city-card {
    padding: 0.75rem 0.85rem;
  }
  .btn-expand-cities {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
  }
  .reviews-slider-wrap {
    padding: 0 0.5rem;
  }
  .review-card {
    padding: 1.15rem 1rem;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .main-header {
    padding: 0.5rem 0;
  }
  .nav-container {
    gap: 0.45rem;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .brand-title {
    font-size: 1.1rem;
    line-height: 1.1;
  }
  .brand-sub {
    font-size: 0.68rem;
  }
  .nav-actions {
    gap: 0.35rem;
  }
  .btn-whatsapp-nav {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
    gap: 0.35rem;
  }
  .mobile-toggle {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }
  .urgent-pill {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.85rem;
    line-height: 1.35;
  }
  .direction-switch-card {
    padding: 0.95rem 0.85rem;
    margin-bottom: 1.5rem;
  }
  .direction-label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  .direction-buttons {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
  }
  .btn-direction {
    padding: 0.7rem 0.85rem;
    font-size: 0.92rem;
    gap: 0.45rem;
    line-height: 1.3;
    justify-content: center;
  }
  .btn-direction .flag {
    font-size: 1.15rem;
    margin-right: 4px;
  }
  .btn-direction i {
    font-size: 0.8rem;
    opacity: 0.85;
    margin: 0 4px;
  }
  .departure-days-info {
    font-size: 0.82rem;
    line-height: 1.4;
    gap: 0.4rem;
  }
  .hero-trust-grid {
    gap: 0.65rem;
  }
  .trust-item {
    gap: 0.45rem;
  }
  .trust-item i {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
  .trust-item strong {
    font-size: 0.78rem;
  }
  .trust-item small {
    font-size: 0.68rem;
  }
  .booking-tabs {
    gap: 0.25rem;
  }
  .tab-btn {
    padding: 0.7rem 0.25rem;
    font-size: 0.84rem;
    gap: 0.3rem;
  }
  .tab-btn i {
    font-size: 0.9rem;
  }
  .booking-card-body {
    padding: 1rem 0.75rem;
  }
  .form-row {
    gap: 0.65rem;
    margin-bottom: 0.65rem;
  }
  .form-group label {
    font-size: 0.8rem;
  }
  .custom-select, .form-input, .datepicker-field-wrap .custom-datepicker-input {
    padding: 0.65rem 0.75rem;
    font-size: 0.88rem;
  }
  .stepper-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .stepper-input {
    height: 36px;
    font-size: 0.95rem;
  }
  .price-notice {
    font-size: 0.75rem;
  }
  .btn-dispatch {
    padding: 0.8rem 0.75rem;
    font-size: 0.92rem;
  }
  .calc-step-card h3 {
    font-size: 1.05rem;
  }
  .calc-summary-card h4 {
    font-size: 1.1rem;
  }
  .total-row .total-amount {
    font-size: 1.75rem;
  }
}

@media (max-width: 375px) {
  .brand-title {
    font-size: 0.98rem;
  }
  .btn-whatsapp-nav {
    padding: 0.42rem 0.55rem;
    font-size: 0.76rem;
  }
  .btn-direction {
    font-size: 0.86rem;
    padding: 0.65rem 0.5rem;
    gap: 0.35rem;
  }
  .tab-btn {
    font-size: 0.8rem;
    padding: 0.65rem 0.2rem;
  }
}
