/* =========================================================
   VARANASI PACKAGE — style.css
   Single stylesheet. Sections ordered per the guide below.
   1. Variables      5. Section Title    9.  Highlights
   2. Reset/Base      6. Navbar          10.  Gallery / Places
   3. Utilities       7. Hero            11.  Compare Table
   4. Buttons         8. Packages        12.  Testimonials
                                          13.  FAQ
                                          14.  Enquiry
                                          15.  Footer
                                          16.  Responsive
========================================================= */

/* =========================================================
   1. VARIABLES
========================================================= */
:root {
  /* Brand colors */
  --clr-orange: #fa7d2a;
  --clr-orange-dark: #e0651a;
  --clr-maroon: #7a1f1f;
  --clr-maroon-dark: #5c1616;
  --clr-ink: #2a1c14;
  --clr-teal: #1f6f6b;
  --clr-gold: #d4af37;

  /* Backgrounds */
  --clr-cream:  #FFF8F0;
  --clr-cream-alt: #fdf1e6  ;
  --clr-white: #ffffff;

  /* Text */
  --clr-text: #4a3b32;
  --clr-text-soft: #8a7767;
  --clr-heading: #3a2417;

     --page-header-h: 520px;

  /* Type */
  /* --font-display: "Bodoni Moda", serif; */

  /* --font-display:    'Cormorant Garamond', serif;
  --font-body:   'Inter', sans-serif; */
  

  --font-display:    'Outfit', serif;
  --font-body:  "Outfit", sans-serif;

  

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(58, 24, 17, 0.06);
  --shadow-md: 0 10px 30px rgba(58, 24, 17, 0.12);
  --shadow-lg: 0 20px 50px rgba(58, 24, 17, 0.18);

  --section-y: 5.5rem;
  --header-h: 76px;
}

/* =========================================================
   2. RESET / BASE
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-cream);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--clr-heading);
  
  margin: 0;
}

p {
  margin: 0 0 1rem;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
/* ul {
  list-style: none;
  margin: 0;
  padding: 0;
} */

:focus-visible {
  outline: 3px solid var(--clr-orange);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   3. COMMON UTILITIES
========================================================= */
section{
  overflow: hidden;
}
.section {
  padding-block: var(--section-y);
}
.section-alt {
  background: var(--clr-cream-alt);
}

.section-title {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-orange-dark);
  margin-bottom: 0.6rem;
}
.heading-lg {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--clr-maroon-dark);
}
.heading-lg em,
.heading-lg .accent {
  color: var(--clr-orange);
  font-style: normal;
}
.section-subtext {
  color: var(--clr-text-soft);
  font-size: 0.92rem;
  margin-top: 0.6rem;
  font-style: italic;
}

.stars {
  color: var(--clr-gold);
  letter-spacing: 2px;
  font-size: 0.85rem;
}

/* diagonal-stripe placeholder pattern, used for image blocks */
.stripe-media {
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.35) 0 14px,
    rgba(255, 255, 255, 0.08) 14px 28px
  );
}

/* =========================================================
   4. BUTTONS
========================================================= */
.btn {
  font-family: var(--font-body);
  
  font-size: 0.92rem;
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.5rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}

.btn-brand-solid {
  background: var(--clr-orange);
  color: var(--clr-white);
  border-color: var(--clr-orange);
  box-shadow: 0 6px 16px rgba(250, 125, 42, 0.32);
}
.btn-brand-solid:hover {
  background: var(--clr-orange-dark);
  border-color: var(--clr-orange-dark);
  color: var(--clr-white);
  box-shadow: 0 8px 22px rgba(250, 125, 42, 0.42);
  transform: translateY(-2px);
}

.btn-brand-outline {
  background: transparent;
  color: var(--clr-orange-dark);
  border-color: var(--clr-orange);
}
.btn-brand-outline:hover {
  background: var(--clr-orange);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-brand-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(2px);
}
.btn-brand-outline-light:hover {
  background: var(--clr-white);
  color: var(--clr-maroon-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.85rem 3rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
}

/* =========================================================
   6. NAVBAR
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(253, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 31, 31, 0.08);
  transition:
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(253, 241, 230, 0.98);
}

.site-navbar {
  min-height: var(--header-h);
  padding-block: 0.4rem;
}

.navbar-brand img{
  height: 70px;
}

.footer-brand img {
    height: 100px;
    filter: brightness(0) invert(1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--clr-orange),
    var(--clr-orange-dark)
  );
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  
  font-size: 1.15rem;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  
  font-size: 1.3rem;
  color: var(--clr-maroon-dark);
}

 .nav-cta {
    position: relative;
  }

.main-nav {
  gap: 0.4rem;
}
.main-nav .nav-link {
  font-size: 0.92rem;
  
  color: var(--clr-text);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  position: relative;
  transition:
    color 0.18s ease,
    background-color 0.18s ease;
}
.main-nav .nav-link:hover {
  color: var(--clr-orange-dark);
}
.main-nav .nav-link.active {
  color: var(--clr-orange-dark);
  /* background: rgba(250, 125, 42, 0.1); */
}

.nav-phone {
  font-size: 0.88rem;
  
  color: var(--clr-maroon-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone i {
  color: var(--clr-orange);
}

/* =========================================================
   7. HERO
========================================================= */
.hero-section {
  position: relative;
}

.hero-carousel {
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #c15a2c 0%, #fa7d2a 55%, #fdaa63 100%);
  overflow: hidden;
  z-index: 0;   /* ← add this: forces a stacking context so ::before(-2) stays inside .hero-slide instead of dropping behind the page */
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transform: scale(1.18);
  will-change: transform;
}
.hero-bg-1::before { background-image: url('/assets/images/hero3.png'); }
.hero-bg-2::before { background-image: url('/assets/images/hero1.png'); }
.hero-bg-3::before { background-image: url('/assets/images/hero2.png'); }


.carousel-item.active .hero-slide::before {
  animation: heroZoomOut 18s ease-out forwards;
}

@keyframes heroZoomOut {
  from { transform: scale(1.18); }
  to   { transform: scale(1); }
}

.hero-slide::after {
  /* content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.1) 0 18px,
    rgba(255, 255, 255, 0.02) 18px 36px
  );
  pointer-events: none; */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 10, 5, 0.226) 0%,
    rgba(20, 10, 5, 0.733) 45%,
    rgba(20, 10, 5, 0.45) 100%
  );
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: 6rem 9rem;
  color: var(--clr-white);
}

.hero-photo-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.2rem;
}

.hero-heading {
  font-size: clamp(2.1rem, 4.6vw, 3rem);
  
  line-height: 1.15;
  margin-bottom: 1.1rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  color: var(--clr-white);
}

.hero-sub {
  max-width: 560px;
  margin-inline: auto;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
}

.hero-btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-indicators {
  bottom: 5.2rem;
}
.hero-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.55);
  border: none;
  opacity: 1;
  margin-inline: 5px;
}
.hero-indicators .active {
  background-color: var(--clr-white);
  width: 22px;
  border-radius: 5px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.1rem;
}
.carousel-control-prev,
.carousel-control-next {
  width: 6%;
  opacity: 1;
}

/* =========================================================
   14. ENQUIRY (card overlapping hero)
========================================================= */
.enquiry-card-wrap {
  position: relative;
  margin-top: -70px;
  z-index: 5;
  margin-bottom: 3.5rem;
}

.enquiry-card {
  position: relative;
  background: var(--clr-white);
  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-lg);
  padding: 2rem 2.25rem 1.5rem;
}

.enquiry-card .form-label {
  font-size: 0.74rem;
  
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-maroon);
  margin-bottom: 0.35rem;
}

.enquiry-card .form-control {
  border-radius: var(--radius-sm);
  border: 1.5px solid #efe0cf;
  background:var(--clr-white);
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
}
.enquiry-card .form-control:focus {
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 4px rgba(250, 125, 42, 0.14);
  background: var(--clr-white);
}

.enquiry-submit {
  padding-block: 0.72rem;
}

.enquiry-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--clr-text-soft);
  margin: 1rem 0 0;
}

.enquiry-success {
  display: none;
  text-align: center;
  font-size: 0.85rem;
  
  color: var(--clr-teal);
  margin: 0.6rem 0 0;
}
.enquiry-success.show {
  display: block;
}

/* Hanging bell animation */
@keyframes bellSwing {
  0%,
  100% {
    transform: rotate(-9deg);
  }
  50% {
    transform: rotate(9deg);
  }
}

/* =========================================================
   8. PACKAGES
========================================================= */
.pkg-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 95%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pkg-media {
  position: relative;
  height: 235px;
  overflow: hidden; /* clip image + ribbon to the card's rounded top */
}

.pkg-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Duration pill moves to bottom-left, dark, with a clock icon — matches reference */
.pkg-badge-duration {
  top: auto;
  bottom: 12px;
  left: 12px;
  right: auto;
  background: rgba(20, 10, 5, 0.68);
  color: var(--clr-white);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(2px);
    width: fit-content;
    height: fit-content;
}
.pkg-badge-duration i { font-size: 0.72rem; }

/* Diagonal discount ribbon — true corner, first use */
.pkg-ribbon {
  position: absolute;
  top: 16px;
  right: -38px;
  z-index: 2;
  width: 140px;
  padding: 0.35rem 0;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--clr-white);
 background: var(--clr-orange);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transform: rotate(45deg);
}
.pkg-badge {
  position: absolute;
  bottom: 12px;
  z-index: 2;
  font-size: 0.68rem;
  
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}

.pkg-media-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.pkg-body {
  padding: 16px 16px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-location {
  font-size: 0.72rem;
  
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-teal);
  margin-bottom: 0.3rem;
}
.pkg-title {
  font-size: 1.28rem;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}
.pkg-rating {
  font-size: 0.82rem;
  color: var(--clr-text-soft);
  margin-bottom: 0.6rem;
}
.pkg-rating .stars {
  margin-right: 0.3rem;
}
.pkg-desc {
  font-size: 0.86rem;
  color: var(--clr-text);
  margin-bottom: 0.9rem;
  border-left: 3px solid var(--clr-orange);
  padding-left: 10px;
}

.pkg-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}


.pkg-amenities {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 0.5rem 0.9rem;
  font-size: 0.76rem;
  color: var(--clr-text-soft);
  margin-bottom: 1.2rem;
  padding-bottom: 1rem; 
  border-bottom: 1px dashed #eedfc9;
  padding-left:0;
}
.pkg-amenities li {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.3rem;
}

.pkg-amenities i {
  color: var(--clr-orange);
  font-size: 25px;
}

.pkg-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.6rem;
  /* flex-wrap: wrap; */
}

.pkg-price-regular {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 5px;
    opacity: 0.8;
}

.price{
      display: flex;
      align-items: center;
      flex-wrap: wrap;
}

.pkg-price-label {
  display: block;
  /* font-size: 0.7rem; */
  color: var(--clr-orange);
  display: none;
}
.pkg-price-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--clr-orange);
}
.pkg-price-value small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  
  color: var(--clr-text-soft);
}
.pkg-actions {
  display: flex;
  gap: 0.3rem;
}

/* =========================================================
   9. HIGHLIGHTS / WHY CHOOSE US
========================================================= */
.feature-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(250, 125, 42, 0.12);
  color: var(--clr-orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.feature-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.feature-desc {
  font-size: 0.86rem;
  color: var(--clr-text-soft);
  margin-bottom: 0;
}

/* =========================================================
   10. GALLERY / PLACES
========================================================= */
.place-card {
  position: relative;
aspect-ratio: 3/2;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;

  isolation: isolate;
}

.place-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 10, 5, 0) 40%,
    rgba(20, 10, 5, 0.75) 100%
  );
  z-index: 1;
}


.place-name {
  position: relative;
  z-index: 2;
  color: var(--clr-white);
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 600;
}

.place-desc {
  color: var(--clr-white);
  z-index: 3;
  position: relative;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* =========================================================
   11. COMPARE TABLE
========================================================= */
.compare-table-wrap {
  max-width: 880px;
  margin-inline: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-white);
  font-size: 0.9rem;
}
.compare-table thead th {
  background: var(--clr-maroon-dark);
  color: var(--clr-white);
  text-align: left;
  padding: 0.9rem 1.2rem;
  
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare-table tbody td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid #f1e4d2;
  color: var(--clr-text);
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table tbody tr:hover {
  background: var(--clr-cream);
}
.compare-links a {
  
  font-size: 0.82rem;
  color: var(--clr-orange-dark);
  margin-right: 1rem;
}
.compare-links a:last-child {
  margin-right: 0;
  color: var(--clr-maroon);
}
.compare-links a:hover {
  text-decoration: underline;
}


/* =========================================================
   13. FAQ
========================================================= */
.faq-accordion {
  /* max-width: 820px; */
  margin-inline: auto;
}
.faq-accordion .accordion-item {
  background: var(--clr-white);
  border: none;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.8rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button {
  font-family: var(--font-body);
  

  color: var(--clr-heading);
  padding: 1.1rem 1.4rem;
  background: var(--clr-white);
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--clr-orange-dark);
  background: var(--clr-white);
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  font-family: var(--font-body);
  
  font-size: 1.2rem;
  line-height: 1;
  color: var(--clr-orange);
  transition: transform 0.2s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\2212";
}
.faq-accordion .accordion-body {
  font-size: 0.88rem;
  color: var(--clr-text-soft);
  padding: 0 1.4rem 1.3rem;
}

/* =========================================================
   15. FOOTER
========================================================= */
.site-footer {
  background: var(--clr-ink);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 4rem;
  overflow: hidden;
}
.footer-brand .brand-name {
  color: var(--clr-white);
}
.footer-about {
  font-size: 0.86rem;
  margin: 1rem 0 1.2rem;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}
.footer-social a:hover {
  background: var(--clr-orange);
  color: var(--clr-white);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 1.1rem;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.18s ease;
}
.footer-links a:hover {
  color: var(--clr-orange);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.68);
      flex-wrap: wrap;
          overflow-wrap: anywhere;
}
.footer-contact i {
  color: var(--clr-orange);
  margin-top: 0.2rem;
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
}
.footer-newsletter .form-control {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--clr-white);
  font-size: 0.86rem;
  padding: 0.55rem 1rem;
}
.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.footer-newsletter .form-control:focus {
  box-shadow: 0 0 0 3px rgba(250, 125, 42, 0.25);
  background: rgba(255, 255, 255, 0.1);
}
.newsletter-success {
  display: none;
  font-size: 0.8rem;
  color: var(--clr-orange);
  margin-top: 0.6rem;
}
.newsletter-success.show {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-block: 1.4rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom p {
  margin: 0;
}

/* Floating WhatsApp button */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 1040;
  transition: transform 0.2s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  color: var(--clr-white);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 82px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-maroon-dark);
  color: var(--clr-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  z-index: 1040;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================================================
   16. RESPONSIVE
========================================================= */
@media (max-width: 991.98px) {
  :root {
    --section-y: 4rem;
  }
  .main-nav {
    padding: 1rem 0;
    gap: 0.2rem;
  }
  .main-nav .nav-link {
    padding: 0.6rem 0.4rem;
  }
  .nav-cta {
    padding-bottom: 1rem;
  }
  .hero-slide {
    min-height: 560px;
  }
  .hero-slide-content {
    padding-block: 4.5rem 8rem;
  }
  .enquiry-card {
    padding: 1.6rem 1.4rem 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-arrow {
    display: none;
  }

 .btn-lg {
      padding: 0.85rem 2rem;
 }

  .hero-slide-content {
    padding-block: 3.5rem 7rem;
  }
  .hero-heading br {
    display: none;
  }
  .enquiry-card-wrap {
    margin-top: -55px;
  }
  .pkg-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .pkg-actions {
    width: 100%;
  }
  .pkg-actions .btn {
    flex: 1;
  }
 
  .compare-table {
    font-size: 0.78rem;
  }
  .compare-table thead th,
  .compare-table tbody td {
    padding: 0.7rem 0.6rem;
  }

  .footer-brand img {
    height: 60px;
  }
  .navbar-brand img {
    height: 40px;
  }
  
  .section{
      overflow:hidden !important;
  }

}

@media (max-width: 575.98px) {
  .hero-btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btn-group .btn {
    width: 100%;
  }
  .brand-name {
    font-size: 1.1rem;
  }
}

@media (min-width: 1400px) {
  :root {
    --section-y: 6.5rem;
  }
}


    /* =========================================================
   12. TESTIMONIALS (Swiper card grid)
========================================================= */
.testi-swiper {
  padding-bottom: 2.5rem;
}

.testi-card {
  height: 100%;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.8rem 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-quote-icon {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--clr-orange);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.testi-text {
  font-size: 0.92rem;
  color: var(--clr-text);
  line-height: 1.6;
  margin-bottom: 1.6rem;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testi-avatar--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-maroon-dark);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

.testi-name {
  font-weight: 700;
  color: var(--clr-heading);
  margin-bottom: 0.15rem;
  font-size: 0.94rem;
}

.testi-stars {
  margin-bottom: 0;
}

.testi-pagination {
  bottom: 0 !important;
}
.testi-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #e0c6a6;
  opacity: 1;
}
.testi-pagination .swiper-pagination-bullet-active {
  background: var(--clr-orange);
  width: 22px;
  border-radius: 5px;
}

@media (max-width: 767.98px) {
  .testi-card {
    padding: 1.5rem 1.4rem;
  }
}

.swiper-wrapper {
  padding-bottom: 60px;
}



/* about page */

.page-header{
  position: relative;
  height: var(--page-header-h);
  overflow: hidden;
  isolation: isolate;
}

.page-header__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.page-header__overlay{
  position: absolute;
  inset: 0;
    background: linear-gradient(90deg, rgba(29, 24, 20, 0.77) 0%, rgba(29, 24, 20, 0.62) 40%, rgba(29, 24, 20, 0.3) 70%, rgba(29, 24, 20, 0) 100%);
  z-index: -1;
}

.page-header__inner{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
}

/* ---------- Breadcrumb (reusable component, first defined here) ---------- */
.breadcrumb{ margin-bottom: 0.4rem; }
.breadcrumb__list{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb__item{ display: flex; align-items: center; }
.breadcrumb__link{
  font-size: 0.9rem;

  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb__link:hover{ color: #ffffff; }
.breadcrumb__link--current{
  color: var(--clr-orange);

}
.breadcrumb__sep{
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Title / subtitle ---------- */
.page-header__title{
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 2.4rem);
  line-height: 1.1;
  color: var(--clr-white);
  max-width: 500px;
}
.page-header__title-line{ display: block; color: #ffffff; }
.page-header__title-line--accent{ color: var(--clr-orange); }

.page-header__subtitle{
  margin: 0.4rem 0 0;
  max-width: 480px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px){
  :root{ --page-header-h: 340px; }
  .page-header__subtitle{ font-size: 0.92rem; }
}

@media (max-width: 575.98px){
  :root{ --page-header-h: 300px; }
  .breadcrumb__link{ font-size: 0.82rem; }
}

/* =========================================================
   ABOUT — INTRO
   Reuses .section / .container / .eyebrow / .heading-lg
   from the shared stylesheet. Only new, page-specific
   rules are declared below.
========================================================= */
/* =========================================================
   ABOUT — INTRO (two-column layout)
   Reuses .section / .container / .eyebrow / .heading-lg
   from the shared stylesheet.
========================================================= */
.about-intro{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.2rem;
}

.about-intro__content{ flex: 1 1 480px; max-width: 560px; }
.about-intro__content .heading-lg{ margin-bottom: 1.2rem; }

.about-intro__lede{
  font-size: 1.05rem;
  color: var(--clr-text);
  margin-bottom: 0;
}
.about-intro__lede strong{ color: var(--clr-maroon-dark); }

.about-intro__media{
  position: relative;
  flex: 1 1 400px;
  max-width: 480px;
}

.about-intro__img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-intro__badge{
  position: absolute;
  left: 1.4rem;
  bottom: -1.1rem;
  background: var(--clr-white);
  color: var(--clr-maroon-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(122, 31, 31, 0.08);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px){
  .about-intro{ flex-direction: column; gap: 2.2rem; }
  .about-intro__content{ max-width: 100%; text-align: center; }
  .about-intro__media{ max-width: 100%; }
  .about-intro__badge{ left: 50%; transform: translateX(-50%); white-space: nowrap; }
}

@media (max-width: 575.98px){
  .about-intro__img{ height: 300px; }
}
/* =========================================================
   ABOUT — WHAT MAKES US DIFFERENT
========================================================= */
.diff-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 2rem;
  max-width: 960px;
  margin-inline: auto;
}

.diff-item{
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.diff-item__icon{
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(250, 125, 42, 0.12);
  color: var(--clr-orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.diff-item__title{
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--clr-heading);
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
}

.diff-item__desc{
  font-size: 0.9rem;
  color: var(--clr-text-soft);
  margin-bottom: 0;
}

/* =========================================================
   ABOUT — OUR PROMISE
========================================================= */
.promise-panel{
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2.6rem 2.4rem;
  max-width: 900px;
  margin-inline: auto;
}

.promise-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}

.promise-item{
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.94rem;
  color: var(--clr-text);
}

.promise-item i{
  color: var(--clr-orange);
  font-size: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* =========================================================
   ABOUT — CTA BANNER
========================================================= */
.cta-banner{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 3.2rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--clr-maroon-dark), var(--clr-orange-dark));
  isolation: isolate;
}


.cta-banner__eyebrow{
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.6rem;
}

.cta-banner__title{
  color: var(--clr-white);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 0.7rem;
}

.cta-banner__desc{
  color: rgba(255,255,255,0.88);
  max-width: 460px;
  margin: 0 auto 1.6rem;
  font-size: 0.95rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px){
  .diff-grid{ grid-template-columns: 1fr; }
  .promise-list{ grid-template-columns: 1fr; }
  .promise-panel{ padding: 2rem 1.5rem; }
}



/* places */

    /* =========================================================
       DESTINATION DETAIL
       New rules only — .stripe-media / .pkg-media-caption /
       .btn-brand-solid already exist in the shared stylesheet
    ========================================================= */
 
   .dest-media {
    height: 560px;
    max-width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 2.4rem;

    background: var(--clr-white);
    box-shadow: var(--shadow-sm);
}

.dest-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: calc(var(--radius-lg) - 6px);
    display: block;
}
    .dest-title {
        font-size: clamp(1.7rem, 3vw, 2.1rem);
        color: var(--clr-maroon-dark);
        margin-bottom: 1rem;
    }

    .dest-text {
        font-size: 0.94rem;
        color: var(--clr-text);
    }

    .dest-subheading {
        font-size: 1.1rem;
        color: var(--clr-maroon-dark);
        margin: 2rem 0 1rem;
    }

    .dest-site-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 0.5rem;
        padding-left:0;
    }
    .dest-site {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }
    .dest-site__name {
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 0.92rem;
        color: var(--clr-heading);
    }
    .dest-site__desc {
        font-size: 0.88rem;
        color: var(--clr-text-soft);
    }

    .dest-tips {
        list-style: disc;
        padding-left: 1.2rem;
        margin-bottom: 0;
    }
    .dest-tips li {
        font-size: 0.9rem;
        color: var(--clr-text);
        margin-bottom: 0.5rem;
    }
    .dest-tips li::marker {
        color: var(--clr-orange);
    }

    .dest-cta {
        display: inline-block;
        margin-top: 2rem;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 575.98px) {
        .dest-media {
            max-width: 100%;
            height: 180px;
        }
        .dest-cta {
            width: 100%;
            text-align: center;
        }
    }
    
    /* =========================================================
   ENQUIRE NOW — popup modal
   New rules only. Reuses --clr-*/--radius-*/--shadow-* variables,
   .btn-brand-solid, .enquiry-submit, .enquiry-note (section 14 above),
   and mirrors .enquiry-card .form-label / .form-control styling —
   duplicated here (scoped to #enquiryModal) rather than shared,
   since Bootstrap's modal markup sits outside .enquiry-card.
========================================================= */
#enquiryModal .modal-content {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

#enquiryModal .modal-header {
  border-bottom: 1px solid #f1e4d2;
  padding: 1.6rem 1.8rem 1.2rem;
  align-items: flex-start;
}

.enquiry-modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--clr-maroon-dark);
  margin-bottom: 0.2rem;
}

.enquiry-modal-subtitle {
  font-size: 0.85rem;
  color: var(--clr-text-soft);
  margin: 0;
}

#enquiryModal .modal-body {
  padding: 1.6rem 1.8rem 1.8rem;
}

#enquiryModal .form-label {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-maroon);
  margin-bottom: 0.35rem;
}

#enquiryModal .form-control {
  border-radius: var(--radius-sm);
  border: 1.5px solid #efe0cf;
  background: var(--clr-white);
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
}
#enquiryModal .form-control:focus {
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 4px rgba(250, 125, 42, 0.14);
  background: var(--clr-white);
}

#enquiryModal .btn-close:focus {
  box-shadow: none;
}

#enquirySubmitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.enquiry-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 575.98px) {
  #enquiryModal .modal-header,
  #enquiryModal .modal-body {
    padding-inline: 1.2rem;
  }
}

.enquiry-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
