  /* COLOR PALETTE — Bangladesh Flag Theme
  --navy  #006A4E   Official Bangladesh green (primary)
  --gold  #F42A41   Official Bangladesh red (accent / CTA)
  --cream #F5FBF8   Green-tinted whitespace
  --teal  #008F68   Supporting green
  --ink   #0A2E22   Deep green-black body text */
  :root {
    --navy: #006A4E;
    --navy-2: #004D38;
    --navy-3: #008F68;
    --gold: #F42A41;
    --gold-light: #FF8A97;
    --gold-deep: #C41E32;
    --cream: #F5FBF8;
    --cream-2: #E8F6F0;
    --teal: #008F68;
    --teal-light: #DFF5EC;
    --ink: #0A2E22;
    --muted: #4A7264;
    --line: #C8E6D8;
    --white: #FFFFFF;
    --success: #006A4E;
    --shadow: 0 22px 60px rgba(0, 106, 78, 0.16);
    --shadow-sm: 0 10px 30px rgba(0, 106, 78, 0.09);
    --radius: 20px;
    --radius-sm: 12px;
    --max: 1200px;
    --font-display: "Outfit", system-ui, sans-serif;
    --font-ui: "DM Sans", system-ui, sans-serif;
  }

  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-ui);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "cv11";
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  button, input, select, textarea {
    font: inherit;
  }

  img {
    max-width: 100%;
    display: block;
  }

  .container {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
  }

  /* ── Top strip ── */
  .top-strip {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 600;
  }

  .top-strip .container {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .top-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(244, 42, 65, 0.15);
    border: 1px solid rgba(244, 42, 65, 0.35);
    color: var(--gold-light);
  }

  .top-pill svg {
    flex-shrink: 0;
  }

  .top-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
  }

  .top-links a:hover {
    color: var(--gold-light);
  }

  /* ── Navbar ── */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(250, 248, 244, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
  }

  .navbar .container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

  .brand {
    min-width: max-content;
  }

  .brand-mark {
    height: 50px;
    width: auto;
    position: relative;
  }

  .brand-mark img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .brand-mark svg {
    display: none;
  }

  .brand-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .brand-text span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-top: 2px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-left: auto;
  }

  .nav-links a {
    transition: color 0.2s;
  }

  .nav-links a:hover {
    color: var(--gold-deep);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* ── Nav dropdown: "Services" hover menu (desktop) ──
       Used on every page (home + /services/*) to jump between the
       4 service detail pages. See .mobile-submenu below for the
       small-screen equivalent inside the hamburger menu. */
  .nav-item-dropdown {
    position: relative;
  }

  .nav-item-dropdown>a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .nav-item-dropdown>a svg {
    transition: transform 0.2s;
  }

  .nav-item-dropdown:hover>a svg,
  .nav-item-dropdown:focus-within>a svg {
    transform: rotate(180deg);
  }

  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 14px;
    /* invisible bridge so the mouse never leaves the hover chain */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 250;
  }

  .nav-item-dropdown:hover .nav-dropdown,
  .nav-item-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown-inner {
    min-width: 240px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 8px;
    display: grid;
    gap: 2px;
  }

  .nav-dropdown-inner a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    transition: background 0.15s, color 0.15s;
  }

  .nav-dropdown-inner a:hover,
  .nav-dropdown-inner a[aria-current],
  .mobile-submenu a[aria-current] {
    background: var(--cream);
    color: var(--gold-deep);
  }

  .btn {
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
  }

  .btn:hover {
    transform: translateY(-2px);
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: white;
    box-shadow: 0 14px 34px rgba(244, 42, 65, 0.32);
  }

  .btn-primary:hover {
    box-shadow: 0 18px 42px rgba(244, 42, 65, 0.42);
  }

  .btn-navy {
    background: var(--navy);
    color: white;
    box-shadow: 0 14px 34px rgba(12, 26, 46, 0.22);
  }

  .btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--line);
  }

  .btn-ghost-light {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.28);
  }

  .btn-sm {
    padding: 10px 16px;
    font-size: 13px;
  }

  .menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: white;
    cursor: pointer;
  }

  .mobile-menu {
    display: none;
    padding: 12px 16px 20px;
    background: white;
    border-top: 1px solid var(--line);
  }

  .mobile-menu a {
    display: block;
    padding: 12px 4px;
    font-weight: 700;
    border-bottom: 1px solid var(--line);
  }

  /* Mobile equivalent of .nav-dropdown — there's no hover on touch, so
       "Services" gets a separate chevron button that expands/collapses
       the 4 service links (JS toggles .open + aria-expanded, see main.js). */
  .mobile-nav-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-row a {
    flex: 1;
    border-bottom: none;
  }

  .mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    border: 0;
    background: none;
    color: var(--muted);
    cursor: pointer;
  }

  .mobile-submenu-toggle svg {
    transition: transform 0.2s;
  }

  .mobile-submenu-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: var(--cream);
    transition: max-height 0.25s ease;
  }

  .mobile-submenu.open {
    max-height: 240px;
  }

  .mobile-submenu a {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    padding: 10px 4px 10px 18px;
  }

  /* ── Hero ── */
  .hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 48px;
    background:
      radial-gradient(ellipse at 85% 15%, rgba(244, 42, 65, 0.1), transparent 40%),
      radial-gradient(ellipse at 10% 80%, rgba(0, 106, 78, 0.12), transparent 35%),
      linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0, 106, 78, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 106, 78, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black 30%, transparent 90%);
    pointer-events: none;
  }

  .hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 22px;
  }

  .eyebrow .pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(31, 138, 92, 0.15);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% {
      box-shadow: 0 0 0 5px rgba(31, 138, 92, 0.15);
    }

    50% {
      box-shadow: 0 0 0 9px rgba(31, 138, 92, 0.06);
    }
  }

  h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.035em;
  }

  h1 {
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.045em;
    max-width: 640px;
  }

  h2 {
    letter-spacing: -0.04em;
  }

  h3 {
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .gold-text {
    color: var(--gold);
    font-weight: 800;
  }

  .hero-lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 560px;
    margin: 22px 0 28px;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
  }

  .trust-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
  }

  .trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: white;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
  }

  .trust-chip svg {
    color: var(--gold);
    flex-shrink: 0;
  }

  .hero-card {
    background: var(--navy);
    color: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }

  .hero-card::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 42, 65, 0.18), transparent 70%);
    pointer-events: none;
  }

  .hero-card h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 6px;
    position: relative;
  }

  .hero-card .sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 22px;
    position: relative;
  }

  .quick-book {
    position: relative;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .field.full {
    grid-column: 1 / -1;
  }

  .field label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
  }

  .field input,
  .field select,
  .field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }

  .field input::placeholder,
  .field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
  }

  .field select option {
    color: var(--ink);
    background: white;
  }

  .form-note {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
  }

  /* ── Stats bar — green ribbon banner ── */
  .stats {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, #005544 100%);
    border-top: none;
    border-bottom: none;
    padding: 32px 0;
    position: relative;
    overflow: hidden;
  }

  .stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 15% 50%, rgba(244, 42, 65, 0.14), transparent 45%),
      radial-gradient(circle at 85% 50%, rgba(0, 143, 104, 0.2), transparent 40%);
    pointer-events: none;
  }

  .stats .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
  }

  .stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .stat span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ── Travel tools V3 — glass bento, airline-app polish ── */
  .travel-tools {
    padding: 72px 0 40px;
    background:
      radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0, 106, 78, 0.09), transparent 50%),
      radial-gradient(ellipse 70% 50% at 95% 100%, rgba(244, 42, 65, 0.08), transparent 45%),
      linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    position: relative;
  }

  .travel-tools::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 106, 78, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, black 20%, transparent 85%);
    pointer-events: none;
  }

  .travel-tools .container {
    position: relative;
    z-index: 1;
  }

  .tools-bento {
    display: flex;
    align-items: stretch;
    gap: 24px;
  }

  .tools-bento>.tool-panel {
    flex: 1 1 0;
    min-width: 0;
    min-height: 520px;
  }

  .tool-panel {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  }

  .tools-bento>.tool-panel:hover {
    transform: translateY(-4px);
  }

  /* Flight panel — dark glass */
  .panel-flight,
  .panel-esim {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .panel-flight {
    background:
      linear-gradient(165deg, #003D2E 0%, var(--navy) 38%, #005544 100%);
    color: white;
    padding: 28px 26px 22px;
    box-shadow:
      0 32px 80px rgba(0, 45, 34, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .panel-flight::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 42, 65, 0.18), transparent 65%);
    pointer-events: none;
  }

  .panel-flight::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 143, 104, 0.2), transparent 70%);
    pointer-events: none;
  }

  .panel-inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 20px;
    flex-shrink: 0;
  }

  .panel-head-left {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .panel-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    font-size: 22px;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
  }

  .panel-head h3 {
    font-family: var(--font-ui);
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
  }

  .panel-head p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
    max-width: 300px;
    line-height: 1.55;
  }

  .live-radar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(74, 222, 128, 0.25);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    flex-shrink: 0;
  }

  .live-radar .pulse-ring {
    position: relative;
    width: 10px;
    height: 10px;
  }

  .live-radar .pulse-ring::before,
  .live-radar .pulse-ring::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #4ADE80;
  }

  .live-radar .pulse-ring::after {
    animation: radar 2s ease-out infinite;
  }

  @keyframes radar {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }

    100% {
      transform: scale(2.8);
      opacity: 0;
    }
  }

  .search-v3 {
    display: flex;
    align-items: stretch;
    gap: 8px;
    background: #FFF8F0;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .search-v3:focus-within {
    border-color: rgba(0, 106, 78, 0.2);
    box-shadow: 0 0 0 4px rgba(0, 106, 78, 0.08), 0 12px 28px rgba(0, 0, 0, 0.14);
  }

  .search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    min-width: 0;
    border-radius: 12px;
    background: #FFFCF7;
    border: 1px solid rgba(0, 106, 78, 0.07);
  }

  .search-field svg {
    color: rgba(0, 106, 78, 0.4);
    flex-shrink: 0;
  }

  .search-field input {
    flex: 1;
    min-width: 0;
    height: 48px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    outline: none;
    font-variant-numeric: tabular-nums;
  }

  .search-field input::placeholder {
    color: rgba(74, 114, 100, 0.42);
    font-weight: 600;
  }

  .btn-track {
    height: 48px;
    padding: 0 28px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, #FF4D5E 100%);
    color: white;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    white-space: nowrap;
    box-shadow: 0 8px 28px rgba(244, 42, 65, 0.35);
  }

  .btn-track:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(244, 42, 65, 0.45);
  }

  .btn-track:disabled {
    opacity: 0.5;
    cursor: wait;
    transform: none;
  }

  .flight-panel {
    margin-top: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    transition: background 0.35s, border-color 0.35s;
    min-height: 0;
  }

  .flight-panel.has-data {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(244, 42, 65, 0.28);
  }

  .flight-board {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 14px 10px;
  }

  .board-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
  }

  .board-stat {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .board-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: white;
    line-height: 1;
  }

  .board-stat span {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
  }

  .board-stat.highlight strong {
    color: var(--gold-light);
  }

  .board-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .board-head>span {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .board-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
  }

  .board-tab {
    border: 0;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }

  .board-tab.active {
    background: rgba(255, 255, 255, 0.12);
    color: white;
  }

  .board-tab:hover:not(.active) {
    color: rgba(255, 255, 255, 0.85);
  }

  .board-list {
    display: grid;
    gap: 6px;
    margin-bottom: 8px;
  }

  .board-row {
    display: grid;
    grid-template-columns: 62px 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    text-align: left;
    width: 100%;
  }

  .board-row:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(244, 42, 65, 0.3);
    transform: translateX(3px);
  }

  .board-row .code {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
    letter-spacing: 0.05em;
  }

  .board-row .route {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .board-row .route strong {
    color: rgba(255, 255, 255, 0.9);
  }

  .board-row .time {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
  }

  .board-row .mini-status {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 8px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .mini-status.ok {
    background: rgba(74, 222, 128, 0.15);
    color: #4ADE80;
  }

  .mini-status.landed {
    background: rgba(110, 231, 183, 0.15);
    color: #6EE7B7;
  }

  .mini-status.delay {
    background: rgba(251, 191, 36, 0.15);
    color: #FCD34D;
  }

  .mini-status.enroute {
    background: rgba(147, 197, 253, 0.15);
    color: #93C5FD;
  }

  .mini-status.landing {
    background: rgba(244, 42, 65, 0.18);
    color: #FF8A97;
  }

  .quick-track {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .quick-track>span {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .quick-chip {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    font-family: var(--font-ui);
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }

  .quick-chip:hover {
    background: rgba(244, 42, 65, 0.2);
    border-color: rgba(244, 42, 65, 0.4);
    color: white;
  }

  .flight-result-card {
    display: none;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 24px 26px 22px;
    animation: fadeSlide 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes fadeSlide {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .flight-panel.has-data .flight-board {
    display: none;
  }

  .flight-panel.has-data .flight-result-card {
    display: flex;
  }

  .flight-panel.loading .flight-board {
    opacity: 0.35;
    pointer-events: none;
  }

  .btn-back-board {
    display: none;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding: 0;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s;
  }

  .flight-panel.has-data .btn-back-board {
    display: inline-flex;
  }

  .btn-back-board:hover {
    color: white;
  }

  .result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
  }

  .result-airline {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .result-logo {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--gold), var(--gold-deep));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(244, 42, 65, 0.35);
  }

  .result-airline strong {
    display: block;
    font-size: 16px;
    color: white;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .result-airline span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
  }

  .status-pill {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    backdrop-filter: blur(8px);
  }

  .status-pill.on-time {
    background: rgba(74, 222, 128, 0.15);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, 0.25);
  }

  .status-pill.landed {
    background: rgba(26, 107, 92, 0.25);
    color: #6EE7B7;
    border: 1px solid rgba(26, 107, 92, 0.35);
  }

  .status-pill.delayed {
    background: rgba(251, 191, 36, 0.15);
    color: #FCD34D;
    border: 1px solid rgba(251, 191, 36, 0.25);
  }

  .status-pill.departed {
    background: rgba(96, 165, 250, 0.15);
    color: #93C5FD;
    border: 1px solid rgba(96, 165, 250, 0.25);
  }

  .route-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .route-point strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }

  .route-point span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .route-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 8px;
  }

  .route-line .bar {
    width: 96px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
  }

  .route-line .bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: routeGlow 2.5s ease-in-out infinite;
  }

  @keyframes routeGlow {
    0%, 100% {
      transform: translateX(-100%);
    }

    50% {
      transform: translateX(100%);
    }
  }

  .route-line .bar::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 14px rgba(244, 42, 65, 0.7);
    animation: planeMove 3s ease-in-out infinite;
  }

  @keyframes planeMove {
    0%, 100% {
      left: 20%;
    }

    50% {
      left: 80%;
    }
  }

  .route-line svg {
    color: var(--gold);
    opacity: 0.7;
  }

  .result-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .meta-item {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(8px);
    transition: background 0.2s;
  }

  .meta-item:hover {
    background: rgba(255, 255, 255, 0.09);
  }

  .meta-item label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 5px;
  }

  .meta-item strong {
    font-size: 14px;
    color: white;
    font-weight: 700;
  }

  .tool-footnote {
    margin-top: auto;
    padding-top: 10px;
    margin-bottom: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .tool-footnote svg {
    flex-shrink: 0;
    opacity: 0.6;
  }

  /* eSIM panel V5 — warm cream + green accent theme */
  .panel-esim {
    background: #F5FBF8;
    border: 1px solid #C8E6D8;
    padding: 28px 26px 22px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 22px 56px rgba(0, 106, 78, 0.12);
  }

  .panel-esim::before,
  .panel-esim::after {
    display: none;
  }

  .panel-esim .panel-inner {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .panel-esim .esim-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    margin: 0 0 20px;
    flex-shrink: 0;
    background: linear-gradient(125deg, #006A4E 0%, #004D38 55%, #003D2E 100%);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 106, 78, 0.28);
  }

  .panel-esim .esim-topbar .panel-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 20px;
    flex-shrink: 0;
  }

  .panel-esim .esim-panel-title {
    flex: 1;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }

  .panel-esim .esim-badge-v3 {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: white;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    flex-shrink: 0;
  }

  .esim-bundle-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #C8E6D8;
  }

  .esim-bundle-copy {
    flex: 1;
    min-width: 0;
  }

  .esim-bundle-head .esim-stay {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(19px, 2.3vw, 24px);
    font-weight: 800;
    color: #0A2E22;
    letter-spacing: -0.03em;
    line-height: 1.15;
  }

  .esim-bundle-head .esim-region {
    display: block;
    margin-top: 3px;
    font-family: var(--font-display);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    color: #006A4E;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .esim-sim-pic {
    flex-shrink: 0;
    width: 72px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, #003D2E 0%, #006A4E 50%, #008F68 100%);
    padding: 8px 9px;
    box-shadow: 0 8px 20px rgba(0, 106, 78, 0.28);
    position: relative;
    overflow: hidden;
    transform: rotate(-6deg);
  }

  .esim-sim-pic::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.14) 50%, transparent 58%);
  }

  .esim-sim-pic .sim-chip-mini {
    width: 18px;
    height: 13px;
    border-radius: 3px;
    background: linear-gradient(135deg, #FFD700, #F42A41);
    position: relative;
    z-index: 1;
    margin-bottom: 5px;
  }

  .esim-sim-pic .sim-tag {
    position: relative;
    z-index: 1;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1;
  }

  .esim-sim-pic .sim-brand {
    position: relative;
    z-index: 1;
    font-size: 8px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    margin-top: 2px;
    line-height: 1.1;
  }

  .esim-grid {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin: 0 0 14px;
    padding: 10px 0;
  }

  .esim-feat {
    flex: 1;
    padding: 0 4px;
    text-align: center;
    background: none;
    border: none;
  }

  .esim-feat+.esim-feat {
    border-left: 1px solid #E8DDD2;
  }

  .esim-feat .feat-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: #DFF5EC;
    display: grid;
    place-items: center;
    color: #006A4E;
  }

  .esim-feat .feat-icon svg {
    width: 18px;
    height: 18px;
  }

  .esim-feat strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #0A2E22;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .esim-feat span {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: #4A7264;
    font-weight: 600;
    line-height: 1.25;
  }

  .esim-showcase {
    flex: 1;
    margin-bottom: 14px;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .esim-simple {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #C8E6D8;
    border-radius: 18px;
    padding: 16px 16px 12px;
    box-shadow: 0 6px 20px rgba(0, 106, 78, 0.06);
  }

  .esim-simple-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
  }

  .esim-simple-head h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.2;
  }

  .esim-simple-head span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .esim-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
  }

  .esim-perk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--cream);
    border: 1px solid var(--line);
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
  }

  .esim-perk svg {
    color: var(--navy);
    flex-shrink: 0;
    opacity: 0.8;
  }

  .esim-plan-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
  }

  .esim-plan-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #F5FBF8;
    border: 1px solid #C8E6D8;
    border-left: 3px solid #008F68;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }

  .esim-plan-box .plan-price-block {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-shrink: 0;
    text-align: left;
  }

  .esim-plan-box:hover {
    transform: translateY(-2px);
    border-color: #A8D4C4;
    border-left-color: #006A4E;
    box-shadow: 0 8px 20px rgba(0, 106, 78, 0.12);
  }

  .esim-plan-box .plan-data {
    font-family: var(--font-display);
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-left: auto;
    text-align: right;
    flex-shrink: 0;
  }

  .esim-plan-box .plan-days {
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.2;
  }

  .esim-plan-box .plan-price {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: #006A4E;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .esim-cta-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
    position: relative;
    z-index: 1;
  }

  .btn-esim-v3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #006A4E, #008F68);
    color: white;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 12px 28px rgba(0, 106, 78, 0.28);
  }

  .btn-esim-v3:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 106, 78, 0.38);
  }

  .btn-esim-v3 svg {
    transition: transform 0.2s;
  }

  .btn-esim-v3:hover svg {
    transform: translateX(4px);
  }

  .esim-foot {
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
  }

  /* ── Section commons — Travel Tools headline style sitewide ── */
  section {
    padding: 88px 0;
  }

  .section-head {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 36px;
  }

  .section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-transform: none;
    color: white;
    background: linear-gradient(135deg, #006A4E 0%, #008F68 100%);
    padding: 10px 22px;
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: 0 8px 22px rgba(0, 106, 78, 0.22);
  }

  .section-head h2,
  .why-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.8vw, 56px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.06;
    color: var(--navy);
    margin-bottom: 16px;
  }

  .section-head p,
  .why-content>p {
    color: var(--muted);
    font-size: clamp(15px, 1.35vw, 18px);
    font-weight: 500;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.55;
    white-space: nowrap;
  }

  .why-content .section-label {
    display: inline-block;
    text-align: left;
    margin-bottom: 14px;
  }

  .why-content h2 {
    text-align: left;
    margin-bottom: 14px;
  }

  .why-content>p {
    text-align: left;
    margin: 0 0 24px;
    white-space: normal;
  }

  /* ── Services ── */
  .services {
    background: var(--white);
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .service-grid--addon {
    margin-top: 22px;
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card--addon {
    cursor: default;
    padding: 24px;
  }

  .service-card--addon:hover {
    transform: translateY(-3px);
  }

  .service-card--addon h3 {
    font-size: 20px;
  }

  .service-card--addon p {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .service-card--addon .service-list {
    gap: 6px;
  }

  .service-card--addon .service-list li {
    font-size: 13px;
  }

  .service-card {
    display: block;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    cursor: pointer;
  }

  .service-card:hover,
  .service-card.active {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(244, 42, 65, 0.4);
  }

  .service-card.active {
    background: white;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .service-card p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 16px;
  }

  .service-list {
    list-style: none;
    display: grid;
    gap: 8px;
  }

  .service-list li {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    padding-left: 22px;
    position: relative;
  }

  .service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 800;
  }

  /* ── How it works ── */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
    z-index: 0;
  }

  .step {
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gold);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-deep);
    box-shadow: var(--shadow-sm);
  }

  .step h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .step p {
    font-size: 14px;
    color: var(--muted);
    max-width: 220px;
    margin: 0 auto;
  }

  /* ── Packages — modern pricing grid ── */
  .packages {
    background:
      radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 106, 78, 0.07), transparent 55%),
      linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    color: var(--ink);
    position: relative;
    overflow: hidden;
  }

  .packages::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 106, 78, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom, black 30%, transparent 90%);
    pointer-events: none;
  }

  .packages .container {
    position: relative;
    z-index: 1;
  }

  .packages .section-head p {
    max-width: 560px;
  }

  .package-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: -28px auto 40px;
    max-width: 720px;
  }

  .package-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    box-shadow: 0 4px 14px rgba(0, 106, 78, 0.06);
  }

  .package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  .package-card {
    position: relative;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0, 106, 78, 0.07);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s;
  }

  .package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 106, 78, 0.14);
    border-color: rgba(0, 106, 78, 0.25);
  }

  .package-card--featured {
    border: 2px solid var(--gold);
    box-shadow: 0 20px 56px rgba(244, 42, 65, 0.12), 0 12px 40px rgba(0, 106, 78, 0.1);
    transform: translateY(-6px);
    z-index: 2;
  }

  .package-card--featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 64px rgba(244, 42, 65, 0.16), 0 16px 48px rgba(0, 106, 78, 0.12);
  }

  .package-ribbon {
    position: absolute;
    top: 14px;
    right: -32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(244, 42, 65, 0.3);
    z-index: 3;
  }

  .package-top {
    padding: 24px 22px 20px;
    text-align: center;
    position: relative;
  }

  .package-card--silver .package-top {
    background: linear-gradient(180deg, #F3F4F6 0%, #fff 100%);
  }

  .package-card--gold .package-top {
    background: linear-gradient(180deg, #FEF9C3 0%, #fff 100%);
  }

  .package-card--platinum .package-top {
    background: linear-gradient(180deg, #EEF2FF 0%, #fff 100%);
  }

  .package-card--other .package-top {
    background: linear-gradient(180deg, var(--teal-light) 0%, #fff 100%);
  }

  .package-medal {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .package-card--silver .package-medal {
    background: linear-gradient(135deg, #E5E7EB, #9CA3AF);
  }

  .package-card--gold .package-medal {
    background: linear-gradient(135deg, #FDE047, #EAB308);
  }

  .package-card--platinum .package-medal {
    background: linear-gradient(135deg, #A5B4FC, #6366F1);
  }

  .package-card--other .package-medal {
    background: linear-gradient(135deg, var(--teal-light), var(--navy));
    font-size: 20px;
  }

  .package-tier-name {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
  }

  .package-stars {
    font-size: 13px;
    letter-spacing: 3px;
    line-height: 1;
  }

  .package-stars.silver {
    color: #9CA3AF;
  }

  .package-stars.gold {
    color: #CA8A04;
  }

  .package-stars.platinum {
    color: #4F46E5;
  }

  .package-body {
    padding: 0 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .package-price-block {
    text-align: center;
    padding: 18px 16px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--cream);
    border: 1px solid var(--line);
  }

  .package-card--featured .package-price-block {
    background: linear-gradient(135deg, rgba(244, 42, 65, 0.06), rgba(0, 106, 78, 0.06));
    border-color: rgba(244, 42, 65, 0.2);
  }

  .package-price-bdt {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .package-price-bdt small {
    font-size: 14px;
    font-weight: 700;
    opacity: 0.7;
  }

  .package-price-usd {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
  }

  .package-price-custom {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
  }

  .package-subtitle {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    text-align: center;
  }

  .package-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
    text-align: center;
  }

  .package-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
    margin-bottom: 18px;
  }

  .package-features {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
    flex: 1;
  }

  .package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--cream);
    border: 1px solid rgba(200, 230, 216, 0.6);
  }

  .package-features li::before {
    content: "✓";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: var(--navy);
    color: white;
    font-size: 11px;
    font-weight: 800;
    display: grid;
    place-items: center;
    position: static;
  }

  .package-card--featured .package-features li::before {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  }

  .btn-book-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 18px;
    border: 0;
    border-radius: 14px;
    background: var(--navy);
    color: white;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-top: auto;
    box-shadow: 0 10px 28px rgba(0, 106, 78, 0.2);
  }

  .btn-book-package:hover {
    background: var(--navy-2);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 106, 78, 0.28);
  }

  .package-card--featured .btn-book-package {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    box-shadow: 0 10px 28px rgba(244, 42, 65, 0.3);
  }

  .package-card--featured .btn-book-package:hover {
    box-shadow: 0 14px 36px rgba(244, 42, 65, 0.4);
  }

  /* ── Why us ── */
  .why-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .why-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .why-content>p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 0;
  }

  .why-list {
    display: grid;
    gap: 16px;
  }

  .why-item {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
  }

  .why-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--teal-light);
    color: var(--teal);
    display: grid;
    place-items: center;
    font-size: 20px;
  }

  .why-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--navy);
  }

  .why-item span {
    font-size: 14px;
    color: var(--muted);
  }

  .auth-card {
    background: linear-gradient(160deg, var(--navy), var(--navy-3));
    color: white;
    border-radius: 28px;
    padding: 36px;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    height: 100%;
  }

  .auth-seal {
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(244, 42, 65, 0.12);
    border: 2px solid var(--gold);
    display: grid;
    place-items: center;
    font-size: 36px;
  }

  .auth-card h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
  }

  .auth-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .auth-card a {
    color: var(--gold-light);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ── Testimonials ── */
  .testimonials {
    background: var(--cream-2);
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .testimonial {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
  }

  .stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .testimonial blockquote {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px;
  }

  .testimonial-author strong {
    display: block;
    font-size: 14px;
  }

  .testimonial-author span {
    font-size: 12px;
    color: var(--muted);
  }

  /* ── FAQ ── */
  .faq-grid {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
  }

  .faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
  }

  .faq-q {
    width: 100%;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    text-align: left;
  }

  .faq-q svg {
    flex-shrink: 0;
    transition: transform 0.25s;
    color: var(--gold);
  }

  .faq-item.open .faq-q svg {
    transform: rotate(180deg);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .faq-a-inner {
    padding: 0 22px 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
  }

  .faq-item.open .faq-a {
    max-height: 200px;
  }

  /* ── Final CTA ── */
  .final-cta {
    background:
      radial-gradient(ellipse at 20% 50%, rgba(244, 42, 65, 0.14), transparent 50%),
      linear-gradient(135deg, var(--navy), var(--navy-3));
    color: white;
    text-align: center;
    padding: 88px 0;
  }

  .final-cta h2 {
    color: white;
    font-size: clamp(34px, 4.5vw, 52px);
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.08;
  }

  .final-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 32px;
  }

  .final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  /* ── Footer ── */
  footer {
    background: #003D2E;
    color: rgba(255, 255, 255, 0.75);
    padding: 56px 0 28px;
    font-size: 14px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }

  .footer-grid h4 {
    color: white;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .footer-grid ul {
    list-style: none;
    display: grid;
    gap: 10px;
  }

  .footer-grid a:hover {
    color: var(--gold-light);
  }

  .footer-brand p {
    margin: 14px 0 0;
    line-height: 1.7;
    max-width: 300px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
  }

  /* ── Sticky mobile CTA ── */
  .sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    padding: 12px 16px;
    background: rgba(250, 248, 244, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    gap: 10px;
  }

  .sticky-cta .btn {
    flex: 1;
    padding: 14px 12px;
  }

  /* ══════════════════════════════════════════════════════════════
       SERVICE DETAIL PAGES
       Shared by /services/meet-and-greet/, /services/car-rental/,
       /services/drop-off-and-pickup/ and /services/security-escort/.
       Same header/footer/colors/fonts as the homepage — only these
       page-specific blocks (breadcrumb, page hero, detail layout)
       are new. Reuses .hero-actions, .btn, .service-list, .final-cta,
       footer and .sticky-cta from the rules above unchanged.
       ══════════════════════════════════════════════════════════════ */

  /* ── Breadcrumb ── */
  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 18px;
  }

  .breadcrumb a {
    color: var(--muted);
    transition: color 0.2s;
  }

  .breadcrumb a:hover {
    color: var(--gold-deep);
  }

  .breadcrumb span[aria-current] {
    color: var(--navy);
  }

  /* ── Page hero (reuses .hero background/eyebrow/h1/.hero-lead/.hero-actions styling) ── */
  .service-page-hero {
    padding: 56px 0 48px;
  }

  .service-page-hero .hero-lead {
    margin-top: 22px;
  }

  /* ── Detail body: main copy column + sticky booking sidebar ── */
  .service-detail-section {
    background: var(--white);
  }

  .service-detail-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .service-detail-main h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin: 36px 0 14px;
  }

  .service-detail-main h2:first-child {
    margin-top: 0;
  }

  .service-detail-main p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
  }

  .service-detail-main .service-list {
    margin: 18px 0 8px;
  }

  .service-detail-main .service-list li {
    font-size: 15px;
    padding: 12px 14px 12px 34px;
    background: var(--cream);
    border: 1px solid rgba(200, 230, 216, 0.6);
    border-radius: 12px;
  }

  .service-detail-main .service-list li::before {
    left: 12px;
  }

  .detail-steps {
    list-style: none;
    counter-reset: detail-step;
    display: grid;
    gap: 14px;
    margin: 18px 0 8px;
  }

  .detail-steps li {
    counter-increment: detail-step;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.6;
  }

  .detail-steps li::before {
    content: counter(detail-step);
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    display: grid;
    place-items: center;
  }

  .service-sidebar-card {
    position: sticky;
    top: 100px;
    background: linear-gradient(160deg, var(--navy), var(--navy-3));
    color: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
  }

  .service-sidebar-card h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .service-sidebar-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .service-sidebar-card .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .service-sidebar-card .btn:last-child {
    margin-bottom: 0;
  }

  .service-sidebar-facts {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .service-sidebar-facts li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
  }

  .service-sidebar-facts li span:first-child {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
  }

  /* Related-services strip at the bottom of each detail page */
  .related-services {
    background: var(--cream);
  }

  .related-services .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* ── Responsive ── */
  @media (max-width: 1024px) {

    .hero .container,
    .why-split {
      grid-template-columns: 1fr;
    }

    .hero-card {
      order: -1;
    }

    .steps {
      grid-template-columns: repeat(2, 1fr);
    }

    .steps::before {
      display: none;
    }

    .package-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .package-card--featured {
      transform: none;
    }

    .package-card--featured:hover {
      transform: translateY(-8px);
    }

    .stats .container {
      grid-template-columns: repeat(2, 1fr);
    }

    .tools-bento {
      flex-direction: column;
    }

    .tools-bento>.tool-panel {
      flex: 1 1 auto;
      min-height: 0;
    }

    .esim-grid {
      grid-template-columns: 1fr;
    }

    .service-grid--addon {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }

    .section-head p {
      white-space: normal;
    }

    .nav-links, .nav-actions {
      display: none;
    }

    .menu-btn {
      display: grid;
      place-items: center;
      margin-left: auto;
    }

    .mobile-menu.open {
      display: block;
    }

    .service-detail-grid {
      grid-template-columns: 1fr;
    }

    .service-sidebar-card {
      position: static;
    }

    .related-services .service-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .service-page-hero {
      padding: 36px 0 28px;
    }
  }

  @media (max-width: 768px) {

    .service-grid,
    .service-grid--addon,
    .testimonial-grid,
    .related-services .service-grid {
      grid-template-columns: 1fr;
    }

    .form-grid {
      grid-template-columns: 1fr;
    }

    .search-v3 {
      flex-direction: column;
      padding: 10px;
    }

    .search-field input {
      height: 44px;
    }

    .btn-track {
      width: 100%;
      height: 48px;
    }

    .panel-head {
      flex-direction: column;
    }

    .esim-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .result-meta {
      grid-template-columns: 1fr;
    }

    .board-row {
      grid-template-columns: 56px 1fr;
      gap: 8px;
    }

    .board-row .time, .board-row .mini-status {
      grid-column: 2;
      justify-self: start;
    }

    .board-row .mini-status {
      margin-left: auto;
      grid-column: 2;
      justify-self: end;
    }

    .board-stats {
      grid-template-columns: 1fr;
    }

    .sticky-cta {
      display: flex;
    }

    body {
      padding-bottom: 72px;
    }

    .footer-grid {
      grid-template-columns: 1fr;
    }

    .package-grid {
      grid-template-columns: 1fr;
    }

    .service-page-hero {
      padding: 24px 0 20px;
    }
  }

  @media (max-width: 360px) {}