:root {
      --bg: #FFFFFF;
      --bg-warm: #FDF9F4;
      --surface: #FFF4E8;
      --surface-deep: #F3E2C8;
      --border: #EAD9C4;
      --primary: #E8871E;
      --primary-dark: #C96A0F;
      --primary-light: #F7B562;
      --espresso: #2B1810;
      --espresso-soft: #40332D;
      --muted: #40332D;
      --white: #FFFFFF;
      --footer-bg: #EFDCBB;
      --shadow-sm: 0 2px 10px rgba(43, 24, 16, 0.06);
      --shadow-md: 0 10px 30px rgba(43, 24, 16, 0.10);
      --shadow-lg: 0 20px 50px rgba(43, 24, 16, 0.16);
      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 28px;
      --container: 1240px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--espresso-soft);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Poppins', system-ui, -apple-system, sans-serif;
      color: var(--espresso);
      margin: 0;
      line-height: 1.15;
      font-weight: 700;
      letter-spacing: 0;
    }

    p {
      margin: 0;
    }

    .heading-accent {
      color: var(--primary-dark);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
    }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0;
      font-size: 13px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--primary-dark);
      font-weight: 600;
      margin-bottom: 14px;
    }

    .eyebrow::before {
      display: none;
    }

    section {
      position: relative;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 15px;
      border: 1.5px solid transparent;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: #000;
      box-shadow: 0 8px 20px rgba(232, 135, 30, .30);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      color: #000;
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(201, 106, 15, .36);
    }

    .btn-outline {
      background: transparent;
      border-color: rgba(43, 24, 16, .22);
      color: var(--espresso);
    }

    .btn-outline:hover {
      border-color: var(--espresso);
      transform: translateY(-2px);
    }

    .btn-outline-light {
      background: transparent;
      border-color: rgba(255, 255, 255, .4);
      color: #fff;
    }

    .btn-outline-light:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, .08);
      transform: translateY(-2px);
    }

    .btn-sm {
      padding: 10px 20px;
      font-size: 14px;
    }

    /* ---------- DUNE DIVIDER (signature element) ---------- */
    .dune-divider {
      display: none;
    }

    /* ---------- HEADER ---------- */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid transparent;
      transition: box-shadow .3s ease, border-color .3s ease;
    }

    header.scrolled {
      box-shadow: 0 4px 20px rgba(43, 24, 16, .08);
      border-color: var(--border);
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      height: 84px;
    }

    .logo-link {
      display: flex;
      align-items: center;
      height: 100%;
      flex-shrink: 0;
      margin-right: auto;
    }

    .logo-link img {
      height: 116px;
      width: auto;
    }

    nav.main-nav {
      display: flex;
      align-items: center;
      gap: 0;
    }

    nav.main-nav a {
      padding: 10px 13px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.2;
      white-space: nowrap;
      color: var(--espresso-soft);
      transition: background .2s ease, color .2s ease;
    }

    nav.main-nav a:hover,
    nav.main-nav a.active {
      background: var(--surface);
      color: var(--primary-dark);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: 12px;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      padding: 8px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--espresso);
      margin: 5px 0;
      border-radius: 2px;
      transition: .25s;
    }

    /* ---------- HERO ---------- */
    .hero {
      position: relative;
      min-height: clamp(520px, 68vh, 680px);
      display: flex;
      align-items: center;
      overflow: hidden;
      color: #fff;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-scene {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: translateX(100%);
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      transition: transform .8s ease, opacity .8s ease;
    }

    .hero-scene.active {
      opacity: 1;
    }

    .hero-scene.active {
      transform: translateX(0);
    }

    .hero-scene.exit {
      opacity: 0;
      transform: translateX(-100%);
    }

    .hero-scene[data-scene="1"] {
      background-image: url('public_html/images/homehero01.webp');
    }

    .hero-scene[data-scene="2"] {
      background-image: url('public_html/images/homehero02.webp');
    }

    .hero-scene[data-scene="3"] {
      background-image: url('public_html/images/homehero03.webp');
    }

    .hero-scene[data-scene="4"] {
      background-image: url('public_html/images/homehero04.webp');
    }

    .hero-scene[data-scene="5"] {
      background-image: url('public_html/images/homehero05.webp');
    }

    .hero-scene[data-scene="6"] {
      background-image: url('public_html/images/homehero06.webp');
    }

    .hero-scene svg {
      display: none;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(43, 24, 16, .64) 0%, rgba(43, 24, 16, .46) 45%, rgba(43, 24, 16, .80) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 920px;
      padding: 88px 24px 76px;
      text-align: center;
      animation: heroContentZoom 1.1s ease-out both;
    }

    .hero-content>span {
      display: block;
      font-size: 20px;
      line-height: 1.4;
      letter-spacing: .1em;
      font-weight: 600;
      text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
    }

    .hero-content h1 {
      font-size: clamp(36px, 4.4vw, 56px);
      color: #fff;
      margin: 18px auto 26px;
      max-width: 940px;
      font-weight: 800;
      letter-spacing: 0;
      line-height: 1.08;
      text-wrap: balance;
      text-shadow: 0 4px 16px rgba(0, 0, 0, .55);
    }

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

    .hero-content p {
      font-size: 18px;
      line-height: 1.7;
      color: #fff;
      max-width: 760px;
      margin: 0 auto 34px;
      text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
      margin-bottom: 30px;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline-light {
      background: var(--primary);
      color: #000;
      border-color: var(--primary);
      box-shadow: none;
    }

    .hero-ctas .btn-primary:hover,
    .hero-ctas .btn-outline-light:hover {
      background: var(--primary-dark);
      color: #000;
      border-color: var(--primary-dark);
    }

    .hero-subtlinks {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 18px;
      font-size: 14px;
      color: rgba(255, 255, 255, .88);
    }

    .hero-subtlinks a {
      border-bottom: 1px solid rgba(255, 255, 255, .35);
      padding-bottom: 2px;
      transition: border-color .2s;
    }

    .hero-subtlinks a:hover {
      border-color: #fff;
    }

    .hero-subtlinks span.sep {
      opacity: .5;
    }

    .hero-dots {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      gap: 8px;
    }

    .hero-dots button {
      width: 26px;
      height: 4px;
      border-radius: 4px;
      border: none;
      background: rgba(255, 255, 255, .35);
      padding: 0;
      transition: background .3s;
    }

    .hero-dots button.active {
      background: #fff;
    }

    .service-marquee {
      position: relative;
      z-index: 4;
      overflow: hidden;
      background: var(--primary);
      border-top: 1px solid rgba(255, 255, 255, .2);
      border-bottom: 1px solid rgba(43, 24, 16, .14);
      box-shadow: 0 8px 20px rgba(43, 24, 16, .12);
    }

    .service-marquee-track {
      display: flex;
      width: max-content;
      animation: serviceMarquee 34s linear infinite;
    }

    .service-marquee-list {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .service-marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 18px 28px;
      color: #000;
      font: 600 15px 'Poppins', sans-serif;
      white-space: nowrap;
    }

    .service-marquee-item::after {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #FFE0A8;
      box-shadow: 0 0 0 5px rgba(255, 255, 255, .12);
    }

    .service-marquee:hover .service-marquee-track {
      animation-play-state: paused;
    }

    @keyframes serviceMarquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .service-marquee-track {
        animation: none;
      }
    }

    @keyframes heroContentZoom {
      from {
        opacity: 0;
        transform: scale(.86);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* ---------- QUICK PLANNER ---------- */
    .planner {
      padding: 64px 0 20px;
      background: var(--bg-warm);
    }

    .planner-head {
      max-width: 900px;
      margin: 0 auto 32px;
      text-align: center;
    }

    .planner-head .eyebrow {
      display: block;
      font-family: 'Poppins', system-ui, -apple-system, sans-serif;
      font-size: clamp(26px, 3vw, 36px);
      letter-spacing: 0;
      text-transform: none;
      color: var(--espresso);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 10px;
    }

    .planner-head h2 {
      font-size: 16px !important;
      line-height: 1.6;
      font-weight: 400;
      color: var(--muted);
    }

    .planner-head p {
      color: var(--muted);
      margin-top: 4px;
      font-size: 15px;
      line-height: 1.6;
    }

    .pill-row {
      display: grid;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      gap: 12px;
    }

    .pill {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 146px;
      padding: 14px 10px;
      border-radius: var(--radius-md);
      background: #1B2742;
      border: 1px solid rgba(143, 183, 232, .3);
      font-weight: 600;
      font-size: 13px;
      line-height: 1.3;
      text-align: center;
      color: #fff;
      transition: all .25s ease;
    }

    .pill:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .pill svg {
      width: 46px;
      height: 46px;
      padding: 11px;
      box-sizing: border-box;
      flex-shrink: 0;
      border-radius: 50%;
      background: rgba(232, 135, 30, .16);
      color: var(--primary-light);
    }

    .pill:hover svg {
      background: rgba(255, 255, 255, .18);
      color: #fff;
    }

    /* ---------- SECTION HEADS ---------- */
    .section {
      padding: 88px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      margin-bottom: 44px;
      flex-wrap: wrap;
    }

    .section-head h2,
    .reviews-head h2,
    .faq-head h2,
    .visa-inner h2 {
      font-family: 'Poppins', system-ui, -apple-system, sans-serif;
      font-size: clamp(28px, 3.4vw, 40px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: 0;
      color: var(--espresso);
    }

    .section-head h2 {
      max-width: 640px;
    }

    .packages-heading {
      display: block;
      max-width: none;
      font-family: 'Poppins', system-ui, -apple-system, sans-serif;
      font-size: clamp(24px, 2.6vw, 34px) !important;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: 0;
      color: var(--espresso);
      text-align: center;
      margin: 0 auto;
      white-space: nowrap;
    }

    .travel-style-heading {
      text-align: left;
      margin-left: 0;
    }

    .travel-style-heading .plain-word {
      color: var(--espresso);
    }

    .section-head .lede {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.6;
      max-width: 480px;
      margin-top: 12px;
    }

    /* ---------- PACKAGE CARDS ---------- */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .pkg-card {
      background: #fff;
      border: 1.5px solid var(--primary);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: transform .3s ease, box-shadow .3s ease;
      display: flex;
      flex-direction: column;
    }

    .pkg-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    #packages .pkg-card {
      background: #FAF8F4;
      border: 0;
      transition: transform .18s ease, box-shadow .18s ease;
      transition-delay: 0s;
    }

    #packages .pkg-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

    .dhow-card {
      border: 0;
      background: #FAF8F4;
    }

    .helicopter-card {
      background: #FAF8F4;
      border-color: #000;
    }

    .pkg-card.reveal.in:hover {
      transform: translateY(-6px);
    }

    .grid-3 .pkg-card.reveal {
      transform: translateY(48px);
      transition: opacity .75s ease, transform .75s ease, box-shadow .3s ease;
    }

    .grid-3 .pkg-card.reveal.in {
      transform: translateY(0);
    }

    .grid-3 .pkg-card:nth-child(2) {
      transition-delay: .08s;
    }

    .grid-3 .pkg-card:nth-child(3) {
      transition-delay: .16s;
    }

    .grid-3 .pkg-card:nth-child(4) {
      transition-delay: .24s;
    }

    .grid-3 .pkg-card:nth-child(5) {
      transition-delay: .32s;
    }

    .grid-3 .pkg-card:nth-child(6) {
      transition-delay: .40s;
    }

    .grid-3 .pkg-card:nth-child(7) {
      transition-delay: .48s;
    }

    .grid-3 .pkg-card.reveal.in:hover {
      transform: translateY(-6px);
    }

    .pkg-visual {
      height: 170px;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 16px;
    }

    .pkg-visual.safari-visual {
      background-image: linear-gradient(rgba(43, 24, 16, .16), rgba(43, 24, 16, .35)), url(./public_html/images/bbq-dinner-desert-safari-dubai.jpg) !important;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .pkg-visual.burj-visual {
      background-image: linear-gradient(rgba(43, 24, 16, .12), rgba(43, 24, 16, .35)), url(./public_html/images/Burj%20Khalifa%20&%20Downtown%20Dubai%20Tour.jfif) !important;
      background-position: center;
      background-size: cover;
      background-size:100% 100% ;
      background-repeat: no-repeat;
    }

    .pkg-visual.yacht-visual {
      background-image: linear-gradient(rgba(43, 24, 16, .10), rgba(43, 24, 16, .32)), url(./public_html/images/Dubai-Marina-Yacht-Charter.jpg) !important;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .pkg-visual.helicopter-visual {
      background-image: linear-gradient(rgba(43, 24, 16, .10), rgba(43, 24, 16, .32)), url(./public_html/images/Dubai-by-Helicopter.jpg) !important;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .pkg-visual.dhow-visual {
      background-image: linear-gradient(rgba(43, 24, 16, .10), rgba(43, 24, 16, .32)), url(./public_html/images/DhowCruiseDinnerDubaiMarina.jpg) !important;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .pkg-visual.mice-visual {
      background-image: linear-gradient(rgba(43, 24, 16, .10), rgba(43, 24, 16, .32)), url(./public_html/images/MICE%20&%20Corporate%20Events%20in%20Dubai.jfif) !important;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .pkg-visual.chauffeur-visual {
      background-image: linear-gradient(rgba(43, 24, 16, .10), rgba(43, 24, 16, .32)), url(./public_html/images/dubai%20to%20ABU%20Dhabi.jpg) !important;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .pkg-visual.heritage-visual {
      background-image: linear-gradient(rgba(43, 24, 16, .08), rgba(43, 24, 16, .30)), url(./public_html/images/Dubai%20Classic%20City%20Tour.jfif) !important;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .pkg-visual.modern-city-visual {
      background-image: linear-gradient(rgba(43, 24, 16, .10), rgba(43, 24, 16, .32)), url(./public_html/images/Dubai%20Modern%20City%20Tour.jfif) !important;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .pkg-visual.abudhabi-visual {
      background-image: linear-gradient(rgba(43, 24, 16, .08), rgba(43, 24, 16, .30)), url(./public_html/images/Private%20Abu%20Dhabi%20City%20Tour.jfif) !important;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .pkg-visual.full-day-visual {
      background-image: linear-gradient(rgba(43, 24, 16, .10), rgba(43, 24, 16, .32)), url(./public_html/images/Full%20Day%20Old%20&%20New%20Dubai%20Tour.jfif) !important;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .pkg-visual .badge {
      background: rgba(255, 255, 255, .92);
      color: var(--espresso);
      font-size: 12.5px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 999px;
    }

    .dhow-card .pkg-visual .badge {
      background: #fff;
      color: #000;
    }

    .pkg-body {
      padding: 22px 24px 26px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex: 1;
    }

    .pkg-body h3,
    .exp-item h4,
    .dest-card h4,
    .why-card h4 {
      font-family: 'Poppins', system-ui, -apple-system, sans-serif;
      font-weight: 700;
      letter-spacing: 0;
    }

    .pkg-body h3 {
      font-size: 20px;
      line-height: 1.3;
    }

    .pkg-body h3 .heading-accent {
      color: #000;
    }

    .safari-card .request-quote {
      background: var(--primary);
      border-color: var(--primary);
      color: #000;
    }

    .safari-card .request-quote:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: #000;
    }

    .burj-card {
      background: #fff;
      border-color: var(--primary);
    }

    .burj-card .pkg-body h3 {
      color: var(--espresso);
    }

    .burj-card .pkg-list li {
      color: var(--muted);
    }

    .burj-card .pkg-foot {
      border-color: var(--border);
    }

    .burj-card .pkg-foot small {
      color: var(--muted);
    }

    .burj-card .pkg-foot .btn {
      border-color: var(--primary);
      color: var(--primary);
    }

    .burj-card .pkg-foot .btn:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }

    .grid-3>.pkg-card:not(:last-child) .pkg-foot .btn.btn-outline {
      background: transparent;
      border-color: rgba(43, 24, 16, .22);
      color: var(--primary-dark);
    }

    .grid-3>.pkg-card:not(:last-child) .pkg-foot .btn.btn-outline:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }

    .grid-3>.pkg-card .pkg-foot .btn.btn-outline {
      background: transparent;
      border-color: var(--primary);
      color: #000;
    }

    .grid-3>.pkg-card .pkg-foot .btn.btn-outline:hover {
      background: transparent;
      border-color: var(--primary);
      color: #000;
    }

    #packages .section-head>.btn.btn-outline,
    #destinations .section-head>.btn.btn-outline,
    #packages .section-head>.btn.btn-outline {
      background: #1B2742;
      border-color: #1B2742;
      color: #fff;
    }

    #packages .section-head>.btn.btn-outline:hover,
    #destinations .section-head>.btn.btn-outline:hover {
      background: #1B2742;
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    #hajj-umrah .section-head>.btn.btn-outline {
      background: var(--primary);
      border-color: var(--primary);
      color: #000;
    }

    #hajj-umrah .section-head>.btn.btn-outline:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: #000;
    }

    @media (min-width:601px) {
      #packages .grid-3>.pkg-card .pkg-foot .btn.btn-outline {
        background: transparent;
        border: 2px solid var(--primary);
        color: #000;
      }

      #packages .grid-3>.pkg-card .pkg-foot .btn.btn-outline:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
      }
    }

    .pkg-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .pkg-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13.5px;
      color: var(--muted);
    }

    .pkg-list svg {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--primary);
    }

    .pkg-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 14px;
      border-top: 1px dashed var(--border);
    }

    .pkg-foot small {
      color: var(--muted);
      font-size: 12px;
    }

    /* ---------- EXPERIENCES ---------- */
    #hajj-umrah {
      background: #191A29 !important;
      padding-top: 48px !important;
    }

    #hajj-umrah .eyebrow {
      color: var(--primary);
    }

    #hajj-umrah .section-head h2 {
      color: #fff;
    }

    #hajj-umrah .travel-style-heading .plain-word {
      color: #fff;
    }

    #hajj-umrah .section-head .lede {
      color: rgba(255, 255, 255, .80);
    }

    .exp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .exp-item {
      background: #1B2742;
      border: 1px solid rgba(143, 183, 232, .22);
      border-radius: var(--radius-md);
      padding: 30px 26px;
      opacity: 0;
      transform: translateY(30px) scale(.96);
      transition: opacity .65s ease, transform .65s ease, background .25s ease, box-shadow .3s ease;
    }

    .exp-grid.in .exp-item {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .exp-grid.in .exp-item:nth-child(2) {
      transition-delay: .08s;
    }

    .exp-grid.in .exp-item:nth-child(3) {
      transition-delay: .16s;
    }

    .exp-grid.in .exp-item:nth-child(4) {
      transition-delay: .24s;
    }

    .exp-grid.in .exp-item:nth-child(5) {
      transition-delay: .32s;
    }

    .exp-grid.in .exp-item:nth-child(6) {
      transition-delay: .40s;
    }

    .exp-grid.in .exp-item:nth-child(7) {
      transition-delay: .48s;
    }

    .exp-grid.in .exp-item:nth-child(8) {
      transition-delay: .56s;
    }

    .exp-grid.in .exp-item:hover {
      transform: translateY(-9px) scale(1.02);
      transition-delay: 0s;
      transition-duration: .18s;
    }

    .exp-item:hover {
      background: var(--surface);
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    .exp-item .ico {
      width: 38px;
      height: 38px;
      color: var(--primary-dark);
      margin-bottom: 16px;
    }

    .exp-item h4 {
      font-size: 16px;
      margin-bottom: 8px;
      color: #fff;
    }

    .exp-item p {
      font-size: 13.5px;
      color: rgba(255, 255, 255, .80);
      line-height: 1.55;
    }

    .exp-item:hover h4 {
      color: var(--espresso);
    }

    .exp-item:hover p {
      color: var(--muted);
    }

    #hajj-umrah .exp-item:hover {
      background: #1B2742;
    }

    #hajj-umrah .exp-item:hover h4 {
      color: #fff;
    }

    #hajj-umrah .exp-item:hover p {
      color: rgba(255, 255, 255, .80);
    }

    /* ---------- DESTINATIONS ---------- */
    .dest-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .dest-card {
      border-radius: var(--radius-md);
      padding: 26px 20px;
      color: #fff;
      min-height: 190px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      position: relative;
      overflow: hidden;
      transition: transform .3s ease;
    }

    .dest-card:hover {
      transform: translateY(-5px);
    }

    .dest-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(43, 24, 16, 0) 40%, rgba(43, 24, 16, .55) 100%);
    }

    .dest-card h4 {
      color: #fff;
      font-size: 19px;
      position: relative;
      z-index: 1;
      margin-bottom: 6px;
    }

    .dest-card p {
      color: rgba(255, 255, 255, .88);
      font-size: 12.5px;
      position: relative;
      z-index: 1;
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 38px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 9px 18px;
      border-radius: 999px;
      background: #1B2742;
      border: 1px solid #1B2742;
      font-size: 13.5px;
      font-weight: 500;
      color: #fff;
      transition: all .2s;
    }

    .chip:hover {
      background: #1B2742;
      color: var(--primary);
      border-color: var(--primary);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    /* ---------- CORPORATE (dark band) ---------- */
    .dark-band {
      background: #1B2742;
      color: #fff;
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .split .visual {
      height: 380px;
      border-radius: var(--radius-lg);
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #4A3222 0%, #2B1810 100%);
    }

    .corporate-image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: fill;
    }

    .dark-band h2 {
      color: #fff;
    }

    .corporate-heading {
      font-size: clamp(34px, 3.4vw, 56px) !important;
      line-height: 1.08 !important;
    }

    .dark-band .lede {
      color: rgba(255, 255, 255, .76);
    }

    .check-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 20px;
      margin: 28px 0 34px;
    }

    .check-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14.5px;
      color: rgba(255, 255, 255, .88);
    }

    .check-list svg {
      width: 18px;
      height: 18px;
      color: var(--primary-light);
      flex-shrink: 0;
    }

    /* ---------- VISA ---------- */
    .visa-section {
      background: var(--bg-warm);
    }

    .visa-inner {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .visa-inner p.lede {
      margin: 18px auto 24px;
    }

    .disclaimer {
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.7;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 16px 20px;
      margin: 26px 0;
      text-align: left;
    }

    /* ---------- WHY CHOOSE US ---------- */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .why-card {
      background: #1B2742;
      border: 1px solid var(--primary);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      opacity: 0;
      transform: translateY(28px) scale(.94);
      transition: opacity .65s ease, transform .65s ease, box-shadow .3s ease;
    }

    .why-grid.in .why-card {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .why-grid.in .why-card:nth-child(2) {
      transition-delay: .08s;
    }

    .why-grid.in .why-card:nth-child(3) {
      transition-delay: .16s;
    }

    .why-grid.in .why-card:nth-child(4) {
      transition-delay: .24s;
    }

    .why-grid.in .why-card:nth-child(5) {
      transition-delay: .32s;
    }

    .why-grid.in .why-card:nth-child(6) {
      transition-delay: .40s;
    }

    .why-grid.in .why-card:nth-child(7) {
      transition-delay: .48s;
    }

    .why-grid.in .why-card:nth-child(8) {
      transition-delay: .56s;
    }

    .why-grid.in .why-card:hover {
      background: #1B2742;
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px) scale(1.01);
      transition-delay: 0s;
    }

    .why-card .ico {
      width: 34px;
      height: 34px;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .why-card h4 {
      font-size: 16px;
      margin-bottom: 8px;
      color: #fff;
    }

    .why-card p {
      font-size: 13.5px;
      color: rgba(255, 255, 255, .80);
      line-height: 1.55;
    }

    /* ---------- REVIEWS ---------- */
    .reviews-section {
      background: #191A29;
      overflow: hidden;
    }

    .reviews-head {
      max-width: 680px;
      margin: 0 auto 34px;
      text-align: center;
    }

    .reviews-head h2 {
      margin-top: 8px;
      color: #fff;
    }

    .reviews-head p {
      color: rgba(255, 255, 255, .80);
      font-size: 16px;
      line-height: 1.6;
      margin-top: 12px;
    }

    .reviews-viewport {
      overflow: hidden;
    }

    .reviews-track {
      display: flex;
      transition: transform .6s ease;
    }

    .review-card {
      flex: 0 0 calc((100% - 40px) / 3);
      margin-right: 20px;
      background: #1B2742;
      border: 1px solid rgba(143, 183, 232, .22);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
    }

    .review-stars {
      color: var(--primary);
      font-size: 18px;
      letter-spacing: 2px;
      margin-bottom: 18px;
    }

    .review-card blockquote {
      margin: 0;
      color: #fff;
      font-size: 15px;
      line-height: 1.7;
    }

    .review-author {
      margin-top: auto;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .16);
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }

    .review-author span {
      display: block;
      color: rgba(255, 255, 255, .72);
      font-size: 12px;
      font-weight: 400;
      margin-top: 4px;
    }

    .reviews-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }

    .reviews-dots button {
      width: 24px;
      height: 4px;
      border: 0;
      border-radius: 4px;
      background: rgba(255, 255, 255, .28);
      padding: 0;
      cursor: pointer;
      transition: background .25s ease, width .25s ease;
    }

    .reviews-dots button.active {
      width: 34px;
      background: var(--primary);
    }

    /* ---------- FAQ ---------- */
    .faq-section {
      background: #F6F7F9;
    }

    .faq-inner {
      max-width: 1240px;
      margin: 0 auto;
    }

    .faq-head {
      max-width: 680px;
      text-align: left;
      margin: 0 0 34px;
    }

    .faq-head p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.6;
      margin-top: 12px;
    }

    .faq-list {
      max-width: 680px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-item {
      background: #1B2742;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 14px rgba(27, 39, 66, .08);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 17px 18px;
      background: none;
      border: 0;
      color: #fff;
      font: 600 13px 'Poppins', sans-serif;
      text-align: left;
    }

    .faq-question span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border: 1px solid rgba(232, 135, 30, .55);
      border-radius: 8px;
      color: var(--primary);
      font-size: 20px;
      font-weight: 400;
      line-height: 1;
      flex-shrink: 0;
      transition: transform .25s ease, background .25s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      color: rgba(255, 255, 255, .80);
      font-size: 14px;
      line-height: 1.7;
      transition: max-height .3s ease, padding .3s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 180px;
      padding: 0 60px 16px 18px;
    }

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

    /* ---------- FINAL CTA ---------- */
    .final-cta {
      background: #1B2742;
      color: #fff;
      text-align: center;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .final-cta h2 {
      color: #fff;
      font-size: clamp(30px, 4vw, 46px);
      max-width: 700px;
      margin: 0 auto 34px;
    }

    .final-cta .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }

    .final-cta .btn {
      border-color: var(--primary);
    }

    .final-cta .btn:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #000;
      transform: translateY(-4px);
      box-shadow: 0 10px 24px rgba(232, 135, 30, .28);
    }

    @media (min-width:601px) {
      .final-cta .btn-row .btn {
        padding: 11px 20px;
        font-size: 13px;
      }

      .final-cta .btn-row .btn-primary {
        background: transparent;
        color: #fff;
        border-color: var(--primary);
      }

      .final-cta .btn-row .btn-primary:hover {
        background: var(--primary);
        color: #000;
        border-color: var(--primary);
      }
    }

    /* ---------- FOOTER ---------- */
    footer {
      background: var(--footer-bg);
      color: #000;
      padding-top: 24px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
      gap: 40px;
      padding-bottom: 50px;
    }

    .footer-brand img {
      height: 192px;
      margin-bottom: 2px;
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.7;
      color: #000;
      max-width: 320px;
      margin-bottom: 12px;
    }

    .social-row {
      display: flex;
      gap: 10px;
    }

    .social-row a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(43, 24, 16, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }

    .social-row a:hover {
      background: var(--primary);
    }

    .social-row svg {
      width: 16px;
      height: 16px;
    }

    footer h5 {
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--espresso);
      margin-bottom: 18px;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
    }

    footer ul li {
      margin-bottom: 11px;
    }

    footer ul li a {
      font-size: 14.5px;
      color: #000;
      transition: color .2s;
    }

    footer ul li a:hover {
      color: var(--primary-dark);
    }

    .footer-contact li {
      display: flex;
      gap: 10px;
      font-size: 14px;
      color: #000;
      align-items: flex-start;
    }

    .footer-contact svg {
      width: 17px;
      height: 17px;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--primary-dark);
    }

    .footer-bottom {
      border-top: 1px solid rgba(43, 24, 16, .12);
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
      color: #000;
    }

    .footer-bottom .legal-links {
      display: flex;
      gap: 20px;
    }

    @media (min-width:601px) {
      footer {
        padding-top: 10px;
      }

      .footer-brand img {
        transform: translate(-10px, -12px);
        margin-bottom: -58px;
      }
    }

    /* ---------- WHATSAPP FAB ---------- */
    .wa-fab {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 90;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
      transition: transform .25s;
      animation: waAttention 3.2s ease-in-out infinite;
    }

    .wa-fab:hover {
      transform: scale(1.08);
    }

    .wa-fab svg {
      width: 34px;
      height: 34px;
      color: #fff;
    }

    @keyframes waAttention {

      0%,
      72%,
      100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
      }

      78% {
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 12px 30px rgba(37, 211, 102, .55);
      }

      84% {
        transform: translateY(0) scale(1);
      }
    }

    /* ---------- REVEAL ---------- */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .wa-fab {
        animation: none;
      }

      .why-card,
      .why-grid.in .why-card {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .exp-item,
      .exp-grid.in .exp-item {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .hero-content {
        animation: none;
      }
    }

    html.no-js .reveal {
      opacity: 1;
      transform: none;
    }

    html.no-js .why-card {
      opacity: 1;
      transform: none;
    }

    html.no-js .exp-item {
      opacity: 1;
      transform: none;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width:1024px) {
      .grid-3 {
        grid-template-columns: repeat(2, 1fr);
      }

      .exp-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .dest-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .split {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .split .visual {
        height: 280px;
        order: 2;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .pill-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

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

      .header-actions .btn {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .hero-content {
        padding: 100px 20px 80px;
      }

      .dest-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .check-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width:600px) {
      .container {
        padding: 0 18px;
      }

      .grid-3 {
        grid-template-columns: 1fr;
      }

      #packages .pkg-card.reveal.in {
        transform: translateY(-6px);
        transition: transform .22s ease, box-shadow .22s ease;
      }

      #packages .pkg-card.reveal.in:hover {
        transform: translateY(-9px);
      }

      .exp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      .exp-item {
        padding: 20px 14px;
      }

      .exp-item .ico {
        width: 30px;
        height: 30px;
        margin-bottom: 12px;
      }

      .exp-item h4 {
        font-size: 13px;
        line-height: 1.3;
      }

      .exp-item p {
        font-size: 12px;
        line-height: 1.45;
      }

      .dest-grid {
        grid-template-columns: 1fr 1fr;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      footer {
        padding-top: 4px;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 24px;
      }

      .chip-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 8px;
        margin-top: 28px;
      }

      .chip {
        width: 100%;
        min-height: 38px;
        padding: 8px 10px;
        font-size: 12px;
        line-height: 1.2;
        text-align: center;
        color: var(--primary);
        border-color: var(--primary);
      }

      .chip:last-child {
        grid-column: 1 / -1;
        width: auto;
        justify-self: center;
      }

      .footer-brand img {
        height: 145px;
        margin-bottom: -40px;
        transform: translateX(-10px);
      }

      .pill-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 7px;
      }

      .pill {
        min-height: 96px;
        padding: 8px 4px;
        gap: 7px;
        font-size: 10px;
        line-height: 1.15;
        border-radius: 10px;
      }

      .pill svg {
        width: 30px;
        height: 30px;
        padding: 7px;
      }

      .service-marquee-item {
        color: #000;
      }

      #packages .grid-3>.pkg-card .pkg-foot .btn.btn-outline,
      #packages .grid-3>.pkg-card .pkg-foot .btn.btn-outline:hover {
        background: var(--primary);
        border: 2px solid var(--primary);
        color: #000;
      }

      .packages-heading {
        font-size: 24px !important;
        white-space: normal;
      }

      .review-card {
        flex-basis: 100%;
        margin-right: 12px;
        min-height: 240px;
        padding: 24px 20px;
      }

      .review-card blockquote {
        font-size: 14px;
      }

      .faq-inner {
        max-width: none;
      }

      .faq-head {
        max-width: none;
        text-align: center;
        margin-bottom: 28px;
      }

      .faq-list {
        max-width: none;
      }

      .planner {
        padding-top: 52px;
      }

      .faq-question {
        font-size: 12px;
        padding: 14px 12px;
      }

      .faq-question span {
        width: 30px;
        height: 30px;
        font-size: 19px;
        border-radius: 8px;
      }

      .faq-item.open .faq-answer {
        padding: 0 16px 18px;
      }

      .section {
        padding: 64px 0;
      }

      .hero {
        min-height: 90svh;
        align-items: flex-start;
      }

      .hero-content {
        width: 100%;
        padding: 48px 20px 128px;
        text-align: center;
      }

      .hero-content>span {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 16px;
        letter-spacing: .07em;
      }

      .hero-content h1 {
        font-size: clamp(32px, 9.5vw, 38px);
        line-height: 1.1;
        margin: 18px auto 20px;
      }

      .hero-content p {
        font-size: 15px;
        line-height: 1.65;
        margin: 0 auto 28px;
        max-width: 520px;
      }

      .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 26px;
      }

      .hero-ctas .btn {
        width: 100%;
      }

      .hero-subtlinks {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        font-size: 13px;
      }

      .hero-subtlinks span.sep {
        display: none;
      }

      .hero-dots {
        bottom: 24px;
      }

      .dune-divider {
        display: none;
      }

      #hajj-umrah .section-head {
        align-items: center;
        text-align: center;
      }

      #hajj-umrah .section-head>div {
        width: 100%;
      }

      #hajj-umrah .travel-style-heading {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }

      #hajj-umrah .section-head .lede {
        margin-left: auto;
        margin-right: auto;
      }

      #destinations .section-head {
        align-items: center;
        text-align: center;
      }

      #destinations .section-head>div {
        width: 100%;
      }

      #destinations .section-head .lede {
        margin-left: auto;
        margin-right: auto;
      }

      #why-us .section-head {
        align-items: center;
        text-align: center;
      }

      #why-us .section-head>div {
        width: 100%;
      }

      #why-us .section-head .lede {
        margin-left: auto;
        margin-right: auto;
      }

      #corporate .split>.reveal:first-child {
        text-align: center;
      }

      #corporate .check-list {
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        justify-items: stretch;
        text-align: left;
      }

      .final-cta .btn-row {
        align-items: stretch;
      }

      .final-cta .btn-row .btn {
        width: 100%;
        min-height: 46px;
      }

      .section-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .final-cta {
        padding: 70px 0;
      }
    }

    /* ---------- MOBILE MENU ---------- */
    .mobile-menu {
      position: fixed;
      top: 84px;
      right: 0;
      width: 50vw;
      max-width: 360px;
      background: var(--bg);
      z-index: 200;
      transform: translateX(100%);
      transition: transform .35s ease;
      display: flex;
      flex-direction: column;
      padding: 18px 16px 16px;
      border-radius: 0 0 0 14px;
      box-shadow: -12px 12px 30px rgba(43, 24, 16, .16);
      overflow: hidden;
    }

    .mobile-menu.open {
      transform: translateX(0);
    }

    .mobile-menu-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .mobile-menu-top img {
      height: 64px;
      width: auto;
    }

    .mobile-menu a {
      display: block;
      padding: 11px 8px;
      font-size: 13px;
      line-height: 1.25;
      white-space: nowrap;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      border-bottom: 1px solid var(--border);
      transition: background .2s ease, color .2s ease;
    }

    .mobile-menu a.active {
      background: var(--surface);
      color: var(--primary-dark);
    }

    .mobile-menu a:hover {
      background: var(--surface);
      color: var(--primary-dark);
    }

    .mobile-menu .btn {
      margin-top: 16px;
      width: 100%;
      padding: 10px 14px;
      font-size: 13px;
      line-height: 1.2;
      text-align: center;
      justify-content: center;
    }

    .close-btn {
      background: none;
      border: none;
      font-size: 26px;
      color: var(--espresso);
      line-height: 1;
      padding: 6px;
    }
