 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    img { display: block; max-width: 100%; }
    a  { text-decoration: none; color: inherit; }
    button { cursor: pointer; font-family: inherit; border: none; background: none; }
    ul{padding: 0;}

    :root {
      --bg:           #FBF9F1;
      --bg-dark:      #1b1c17;
      --primary:      #006d44;
      --text-dark:    #1b1c17;
      --text-mid:     #404942;
      --text-light:   #717972;
      --border:       #c0c9c0;
      --white:        #ffffff;
      --card-bg:      #ffffff;

      --font-serif:   'Roboto Serif', Georgia, serif;
      --font-flex:    'Roboto Flex', sans-serif;
      --font-logo:    'Libre Baskerville', Georgia, serif;

      --space-1:  0.25rem;
      --space-2:  0.5rem;
      --space-3:  0.75rem;
      --space-4:  1rem;
      --space-5:  1.25rem;
      --space-6:  1.5rem;
      --space-8:  2rem;
      --space-10: 2.5rem;
      --space-12: 3rem;
      --space-16: 4rem;
      --space-20: 5rem;

      --container: 90rem;
      --content:   70.5rem;
      --radius-sm: 0.5rem;
      --radius-md: 0.75rem;
      --radius-full: 9999px;
    }

    body {
      background-color: var(--bg);
      color: var(--text-dark);
      font-family: var(--font-flex);
      font-size: 1rem;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }
    section{
      padding: var(--space-20) 0;
    }

    /* .outer {
      width: 100%;
      padding-inline: var(--space-20);
    } */
    .inner {
      max-width: var(--content);
      margin-inline: auto;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      background: var(--primary);
      color: var(--white);
      font-family: var(--font-flex);
      font-weight: 500;
      font-size: 1.125rem;
      letter-spacing: 0.00625rem;
      padding: 0.5rem 2.125rem;
      border-radius: var(--radius-full);
      border: 1px solid #005535;
      transition: background 0.2s;
    }
    .btn-primary:hover { background: transparent!important; color: #005535;border: 1px solid #005535;}
    .btn-primary:hover svg{fill: #005535;}

    .btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle{background: transparent!important; color: #005535;border: 1px solid #005535;}
    .btn-check:active+.btn-primary svg, .btn-check:checked+.btn-primary svg, .btn-primary.active svg, .btn-primary:active svg, .show>.btn-primary.dropdown-toggle svg{fill: #005535;}
    
.btn-check:focus+.btn-primary, .btn-primary:focus{background: transparent!important; color: #005535;border: 1px solid #005535;box-shadow: 0 0 0 .25rem #00553547!important;}
.btn-check:focus+.btn-primary svg, .btn-primary:focus svg{fill: #005535;}
.btn-primary:disabled{opacity:.65;cursor:not-allowed;pointer-events:none;}

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--primary);
      font-family: var(--font-flex);
      font-weight: 500;
      font-size: 0.875rem;
      letter-spacing: 0.00625rem;
      padding: 0.625rem 1rem;
      border-radius: var(--radius-full);
      border: 1px solid var(--text-light);
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-outline:hover { border-color: var(--primary); }

    /* ═══════════════════════════════════════════════════════════════
       NAV + HERO
    ═══════════════════════════════════════════════════════════════ */
    .hero-wrap {
      background: var(--bg);
      display: flex;
      flex-direction: column;
    }

 
    nav.navbar {
      background: #F0EEE6;
      width: 100%;
      padding-inline: var(--space-20);
    }
    .navbar__inner {
      max-width: var(--container);
      margin-inline: auto;
      height: 4.875rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .navbar__logo {
      font-family: var(--font-logo);
        font-weight: 700;
        font-size: 1.75rem;
        color: var(--text-mid);
        letter-spacing: -0.0625rem;
    }
    .navbar__links {
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all .5s ease;
    }
    .navbar__link {
      display: flex;
      align-items: center;
      padding: 0.875rem 1rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-mid);
      letter-spacing: 0.00625rem;
      white-space: nowrap;
    }
    .navbar__link:hover { color: var(--primary); }
    .navbar__sep {
      width: 1px;
      height: 1.5rem;
      background: var(--border);
      flex-shrink: 0;
    }
    .navbar__expert {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 0.75rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-mid);
    }
    .navbar__expert svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

    .hero-headline {
      background: #F0EEE6;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 5rem;
      padding-bottom: 0;
      text-align: center;
    }
    .hero-headline h1 {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: 3.5625rem;
      line-height: 4rem;
      letter-spacing: -0.015625rem;
      color: var(--text-dark);
      margin-bottom: var(--space-8);
    }
    .hero-headline__sub {
      font-size: 0.875rem;
      color: var(--text-mid);
      letter-spacing: 0.03125rem;
      margin-bottom: 0.75rem;
    }
    .hero-cta-group {
      display: flex;
      gap: 0.8125rem;
      align-items: center;
      justify-content: center;
    }

    /* — Hero landmark image — */
    .hero-image {
      background: #F0EEE6;
      width: 100%;
      padding-top: var(--space-10);
      overflow: hidden;
    }
    .hero-image img {
      width: 100%;
      object-fit: contain;
      display: block;
      mix-blend-mode: darken;
    }

    /* ═══════════════════════════════════════════════════════════════
       SECTION — ABOUT (Hassle-free reservations)
    ═══════════════════════════════════════════════════════════════ */
    /* .about-section {
      padding-block: var(--space-20);
    } */
    .about-section .inner {
      display: flex;
      gap: var(--space-6);
      align-items: center;
      flex-wrap: wrap;
    }
    .about-text {
      flex: 1 1 0;
    }
    /* .about-text h2 {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: 2.25rem;
      line-height: 2.75rem;
      color: var(--text-dark);
      margin-bottom: var(--space-6);
    } */
    .about-text p {
      font-size: 1rem;
      line-height: 1.5rem;
      letter-spacing: 0.03125rem;
      color: var(--text-dark);
      display: flex;
      padding-bottom: 1rem;
      flex-direction: column;
      align-items: flex-start;
      justify-self: stretch;
    }
    .about-image {
      flex: 1 1 0;
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    .about-image img {
      width: 100%;
      height: 19.5rem;
      object-fit: cover;
      border-radius: var(--radius-md);
    }

    /* ═══════════════════════════════════════════════════════════════
       SECTION — FEATURES (Life is too short)
    ═══════════════════════════════════════════════════════════════ */
    /* .features-section {
      padding-block: var(--space-20);
    } */
    .section-heading {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: 2.25rem;
      line-height: 3.25rem;
      /* text-align: center; */
      color: var(--text-dark);
      margin-bottom: var(--space-5);
    }
    .features-grid {
      display: flex;
      gap: var(--space-6);
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .feature-card {
      flex: 1 1 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
      /* padding-bottom: 1.5rem; */
    }
    .feature-card__icon {
      width: 7.5rem; /* 120px */
      height: 7.5rem;
    }
    .feature-card__icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .feature-card h3 {
      font-weight: 500;
      font-size: 1.375rem; /* 22px */
      line-height: 1.75rem;
      color: var(--text-dark);
    }
    .feature-card p {
      font-size: 1rem;
      line-height: 1.5rem;
      letter-spacing: 0.03125rem;
      color: var(--text-dark);
    }
    .features-cta {
      display: flex;
      justify-content: center;
      margin-top: var(--space-10);
    }

    /* ═══════════════════════════════════════════════════════════════
       SECTION — DESTINATIONS (Flights grid)
    ═══════════════════════════════════════════════════════════════ */
    .destinations-section {
      padding-block: var(--space-20);
    }
    .destinations-grid {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-4);
      margin-top: var(--space-8);
    }
    .dest-card {
      flex: 0 1 calc(20% - var(--space-4));
      border-radius: var(--radius-sm);
      overflow: hidden;
      border: 1px solid var(--border);
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .dest-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.1); }
    .dest-card__img {
      width: 100%;
      height: 9.5rem;
      object-fit: cover;
    }
    .dest-card__label {
      padding: 0.5rem 0.5rem 0.5rem 0.75rem;
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--text-dark);
      background: var(--white);
    }

    /* ═══════════════════════════════════════════════════════════════
       SECTION — HOW IT WORKS (3-steps)
    ═══════════════════════════════════════════════════════════════ */
    .steps-section {
      padding-block: var(--space-20);
    }
    .steps-heading {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: 2.8125rem;
      line-height: 3.25rem;
      text-align: center;
      color: var(--text-dark);
      margin-bottom: var(--space-8);
      max-width: 39rem;
      margin-inline: auto;
    }
    .steps-grid {
      display: flex;
      gap: var(--space-6);
      align-items: stretch;
      margin-top: var(--space-8);
      flex-wrap: wrap;
    }
    .step-card {
      flex: 1 1 0;
      border-radius: 0.75rem;
      background: #F0EEE6;
      padding: 1.5rem 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.75rem;
    }
    .step-card__num {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: #D0E8D6;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #000;
      text-align: center;
      font-family: "Roboto Flex";
      font-size: 1.375rem;
      font-style: normal;
      font-weight: 500;
      line-height: 1.75rem;
    }
    .step-card h3 {
      font-weight: 500;
      font-size: 1.375rem;
      line-height: 1.75rem;
      color: var(--text-dark);
    }
    .step-card p {
      font-size: 1rem;
      line-height: 1.5rem;
      color: #404942;
    }

    /* ═══════════════════════════════════════════════════════════════
       SECTION — GALLERY (Find your perfect stay)
    ═══════════════════════════════════════════════════════════════ */
    .gallery-section {
      padding-block: var(--space-20);
    }
    .gallery-grid {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-2);
      margin-top: var(--space-8);
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
      /* border-radius: var(--radius-sm); */
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s;
    }
    .gallery-item:hover img { transform: scale(1.04); }
    .gallery-item__label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(27,28,23,0.55);
      color: var(--white);
      padding: 0.625rem 1.25rem 0.875rem;
      font-size: 1rem;
      font-weight: 500;
    }
    /* grid layout: row 1 = small | large  |  row 2 = small | small | no-label */
    .gallery-row {
      display: flex;
      gap: var(--space-1);
      width: 100%;
    }
    .gallery-row + .gallery-row { margin-top: var(--space-1); }
    .gi-small { flex: 0 0 33%; height: 18.875rem; border-top-left-radius: var(--radius-sm);}
    .gi-large { flex: 1 1 0;   height: 18.875rem; border-top-right-radius: var(--radius-sm);}
    .gi-third { flex: 1 1 0;   height: 18.875rem; border-bottom-right-radius: var(--radius-sm);}
    .gallery-row + .gallery-row .gi-small{border-top-left-radius: 0;border-bottom-left-radius: var(--radius-sm);}

    /* ═══════════════════════════════════════════════════════════════
       SECTION — TESTIMONIALS
    ═══════════════════════════════════════════════════════════════ */
    .testimonials-section {
      padding-block: var(--space-20);
    }
    .testimonials-row {
      display: flex;
      gap: var(--space-6);
      margin-top: var(--space-8);
      align-items: stretch;
    }
    .testimonial-card {
      padding: 0.75rem 1.25rem;
    }
    .testimonial-card__body {
      flex: 1 1 auto;
      color: #1B1C17;
      font-family: "Roboto Flex";
      font-size: 0.875rem;
      font-style: normal;
      font-weight: 500;
      line-height: 1.25rem;
      letter-spacing: 0.00625rem;
      margin-bottom: 0;
    }
    .testimonial-card__author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: var(--space-8);
    }
    .testimonial-card__avatar {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1px solid #C0C9C0;
      background: #D0E8D6;
      color: #1B1C17;
      text-align: center;
      font-family: "Roboto Flex";
      font-size: 1.25rem;
      font-style: normal;
      font-weight: 400;
      line-height: 1.5rem;
      letter-spacing: 0.03125rem;
    }
    .testimonial-card__name {
      color: var(--text-dark);
      font-family: "Roboto Flex";
      font-size: 1rem;
      font-style: normal;
      font-weight: 500;
      line-height: 1.5rem;
      letter-spacing: 0.00938rem;
    }
    .stars {
      display: flex;
      gap: 0.125rem;
      margin-top: 0.125rem;
    }
    .stars svg {width: 1.125rem;height: 1.125rem;background: #00B67A;}
    .testimonials-cta {
      display: flex;
      justify-content: center;
      margin-top: var(--space-8);
    }

    /* ═══════════════════════════════════════════════════════════════
       SECTION — NEWSLETTER
    ═══════════════════════════════════════════════════════════════ */
    .newsletter-section {
      background: #F0EEE6;
      padding-block: var(--space-12);
    }
    .newsletter-section .inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: var(--space-6);
    }
    .newsletter-section h2 {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: 2.8125rem;
      line-height: 3.25rem;
      color: #1B1C17;
      max-width: 44.5rem;
    }
    .newsletter-section p {
      font-size: 0.9375rem;
      color: rgba(255,255,255,.75);
      max-width: 60.9375rem;
      line-height: 1.625rem;
    }
    .newsletter-form {
      display: flex;
      align-items: center;
      background: #2c2d27;
      border-radius: var(--radius-full);
      overflow: hidden;
      padding: 0.25rem 0.25rem 0.25rem 1.25rem;
      gap: 0.75rem;
      width: 31.25rem;
      max-width: 100%;
    }
    .newsletter-form svg { width: 1.5rem; height: 1.5rem; color: rgba(255,255,255,.4); flex-shrink: 0; }
    .newsletter-form input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      color: var(--white);
      font-family: var(--font-flex);
      font-size: 0.9375rem;
      placeholder-color: rgba(255,255,255,.4);
    }
    .newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
    .newsletter-form .btn-subscribe {
      background: var(--primary);
      color: var(--white);
      font-family: var(--font-flex);
      font-weight: 500;
      font-size: 0.875rem;
      padding: 0.625rem 1.75rem;
      border-radius: var(--radius-full);
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s;
    }
    .newsletter-form .btn-subscribe:hover { background: #005535; }
    .newsletter-perks {
      display: flex;
      gap: var(--space-8);
      align-items: center;
      margin-top: var(--space-2);
      flex-wrap: wrap;
    }
    .newsletter-perk {
      display: flex;
      align-items: center;
      gap: 0.5625rem;
      color: #1B1C17;
      font-family: "Roboto Flex";
      font-size: 1rem;
      font-style: normal;
      font-weight: 400;
      line-height: 1.5rem;
      letter-spacing: 0.03125rem;
    }
    .newsletter-perk svg { width: 1.5rem; height: 1.5rem; fill: var(--primary); flex-shrink: 0; }

    /* ═══════════════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════════════ */
    footer {
      background: var(--bg);
      padding-top: var(--space-12);
      border-top: 1px solid #C0C9C0;
    }
    .footer-top {
      /* padding-inline: var(--space-20); */
      max-width: var(--container);
      margin-inline: auto;
      display: flex;
      gap: var(--space-16);
      justify-content: space-between;
      align-items: flex-start;
      padding-bottom: var(--space-12);
      flex-wrap: wrap;
    }
    .footer-brand {
      flex: 0 0 32.8rem;
    }
    .footer-brand__logo {
        margin-bottom: var(--space-3);
        color: #404942;
        font-family: Sitka;
        font-size: 2rem;
        font-style: normal;
        font-weight: 700;
        line-height: 2.19338rem;
        letter-spacing: -0.0625rem;
    }
    .footer-brand__desc {
      max-width: 28rem;
      margin-bottom: var(--space-6);
      color: #1B1C17;
      font-family: "Roboto Flex";
      font-size: 0.875rem;
      font-style: normal;
      font-weight: 400;
      line-height: 1.25rem;
      letter-spacing: 0.01563rem;
    }
    .footer-socials {
      display: flex;
      gap: var(--space-4);
    }
    .footer-socials a {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--text-mid);
      transition: color 0.2s;
    }
    .footer-socials a:hover { color: var(--primary); }
    .footer-socials svg { width: 1.5rem; height: 1.5rem; }

    .footer-col h4 {
      margin-bottom: var(--space-6);
      color: #1B1C17;
      font-family: "Roboto Flex";
      font-size: 0.875rem;
      font-style: normal;
      font-weight: 500;
      line-height: 1.25rem;
      letter-spacing: 0.00625rem;
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
    }
    .footer-col ul li a {
        transition: color 0.2s;
        color: #1B1C17;
        font-family: "Roboto Flex";
        font-size: 0.875rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.25rem;
        letter-spacing: 0.01563rem;
    }
    .footer-col ul li a:hover { color: var(--primary); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 1.5625rem 0;
      /* max-width: var(--container);
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between; */
    }
    .footer-bottom p {
        color: #1B1C17;
        font-family: "Roboto Flex";
        font-size: 0.875rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.25rem;
        letter-spacing: 0.01563rem;
        margin-bottom: 0;
    }
    .copyright_flex{
      display: flex;
      align-items: center;
      justify-content: space-between;
    }





 
.custom-popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  z-index: 999;
}
.custom-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all 0.3s ease;
  width: 38%;
}
.custom-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.popup-content {
  background: #fff;
  border-radius: 16px;
  padding: 30px 30px 0;
  width: 100%;
  text-align: center;
  position: relative;
}
.popup-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}
.popup-content h2 {
  margin-bottom: 15px;
  color: #1B1C17;
  text-align: center;
  font-family: "Roboto Serif";
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.4375rem;
  letter-spacing: -0.01563rem;
}
.quote-btn {
    margin-bottom: 20px;
    border-radius: 62.4375rem;
    border: 1px solid #006D44;
    background: #EEF3EB;
    padding: 0.25rem 0.75rem;
    color: #1B1C17;
    text-align: center;
    font-family: "Roboto Flex";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.03125rem;
    min-width: 11.75rem;
}
.call-box {
  border-radius: 0.5rem;
  background: #F7F8FB;
  padding: 0.75rem;
}
.call-btn {
  display: block;
  background: #0a6b3f;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  border: 1px solid #0a6b3f;
  transition: all .5s ease;
  font-size: 2rem;
  font-weight: bold;
}
.call-btn:hover{
  background: transparent;
  color: #0a6b3f;
}
.call-btn:hover svg {
    fill: #0a6b3f;
}
.popup-img {
    width: 60%;
    margin: 0 auto;
    /* margin-top: 20px; */
}
.call-btn svg{
  font-size: 2rem;
}
.call-box p {
    color: #1B1C17;
    text-align: center;
    font-family: "Roboto Flex";
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5rem;
}






.tripSwiper {transition-timing-function: linear !important;}
.tripSwiper .swiper-wrapper {transition-timing-function: linear !important;}
.tripSwiper .swiper-slide {width: 20rem;}
.trip_card {position: relative;z-index: 1;}
.trip_card .overlay {border-radius: 0 0 0.75rem 0.75rem;background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);position: absolute;bottom: 0;width: 100%;left: 0;padding: 3rem 1rem 1rem 1rem;color: #fff;}
.trip_card .overlay h3 {color: #FFF;font-family: "Roboto Flex";font-size: 1rem;font-style: normal;font-weight: 500;line-height: 1.5rem;letter-spacing: 0.00938rem;margin-bottom: .25rem;}
.trip_card .overlay p {color: #FFF;font-family: "Roboto Flex";font-size: 0.6875rem;font-style: normal;font-weight: 500;line-height: 1rem;letter-spacing: 0.03125rem;}
.trip_card img{width: 100%;height: 400px;object-fit: cover;border-radius: .5rem;}
.p-relative {position: relative;}
.testimonial_btns>div {border: 1px solid rgba(0, 0, 0, 0.00);width: 2.5rem;height: 2.5rem;border-radius: 50%;background: #D0E8D6;}
.testimonial_btns>div::after{color: #000;font-size: 1rem;}
.testimonial_btns {position: absolute;width: calc(100% + 8rem);top: 50%;left: -4rem;}
.contact_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-end;
}
/* .contact_flex .popup-img{width: auto;} */
.contact_flex .call-btn{text-align: center;}
.contact_form_box {border-radius: 0.75rem;background: #F0EEE6;padding: 1.5rem;}
.contact_left {width: 50%;}
.contact_right {width: 35%;}
.contact_right img{width: 100%;}
input,textarea{width: 100%;padding: .5rem;background-color: transparent;border: 0;border-bottom: 1px solid #ccc;}
input:focus-visible,textarea:focus-visible {border: 0;outline: 0;border-bottom: 1px solid #ccc;box-shadow: 0px 3px 1px 0px #dbdbdb;}
.form-error{color:#b42318;font-size:.875rem;margin-top:.35rem;}
.grecaptcha-badge{
  visibility:visible!important;
  opacity:1!important;
  z-index:999999!important;
  right:14px!important;
  bottom:14px!important;
  width:70px!important;
  overflow:hidden!important;
  transition:width .25s ease!important;
}
.grecaptcha-badge:hover{width:256px!important;}


/* ─── HAMBURGER BUTTON ───────────────────────────────────── */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1B1C17;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate to X when open */
.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.container-sm{width: 80%;}
.container-sm ul{padding-left: 1.15rem;}

.container-sm h4{
  font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.75rem;
    color: var(--text-dark);
}
table{
  width: 100%;
  table-layout: fixed;
}
table td,table th{border: 1px solid #ccc;padding: .5rem;}


.terms-tabs {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.terms-tabs__list {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    white-space: nowrap;
}

.terms-tabs__list a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: 0.2s;
}

.terms-tabs__list a:hover {
    background: #f3f3f3;
}

.terms-tabs__list a.active {
    background: var(--primary);
    color: #fff;
}










/* ─── MOBILE MENU ────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar__hamburger {display: flex;}
  .contact_left{width: 100%;}
  .contact_right{width: 100%;margin-top: 1rem;}

  .navbar__links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 75vw;
    max-width: 20rem;
    height: 100vh;
    background: #fff;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.35s ease;
    transform: translateX(100%);
  }

  .navbar__links.open {
    display: flex;
    transform: translateX(0);
  }

  .navbar__link,
  .navbar__sep {
    display: block;
  }

  .navbar__sep {
    width: 100%;
    height: 1px;
    background: #e8e8e8;
    margin: 0;
  }

  .navbar__link,
  .navbar__expert,
  .btn-outline {
    width: 100%;
    padding: 0.875rem 0;
    font-size: 1rem;
    border: none;
    background: none;
    color: #1B1C17;
    text-decoration: none;
  }

  .btn-outline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #006D44;
    border-radius: 0.5rem;
    color: #006D44;
    font-weight: 500;
  }

  .navbar__expert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Backdrop overlay */
  .navbar__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .navbar__backdrop.open {
    display: block;
  }
}


@media (max-width: 767px) {
  nav.navbar{padding: var(--space-5) 0;}
  html{font-size: 13px;}
  section {padding: var(--space-10) 0;}
  .navbar__links{display: none;}
  .footer-brand{flex: auto;}
  .btn-primary{padding: 0.5rem 1.125rem;}
  .about-text{flex: auto;}
  .feature-card{width: calc(50% - 1rem);flex:auto;}
  .dest-card{flex: 0 1 calc(50% - var(--space-2));}
  .step-card{flex: auto;}
  .testimonial_btns{display: none;}
  .gi-small{height: 13.875rem;}
  .gi-large{height: 13.875rem;}
  .gi-third{height: 13.875rem;}
  .trip_card img{height: 330px;}
  /* .footer-col ul li a{font-size: 1rem;} */
  .custom-popup{width: 90%;}
  .newsletter-perk{width: 100%;font-size: 1.25rem;}
  .newsletter-perks{gap: var(--space-4);}
  .footer-top{gap: var(--space-6);}
  .footer-col h4{font-size: 1.2rem;}
  /* .about-text h2{font-size: 1.75rem;} */
  .about-text h2 br{display: none;}
  .section-heading{font-size: 2rem;line-height: 2.5rem;margin-bottom: 1rem;}
  .destinations-grid{justify-content: space-between;}
  .newsletter-section .testimonials-cta{margin-top: 0;}
  .footer-socials svg {width: 2rem;height: 2rem;}
}

