/* ============================================================
   HAMLET ON THE GANGES — style.css
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


:root {
  --gold: #C6A76B;
  --gold-light: #e0c98a;
  --gold-dark: #9e7f47;
  --gold-gradient: linear-gradient(135deg, #C6A76B 0%, #a67c37 50%, #9e7f47 100%);
  --gold-gradient-hover: linear-gradient(135deg, #e0c98a 0%, #C6A76B 50%, #a67c37 100%);
  --dark: #0B0B0B;
  --dark-2: #111111;
  --white: #ffffff;
  --off-white: #FDF9F3;
  --text-body: #3a3428;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-bg: rgba(11, 11, 11, 0.15);
  --glass-border: rgba(198, 167, 107, 0.2);

  /* FLUID TYPOGRAPHY */
  --h1-size: clamp(2.2rem, 8vw, 4.2rem);
  --h2-size: clamp(1.8rem, 5vw, 2.8rem);
  --h3-size: clamp(1.4rem, 3vw, 1.8rem);
  --body-size: clamp(0.9rem, 1.2vw, 1.05rem);

  /* DYNAMIC SPACING */
  --section-pad: clamp(3rem, 10vw, 7.5rem);
  --spacing-lg: clamp(1rem, 5vw, 4.5rem);
  --container-gap: clamp(1.2rem, 4vw, 3rem);
  --element-gap: clamp(0.8rem, 2vw, 1.5rem);

  --gold-glow: 0 0 20px rgba(198, 167, 107, 0.5);
  --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --text-shadow-premium: 0 2px 20px rgba(0, 0, 0, 0.6);
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-premium: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text-body);
  font-size: var(--body-size);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

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

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--h2-size);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--dark);
  line-height: 1.15;
}

.section-eyebrow {
  font-size: .75rem;
  letter-spacing: .28em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--element-gap);
  display: block;
}

.section-body {
  font-size: var(--body-size);
  line-height: 1.8;
  color: #5a5040;
}

.view-all-link {
  font-size: .82rem;
  letter-spacing: .12em;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.view-all-link:hover {
  color: var(--gold-light);
}

/* ── NAVIGATION DROPDOWN ───────────────────────────────────── */
.glass-dropdown {
  background: rgba(11, 11, 11, 0.95) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(198, 167, 107, 0.2) !important;
  border-radius: 12px !important;
  padding: 1rem 0 !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  margin-top: 0 !important;
  visibility: hidden;
  opacity: 0;
  display: block !important;
  transition: all 0.3s ease, visibility 0s linear 0.1s, opacity 0.3s linear;
}

.nav-item.dropdown:hover .glass-dropdown {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
  animation: slideDropdown 0.4s ease forwards;
}

/* .dropdown-item {
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem !important;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: transparent !important;
  color: var(--gold) !important;
  padding-left: 2rem !important;
} */

.dropdown-divider {
  border-color: rgba(198, 167, 107, 0.1) !important;
}

@keyframes slideDropdown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .dropdown-toggle::after {
    display: none;
  }
}

/* ── UTILITIES ────────────────────────────────────────────── */
.section-padding {
  padding: var(--section-pad) 0;
}

.g-inner {
  --bs-gutter-x: var(--container-gap) !important;
  --bs-gutter-y: var(--container-gap) !important;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-20 {
  border-radius: 20px;
}

.glass-morph {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
}

.shadow-premium {
  box-shadow: var(--shadow-premium);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-gold-solid {
  background: var(--gold-gradient);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: .9rem 2.4rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(198, 167, 107, .25);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-gold-solid:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(198, 167, 107, 0.45), var(--gold-glow);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, .6);
  border-radius: 4px;
  padding: .9rem 2.4rem;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-gold:hover {
  border-color: var(--gold);
  color: #fff;
  background: rgba(198, 167, 107, .15);
  transform: translateY(-4px);
}

.btn-outline-white {
  color: white;
  border: 2px solid #c3c3c3bf;
  align-items: center;
  display: grid !important;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-white:hover {
  color: white;
  border: 2px solid #c3c3c3bf;
  align-items: center;
  display: grid !important;
  transition: var(--transition-smooth);
  background: rgba(198, 167, 107, .15);
  transform: translateY(-4px);
}


.btn-gold-outline-sm {
  background: transparent;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 3px;
  padding: .45rem 1.2rem;
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

.btn-gold-outline-sm:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-booknow {
  background: var(--gold-gradient);
  color: #fff !important;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: .65rem 1.6rem;
  transition: var(--transition-premium);
  box-shadow: 0 4px 18px rgba(198, 167, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-booknow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-booknow:hover::before {
  left: 100%;
}

.btn-booknow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 167, 107, 0.5), var(--gold-glow);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
#mainNav {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-premium);
  padding: 5px 0;
  z-index: 1050;
}

#mainNav.scrolled {
  background: rgba(11, 11, 11, 0.9);
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(198, 167, 107, 0.05);
  border-bottom: 1px solid rgba(198, 167, 107, 0.3);
}

.navbar-brand {
  padding: 0;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s;
}

@media (max-width: 991.98px) {
  .logo-img {
    height: 40px;
  }

  .luxury-img-frame {

    padding: 0;
  }

  #mainNav {
    padding: 5px !important;
  }
}

@media (max-width: 575.98px) {
  .logo-img {
    height: 40px;
    max-width: 120px;
  }

  html {
    overflow: auto;
  }

  #mainNav {
    padding: 5px !important;
    width: 100%;
    left: 0;
    max-width: 100vw;
    right: 0;
  }
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .5rem 0 !important;
  position: relative;
  transition: var(--transition-premium);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10%;
  right: 10%;
  width: 0;
  height: 2px;
  border-radius: 5px;
  background: var(--copper);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 0 10px rgba(198, 167, 107, 0.5);
}

.navbar-nav .nav-link.active::before {
  content: "" !important;
}

.navbar-nav .nav-link:hover {
  color: var(--white) !important;
  text-shadow: 0 0 8px rgba(198, 167, 107, 0.4);
  transform: scale(1.05);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

/* ── HAMBURGER ICON ────────────────────────────────────────── */
.hamburger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── MOBILE OFFCANVAS ─────────────────────────────────────── */
.mobile-offcanvas {
  background: #ffffff;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid rgba(198, 167, 107, 0.2);
  width: max(80vw, 300px) !important;
  z-index: 9999;
}

.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--copper);
  text-decoration: none;
  transition: var(--transition-fast);
  display: block;
}

.mobile-nav-link.active {
  color: var(--gold);
}

.mobile-nav-link:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-subnav-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.mobile-subnav-link:hover {
  color: var(--gold);
}

.btn-booknow.sm-btn {
  padding: 0.45rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

@media (max-width: 375px) {
  .btn-booknow.sm-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.65rem;
  }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  /* More reliable on mobile */
  min-height: 600px;
  background: #000;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 70%;
  height: 100%;
  color: #e7c283a6;
}

.hero-arrow:hover.swiper-button-next svg,
.hero-arrow:hover.swiper-button-prev svg {
  color: #fff !important;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.hero-media-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img,
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  /* Initial zoom for Ken Burns */
}

/* YouTube Background specialized cover logic */
.hero-youtube-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  /* 16:9 Aspect Ratio */
  min-height: 100vh;
  min-width: 177.77vh;
  /* 16:9 Aspect Ratio */
  transform: translate(-50%, -50%) scale(1.15);
  /* Zoom slightly to hide black bars/UI */
  pointer-events: none;
  z-index: 1;
}

.hero-youtube-container iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}


/* Base Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(255 226 213 / 47%) 20%, rgb(227 187 170 / 2%) 65%, rgb(251 224 210 / 3%) 100%);
  z-index: 2;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #ff500500 0%, rgba(255, 87, 9, 0) 100%
100%
);
  z-index: 3;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/60-lines.png");
  opacity: 0.03;
  z-index: 4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
}

@media (max-width: 991.98px) {
  .hero-content .row.align-items-center.min-vh-100 {
    min-height: auto !important;
    padding: 120px 18px 80px;
  }
}

.page-hero-content {
  position: relative;
  z-index: 10;
}

.hero-text-wrap {
  opacity: 1;
  /* Managed by GSAP */
}

.hero-eyebrow {
  display: block;
  font-size: .85rem;
  letter-spacing: .4em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-shadow: var(--text-shadow-premium);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--h1-size);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: var(--text-shadow-premium);
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 0 auto 2rem;
  box-shadow: var(--gold-glow);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto var(--container-gap);
  font-weight: 400;
  text-shadow: var(--text-shadow-premium);
}

/* Controls Layer */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 20;
}

/* Counter */
.hero-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.hero-counter .current {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-counter .divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-counter .total {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Pagination */
.hero-pagination {
  position: relative !important;
  bottom: 0 !important;
  width: auto !important;
  display: flex;
  gap: 12px;
}

.hero-pagination .swiper-pagination-bullet {
  background: #fff !important;
  width: 6px !important;
  height: 6px !important;
  opacity: 0.25 !important;
  margin: 0 !important;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.hero-pagination .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--gold) !important;
  transform: scale(1.5);
}

/* Custom Arrows */
.hero-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: static !important;
  margin: 0 !important;
}

.hero-arrow::after {
  display: none;
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-eyebrow {
    letter-spacing: .25em;
    font-size: 0.75rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }



  /* .hero-nav-arrows {
    display: none !important;
  } */
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 20;
}

.scroll-text {
  font-size: .65rem;
  letter-spacing: .5em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  text-transform: uppercase;
}

.mouse-icon {
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(198, 167, 107, 0.4);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  width: 2px;
  height: 6px;
  background: var(--gold);
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes scrollWheel {
  0% {
    top: 8px;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    top: 22px;
    opacity: 0;
  }
}

/* ── FEATURE BANNER ───────────────────────────────────────── */
.feature-banner {
  position: relative;
  overflow: hidden;
  /* Premium Cinematic Overlay: Deep tint on the edges, clearer in the middle */
  background-image:
    linear-gradient(135deg, rgba(14, 13, 33, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(14, 13, 33, 0.75) 100%),
    url(../images/v1/banner-sm.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 30px 18px 50px;
  border-radius: 24px;
  padding: 100px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .feature-banner {
    margin: 80px 0px 80px;
    border-radius: 0 !important;
  }

  .villa-feature-v2-section {

    padding-top: 0 !important;
  }
}

.wave-img {
  width: 100%;
  display: block;
}

.banner-wave.top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.wave-top {
  transform: rotate(180deg) scaleX(-1);
  opacity: .7;
}

.banner-wave.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.wave-bottom {
  opacity: .7;
}

.banner-eyebrow {
  font-size: .7rem;
  letter-spacing: .28em;
  color: rgba(11, 11, 11, .65);
  font-weight: 600;
  text-transform: uppercase;
}

.banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 7vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .04em;
  line-height: 1.2;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.banner-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  letter-spacing: 0.05em;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-pill {
  background: rgba(255, 255, 255, .45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50px;
  padding: .55rem 1.2rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--dark);
  text-align: center;
  transition: all .3s;
}

.feature-pill:hover {
  background: rgba(255, 255, 255, .7);
  transform: translateY(-3px);
}

/* ── VILLAS ───────────────────────────────────────────────── */
.villas-section {
  background: var(--off-white);
}

.villa-feature-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0, 0, 0, .14);
  height: 100%;
  min-height: 420px;
}

.villa-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.villa-feature-card:hover .villa-feature-img {
  transform: scale(1.05);
}

.villa-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, transparent 60%);
}

.villa-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  letter-spacing: .18em;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 3px;
}

.villa-feature-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-top: 2px solid var(--gold);
}

.villa-feature-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .04em;
}

.villa-feature-info p {
  font-size: .82rem;
  color: #6a5d4d;
  line-height: 1.6;
  margin: .5rem 0;
}

/* Villa carousel cards */
.villa-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid rgba(198, 167, 107, .2);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
  transition: all .3s;
}

.villa-card:hover,
.villa-card.active-card {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(198, 167, 107, .3);
  transform: translateY(-4px);
}

.villa-card-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.villa-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.villa-card:hover .villa-card-img-wrap img {
  transform: scale(1.08);
}

.villa-card-body {
  padding: .75rem .65rem;
  text-align: center;
}

.villa-card-title {
  font-size: .68rem;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}

/* Carousel controls */
.carousel-btn {
  background: rgba(255, 255, 255, .9);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  cursor: pointer;
  transition: all .25s;
}

.carousel-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* Banquet mini card */
.banquet-mini-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
}

.banquet-mini-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banquet-mini-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .7) 40%, rgba(0, 0, 0, .2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.banquet-mini-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
}

/* ── CUISINE ──────────────────────────────────────────────── */
.cuisine-section {
  background: var(--off-white);
  /* padding: var(--spacing-lg) 0; */
}

.cuisine-img-wrap {
  position: relative;
}

.cuisine-main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, .15);
}

.cuisine-glass-card {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  background: rgba(11, 11, 11, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(198, 167, 107, .35);
  border-radius: 10px;
  padding: 1.8rem 1.6rem;
  max-width: 240px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.cuisine-glass-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1.2;
}

.cuisine-glass-card p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.55;
  margin: .6rem 0;
}

.cuisine-grid-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.cuisine-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.cuisine-grid-img:hover img {
  transform: scale(1.07);
}

/* ── BANQUET ──────────────────────────────────────────────── */
.banquet-section {
  position: relative;
  background: url('../images/resorts-view.webp') center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--spacing-lg) 0;
}

.banquet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .42) 100%);
}

.banquet-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1rem;
  max-width: 580px;
  margin: auto;
}

.banquet-eyebrow {
  font-size: .7rem;
  letter-spacing: .28em;
  color: var(--gold);
  font-weight: 600;
}

.banquet-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
  line-height: 1.15;
}

.banquet-sub {
  font-size: .97rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.65;
}

/* ── OFFERS ───────────────────────────────────────────────── */
.offers-section {
  background: var(--off-white);
  padding: var(--spacing-lg) 0;
}

.offers-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.offers-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .5s;
}

.offers-img-wrap:hover img {
  transform: scale(1.04);
}

.offers-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: .65rem;
  letter-spacing: .18em;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: 3px;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  border-left: 3px solid var(--gold);
  height: 100%;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: .95rem;
  margin-bottom: .5rem;
}

.testimonial-card p {
  font-size: .8rem;
  color: #5a5040;
  line-height: 1.6;
  margin: 0 0 .8rem;
}

.testimonial-card .t-name {
  font-size: .67rem;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--dark);
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-v2-section {
  background: var(--off-white);
  padding: var(--section-padding);
}

.gallery-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-rows: 300px 300px; */
  gap: 20px;
}

.gallery-v2-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--dark);
}

.gallery-v2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.9;
}

.gallery-v2-item:hover img {
  transform: scale(1.1);
  opacity: 0.7;
}

.gi-tall {
  grid-row: span 2;
}

.gi-wide {
  grid-column: span 2;
}

.gallery-v2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(166, 124, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-v2-item:hover .gallery-v2-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: .72rem;
  letter-spacing: .2em;
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .6);
  padding: .45rem 1rem;
  border-radius: 3px;
}

/* ── CONNECT ──────────────────────────────────────────────── */
.connect-section {
  background: #fff;
  padding: var(--spacing-lg) 0;
}

.social-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 160px);
  gap: 8px;

  margin: 0 auto;
}

.sc-item {
  border-radius: 10px;
  overflow: hidden;
}

.sc-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.sc-item:hover img {
  transform: scale(1.07);
}

.sc-center {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.follow-card {
  text-align: center;
  padding: 1.5rem;
}

.follow-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  line-height: 1.2;
}

.follow-card p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
  margin-top: .5rem;
}

.social-icons-row a {
  color: var(--gold);
  font-size: 1.2rem;
  margin: 0 .4rem;
  transition: color .2s, transform .2s;
  display: inline-block;
}

.social-icons-row a:hover {
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section {
  position: relative;
  background: url('../images/nignt-ballon-view.webp') center/cover no-repeat;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: var(--section-padding);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(4px);
}

.contact-section .section-title {
  color: #fff !important;
}

.contact-glass-card {
  background: rgba(11, 11, 11, 0.45);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(198, 167, 107, 0.3);
  border-radius: 15px;
  padding: 3.5rem 4rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.contact-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(198, 167, 107, 0.2) !important;
  border-radius: 6px !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.2rem !important;
  transition: var(--transition-fast) !important;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, .5) !important;
}

.contact-input:focus {
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(198, 167, 107, 0.15) !important;
  border-color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-2);
  color: rgba(255, 255, 255, .65);
}

.footer-gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-heading {
  font-size: .7rem;
  letter-spacing: .22em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-body {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: .45rem;
}

.footer-links a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social-icons a {
  color: rgba(255, 255, 255, .5);
  font-size: 1.15rem;
  transition: color .2s, transform .2s;
  display: inline-block;
}

.footer-social-icons a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-input {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(198, 167, 107, .3);
  border-radius: 4px;
  padding: .6rem 1rem;
  color: rgba(255, 255, 255, .7);
  font-size: .82rem;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.footer-input:focus {
  outline: none;
  border-color: var(--gold);
}

.footer-copy {
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .06em;
}

/* ── RESPONSIVE OVERRIDES ─────────────────────────────────── */
@media (max-width: 1199.98px) {
  .villa-v2-glass-card {
    width: 350px;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 991.98px) {

  .cuisine-section,
  .villas-v3-section,
  .gallery-v2-section,
  .offers-v2-section,
  .contact-section {
    padding: var(--section-pad) 0;
  }

  .cuisine-main-img {
    height: 380px;
  }

  .cuisine-glass-card {
    position: relative;
    max-width: 94%;
    margin: -1rem auto 3rem;
    padding: 2.2rem 1.5rem;
    z-index: 5;
    transform: none;
  }

  .villa-v2-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .villa-v2-frame {
    width: 100%;
  }

  .villa-v2-glass-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    transform: translateY(5%) !important;
    margin-top: -4rem;
    padding: 2.5rem 1.5rem;
  }

  .gallery-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gi-tall,
  .gi-wide {
    grid-row: span 1;
    grid-column: span 1;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: var(--h2-size);
  }

  .cuisine-main-img {
    height: 300px;
  }

  .cuisine-glass-card {
    position: relative;
    max-width: 94%;
    margin: 0 auto 3rem;
    padding: 2.2rem 1.5rem;
    z-index: 5;
    transform: none;
  }

  .contact-glass-card {
    padding: 2.5rem 1.5rem;
  }

  .social-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 140px);
  }

  .sc-center {
    grid-column: 1 / 3;
    grid-row: 2 / 4;
  }
}

@media (max-width: 575.98px) {
  .gallery-v2-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .btn-booknow {
    padding: 0.8rem 1.5rem;
    width: auto;
    display: inline-block;
  }
}

/* -- VILLA FEATURE V2 ------------------------------------- */
.villa-feature-v2-section {
  background: var(--off-white);
  padding: var(--spacing-lg) 0;

}

.villa-v2-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 500px;
}

.villa-v2-frame {
  position: relative;
  width: 100%;
  padding: 12px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(198, 167, 107, 0.2);
}

.villa-v2-img-inner {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
}

.villa-v2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.villa-v2-frame:hover .villa-v2-img {
  transform: scale(1.05);
}

.villa-tag-v2 {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 4px;
  z-index: 2;
}

.villa-v2-glass-card {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) !important;
  width: 400px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 3.5rem 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.villa-v2-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.villa-v2-text {
  font-size: 0.95rem;
  color: #7c7c7c;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.btn-gold-pill {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none !important;
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
  transition: all 0.4s;
  box-shadow: 0 8px 25px rgba(198, 167, 107, 0.4);
  text-decoration: none;
  display: inline-block;
}

.btn-gold-pill:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(198, 167, 107, 0.5);
  color: #fff;
}

/* Responsive Overrides for Villa Feature V2 */
@media (max-width: 991.98px) {
  .villa-v2-wrapper {
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
    justify-content: center;
  }

  #villa-feature::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    left: 0;
    margin: auto;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .villas-next,
  .villas-prev {
    display: none;
  }

  .villa-v2-frame {
    width: 100%;
    margin-bottom: -60px;
  }

  .villa-v2-img-inner {
    height: 380px;
  }

  .villa-v2-glass-card {
    position: relative;
    width: 94%;
    right: auto;
    top: auto;
    transform: translateY(5%) !important;
    transform: none;
    padding: 2.5rem 1.5rem;
    margin: -2.5rem auto 0;
  }

  .villa-v2-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .villa-v2-frame {
    padding: 8px;
    border-radius: 12px;
  }

  .villa-v2-img-inner {
    height: 280px;
  }

  .villa-v2-glass-card {
    width: 95%;
    padding: 2rem 1.5rem;
    margin-top: -40px;
  }

  .villa-v2-title {
    font-size: 1.5rem;
  }
}


/* -- VILLAS V3 ------------------------------------------ */
.villas-v3-section {
  background: var(--off-white);
  padding: var(--section-padding);
}

.villa-v3-card {
  background: #5a624d;
  border-radius: 15px;
  overflow: hidden;
  padding: 12px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
}


.villa-v3-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.villa-v3-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.villa-v3-card:hover .villa-v3-img-wrap img {
  transform: scale(1.12);
}

.villas-v3-section .carousel-inner {

  padding: 18px 0;
}

.villa-v3-card:hover {
  background: linear-gradient(180deg, #d4b068 0%, #a67c37 100%);
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(166, 124, 55, 0.25);
  z-index: 2;
  border: 1px solid rgba(212, 176, 104, 0.2);
}

.villa-v3-card:hover .villa-v3-link {
  background: #fff;
  color: var(--dark);
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.villa-v3-body {
  padding-top: 15px;
  text-align: center;
}

.villa-v3-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.villa-v3-title.dark-text {
  color: #1a1a1a;
}

.villa-v3-link {
  font-size: 0.72rem;
  color: #d4b068;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.villa-v3-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}





.carousel-nav-v3 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #f1e9d9 !important;
  border: none !important;
  border-radius: 50%;
  color: #a67c37 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.carousel-nav-v3:hover {
  background: #d4b068 !important;
  color: #fff !important;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav-v3 i {
  font-size: 1.2rem;
}

.carousel-nav-v3.prev {
  left: 15px;
}

.carousel-nav-v3.next {
  right: 15px;
}

/* Indicators */
.v3-dot {
  display: inline-block;
  width: 30px;
  height: 4px;
  background: #e0d5c1;
  margin: 0 6px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}

.v3-dot.active {
  background: #d4b068;
  width: 50px;
}

@media (min-width: 1200px) {
  .carousel-nav-v3.prev {
    left: -30px;
  }

  .carousel-nav-v3.next {
    right: -30px;
  }

  #villasCarousel {
    overflow: visible;
  }
}

/* -- MOMENTS BANNER V3 ---------------------------------- */
.moments-banner-v3 {
  position: relative;
  background-color: #fdfaf5;
  min-height: 500px;
  z-index: 1;
}

.moments-v3-overlay {

  min-height: 500px;
  display: flex;
  position: relative;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  background: url('../images/resorts-view.webp') center/cover no-repeat;
  /* Diagonal Cut Effect */
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
}

.overlay-moments {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.moments-v3-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

/* -- OFFERS V2 ------------------------------------------ */
.offers-v2-section {
  background: #fdfaf5;
  padding: var(--spacing-lg) 0;
}

.offer-v2-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.offer-v2-img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.offer-v2-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 4px;
  transition: all 0.3s;
}

.offer-v2-link:hover {
  color: #d4b068;
  border-bottom-color: #d4b068;
}

.testimonial-v2-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.testimonial-v2-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stars-v2 {
  color: #d4b068;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-v2-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-v2-name {
  font-size: 0.75rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .carousel-nav-v3 {
    display: none;
  }

  .moments-banner-v3 {
    min-height: 400px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
  }

  .moments-v3-overlay {
    min-height: 400px;
  }

  .offer-v2-img {
    height: 350px;
  }
}


/* Refinement for Carousel Nav Buttons to match image exactly */
.carousel-nav-v3 {
  background: #f1e9d9 !important;
  /* Lighter gold/cream background */
  border: none !important;
  color: #a67c37 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-nav-v3:hover {
  background: #a67c37 !important;
  color: #fff !important;
}







/* -- GALLERY V2 (REFERENCE MATCH) ------------------------- */
.gallery-v2-section {
  background-color: #fdfaf5;
  padding: 80px 0;
}

.gallery-v2-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-v2-item {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-v2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.gallery-v2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(2px);
}

.gallery-v2-item:hover .gallery-v2-overlay {
  opacity: 1;
}

.gallery-v2-item:hover img {
  transform: scale(1.1);
}

.hover-circle {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #e0c98a 0%, #c6a76b 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(198, 167, 107, 0.4);
}

.gallery-v2-item:hover .hover-circle {
  transform: scale(1);
}

.hover-circle i {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.hover-circle span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gallery-indicator {
  width: 60px;
  height: 4px;
  background: #c6a76b;
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.gallery-indicator::after {
  content: '';
  position: absolute;
  right: -10px;
  width: 10px;
  height: 4px;
  background: rgba(198, 167, 107, 0.3);
  border-radius: 2px;
}

/* -- CONNECT V2 (REFERENCE MATCH) ------------------------- */
.connect-v2-section {
  background-color: #fdfaf5;
  padding-bottom: 100px;
}

.connect-v2-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.connect-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 20px;
}

.connect-v2-img-wrap {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.connect-v2-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.connect-v2-img-wrap:hover img {
  transform: scale(1.08);
}

.glass-connect-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.connect-v2-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.connect-v2-subtitle {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.connect-v2-handle {
  font-weight: 700;
  color: #c6a76b;
  display: block;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .gallery-v2-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .connect-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 160px);
    gap: 12px;
  }

  .glass-connect-card {
    width: 94%;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: -30px auto 30px;
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .gallery-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-v2-item {
    border-radius: 15px;
  }

  .hover-circle {
    width: 80px;
    height: 80px;
  }

  .connect-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .connect-v2-img-wrap {
    height: 150px;
  }
}

/* -- SWIPER CUSTOM --------------------------------------- */
.villas-swiper {
  padding: 20px 0 60px !important;
  position: relative;
}

.swiper-slide {
  height: auto;
}

.villas-next,
.villas-prev {
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--gold) !important;
  transition: var(--transition-fast);
  top: 50%;
  z-index: 10;
}

.villas-next:after,
.villas-prev:after {
  content: '' !important;
}

.villas-next:hover,
.villas-prev:hover {
  background: var(--gold);
  color: var(--white) !important;
  box-shadow: var(--gold-glow);
}


.swiper-pagination-bullet {
  background: var(--gold) !important;
  opacity: 0.3;
}



.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* -- FALLBACK UI ----------------------------------------- */
.fallback-card {
  border: 2px dashed var(--gold-light);
  background: rgba(198, 167, 107, 0.05);
  transition: var(--transition-smooth);
}

.fallback-card:hover {
  background: rgba(198, 167, 107, 0.1);
}

.text-gold {
  color: var(--gold) !important;
}


/* -- ULTRA-PREMIUM RESPONSIVE POLISH ------------------------- */
@media (max-width: 991.98px) {
  :root {
    --spacing-lg: 60px;
    --spacing-md: 40px;
    --spacing-sm: 30px;
  }

  .hero-glass-card {
    padding: 2.5rem 2rem;
  }

  .villas-swiper {
    padding: 20px 0 80px !important;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .gallery-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .cuisine-main-img {
    height: 350px;
  }

  .cuisine-glass-card {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: -50px;
    margin-left: 0;
    max-width: 100%;
  }

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

/* -- CINEMATIC REVEALS ----------------------------------- */
.villa-v3-card,
.gallery-v2-item,
.cuisine-grid-img {
  will-change: transform, opacity;
}



/* -- CONTACT LUXURY REDESIGN ------------------------- */
.contact-premium-section {
  background: #fff;
  position: relative;
}

.contact-info-luxury-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(198, 167, 107, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-info-luxury-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(198, 167, 107, 0.12);
  border-color: rgba(198, 167, 107, 0.3);
}

.contact-icon-premium {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fdfaf5 0%, #f1e9d9 100%);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s;
  border: 1px solid rgba(198, 167, 107, 0.2);
}

.contact-info-luxury-card:hover .contact-icon-premium {
  background: var(--gold);
  color: #fff;
  transform: rotateY(360deg);
}

.contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.contact-card-text {
  font-size: 0.95rem;
  color: #6a5d4d;
  line-height: 1.6;
  margin-bottom: 0;
}

.premium-glass-form-wrap {
  position: relative;
  padding: 100px 0;
  background: url('../images/banner2.jpg') center/cover no-repeat fixed;
}

.premium-glass-form-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.luxury-contact-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 4rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.luxury-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.luxury-form-subtitle {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.premium-input-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.premium-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 0;
  font-size: 1rem;
  color: #fff;
  transition: all 0.3s;
}

.premium-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.premium-input:focus {
  outline: none;
  border-color: var(--gold);
  padding-left: 10px;
}

.premium-input:focus::placeholder {
  opacity: 0;
  transform: translateX(10px);
}

.premium-label {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.premium-input:focus+.premium-label,
.premium-input:not(:placeholder-shown)+.premium-label {
  opacity: 1;
  transform: translateY(0);
}

.map-luxury-wrapper {
  position: relative;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  margin-top: -60px;
  z-index: 2;
  background: #fff;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .luxury-contact-form {
    padding: 3rem 2rem;
  }

  .connect-v2-section {
    padding-bottom: 0;
  }

  .banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .1px;
    line-height: 1;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .banner-sub {
    font-size: 14px;
    color: rgba(11, 11, 11, .7);
    margin: 0 auto;
    line-height: 18px;
    margin-top: 21px !important;
  }

  .feature-banner>div {
    padding: 0 !important;
  }

  .feature-banner {
    padding: 24px 18px;
  }

  .scroll-text {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
  }

  .luxury-form-title {
    font-size: 2rem;
  }
}

.whatsapp-inq {
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  display: flex;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  align-items: center;
  justify-content: center;
}

.whatsapp-inq:hover {
  background-color: #20b858;
  color: white;
}


.whatsapp-float {
  position: fixed;
  bottom: 38px;
  right: 38px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  z-index: 1000;
  display: flex;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  background-color: #20b858;
  color: white;
}


@media (max-width: 991.98px) {

  .whatsapp-float {
    bottom: 30px;
    right: 30px;
  }
}