/* ==========================================================================
   SHREE RAM TOURISM - STYLESHEET
   Sections:
   1. CSS Reset
   2. Root Variables
   3. Global / Base Styles
   4. (Header/Navbar CSS now lives in header.html)
   5. Hero Section
   6. Features Bar
   7. About Us Section
   8. Our Packages Section
   9. Why Choose Us Section
   10. Contact Us / Enquiry Form Section
   11. Places You'll Experience (Destinations) Section
   12. (Footer CSS now lives in footer.html)
   13. Responsive Media Queries
   ========================================================================== */


/* ==========================================================================
   1. CSS RESET
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

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

button {
  font: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

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


/* ==========================================================================
   2. ROOT VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --color-primary-green: #2f4d33;      /* Used for headings & CTA button */
  --color-accent-orange: #e07b28;      /* Logo icon accent color */
  --color-white: #ffffff;
  --color-text-dark: #1c1c1c;
  --color-overlay: rgba(0, 0, 0, 0.15);
  --color-cream: #fdf3e1;              /* About section background */
  --color-text-muted: #4a4a4a;         /* Body copy in About section */
  --color-packages-bg: #241d18;        /* Our Packages section fallback background */
  --color-packages-overlay: rgba(20, 15, 10, 0.68); /* Dark tint over the bg photo so white text stays readable */
  --color-packages-text-muted: #c9beb5; /* Muted text on the dark packages bg */

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  /* Layout */
  --max-width: 1440px;
  --header-height: 90px;
}


/* ==========================================================================
   3. GLOBAL / BASE STYLES
   ========================================================================== */
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn--primary {
  background-color: var(--color-primary-green);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: #253f29;
  transform: translateY(-1px);
}

.sr-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}


/* ==========================================================================
   4. HEADER / NAVBAR
   ========================================================================== */
 /* ============================================================
     HEADER / NAVBAR STYLES
     ============================================================ */
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 21px;
  }

  .navbar {
    width: 1330px;
    max-width: calc(100% - 4rem);
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    background-color: var(--color-white);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }

  /* --- Logo --- */
  .navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 135px;
    height: 50px;
  }

  .navbar__logo-img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }

  .navbar__logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    color: var(--color-text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* --- Nav Links (plain, no separators) --- */
  .navbar__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }

  .navbar__links li a {
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    transition: opacity 0.3s ease;
  }

  .navbar__links li a:hover {
    opacity: 0.65;
  }

  /* --- CTA Button --- */
  .navbar__cta .btn {
    width: 200px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 9px;
    white-space: nowrap;
  }

  /* --- Hamburger Toggle (hidden on desktop) --- */
  .navbar__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    flex-shrink: 0;
  }

  .navbar__toggle svg {
    width: 26px;
    height: 26px;
    color: var(--color-text-dark);
  }

  /* --- Mobile/Tablet Dropdown Menu (hidden until toggled open) --- */
  .navbar__mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    width: 1330px;
    max-width: calc(100% - 4rem);
    margin-top: 10px;
    background-color: var(--color-white);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 1.5rem;
  }

  .navbar__mobile-menu.is-open {
    display: flex;
  }

  .navbar__mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .navbar__mobile-links a {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-dark);
  }

  .navbar__mobile-cta {
    width: 100%;
  }

  /* ============================================================
     HEADER RESPONSIVE MEDIA QUERIES
     (moved out of style.css's shared breakpoints, header-only rules)
     ============================================================ */
  @media (max-width: 992px) {
    .navbar__links,
    .navbar__cta {
      display: none;
    }

    .navbar__toggle {
      display: flex;
    }
  }

  @media (max-width: 768px) {
    .site-header {
      padding-top: 1rem;
    }

    .navbar {
      padding: 8px 1.25rem;
      border-radius: 12px;
    }
  }

  @media (max-width: 480px) {
    .navbar__logo-text {
      font-size: 0.9rem;
    }

    .navbar__logo {
      width: 110px;
    }
  }


/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 956px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  padding-top: calc(var(--header-height) + 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__title {
  width: 112%;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: 0;
  text-align: center;
  color: #111111;
  text-transform: uppercase;
}

.hero__title--highlight {
  color: var(--color-primary-green);
}

.hero__title-line1 {
  display: inline-block;
  white-space: nowrap;
}

.hero__description {
  width: 104%;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
}


/* ==========================================================================
   6. FEATURES BAR
   ========================================================================== */
.features-bar {
  position: relative;
  z-index: 5;
  max-width: 1160px;
  width: 100%;
  margin: -55px auto -27px;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 1.75rem 2.5rem;
  overflow: hidden;
}

.features-bar__container {
  width: 100%;
  overflow: hidden;
}

.features-bar__track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: max-content;
  gap: 4rem;
  animation: features-bar-scroll 22s linear infinite;
}

.features-bar:hover .features-bar__track,
.features-bar:focus-within .features-bar__track {
  animation-play-state: paused;
}

@keyframes features-bar-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-text-dark);
  flex-shrink: 0;
}

.feature-item__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--color-accent-orange);
}

.feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .features-bar__track {
    animation: none;
  }
}


/* ==========================================================================
   7. ABOUT US SECTION
   ========================================================================== */
.about {
  position: relative;
  background: url('../../assets/images/about-us-bg.webp') center / cover no-repeat;
  background-color: #FFF9EB;
  padding: 70px 3rem;
  overflow: hidden;
}

.about::before,
.about::after {
  content: '';
  position: absolute;
  display: none;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.about::before {
  top: 0;
  left: 0;
  background-image: url('../../assets/images/about_pattern_right.png');
}

.about::after {
  bottom: 5px;
  right: -61px;
  background-image: url('../../assets/images/about_pattern_left.png');
}

.about__container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 501px 1fr;
  align-items: center;
  gap: 3.5rem;
}

.about__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) {

  .about__image-wrapper {
      transform: translateY(-70px);
  }
  .about__image-frame {
        width: 300px;
    }

}

/* .about__image-frame {
  width: 501px;
  max-width: 100%;
  aspect-ratio: 300 / 260;
  overflow: visible;
  border: 5px solid var(--color-accent-orange);
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20300%20260%27%3E%3Cpath%20d%3D%27M%20150%2C6%20L%20172%2C32%20L%20198%2C10%20C%20218%2C2%20248%2C4%20264%2C28%20C%20282%2C54%20290%2C80%20288%2C114%20C%20286%2C150%20283%2C178%20278%2C198%20C%20273%2C216%20260%2C228%20242%2C236%20C%20216%2C247%20186%2C250%20150%2C252%20C%20114%2C250%2084%2C247%2058%2C236%20C%2040%2C228%2027%2C216%2022%2C198%20C%2017%2C178%2014%2C150%2012%2C114%20C%2010%2C80%2018%2C54%2036%2C28%20C%2052%2C4%2082%2C2%20102%2C10%20L%20128%2C32%20L%20150%2C6%20Z%27/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20300%20260%27%3E%3Cpath%20d%3D%27M%20150%2C6%20L%20172%2C32%20L%20198%2C10%20C%20218%2C2%20248%2C4%20264%2C28%20C%20282%2C54%20290%2C80%20288%2C114%20C%20286%2C150%20283%2C178%20278%2C198%20C%20273%2C216%20260%2C228%20242%2C236%20C%20216%2C247%20186%2C250%20150%2C252%20C%20114%2C250%2084%2C247%2058%2C236%20C%2040%2C228%2027%2C216%2022%2C198%20C%2017%2C178%2014%2C150%2012%2C114%20C%2010%2C80%2018%2C54%2036%2C28%20C%2052%2C4%2082%2C2%20102%2C10%20L%20128%2C32%20L%20150%2C6%20Z%27/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
} */

.about__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Om / logo badge that overlaps the bottom of the plaque, like the
   reference design. Drop your logo image inside .about__badge in the
   HTML — it's sized and clipped to the circle automatically. */
/* .about__badge {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--color-cream, #FFF9EB);
  border: 3px solid var(--color-accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
} */

/* .about__badge-icon {
  width: 60%;
  height: 60%;
  object-fit: contain;
} */

.about__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-accent-orange);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about__arrow {
  font-size: 1.1rem;
}

.about__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
  word-break: normal;
  max-width: 100%;
}

.about__text {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  overflow-wrap: break-word;
  word-break: normal;
  max-width: 100%;
}

.about__content {
  width: 100%;
  min-width: 0;
}

.about__content .btn {
  margin-top: 0.75rem;
}


/* ==========================================================================
   8. OUR PACKAGES SECTION
   ========================================================================== */
.packages {
  position: relative;
  background: linear-gradient(rgb(64 60 56 / 68%), var(--color-packages-overlay)),
              url('../../assets/images/our-packages.webp') center / cover no-repeat;
  background-color: var(--color-packages-bg);
  padding: 60px 15px;
  overflow: hidden;
}

.packages__container {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.packages__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.packages__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-accent-orange);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.packages__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.packages__subtitle {
  font-size: 1.05rem;
  color: var(--color-packages-text-muted);
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}



.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 424px;
  margin: 0 auto;
  border: 1px solid transparent;
  border-radius: 14px;
  overflow: hidden;
}

.package-card__image-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 424 / 328;
  overflow: hidden;
  box-sizing: border-box;

  /* Mihrab/temple-arch mask: cuts the top corners of the frame into a
     tiered, cusped dome shape (traced from the reference design) so the
     section background shows through behind it. */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20424%20328%27%3E%3Cpath%20d%3D%27M%20212%2C0%20C%20213.7%2C1.3%20218.8%2C5.7%20222.0%2C8.0%20C%20225.2%2C10.3%20227.8%2C12.0%20231.0%2C14.0%20C%20234.2%2C16.0%20237.2%2C18.0%20241.0%2C20.0%20C%20244.8%2C22.0%20249.5%2C23.8%20254.0%2C26.0%20C%20258.5%2C28.2%20262.8%2C30.8%20268.0%2C33.0%20C%20273.2%2C35.2%20279.0%2C37.0%20285.0%2C39.0%20C%20291.0%2C41.0%20299.0%2C42.8%20304.0%2C45.0%20C%20309.0%2C47.2%20312.0%2C49.8%20315.0%2C52.0%20C%20318.0%2C54.2%20320.5%2C56.3%20322.0%2C58.0%20C%20323.5%2C59.7%20322.8%2C58.0%20324.0%2C62.0%20C%20325.2%2C66.0%20328.5%2C77.2%20329.0%2C82.0%20C%20329.5%2C86.8%20324.8%2C89.3%20327.0%2C91.0%20C%20329.2%2C92.7%20335.8%2C90.2%20342.0%2C92.0%20C%20348.2%2C93.8%20358.5%2C98.2%20364.0%2C102.0%20C%20369.5%2C105.8%20372.0%2C110.5%20375.0%2C115.0%20C%20378.0%2C119.5%20380.5%2C124.8%20382.0%2C129.0%20C%20383.5%2C133.2%20382.5%2C136.0%20384.0%2C140.0%20C%20385.5%2C144.0%20385.8%2C148.8%20391.0%2C153.0%20C%20396.2%2C157.2%20410.2%2C161.8%20415.0%2C165.0%20C%20419.8%2C168.2%20418.5%2C169.7%20420.0%2C172.0%20C%20421.5%2C174.3%20423.3%2C177.8%20424.0%2C179.0%20L%20424%2C328%20L%200%2C328%20L%200%2C179%20C%200.7%2C177.8%202.5%2C174.3%204.0%2C172.0%20C%205.5%2C169.7%204.2%2C168.2%209.0%2C165.0%20C%2013.8%2C161.8%2027.8%2C157.2%2033.0%2C153.0%20C%2038.2%2C148.8%2038.5%2C144.0%2040.0%2C140.0%20C%2041.5%2C136.0%2040.5%2C133.2%2042.0%2C129.0%20C%2043.5%2C124.8%2046.0%2C119.5%2049.0%2C115.0%20C%2052.0%2C110.5%2054.5%2C105.8%2060.0%2C102.0%20C%2065.5%2C98.2%2075.8%2C93.8%2082.0%2C92.0%20C%2088.2%2C90.2%2094.8%2C92.7%2097.0%2C91.0%20C%2099.2%2C89.3%2094.5%2C86.8%2095.0%2C82.0%20C%2095.5%2C77.2%2098.8%2C66.0%20100.0%2C62.0%20C%20101.2%2C58.0%20100.5%2C59.7%20102.0%2C58.0%20C%20103.5%2C56.3%20106.0%2C54.2%20109.0%2C52.0%20C%20112.0%2C49.8%20115.0%2C47.2%20120.0%2C45.0%20C%20125.0%2C42.8%20133.0%2C41.0%20139.0%2C39.0%20C%20145.0%2C37.0%20150.8%2C35.2%20156.0%2C33.0%20C%20161.2%2C30.8%20165.5%2C28.2%20170.0%2C26.0%20C%20174.5%2C23.8%20179.2%2C22.0%20183.0%2C20.0%20C%20186.8%2C18.0%20189.8%2C16.0%20193.0%2C14.0%20C%20196.2%2C12.0%20198.8%2C10.3%20202.0%2C8.0%20C%20205.2%2C5.7%20210.3%2C1.3%20212.0%2C0.0%20Z%27/%3E%3C/svg%3E");
  mask-image: url("../../assets/images/shape.webp");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* Border overlay: drawn as a separate stroked SVG on the *unmasked*
   .package-card wrapper (not on .package-card__image-frame itself).
   A CSS mask clips its whole element, pseudo-elements included, so a
   border or an ::after placed on the masked frame gets clipped away
   along the curved parts of the arch in some browsers (only the
   straight bottom edges survive). Painting the same path as a stroke
   on the unmasked parent, sized to match the frame, guarantees the
   gold outline follows the curve everywhere. */
.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 424 / 328;
  pointer-events: none;
  z-index: 2;
  background-image: url("../../assets/images/shapee.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.package-card__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center top;
}

.package-card__info {
  width: 100%;
  background-color: var(--color-cream);
  border: 3px solid var(--color-accent-orange);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 1.5rem 1.75rem 1.75rem;
  margin-top: -1px;
  box-sizing: border-box;
}

.package-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
}
.footer__links{
  padding: 0 !important;
}

.footer__contact{
  padding: 0 !important;
}

.package-card__location {
  font-size: 0.9rem;
  color: #6b6b6b;
  margin-bottom: 1rem;
}

.package-card__divider {
  border: none;
  border-top: 1px solid var(--color-accent-orange);
  opacity: 0.35;
  margin-bottom: 1.1rem;
}

.package-card__details {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.package-card__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.package-card__detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent-orange);
}

.package-card__detail-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #6b6b6b;
}

.package-card__detail-divider {
  width: 1px;
  align-self: stretch;
  background-color: rgba(0, 0, 0, 0.12);
}

.package-card__btn {
  width: 100%;
  display: block;
  text-align: center;
}


/* ==========================================================================
   9. WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose {
  background: var(--color-white);
  padding: 60px 15px;
}

.why-choose__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-choose__header {
  text-align: center;
}

.why-choose__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #D97D00;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.why-choose__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

.why-choose__card-wrap {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-choose__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  max-width: 272px;
  width: 100%;
  margin: 0 auto;
  padding: 2.25rem 1.5rem;
  background: var(--color-cream);
  border-bottom: 2px solid var(--color-accent-orange);
  border-right: 2px solid var(--color-accent-orange);
  border-radius: 12px;
}

.why-choose__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 0.4rem;
}

.why-choose__item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

.why-choose__item-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}


/* ==========================================================================
   10. CONTACT US / ENQUIRY FORM SECTION
   ========================================================================== */
.contact {
  position: relative;
  background: url('../../assets/images/contact-us.webp') center / cover no-repeat;
  padding: -1px 3rem 6rem;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../../assets/images/contact-bg-pattern.webp') repeat;
  background-size: 180px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* On mobile/tablet the two corner ornaments (below) take over — the
   desktop's full-bleed repeating pattern is switched off there so it
   doesn't compete with them, matching the Figma mobile/tablet design. */
@media (max-width: 992px) {
  .contact::before {
    display: none;
  }
}

/* Corner decoration patterns (top-left / bottom-right).
   Desktop stays exactly as designed — no corner art there, since at
   desktop widths it would overlap the enquiry form / contact info.
   These switch on from the tablet breakpoint down only, and stay the
   same size/position across both tablet and mobile.

   FIX: the filenames here previously had a typo ("contact-patteren-*"
   instead of "contact-pattern-*"), so the images 404'd and nothing
   ever rendered regardless of positioning. Filenames are corrected
   below. The actual artwork is a small, self-contained corner
   flourish (already drawn to sit right in a corner), so it's seated
   flush at top:0/left:0 and bottom:0/right:0 rather than bleeding
   past the section edge. */
.contact__corner {
  position: absolute;
  display: none;
  width: 140px;
  height: 140px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.contact__corner--top-left {
  top: 0;
  left: 0;
  background-position: top left;
  background-image: url('../../assets/images/contact-pattern-left.png');
}

.contact__corner--bottom-right {
  bottom: 0;
  right: 0;
  background-position: bottom right;
  background-image: url('../../assets/images/contact-pattern-right.png');
}
.contact__container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact__info {
  padding-left: 7rem;
  padding-top: 75px;
}

.contact__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #D97D00;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: left;
}

.cstm_arrow{
    font-size: 40px !important;

}

.contact__title {
  font-family: cinzel;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-text-dark);
  text-align: left;
}

.contact__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  max-width: 480px;
  text-align: left;
}

.contact__info .contact__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left:7px !important;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-dark);
  text-align: left;
  line-height: 1.5;
}

.contact__detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent-orange);
}

.enquiry-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 586px;
  max-width: 100%;
/*   min-height: 580px; */
  height: auto;
  gap: 20px;
  background: var(--color-white);
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-top: 40px;
  margin-bottom: 40px;
}

.enquiry-form__title {
  font-family: manrope;
  font-weight: 700;
  font-size: 1.4rem;
  color:#EE8900;
}

.enquiry-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.enquiry-form__row--split {
  grid-template-columns: 1fr 1fr;
}

.enquiry-form__field {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-dark);
  background: #FFF9EB;
}

.enquiry-form__field:focus {
  outline: none;
  border-color: var(--color-primary-green);
}
select.enquiry-form__field:invalid {
  color: #888;
}

select.enquiry-form__field option {
  color: #000;
}
textarea.enquiry-form__field {
  resize: vertical;
  min-height: 90px;
  flex: 1;
}

.enquiry-form__submit {
  width: 100%;
}

.month-field {
  position: relative;
  width: 100%;
}

.month-field__display {
  width: 100%;
  padding-right: 2.75rem;
}

.month-field__btn {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  color: var(--color-accent-orange);
  z-index: 2;
}

.month-field__btn svg {
  width: 20px;
  height: 20px;
}

.month-field__popup {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 260px;
  max-width: 100%;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  padding: 0.85rem;
  z-index: 20;
}

.month-field__popup.is-open {
  display: block;
}

.month-field__popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.month-field__year {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-dark);
}

.month-field__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-size: 1.1rem;
  color: var(--color-primary-green);
  transition: background-color 0.2s ease;
}

.month-field__nav:hover {
  background-color: var(--color-cream);
}

.month-field__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.month-field__option {
  padding: 0.5rem 0.4rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-text-dark);
  background: var(--color-cream);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.month-field__option:hover {
  background-color: var(--color-accent-orange);
  color: var(--color-white);
}

.month-field__option.is-selected {
  background-color: var(--color-primary-green);
  color: var(--color-white);
}


/* ==========================================================================
   11. PLACES YOU'LL EXPERIENCE (DESTINATIONS) SECTION
   ========================================================================== */
.destinations {
  background: var(--color-white);
  padding: 60px 15px 30px 15px;
  margin-bottom: 32px;
}

.our-story, .our-story, .our-vision, .cta-band {
  padding: 60px 15px 30px 15px !important;
}
.get-in-touch {
  padding-top: 60px !important;
  padding-bottom: 30px !important;
}

.destinations__container {
  max-width: 1320px;
  margin: 0 auto;
}
.get-in-touch__text {
    font-size: 15px !important;
    line-height: 25px !important;

}
.get-in-touch__details{
  padding: 0 !important;

}

.destinations__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.destinations__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-accent-orange);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.destinations__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.destination-item--wide {
  grid-column: span 3;
  aspect-ratio: 2 / 1;
}

.destination-item--narrow {
  grid-column: span 2;
  aspect-ratio: 3 / 2;
}

.destination-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.destination-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destination-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ==========================================================================
   12. FOOTER
   ========================================================================== */
   /* ============================================================
     FOOTER STYLES
     ============================================================ */
  .footer {
    position: relative;
    /* background: url("assets/footer.webp") center center / cover no-repeat; */
    padding: 4rem 3rem 2rem;
    overflow: hidden;
    background-color: #EEEEEE;
    /* margin-top: 32px; */
  }

  .footer__pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 220px;
    background-image: url('assets/footer.webp');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
  }

  .footer__container {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
  }

  .footer__logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
  }

  .footer__logo-img {
    width: auto;
    height: 72px;
    object-fit: contain;
  }

  .footer__logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    color: var(--color-text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .footer__tagline {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 320px;
  }

  .footer__heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--color-accent-orange);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
  }

  .footer__links li {
    margin-bottom: 0.75rem;
  }

  .footer__links a {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    transition: color 0.2s ease;
  }

  .footer__links a:hover {
    color: var(--color-accent-orange);
  }

  .footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
    color: var(--color-text-dark);
    line-height: 1.5;
  }

  .footer__contact-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--color-accent-orange);
  }
   .footer__contact a:hover {
    color: var(--color-accent-orange) !important;
  }

  .footer__social li {
    margin-bottom: 0.9rem;
  }

  .footer__social a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.05rem;
    color: var(--color-text-dark);
    transition: color 0.2s ease;
  }

  .footer__social a:hover {
    color: var(--color-accent-orange);
  }

  .footer__social-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: var(--color-primary-green);
  }

  .footer__divider {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .footer__copyright {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
  }
  .our-vision__image{
    display: block !important;
  }

  .mb-our-vision-image{
    display: none !important;
  }
  .btn:hover {
    color: #ffffff !important;
  }

  /* ============================================================
     FOOTER RESPONSIVE MEDIA QUERIES
     (moved out of style.css's shared breakpoints, footer-only rules)
     ============================================================ */
  @media (max-width: 992px) {
    .footer__container {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .footer {
      padding: 3rem 1.5rem 1.5rem;
    }

    .hero-page__content {
      max-width: 100% !important;
      padding: 0 !important;
    }

    .hero-page {
        height: auto !important;
        padding: 110px 15px 40px 15px !important;
    }

    .mb-our-vision-image{
     display: block !important;
  }

    .get-in-touch {
      padding: 40px 15px !important;
    }

    .get-in-touch__info {
      align-items: center !important;
      text-align: center !important;
    }
    .get-in-touch__details{
      padding: 0 !important;
    }

    .cta-banner__title {
      white-space: normal !important;
    }
    .cta-banner {
      padding: 40px 15px !important;
    }
    .our-story__text {
      margin-bottom: 20px !important;
    }
    .our-vision__image{
      display: none !important;
    }

    /* Explicit grid-template-areas so the mobile layout always matches
       the Figma "Footer Mb" spec, regardless of source-order auto-flow:
         brand  brand
         links  contact
         social social */
    .footer__container {
      grid-template-columns: 1fr 1fr;
      grid-template-areas:
        "brand  brand"
        "links  contact"
        "social social";
      gap: 28px;
      align-items: start;
    }

    .footer__brand {
      grid-area: brand;
    }

    /* .footer__col is reused for Quick Links, Contact, and Follow Us.
       Target them by position (2nd, 3rd, 4th <div> child) so each one
       lands in the correct named grid area. */
    .footer__col:nth-of-type(2) {
      grid-area: links;
    }

    .footer__col:nth-of-type(3) {
      grid-area: contact;
    }

    .footer__col:nth-of-type(4) {
      grid-area: social;
    }
	  
/* 	.footer__col ul{
		padding-left: 0 !important;
	
	} */

    .footer__heading {
      font-size: 1px;
      margin-bottom: 0.85rem;
    }

    .footer__links li,
    .footer__contact li,
    .footer__social li {
      font-size: 14px;
    }

    .footer__tagline {
      max-width: 100%;
      font-size: 14px;
    }

    .footer__copyright {
      text-align: center;
    }
  }



/* ==========================================================================
   13. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .hero__title {
    font-size: 46px;
    line-height: 54px;
  }

  .about__title,
  .contact__title {
    font-size: 2.5rem;
  }

  .contact__info {
    padding-left: 3rem;
  }
}

@media (max-width: 992px) {
  .hero__title {
    font-size: 40px;
    line-height: 48px;
  }
  .contact__corner {
  display: block;
}

  .hero__content {
    padding-top: calc(var(--header-height) + 2rem);
  }

  .features-bar {
    margin-top: -40px;
    margin-bottom: -20px;
    padding: 1.5rem;
  }

  .features-bar__track {
    gap: 3rem;
  }

  .about__container {
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 2.5rem;
  }

   .about__image-frame {
  width: 100%;
  max-width: 300px;
  height: auto;
}

  .about {
    background: none;
    background-color: var(--color-cream);
    box-sizing: border-box;
  }

  .about::before,
  .about::after {
    display: block;
    width: 220px;
    height: 220px;
  }

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

  .packages {
    background-size: contain;
    background-position: top center;
  }

  /* Why Choose Us: 2-column grid down to tablet width, matching the
     Figma tablet frame (736px wide, 20px gap). The old single-column
     override that used to live in the ≤768px block below was removing
     this grid exactly at tablet size — moved to the ≤640px block
     instead so only phones stack to one column. */
  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-choose__item {
    max-width: 100%;
  }

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

  .contact__info {
    padding-left: 0;
    padding-top: 0;
    /* Corner art now bleeds above/left of the section, so give the
       heading a little breathing room instead of sitting under it. */
    padding-top: 40px;
  }



  .enquiry-form {
    width: 100%;
    height: auto;
    margin-top: 42px;
  }

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

  .destination-item--wide,
  .destination-item--narrow {
    grid-column: span 1;
  }
}

/* Tablet-only: Contact Us section — form on the left, contact info on
   the right. Scoped strictly to the tablet range (641px–992px) so
   mobile (≤640px) keeps its original stacked order untouched, and
   desktop (>992px) is untouched. */
@media (min-width: 641px) and (max-width: 992px) {
  .contact__container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact__info {
    order: -1;
    padding-top: 83px;
  }

  .enquiry-form {
    order: 1;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 30px;
    line-height: 38px;
  }

  .contact__eyebrow {
    justify-content: center;
  }
  .contact__title{
    text-align: center;
  }

  .contact__text {
    text-align: center;
  }

  .hero__description {
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    font-weight: 600;
  }

    .our-story,
  .our-vision {
    padding: 40px 15px;
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 2rem);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero__title-line1 {
    white-space: normal;
  }

  .features-bar {
    margin-top: -20px;
    margin-bottom: -15px;
    padding: 1.25rem 1.5rem;
  }

  .features-bar__track {
    gap: 2.25rem;
    animation-duration: 16s;
  }

  .about {
    padding: 40px 15px !important;
  }

  .about::before,
  .about::after {
    width: 238px;
    height: 343px;
  }

  .about__title {
    font-size: 1.9rem;
  }

  .about__text {
    font-size: 1rem;
  }

  .about__image-frame {
    width: 300px;
  }

  .packages {
    padding: 40px 15px;
  }

  .packages__title {
    font-size: 1.8rem;
  }

  .packages__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-choose {
    padding: 40px 15px !important;
  }

  .why-choose__title {
    font-size: 1.8rem;
  }

  .contact {
    padding: 0 15px;
  }

  .contact__title {
    font-size: 1.9rem;
  }

  .enquiry-form {
    padding: 1.75rem;
    gap:10px;
  }

  .enquiry-form__row--split {
    grid-template-columns: 1fr;
  }

  .month-field__popup {
    max-width: calc(100vw - 5rem);
  }

  .destinations {
    padding: 40px 15px !important;
  }

  .destinations__title {
    font-size: 1.8rem;
  }

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

  .destination-item--wide,
  .destination-item--narrow {
    aspect-ratio: 16 / 9;
  }

  .our-story, .our-vision, .cta-band {
    padding: 40px 15px !important;
  }
  .our-story--dark {
    padding: 40px 15px !important;
  }
  .hassle-free__image-wrapper {
    margin-top: 20px  !important;
    margin-left: 0px !important;
  }
  .our-story__image, .hassle-free__image, .our-vision__image {
    width: 100% !important;
    height: 100% !important;
  }
}

@media (max-width: 640px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about__eyebrow {
    justify-content: center;
  }

  .about__image-frame {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Why Choose Us collapses to a single column only from here down
     (phones), so the 768px tablet view above keeps its 2-column grid
     matching Figma. */
  .why-choose__grid {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }

  .why-choose__item {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 24px;
    line-height: 32px;
  }

  .hero__title-line1 {
    white-space: normal;
  }

  .hero__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about__title,
  .packages__title,
  .why-choose__title,
  .contact__title,
  .destinations__title {
    font-size: 1.6rem;
  }

  .about__title {
    font-size: 1.45rem;
  }

  .about__text {
    font-size: 0.92rem;
  }

  .about__image-frame {
    width: 100%;
    max-width: 320px;
  }

  .about::before,
  .about::after {
    width: 150px;
    height: 150px;
  }

  .features-bar__track {
    gap: 1.75rem;
    animation-duration: 14s;
  }

  .feature-item span {
    font-size: 0.85rem;
  }

  .enquiry-form__title {
    font-size: 1.2rem;
  }

  .month-field__popup {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .hero__title {
    font-size: 21px;
    line-height: 28px;
  }

  .about,
  .packages,
  .why-choose,
  .contact,
  .destinations {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about__title {
    font-size: 1.3rem;
  }

  .about__image-frame {
    width: 100%;
    max-width: 280px;
  }

  .package-card__details {
    gap: 0.75rem;
  }
}
@media (max-width: 550px) {
    .hero__title {
        font-size: 26px;
        width: 518;
height: 144;
opacity: 1;
font-family: Cinzel;
font-weight: 700;
font-style: Bold;
font-size: 37px;
line-height: 48px;
letter-spacing: 0%;
text-align: center;
    }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {

  .hero {
    min-height: 400px !important;
  }
  .contact__container {
    padding: 40px 15px !important;
  }
  .section-eyebrow {
    text-align: center !important;
    justify-content: center !important;
  }
  .our-vision__image {
    display: none !important;
  }
  .mb-our-vision-image {
    display: block !important;
  }
  .hassle-free__image-wrapper {
    justify-content: center !important;
  }
  .get-in-touch__container {

    grid-template-columns: 1fr 1fr !important;

  }
}
