/* ============================================================
   PALM TREE VILLA HOMESTAY – LUXURY DESIGN SYSTEM
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================================
   1. CSS VARIABLES / DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --primary: #2E7D32;
  --primary-dark: #1B5E20;
  --primary-light: #4CAF50;
  --gold: #C49A3A;
  --gold-light: #D4AF5A;
  --gold-dark: #A07820;
  --cream: #F7F3EA;
  --cream-dark: #EDE5D0;
  --dark: #1D1D1D;
  --dark-alt: #2A2A2A;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --text-muted: #777;
  --text-body: #444;
  --border: rgba(196, 154, 58, 0.25);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #C49A3A 0%, #F5D97A 50%, #C49A3A 100%);
  --gradient-green: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
  --gradient-dark: linear-gradient(180deg, rgba(29, 29, 29, 0) 0%, rgba(29, 29, 29, 0.85) 100%);
  --gradient-hero: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);

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

  /* Sizing */
  --header-h: 90px;
  --section-pad: 100px 0;
  --container-max: 1320px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.20);
  --shadow-gold: 0 8px 32px rgba(196, 154, 58, 0.3);
  --shadow-green: 0 8px 32px rgba(46, 125, 50, 0.3);

  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

input, select, textarea {
  font-family: inherit;
}

/* ============================================================
   3. LOADING SCREEN
   ============================================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-align: center;
}

.loader-logo span {
  color: var(--white);
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 99px;
  animation: loadBar 1.8s ease forwards;
}

@keyframes loadBar {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.loader-ganesha {
  opacity: 0.15;
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: 60px;
}

/* ============================================================
   4. HERITAGE BACKGROUND WATERMARKS
   ============================================================ */
.heritage-watermark {
  position: absolute;
  opacity: 0.04;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.heritage-watermark svg {
  width: 100%;
  height: 100%;
}

/* Athangudi tile decorative pattern */
.tile-divider {
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(90deg,
      var(--gold) 0px,
      var(--gold) 4px,
      transparent 4px,
      transparent 12px,
      var(--primary) 12px,
      var(--primary) 16px,
      transparent 16px,
      transparent 24px);
  opacity: 0.6;
}

.section-ornament {
  text-align: center;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 12px;
  opacity: 0.7;
}

/* ============================================================
   5. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-title-white {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.italic-text {
  font-style: italic;
}

/* ============================================================
   6. CONTAINER & LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: var(--section-pad);
}

.section-pad-sm {
  padding: 60px 0;
}

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

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

/* Grid utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.counter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

@media (max-width:999px) {
  .grid-4, .grid-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .feature-card {
    transform: unset !important;
  }

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



/* Flex utilities */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196, 154, 58, 0.45);
}

.btn-green {
  background: var(--gradient-green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(46, 125, 50, 0.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

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

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

/* ============================================================
   8. HEADER / NAVIGATION
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
  padding: 0 40px;
}

#header.transparent {
  background: transparent;
}

#header.scrolled {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  height: 72px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.header-inner .logo {
  margin-top: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.logo .header-img {
  width: 80px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
}

.logo-text span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}

/* Transparent state */
#header.transparent .logo-text strong,
#header.transparent .logo-text span {
  color: var(--white);
}

/* Scrolled state */
#header.scrolled .logo-text strong {
  color: var(--dark);
}

#header.scrolled .logo-text span {
  color: var(--gold);
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 99px;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

#header.transparent .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

#header.transparent .nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

#header.scrolled .nav-link {
  color: var(--dark);
}

#header.scrolled .nav-link:hover {
  color: var(--primary);
  background: rgba(46, 125, 50, 0.06);
}

.nav-btn {
  margin-left: 12px;
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: var(--transition);
}

#header.scrolled .hamburger span {
  background: var(--dark);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
  color: var(--white);
  padding: 12px 24px;
  font-family: var(--font-heading);
}

.mobile-nav .nav-link::after {
  background: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

/* ============================================================
   9. FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 130px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  overflow: visible;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.1);
}

.float-btn .tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  pointer-events: none;
}

.float-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.float-whatsapp {
  background: #25D366;
  animation: pulse-green 2.5s infinite;
}

.float-call {
  background: var(--primary);
}

.float-book {
  background: var(--gradient-gold);
  color: var(--dark);
  width: 60px;
  height: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  animation: pulse-gold 2.5s infinite;
}

/* Left floating buttons */
.floating-buttons-left {
  position: fixed;
  bottom: 30px;
  left: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-map {
  background: #4285F4;
}

.float-map .tooltip {
  left: calc(100% + 12px);
  right: auto;
}

@keyframes pulse-green {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(196, 154, 58, 0.5);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(196, 154, 58, 0);
  }
}

/* ============================================================
   10. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

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

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

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  padding-top: var(--header-h);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 154, 58, 0.15);
  border: 1px solid rgba(196, 154, 58, 0.5);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.swiper-slide-active .hero-badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.swiper-slide-active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.swiper-slide-active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.swiper-slide-active .hero-buttons {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

/* Hero Swiper Nav & Pagination */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 40px;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll i {
  font-size: 1.2rem;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================================
   11. FLOATING BOOKING FORM
   ============================================================ */
.booking-widget {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  max-width: 900px;
  padding: 0 24px;
  padding-bottom: 0;
}

.booking-widget-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.bw-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bw-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.bw-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
}

.bw-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.bw-input option {
  color: var(--dark);
  background: var(--white);
}

.bw-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   12. ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--cream);
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image-wrap:hover img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.about-content {
  padding: 40px 20px 40px 60px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateX(4px);
}

.about-feature i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.text-white{
  color:#fff !important
}
/* ============================================================
   13. WHY CHOOSE US SECTION
   ============================================================ */
.features-section {
  /* background: var(--bg); */
  background : url('../../img/background.webp');
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  transform: scale(1, 1) !important;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-green);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover .feature-icon, .feature-card:hover h4, .feature-card:hover p {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(196, 154, 58, 0.1), rgba(46, 125, 50, 0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: var(--font-body);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

/* ============================================================
   14. ROOMS SECTION
   ============================================================ */
.rooms-section {
  background: var(--cream);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.room-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.room-card-body {
  padding: 28px;
}

.room-card-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.room-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
  margin-bottom: 16px;
}

.room-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.room-amenity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg);
  padding: 5px 12px;
  border-radius: 50px;
}

.room-amenity i {
  color: var(--primary);
  font-size: 0.75rem;
}

/* ============================================================
   15. AMENITIES SECTION
   ============================================================ */
.amenities-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.amenities-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../../img/background.webp') center/cover no-repeat;
  opacity: 0.08;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.amenity-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(196, 154, 58, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.amenity-item:hover {
  background: rgba(196, 154, 58, 0.12);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.amenity-item i {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  transition: var(--transition);
}

.amenity-item:hover i {
  transform: scale(1.2);
}

.amenity-item h4 {
  font-size: 0.85rem;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
}

/* ============================================================
   16. GALLERY SECTION
   ============================================================ */
.gallery-section {
  background: var(--bg);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--gradient-gold);
  color: var(--dark);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.gallery-masonry {
  columns: 4;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 29, 0.55);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-item:hover::after {
  opacity: 1;
}

/* ============================================================
   17. EXPERIENCE SECTION
   ============================================================ */
.experience-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 29, 29, 0.9) 0%, rgba(29, 29, 29, 0.5) 60%, rgba(29, 29, 29, 0.1) 100%);
}

.experience-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 80px 0;
}

/* ============================================================
   18. NEARBY ATTRACTIONS
   ============================================================ */
.attractions-section {
  background: var(--cream);
}

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

.attraction-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.attraction-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.attraction-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.attraction-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.attraction-distance {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--gradient-gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}

.attraction-body {
  padding: 20px;
}

.attraction-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.attraction-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   19. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bg);
  position: relative;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin: 16px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--dark);
  font-weight: 700;
}

.testimonial-info strong {
  font-size: 0.95rem;
  color: var(--dark);
  display: block;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   20. BOOKING / CONTACT SECTION
   ============================================================ */
.booking-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.booking-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(196, 154, 58, 0.2);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  box-shadow: var(--shadow-xl);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
}

.form-input {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 58, 0.15);
}

.form-input::placeholder {
  color: #aaa;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   21. LOCATION SECTION
   ============================================================ */
.location-section {
  background: var(--white);
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.contact-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.contact-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.contact-card p, .contact-card a {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-card a:hover {
  color: var(--primary);
}

/* ============================================================
   22. FOOTER
   ============================================================ */
#footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-img {
  width: 120px;
}

.footer-logo .logo-icon {
  width: 150px;
  height: 150px;
  background: var(--white);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196, 154, 58, 0.3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-link i {
  font-size: 0.7rem;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span, .footer-contact-item a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-bottom-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

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

/* ============================================================
   23. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-h);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 29, 29, 0.5) 0%, rgba(29, 29, 29, 0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.breadcrumb a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb span {
  font-size: 0.82rem;
  color: var(--gold);
}

.breadcrumb i {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   24. SCROLL TO TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 40px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 800;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(196, 154, 58, 0.5);
}

/* ============================================================
   25. SECTION DECORATIONS
   ============================================================ */
.kolam-border {
  height: 24px;
  background: repeating-linear-gradient(45deg,
      var(--gold) 0px,
      var(--gold) 2px,
      transparent 2px,
      transparent 10px);
  opacity: 0.12;
  margin: 0;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 20px;
}

/* ============================================================
   26. SWIPER CUSTOM
   ============================================================ */
.swiper-button-next, .swiper-button-prev {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: var(--white) !important;
  box-shadow: var(--shadow-md) !important;
  color: var(--dark) !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1rem !important;
  font-weight: 700 !important;
}

/* ============================================================
   27. AOS OVERRIDES
   ============================================================ */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

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

  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .footer-grid>div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 992px) {
  :root {
    --header-h: 72px;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

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

  .about-content {
    padding: 40px 0 0;
  }

  .about-badge {
    right: 0;
  }

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

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

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

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

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

  .booking-form {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .gallery-masonry {
    columns: 3;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 70px 0;
  }

  #header {
    padding: 0 20px;
  }

  .booking-widget-card {
    grid-template-columns: 1fr 1fr;
  }

  .rooms-grid {
    /* grid-template-columns: 1fr; */
    display: block;
  }
  .rooms-grid .room-card{
    margin-bottom:30px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .gallery-masonry {
    columns: 2;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .booking-card {
    padding: 36px 24px;
  }

  .hero-nav {
    display: none;
  }
}

@media (max-width: 576px) {
  .booking-widget-card {
    grid-template-columns: 1fr;
  }

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

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

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

  .gallery-masonry {
    columns: 1;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }
}

/* ============================================================
   29. ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.animate-fade-up {
  animation: fadeInUp 0.7s ease forwards;
}

.animate-fade {
  animation: fadeIn 0.7s ease forwards;
}

/* ============================================================
   30. UTILITY CLASSES
   ============================================================ */
.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.d-none {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

/* ============================================================
   31. PAGE HERO (Subpages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg {
  transform: scale(1);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 56px;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: max(24px, calc((100% - var(--container-max)) / 2 + 24px));
  padding-right: 24px;
}

.page-hero-content .section-label {
  color: var(--gold-light);
}

.page-hero-content .section-title {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 3rem;
}

/* ============================================================
   32. BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb i {
  font-size: 0.65rem;
}

.breadcrumb span {
  color: var(--gold-light);
  font-weight: 600;
}

/* ============================================================
   33. GALLERY FILTERS
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.gallery-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(196, 154, 58, 0.06);
}

.gallery-filter-btn.active {
  background: var(--gradient-gold);
  color: var(--dark);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   34. EXPERIENCE / CTA SECTION
   ============================================================ */
.experience-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 29, 29, 0.75) 0%, rgba(46, 125, 50, 0.5) 100%);
}

.experience-section .container {
  position: relative;
  z-index: 2;
}

/* ============================================================
   35. BOOKING SECTION (index CTA)
   ============================================================ */
.booking-section {
  background: var(--gradient-green);
  padding: var(--section-pad);
  text-align: center;
}

.booking-section .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.booking-section .section-title {
  color: var(--white);
}

.booking-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   36. MAP WRAPPER
   ============================================================ */
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

/* ============================================================
   37. FORM ELEMENTS (enhanced)
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.3px;
}

.form-input {
  padding: 13px 16px;
  border: 1.5px solid #E0D8C8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--bg);
  transition: var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196, 154, 58, 0.12);
}

.form-input::placeholder {
  color: #AAA;
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

/* ============================================================
   38. BUTTONS (extra variants)
   ============================================================ */
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-green {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: 16px 36px !important;
  font-size: 0.95rem !important;
}

/* Section padding variants */
.section-pad-sm {
  padding: 60px 0;
}

/* ============================================================
   39. SECTION TITLE – WHITE VARIANT
   ============================================================ */
.section-title-white {
  color: var(--white) !important;
}

/* ============================================================
   40. RESPONSIVE – SUB PAGE PAGES
   ============================================================ */
@media (max-width: 768px) {
  .page-hero {
    height: 360px;
  }

  .page-hero-content .section-title {
    font-size: 2rem;
  }

  .map-wrapper {
    height: 280px;
  }

  .gallery-filters {
    gap: 7px;
  }

  .gallery-filter-btn {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
}

@media (max-width: 576px) {
  .page-hero {
    height: 300px;
  }

  .page-hero-content .section-title {
    font-size: 1.6rem;
  }
}

/* ============================================================
   41. VINAYAGAR BACKDROP WATERMARK (alternating sections)
   ============================================================ */
.vinayagar-bg {
  position: relative;
  overflow: hidden;
}

.vinayagar-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  background: url('../../img/vinayar.webp') center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(1) sepia(0.5);
}

.vinayagar-bg>* {
  position: relative;
  z-index: 1;
}

/* Left-side Vinayagar variant */
.vinayagar-bg-left::before {
  right: auto;
  left: -60px;
}

/* Center Vinayagar (for stats/CTA sections) */
.vinayagar-bg-center::before {
  right: 50%;
  transform: translate(50%, -50%);
  width: 520px;
  height: 520px;
  opacity: 0.05;
}

/* Repeat pattern for multi-Vinayagar sections */
.vinayagar-bg-both::before {
  width: 320px;
  height: 320px;
  right: -40px;
  opacity: 0.06;
}

.vinayagar-bg-both::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  background: url('../../img/vinayar.webp') center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(1) sepia(0.5);
}

/* ============================================================
   42. BOUNCE ANIMATION
   ============================================================ */
@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  30% {
    transform: translateY(-12px) scale(1.08);
  }

  50% {
    transform: translateY(-6px) scale(1.04);
  }

  70% {
    transform: translateY(-10px) scale(1.06);
  }
}

@keyframes iconBounceSlow {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Applied via JS when element enters viewport */
.icon-bouncing {
  animation: iconBounceSlow 2.2s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
  animation: iconBounce 0.7s ease;
}

/* Float buttons gentle bounce */
.float-btn {
  animation: iconBounceSlow 3s ease-in-out infinite;
}

.float-whatsapp {
  animation-delay: 0s;
}

.float-call {
  animation-delay: 0.4s;
}

.float-book {
  animation-delay: 0.8s;
}

.float-map {
  animation-delay: 0.2s;
}

/* ============================================================
   43. INNER PAGE HEADER – always dark/scrolled look
   ============================================================ */
/* When header has scrolled class on inner pages, override nav colour */
#header.scrolled .nav-link {
  color: var(--dark) !important;
}

#header.scrolled .nav-link:hover {
  color: var(--primary) !important;
}

#header.scrolled .nav-link.active {
  color: var(--primary) !important;
}

#header.scrolled .logo-text strong {
  color: var(--dark);
}

#header.scrolled .logo-text span {
  color: var(--gold);
}

/* ============================================================
   44. PRELOADER – Vinayagar image (replaces SVG)
   ============================================================ */
.loader-vinayagar {
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0.85;
  animation: iconBounceSlow 1.6s ease-in-out infinite;
  border-radius: 50%;
  background: rgba(196, 154, 58, 0.08);
  padding: 8px;
}

/* ============================================================
   45. ABOUT SECTION – Vinayagar watermark backdrop
   ============================================================ */
.about-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: url('../../img/vinayar.webp') center/contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  filter: sepia(0.3);
}

/* ============================================================
   46. FEATURES SECTION – Vinayagar backdrop (fix blank issue)
   ============================================================ */
.features-section {
  background : url('../../img/background.webp');
  background-size:cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* .features-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: url('../../img/vinayar.webp') center/contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
} */

/* Ensure cards always show above watermark */
.features-section .container {
  position: relative;
  z-index: 1;
}

.feature-card {
  position: relative;
  z-index: 1;
}