 :root {
      --navy: #0a1628;
      --navy-mid: #112240;
      --blue: #1a4fd6;
      --blue-light: #2563eb;
      --accent: #f59e0b;
      --accent-light: #fbbf24;
      --red: #D40511;
      --yellow: #FFCC00;
      --white: #ffffff;
      --off-white: #f8fafc;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-400: #94a3b8;
      --gray-600: #475569;
      --gray-800: #1e293b;
      --success: #10b981;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    * { scroll-margin-top: 80px; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 72px;
      background: rgba(10,22,40,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--white);
      letter-spacing: -0.02em;
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }

    .logo-icon {
      width: 36px; height: 36px;
      background: var(--blue);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }

    .logo span { color: var(--accent); }

    .nav-links {
      display: flex; align-items: center; gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 400;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--white); }

    .nav-cta {
      background: var(--blue);
      color: var(--white) !important;
      padding: 0.5rem 1.25rem;
      border-radius: 6px;
      font-weight: 500 !important;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: var(--blue-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px 0;
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: blue;
  color: white;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--navy);
      position: relative;
      display: flex;
      align-items: center;
      padding: 120px 5% 80px;
      overflow: hidden;
    }

    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(26,79,214,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,79,214,0.07) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-glow {
      position: absolute;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(26,79,214,0.25) 0%, transparent 70%);
      top: -200px; right: -100px;
      pointer-events: none;
    }

    .hero-glow-2 {
      position: absolute;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
      bottom: 0; left: 10%;
      pointer-events: none;
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: 560px;
      animation: fadeUp 0.9s ease both;
    }

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

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      padding: 6px 14px;
      margin-bottom: 1.5rem;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .badge-dot {
      width: 6px; height: 6px;
      background: var(--success);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .hero h1 {
      font-family: 'Google Sans', sans-serif;
      /* font-size: clamp(2.4rem, 5vw, 3.8rem); */
      font-size: 80px;
      font-weight: 750;
      color: var(--white);
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 1.25rem;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--accent);
    }

    .hero p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      margin-bottom: 2.5rem;
      font-weight: 300;
    }

    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--blue);
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 8px;
      font-weight: 500;
      font-size: 0.95rem;
      text-decoration: none;
      border: none; cursor: pointer;
      transition: all 0.2s;
      font-family: 'DM Sans', sans-serif;
    }

    .btn-primary:hover {
      background: var(--blue-light);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(26,79,214,0.35);
    }

    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent;
      color: rgba(255,255,255,0.8);
      padding: 0.85rem 2rem;
      border-radius: 8px;
      font-weight: 500;
      font-size: 0.95rem;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.2);
      cursor: pointer;
      transition: all 0.2s;
      font-family: 'DM Sans', sans-serif;
    }

    .btn-secondary:hover {
      border-color: rgba(255,255,255,0.4);
      color: var(--white);
    }

    .hero-visual {
      position: absolute; right: 5%; top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      animation: fadeUp 0.9s 0.2s ease both;
    }

    .stats-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 2rem;
      backdrop-filter: blur(10px);
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2rem;
       min-width: 0;
      width: 100%;
    }

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

    .stat-number {
      font-family: 'Syne', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--white);
    }

    .stat-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.5);
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .stat-accent { color: var(--accent); }

    .dhl-badge {
      margin-top: 1.5rem;
      background: var(--white);
      border-radius: 10px;
      padding: 1rem 1.5rem;
      display: flex; align-items: center; gap: 12px;
    }

    .dhl-logo {
      background: var(--red);
      color: var(--yellow);
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      padding: 6px 12px;
      border-radius: 6px;
      letter-spacing: 0.05em;
    }

    .dhl-text { font-size: 0.82rem; color: var(--gray-600); line-height: 1.4; }
    .dhl-text strong { color: var(--navy); font-weight: 600; }

    /* ── SECTION SHARED ── */
    section { padding: 100px 5%; }

    .section-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--blue);
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-family: 'Google Sans', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.15;
      letter-spacing: -0.025em;
    }

    /* ── QUOTE CALCULATOR ── */
    #quote {
      background: var(--off-white);
      padding: 100px 5%;
    }

    .quote-wrapper {
      max-width: 960px;
      margin: 0 auto;
    }

    .quote-header { margin-bottom: 2.5rem; }

    .global-options {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1rem;
      margin-bottom: 2rem;
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: 14px;
      padding: 1.5rem;
    }

    .form-group {
      display: flex; flex-direction: column; gap: 8px;
    }

    label {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--gray-600);
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }

    .input-wrap { position: relative; }

    .input-icon {
      position: absolute; left: 14px; top: 50%;
      transform: translateY(-50%);
      font-size: 1rem;
      pointer-events: none;
    }

    input, select {
      width: 100%;
      padding: 0.8rem 1rem 0.8rem 2.6rem;
      border: 1.5px solid var(--gray-200);
      border-radius: 8px;
      font-size: 0.93rem;
      font-family: 'DM Sans', sans-serif;
      color: var(--navy);
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      appearance: none;
    }

    input:focus, select:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(26,79,214,0.1);
    }

    .unit-badge {
      position: absolute; right: 12px; top: 50%;
      transform: translateY(-50%);
      font-size: 0.72rem;
      color: var(--gray-400);
      font-weight: 500;
      background: var(--gray-100);
      padding: 3px 7px;
      border-radius: 4px;
    }


    /* claude quote code */
     /* ── PAGE LAYOUT ── */
    .qpage { max-width: 860px; margin: 0 auto; padding: 0 1.25rem 4rem;
        margin-top: 60px; /* adjust based on navbar height */
     }
    .qpage-header { text-align: center; padding: 3rem 0 2.5rem;}
    
    .qpage-header h1 {
      font-family: 'Google', sans-serif;
      font-weight: 800; font-size: 2.2rem;
      color: var(--navy); margin-bottom: 0.5rem;
    }
    .qpage-header p { color: var(--gray-600); font-size: 1rem; line-height: 1.7; max-width: 480px; margin: 0 auto; }
 
    /* ── SECTION CARD ── */
    .q-card {
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: 16px;
      padding: 1.75rem 2rem;
      margin-bottom: 1.25rem;
    }
    .q-card-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700; font-size: 1rem;
      color: var(--navy);
      margin-bottom: 1.25rem;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .q-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    @media (max-width: 560px) { .q-two-col { grid-template-columns: 1fr; } }
 
    /* ── FORM FIELDS ── */
    .qf-group { display: flex; flex-direction: column; gap: 0.35rem; }
    .qf-label {
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.07em; text-transform: uppercase;
      color: var(--gray-600);
    }
    .qf-wrap { position: relative; }
    .qf-icon {
      position: absolute; left: 12px; top: 50%;
      transform: translateY(-50%);
      font-size: 1rem; pointer-events: none;
    }
    .qf-wrap input, .qf-wrap select {
      width: 100%; padding: 0.78rem 1rem 0.78rem 2.5rem;
      border: 1.5px solid var(--gray-200); border-radius: 8px;
      font-size: 0.93rem; font-family: 'DM Sans', sans-serif;
      color: var(--navy); background: var(--white);
      outline: none; transition: border-color 0.2s; box-sizing: border-box;
    }
    .qf-wrap input:focus, .qf-wrap select:focus { border-color: var(--navy); }
    .qf-wrap input[readonly] { background: #f4f5f7; cursor: not-allowed; color: var(--gray-600); }
 
    /* ── DESTINATION GROUP ── */
    .dest-group-q {
      border: 1.5px solid var(--gray-200);
      border-radius: 12px; margin-bottom: 1rem; overflow: hidden;
    }
    .dest-group-header-q {
      display: flex; align-items: center;
      justify-content: space-between;
      padding: 0.9rem 1.25rem;
      background: #f8f9fb;
      cursor: pointer; user-select: none;
    }
    .dest-group-title-q {
      display: flex; align-items: center; gap: 0.6rem;
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 0.92rem; color: var(--navy);
    }
    .dest-num-q {
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--navy); color: #fff;
      font-size: 0.78rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
    }
    .dest-body-q { padding: 1.25rem 1.25rem 1rem; }
    .remove-dest-q {
      background: none; border: none;
      color: #ef4444; font-size: 1.1rem;
      cursor: pointer; padding: 0.2rem 0.4rem;
      border-radius: 6px; transition: background 0.15s;
    }
    .remove-dest-q:hover { background: #fee2e2; }
 
    /* ── BOX ROW ── */
    .box-row-q {
      display: grid;
      grid-template-columns: 26px 1fr 1fr 1fr 1fr 1fr 32px;
      gap: 0.5rem; align-items: end;
      margin-bottom: 0.35rem;
    }
    @media (max-width: 580px) {
      .box-row-q { grid-template-columns: 1fr 1fr 1fr; }
      .box-row-q .box-num-q { display: none; }
    }
    .box-num-q {
      width: 24px; height: 24px; border-radius: 50%;
      background: #e5e7eb; color: #6b7280;
      font-size: 0.7rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 2px; flex-shrink: 0;
    }
    .box-field-q { display: flex; flex-direction: column; gap: 0.25rem; }
    .box-field-label-q {
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.05em; text-transform: uppercase; color: var(--gray-600);
    }
    .box-field-q input {
      width: 100%; padding: 0.52rem 0.55rem;
      border: 1.5px solid var(--gray-200); border-radius: 6px;
      font-size: 0.88rem; font-family: 'DM Sans', sans-serif;
      color: var(--navy); outline: none; box-sizing: border-box;
      transition: border-color 0.2s;
    }
    .box-field-q input:focus { border-color: var(--navy); }
    .remove-box-q {
      background: none; border: 1.5px solid #fca5a5;
      color: #ef4444; border-radius: 6px;
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 0.85rem;
      margin-bottom: 2px; transition: background 0.15s;
    }
    .remove-box-q:hover { background: #fee2e2; }
 
    /* ── PRESET BOX CARDS (DHL style) ── */
    .preset-section {
      margin-top: 1rem; margin-bottom: 1rem;
    }
    .preset-section-label {
      font-size: 0.78rem; font-weight: 700;
      color: var(--gray-600); margin-bottom: 0.65rem;
      letter-spacing: 0.04em;
    }
    .preset-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.65rem;
    }
    @media (max-width: 500px) { .preset-cards-grid { grid-template-columns: repeat(2, 1fr); } }
    .preset-card-q {
      border: 1.5px solid var(--gray-200);
      border-radius: 10px;
      padding: 0.75rem 0.6rem;
      cursor: pointer;
      background: var(--white);
      text-align: center;
      transition: all 0.15s;
      display: flex; flex-direction: column;
      align-items: center; gap: 0.4rem;
    }
    .preset-card-q:hover { border-color: var(--navy); background: #f8f9fb; }
    .preset-card-q.active {
      border-color: var(--navy); background: #eef1f8;
      box-shadow: 0 0 0 2px rgba(15,23,42,0.08);
    }
    .preset-card-icon { font-size: 1.8rem; line-height: 1; }
    .preset-card-name {
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 0.72rem; color: var(--navy);
    }
    .preset-card-dims {
      font-size: 0.65rem; color: var(--gray-600);
      line-height: 1.3;
    }
 
    /* ── ADD BUTTONS ── */
    .add-box-btn-q {
      width: 100%; padding: 0.55rem;
      background: none; border: 1.5px dashed var(--gray-200);
      border-radius: 8px; font-size: 0.82rem;
      font-family: 'DM Sans', sans-serif; color: var(--gray-600);
      cursor: pointer; margin-top: 0.5rem;
      transition: border-color 0.2s, color 0.2s;
    }
    .add-box-btn-q:hover { border-color: var(--navy); color: var(--navy); }
    .add-dest-btn-q {
      width: 100%; padding: 0.75rem;
      background: none; border: 1.5px dashed var(--gray-200);
      border-radius: 10px; font-size: 0.88rem;
      font-family: 'Syne', sans-serif; font-weight: 700;
      color: var(--gray-600); cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }
    .add-dest-btn-q:hover { border-color: var(--navy); color: var(--navy); }
 
    /* ── GET PRICES BUTTON ── */
    .get-price-btn-q {
      width: 100%; padding: 1.1rem;
      background: var(--navy); color: #fff;
      border: none; border-radius: 10px;
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 1.05rem; cursor: pointer;
      transition: background 0.2s; margin-top: 1.5rem;
      letter-spacing: 0.02em;
    }
    .get-price-btn-q:hover { background: var(--blue); }
    .get-price-btn-q:disabled { opacity: 0.6; cursor: not-allowed; }
 
    /* ── ERROR ── */
    .q-error {
      background: #fef2f2; border: 1.5px solid #fca5a5;
      border-radius: 8px; padding: 0.75rem 1rem;
      font-size: 0.88rem; color: #b91c1c;
      margin-top: 1rem; display: none;
    }
 
    /* ── RESULTS SECTION ── */
    #results-section-q { display: none; margin-top: 2rem; }
    .results-header-q {
      margin-bottom: 1.5rem;
    }
    .results-title-q {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: 1.5rem; color: var(--navy); margin-bottom: 0.3rem;
    }
    .results-sub-q { color: var(--gray-600); font-size: 0.9rem; }
 
    /* ── BIG PRICE CARDS (DHL style) ── */
    .price-options-q { display: flex; flex-direction: column; gap: 1rem; }
    .price-card-q {
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: 16px;
      padding: 1.75rem 2rem;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1.5rem;
      align-items: center;
      transition: border-color 0.2s, box-shadow 0.2s;
      position: relative;
    }
    .price-card-q:hover { border-color: var(--navy); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
    .price-card-q.best {
      border: 2px solid var(--navy);
      box-shadow: 0 4px 20px rgba(15,23,42,0.08);
    }
    .best-badge-q {
      position: absolute; top: -13px; left: 1.75rem;
      background: var(--navy); color: #fff;
      font-size: 0.7rem; font-weight: 700;
      font-family: 'Syne', sans-serif;
      padding: 0.2rem 0.85rem; border-radius: 999px;
    }
    .price-card-left-q { display: flex; flex-direction: column; gap: 0.5rem; }
    .price-service-name-q {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: 1.15rem; color: var(--navy);
    }
    .price-amount-q {
      font-family: 'Google Sans', sans-serif; font-weight: 800;
      font-size: 2.5rem; color: var(--navy); line-height: 1;
    }
    .price-amount-q .currency-q {
      font-size: 1.2rem; font-weight: 600; color: var(--gray-600);
      margin-left: 4px;
    }
    .price-transit-q {
      display: flex; align-items: center; gap: 0.4rem;
      font-size: 0.88rem; color: #16a34a; font-weight: 600;
    }
    .price-transit-icon { font-size: 1rem; }
    .price-delivery-q {
      font-size: 0.82rem; color: var(--gray-600);
    }
    .price-powered-q {
      font-size: 0.78rem; color: var(--gray-600);
      display: flex; align-items: center; gap: 0.35rem;
    }
    .price-card-right-q {
      display: flex; flex-direction: column;
      gap: 0.6rem; min-width: 180px;
    }
    @media (max-width: 580px) {
      .price-card-q { grid-template-columns: 1fr; }
      .price-card-right-q { min-width: unset; }
      .price-amount-q { font-size: 2rem; }
    }
    .btn-request-q {
      padding: 0.75rem 1.25rem;
      background: var(--navy); color: #fff;
      border: none; border-radius: 8px;
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 0.88rem; cursor: pointer;
      transition: background 0.2s; text-align: center;
      width: 100%;
    }
    .btn-request-q:hover { background: var(--blue); }
    .btn-book-q {
      padding: 0.75rem 1.25rem;
      background: none; color: var(--gray-600);
      border: 1.5px solid var(--gray-200);
      border-radius: 8px;
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 0.88rem; cursor: not-allowed;
      opacity: 0.5; text-align: center; width: 100%;
    }
    .book-soon-q { font-size: 0.7rem; color: var(--gray-600); text-align: center; }
    .results-note-q {
      font-size: 0.78rem; color: var(--gray-600);
      text-align: center; margin-top: 1.25rem;
    }
 
    /* ── MODAL ── */
    .modal-overlay-q {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.5); z-index: 10000;
      display: flex; align-items: center; justify-content: center;
      padding: 1rem;
    }
    .modal-box-q {
      background: var(--white); border-radius: 18px;
      padding: 2rem; max-width: 500px; width: 100%;
      position: relative; max-height: 92vh; overflow-y: auto;
    }
    .modal-close-q {
      position: absolute; top: 1.1rem; right: 1.1rem;
      background: none; border: none; font-size: 1.2rem;
      cursor: pointer; color: var(--gray-600);
      width: 32px; height: 32px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.15s;
    }
    .modal-close-q:hover { background: #f1f5f9; }
    .modal-title-q {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: 1.25rem; color: var(--navy); margin-bottom: 0.35rem;
    }
    .modal-service-badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: #eef1f8; border-radius: 8px;
      padding: 0.6rem 1rem; margin-bottom: 1.5rem;
      font-size: 0.85rem; font-weight: 700; color: var(--navy);
    }
    .modal-two-col-q { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .modal-fg-q { margin-bottom: 1rem; }
    .modal-fg-q label {
      display: block; font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--gray-600); margin-bottom: 0.35rem;
    }
    .modal-fg-q input,
    .modal-fg-q textarea {
      width: 100%; padding: 0.72rem 1rem;
      border: 1.5px solid var(--gray-200); border-radius: 8px;
      font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
      color: var(--navy); outline: none; box-sizing: border-box;
      transition: border-color 0.2s;
    }
    .modal-fg-q input:focus,
    .modal-fg-q textarea:focus { border-color: var(--navy); }
    .modal-submit-q {
      width: 100%; padding: 0.9rem;
      background: var(--navy); color: #fff;
      border: none; border-radius: 8px;
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 0.98rem; cursor: pointer;
      transition: background 0.2s; margin-top: 0.5rem;
    }
    .modal-submit-q:hover { background: var(--blue); }
    .modal-submit-q:disabled { opacity: 0.6; cursor: not-allowed; }
    .modal-success-q { text-align: center; padding: 1.5rem 0; }
    .modal-success-icon-q {
      width: 68px; height: 68px;
      background: rgba(16,185,129,0.1); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; margin: 0 auto 1.25rem;
    }

    /* ── DESTINATION GROUP ── */
    .dest-group {
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: 14px;
      margin-bottom: 1.25rem;
      overflow: hidden;
      animation: fadeUp 0.3s ease both;
    }

    .dest-group-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 1.5rem;
      background: var(--navy);
      cursor: pointer;
      user-select: none;
    }

    .dest-group-title {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--white);
    }

    .dest-num {
      width: 26px; height: 26px;
      background: var(--blue);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem;
      font-weight: 800;
      color: var(--white);
      flex-shrink: 0;
    }

    .dest-group-actions { display: flex; gap: 8px; align-items: center; }

    .btn-icon {
      background: rgba(255,255,255,0.1);
      border: none; border-radius: 6px;
      color: rgba(255,255,255,0.8);
      width: 30px; height: 30px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 0.9rem;
      transition: background 0.2s;
    }

    .btn-icon:hover { background: rgba(255,255,255,0.2); }
    .btn-icon.danger:hover { background: rgba(248,113,113,0.3); color: #fca5a5; }

    .dest-group-body { padding: 1.5rem; }

    .dest-selector-row {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem;
      margin-bottom: 1.25rem;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid var(--gray-200);
    }

    /* ── BOX ROWS ── */
    .boxes-list { display: flex; flex-direction: column; gap: 0.75rem; }

    .box-row {
      display: grid;
      grid-template-columns: 2rem 1fr 1fr 1fr 1fr 1fr auto;
      gap: 0.6rem;
      align-items: center;
      background: var(--gray-100);
      border-radius: 10px;
      padding: 0.75rem 1rem;
      animation: fadeUp 0.25s ease both;
    }

    .box-num-badge {
      width: 24px; height: 24px;
      background: var(--blue);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.68rem;
      font-weight: 800;
      color: var(--white);
      flex-shrink: 0;
    }

    .box-row input, .box-row select {
      padding: 0.6rem 0.6rem 0.6rem 0.6rem;
      font-size: 0.85rem;
      border-radius: 7px;
    }

    .box-row .input-wrap input { padding-left: 0.6rem; }

    .box-field-label {
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--gray-400);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 3px;
    }

    .box-field { display: flex; flex-direction: column; }

    .remove-box-btn {
      background: none;
      border: none;
      color: var(--gray-400);
      font-size: 1.1rem;
      cursor: pointer;
      padding: 4px;
      border-radius: 4px;
      transition: color 0.2s;
      line-height: 1;
    }

    .remove-box-btn:hover { color: #f87171; }

    .add-box-btn {
      display: inline-flex; align-items: center; gap: 6px;
      background: none;
      border: 1.5px dashed var(--gray-200);
      border-radius: 8px;
      color: var(--blue);
      font-size: 0.85rem;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      padding: 0.6rem 1rem;
      cursor: pointer;
      margin-top: 0.75rem;
      transition: all 0.2s;
      width: 100%;
      justify-content: center;
    }

    .add-box-btn:hover {
      background: rgba(26,79,214,0.05);
      border-color: var(--blue);
    }

    .add-dest-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%;
      background: none;
      border: 2px dashed var(--gray-200);
      border-radius: 12px;
      color: var(--navy);
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 1rem;
      cursor: pointer;
      margin-top: 0.5rem;
      transition: all 0.2s;
    }

    .add-dest-btn:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: rgba(26,79,214,0.03);
    }

    .calc-btn {
      width: 100%;
      padding: 1.1rem;
      background: var(--navy);
      color: var(--white);
      border: none; border-radius: 10px;
      font-family: 'Syne', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
      letter-spacing: 0.01em;
    }

    .calc-btn:hover {
      background: var(--blue);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(10,22,40,0.2);
    }

    .dest-breakdown-row {
      display: grid; grid-template-columns: 1fr auto;
      align-items: center;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      gap: 1rem;
    }

    .dest-breakdown-row:last-child { border-bottom: none; }

    .breakdown-dest { font-weight: 600; font-size: 0.95rem; color: var(--white); }
    .breakdown-meta { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
    .breakdown-price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--accent); white-space: nowrap; }

    /* ── SERVICES SECTION ── */
    #services { padding: 100px 5%; }

    /* .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 2rem;
    } */
     .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

    .service-card {
      background: var(--off-white);
      border: 1.5px solid var(--gray-200);
      border-radius: 16px;
      padding: 2rem;
      position: relative;
      transition: all 0.25s;
    }

    .service-card:hover {
      border-color: var(--blue);
      box-shadow: 0 8px 32px rgba(26,79,214,0.1);
      transform: translateY(-3px);
    }

    .service-card.featured {
      border-color: var(--blue);
      background: var(--white);
      box-shadow: 0 4px 24px rgba(26,79,214,0.1);
    }

    .service-badge {
      display: inline-block;
      background: var(--blue);
      color: var(--white);
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 0.75rem;
    }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .service-card h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 0.65rem;
    }
    
    .service-card:hover h3 {
     color: var(--blue);
    }

    .service-card p {
      font-size: 0.88rem;
      color: var(--gray-600);
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    .service-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .service-list li {
      font-size: 0.83rem;
      color: var(--gray-600);
      font-weight: 500;
    }

    .price-compare-banner {
      display: flex;
      align-items: center;
      gap: 2rem;
      background: var(--navy);
      border-radius: 16px;
      padding: 2rem 2.5rem;
      margin-top: 1rem;
      flex-wrap: wrap;
    }

    .compare-left, .compare-right { flex: 1; min-width: 140px; }

    .compare-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 4px;
    }

    .compare-price {
      font-family: 'Syne', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 4px;
    }

    .compare-price.crossed {
      color: rgba(255,255,255,0.35);
      text-decoration: line-through;
    }

    .compare-price.highlight { color: var(--accent); }

    .compare-sub {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.4);
    }

    .compare-vs {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: rgba(255,255,255,0.3);
      flex-shrink: 0;
    }

    /* about page */
.section-subtitle {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--blue);
  margin-top: 2.5rem;
}

/* Paragraph Text */
.text-content {
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 1rem;
}

/* Spacing helpers */
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }

/* List styling */
.custom-list li {
  margin-bottom: 0.8rem;
}

/* Images */
/* .section-image {
  width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
  object-fit: cover;
  
} */
 .section-image {
  width: 100%;
  height: 680px; /* control height here */
  object-fit: cover; /* crops nicely */
  border-radius: 12px;
  margin: 2rem 0;
  display: block;
}

.image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.image-row img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .image-row {
    grid-template-columns: 1fr;
  }

  .image-row img {
    height: auto;
  }
}

    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: 1fr; }
      .price-compare-banner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
      .price-compare-banner .btn-primary { margin-left: 0; width: 100%; justify-content: center; }
    }

    /* ── STEP INDICATOR ── */
    .steps-indicator {
      display: flex; flex-wrap: wrap; align-items: center;
      margin-bottom: 2rem;
      gap: 0;
    }

    .step-ind {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.82rem; font-weight: 600;
      color: var(--gray-400);
      white-space: normal;
      transition: color 0.3s;
      min-width: 0;
    }

    .step-ind span {
      width: 26px; height: 26px;
      border-radius: 50%;
      background: var(--gray-200);
      color: var(--gray-400);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 800;
      transition: all 0.3s;
      flex-shrink: 0;
    }

    .step-ind.active { color: var(--navy); }
    .step-ind.active span { background: var(--blue); color: var(--white); }
    .step-ind.done { color: var(--success); }
    .step-ind.done span { background: var(--success); color: var(--white); }

    .step-ind-line {
      flex: 1; height: 2px;
      background: var(--gray-200);
      margin: 0 0.75rem;
      transition: background 0.3s;
      min-width: 24px;
    }

    .step-card-form {
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: 16px;
      padding: 2rem;
    }

    .step-card-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 0.4rem;
    }

    .step-card-sub {
      font-size: 0.9rem;
      color: var(--gray-600);
      margin-bottom: 1.75rem;
      line-height: 1.6;
    }

    .form-two-col {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .form-error {
      color: #f87171;
      font-size: 0.88rem;
      padding: 0.85rem 1rem;
      background: rgba(248,113,113,0.08);
      border-radius: 8px;
      border: 1px solid rgba(248,113,113,0.25);
      margin-top: 1rem;
    }

    .btn-back {
      padding: 0.9rem 1.5rem;
      background: var(--gray-100);
      color: var(--gray-600);
      border: none; border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem; font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .btn-back:hover { background: var(--gray-200); color: var(--navy); }

    /* ── REVIEW ── */
    .review-section { margin-bottom: 1.25rem; }

    .review-section-title {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--blue);
      font-weight: 700;
      margin-bottom: 0.75rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--gray-200);
    }

    .review-grid {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.5rem 1.5rem;
    }

    .review-label { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }
    .review-val { font-size: 0.92rem; font-weight: 600; color: var(--navy); margin-top: 1px; }

    .review-dest-box {
      background: var(--gray-100);
      border-radius: 10px;
      padding: 1rem 1.25rem;
      margin-bottom: 0.75rem;
    }

    .review-dest-name {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .review-box-row {
      font-size: 0.82rem;
      color: var(--gray-600);
      padding: 3px 0;
    }

    .info-notice {
      display: flex; align-items: flex-start; gap: 10px;
      background: rgba(26,79,214,0.06);
      border: 1px solid rgba(26,79,214,0.15);
      border-radius: 10px;
      padding: 1rem 1.25rem;
      font-size: 0.88rem;
      color: var(--gray-600);
      line-height: 1.6;
      margin-top: 1.5rem;
    }

    .ref-id {
      display: inline-block;
      background: var(--gray-100);
      border: 1px solid var(--gray-200);
      border-radius: 8px;
      padding: 0.75rem 1.75rem;
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: 0.1em;
      margin-top: 0.5rem;
    }

    /* ── HOW IT WORKS ── */
    #how { background: var(--white); }

    .how-header { margin-bottom: 4rem; }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 2rem;
      position: relative;
    }

    .steps-grid::before {
      content: '';
      position: absolute;
      top: 28px; left: 12%; right: 12%;
      height: 2px;
      background: linear-gradient(90deg, var(--blue), var(--accent));
      z-index: 0;
    }

    .step-card {
      text-align: center;
      position: relative; z-index: 1;
    }

    .step-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      position: relative;
    }

    .step-num.blue  { background: var(--blue);    color: var(--white); box-shadow: 0 0 0 6px rgba(26,79,214,0.12); }
    .step-num.navy  { background: var(--navy);    color: var(--white); box-shadow: 0 0 0 6px rgba(10,22,40,0.08); }
    .step-num.accent{ background: var(--accent);  color: var(--navy);  box-shadow: 0 0 0 6px rgba(245,158,11,0.15); }
    .step-num.green { background: var(--success); color: var(--white); box-shadow: 0 0 0 6px rgba(16,185,129,0.12); }

    .step-card h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .step-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

    /* ── WHY LETZSHIP ── */
    #why { background: var(--navy); color: var(--white); }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .why-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s;
    }

    .why-card:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.15);
      transform: translateY(-3px);
    }

    .why-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1.25rem;
    }

    .why-icon.blue   { background: rgba(26,79,214,0.2); }
    .why-icon.accent { background: rgba(245,158,11,0.2); }
    .why-icon.green  { background: rgba(16,185,129,0.2); }

    .why-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--white); }
    .why-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
    #why .section-title { color: var(--white); }

    /* ── DESTINATIONS ── */
    #destinations { background: var(--off-white); }

    .dest-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 3rem;
      flex-wrap: wrap; gap: 1rem;
    }

    .dest-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
    }

    .dest-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      padding: 1.25rem 1rem;
      text-align: center;
      transition: all 0.2s;
      cursor: pointer;
    }

    .dest-card:hover {
      border-color: var(--blue);
      box-shadow: 0 4px 16px rgba(26,79,214,0.1);
      transform: translateY(-2px);
    }

    .dest-flag { font-size: 2rem; margin-bottom: 0.5rem; }
    .dest-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
    .dest-price { font-size: 0.75rem; color: var(--blue); margin-top: 2px; font-weight: 500; }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,0.5);
      padding: 4rem 5% 2rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 2rem;
    }

    .footer-brand .logo { margin-bottom: 1rem; }

    .footer-brand p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.45);
    }

    .footer-col h4 {
      font-family: 'Syne', sans-serif;
      color: var(--white);
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

    .footer-col a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s;
    }

    .footer-col a:hover { color: var(--white); }

    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem;
    }

    .footer-address {
      margin-top: 1rem;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.8;
    }

    .floating{
    position: fixed;
    height: 60px;
    width: 60px;
    bottom: 50px;
    right: 200px;
    }
    
    .WhatsApp{
      height:60px;
      width: 250px;
    }

 .floating-call {
  position: fixed;
  bottom: 200px;
  /* right: 10px; */
   right: clamp(8px, 2vw, 20px); /* ✅ best responsive fix */
  background: #25D366;
  width: 248px;
  height: 66px;
  border-radius: 12px;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 7px; /* BEST alternative for spacing */

  z-index: 9999;
  text-decoration: none;

  font-size: 20px;
  font-weight: 600;
  color: white;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);

  transition: all 0.3s ease;
}

.call-text {
  font-size: 18px;
  font-weight: 750;
  margin-left: 20px;
}

/* Icon */
.call-icon {
  font-size: 40px;
  color: white;
  transition: 0.3s ease;
  margin-left: -20px;
}

/* Hover Effect */
.floating-call:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 255, 100, 0.45);
  background: linear-gradient(135deg, #00c853, #0a7d2c);
}

/* Icon Hover Animation */
.floating-call:hover .call-icon {
  transform: rotate(-10deg) scale(1.1);
}

/* Pulse Animation (attractive like call button) */
.floating-call::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: rgba(0, 200, 83, 0.4);
  z-index: -1;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}


/* LEGAL PAGES (Privacy + Terms) */

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 6.5rem 1.5rem;
}

.legal-container h1 {
  font-family: 'Google Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.legal-container h2 {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.legal-container p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.legal-container ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.legal-container li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.autocomplete-dropdown div:hover {
  background: #f0f0f0;
  cursor: pointer;
}

/* FAQ SECTION */
.faq-section {
  max-width: 900px;
  margin: 60px auto;
}

/* Title */
.faq-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  /* color: #002f45; */
  color: var(--blue);
  margin-bottom: 10px;
}

/* Intro */
.faq-intro {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* FAQ ITEM */
.faq-item {
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

/* QUESTION */
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 10px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PLUS ICON */
.faq-question span {
  font-size: 22px;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-answer p {
  padding: 0 10px 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}



/* MOBILE */
@media (max-width: 600px) {
  .legal-container {
    padding: 6.5rem 1rem;
  }

  .legal-container h1 {
    font-size: 1.7rem;
  }

  .legal-container h2 {
    font-size: 1.05rem;
  }

  .legal-container p,
  .legal-container li {
    font-size: 0.88rem;
  }
}

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-visual { display: none; }
      .hero-content { max-width: 100%; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid::before { display: none; }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .dest-grid { grid-template-columns: repeat(4, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
      #dhl-partnership > div { grid-template-columns: 1fr !important; }
    }

    @media (max-width: 640px) {
      .form-two-col { grid-template-columns: 1fr; }
      .dest-selector-row { grid-template-columns: 1fr; }
      .box-row { grid-template-columns: 2rem 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .dest-grid { grid-template-columns: repeat(2, 1fr); }
      /* .nav-links { display: none; } */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(10,22,40,0.98);
    backdrop-filter: blur(10px);

    flex-direction: column;
    align-items: center;
    gap: 1.2rem;

    padding: 1.5rem 0;

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;

    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a,
  .nav-links button {
    width: 100%;
    display: block;
    padding: 12px;
  }
      .footer-top { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .global-options { grid-template-columns: 1fr; }
      .review-grid { grid-template-columns: 1fr; }
    }

   @media (max-width: 768px) {
     .dest-selector-row,
     .form-two-col,
     .review-grid {
       grid-template-columns: 1fr;
     }

      #services {
    padding: 60px 5%;
  }

  .service-card {
    padding: 1.5rem;
  }

     
  }

@media (max-width: 600px) {
   .hero h1 em {
    word-break: break-word;
  }
}