/* ============================================
   Sapthagiri Villa — Premium Luxury Theme
   Logo Teal Green + Dark + Sunset Orange Accent
   ============================================ */

:root {
  --color-bg-dark: #050807;
  --color-bg-card: #0c1210;
  --color-bg-elevated: #141f1b;
  --color-green-deep: #0f1f1c;
  --color-green-mid: #1a3330;
  --color-green-light: #234842;

  /* Logo brand colors */
  --color-primary: #38B2AC;
  --color-primary-light: #4FD1C5;
  --color-primary-dark: #2C9A94;
  --color-accent: #ED8936;
  --color-accent-dark: #DD6B20;
  --color-cream: #FDF5E6;
  --color-cream-muted: #A8BDB9;
  --color-red: #8B0000;
  --color-white: #ffffff;
  --color-overlay: rgba(5, 8, 7, 0.78);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-accent: 'Italiana', Georgia, serif;
  --font-brand: 'Quicksand', system-ui, sans-serif;
  --font-script: 'Great Vibes', cursive;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-primary: 0 4px 24px rgba(56, 178, 172, 0.25);
  --glass-bg: rgba(12, 18, 16, 0.72);
  --glass-border: rgba(56, 178, 172, 0.18);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-dark);
  color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-cream);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-cream-muted);
  max-width: 600px;
}

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

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* Loading Screen */
.loader {
  position: fixed;
  inset: 0;
  background: var(--color-bg-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: min(320px, 85vw);
  animation: loaderPulse 2s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--color-green-mid);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  animation: loaderFill 2s ease forwards;
}

.loader-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--color-primary-light);
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.7; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* Floating Gradients */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}

.floating-orb--accent {
  width: 400px;
  height: 400px;
  background: var(--color-accent);
}

.floating-orb--primary {
  width: 300px;
  height: 300px;
  background: var(--color-primary);
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 54px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}

.navbar-brand span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-cream);
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-cream-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(56, 178, 172, 0.4);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border: 1px solid rgba(56, 178, 172, 0.45);
}

.btn-outline:hover {
  background: rgba(56, 178, 172, 0.12);
  border-color: var(--color-primary);
  color: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.glass-card:hover {
  border-color: rgba(56, 178, 172, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slider .swiper-slide {
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 13, 0.4) 0%,
    rgba(10, 15, 13, 0.6) 50%,
    rgba(10, 15, 13, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--color-primary-light);
  margin-bottom: 32px;
  animation: floatBadge 3s ease-in-out infinite;
}

.hero-badge i {
  color: var(--color-accent);
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.hero-welcome {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--color-primary-light);
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 4px;
  line-height: 1.2;
}

.hero-brand {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 0.06em;
  text-transform: none;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-title span:not(.hero-welcome):not(.hero-brand) {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.35em;
  color: var(--color-primary-light);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--color-cream-muted);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-floating-badge {
  position: absolute;
  bottom: 140px;
  right: 40px;
  z-index: 3;
  max-width: 280px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(56, 178, 172, 0.22), rgba(237, 137, 54, 0.12));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 178, 172, 0.35);
  border-radius: var(--radius-md);
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-floating-badge strong {
  display: block;
  color: var(--color-primary);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-floating-badge p {
  font-size: 0.9rem;
  color: var(--color-cream);
  line-height: 1.4;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.scroll-indicator span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream-muted);
  margin-bottom: 12px;
}

.wave-scroll {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(56, 178, 172, 0.45);
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
}

.wave-scroll::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 4px;
  animation: scrollWave 2s ease-in-out infinite;
}

@keyframes scrollWave {
  0% { top: 8px; opacity: 1; }
  100% { top: 28px; opacity: 0; }
}

/* Intro Section */
.intro-section {
  position: relative;
  background: var(--color-bg-dark);
  overflow: hidden;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.intro-image-wrap:hover img {
  transform: scale(1.05);
}

.intro-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 16px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

.intro-image-badge .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1;
}

.intro-image-badge .label {
  font-size: 0.8rem;
  color: var(--color-cream-muted);
}

.intro-content p {
  color: var(--color-cream-muted);
  margin-bottom: 20px;
}

.intro-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.intro-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 178, 172, 0.15);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  font-size: 1.2rem;
}

/* Why Choose Us */
.why-section {
  background: var(--color-bg-card);
  position: relative;
  overflow: hidden;
}

.why-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.why-shape {
  position: absolute;
  opacity: 0.12;
}

.why-shape--circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: 8%;
  right: -80px;
  animation: floatOrb 10s ease-in-out infinite;
}

.why-shape--ring {
  width: 180px;
  height: 180px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  top: 45%;
  left: 4%;
  animation: floatOrb 12s ease-in-out infinite reverse;
}

.why-shape--blob {
  width: 260px;
  height: 260px;
  background: var(--color-accent);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  bottom: 10%;
  right: 12%;
  filter: blur(40px);
  animation: blobMorph 14s ease-in-out infinite;
}

.why-shape--dot-grid {
  width: 140px;
  height: 140px;
  top: 18%;
  left: 8%;
  background-image: radial-gradient(var(--color-primary) 2px, transparent 2px);
  background-size: 16px 16px;
  animation: floatOrb 9s ease-in-out infinite;
}

.why-shape--triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(56, 178, 172, 0.25);
  bottom: 25%;
  left: 15%;
  animation: floatOrb 11s ease-in-out infinite;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg); }
  50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(20deg); }
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-header .section-subtitle {
  margin: 0 auto;
}

.why-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-gallery-main {
  grid-row: span 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.why-gallery-main img,
.why-gallery-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-gallery-sub {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.why-gallery-main:hover img,
.why-gallery-sub:hover img {
  transform: scale(1.05);
}

.why-intro {
  color: var(--color-cream-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.why-intro strong {
  color: var(--color-primary-light);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-point {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.why-point:hover {
  border-color: rgba(56, 178, 172, 0.35);
  transform: translateX(6px);
}

.why-point-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 178, 172, 0.15);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  font-size: 1.2rem;
}

.why-point h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-cream);
  margin: 0;
}

.why-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.why-showcase-card--reverse .why-showcase-image {
  order: 2;
}

.why-showcase-card--reverse .why-showcase-content {
  order: 1;
}

.why-showcase-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 340px;
}

.why-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.why-showcase-card:hover .why-showcase-image img {
  transform: scale(1.06);
}

.why-showcase-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(5, 8, 7, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--color-primary-light);
}

.why-showcase-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-showcase-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(56, 178, 172, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.why-showcase-content h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--color-cream);
}

.why-showcase-content p {
  color: var(--color-cream-muted);
  margin-bottom: 20px;
}

.why-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-showcase-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-cream-muted);
}

.why-showcase-list i {
  color: var(--color-primary);
  font-size: 1rem;
}

/* Villa Features — Scroll Cards */
.features-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.feature-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid rgba(56, 178, 172, 0.15);
}

/* Trust Stats — after testimonials */
.trust-stats-section {
  padding: 48px 0;
  background: var(--color-bg-card);
  border-top: 1px solid rgba(56, 178, 172, 0.12);
  border-bottom: 1px solid rgba(56, 178, 172, 0.12);
}

.trust-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-stat-item {
  text-align: center;
  min-width: 120px;
}

.trust-stat-item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--color-primary);
  line-height: 1;
}

.trust-stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--color-cream-muted);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

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

.feature-stats .stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1;
}

.feature-stats .stat-label {
  font-size: 0.85rem;
  color: var(--color-cream-muted);
  margin-top: 8px;
}

/* Legacy scroll cards — kept for other pages */
.features-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.features-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.feature-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--color-cream);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feature-nav-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.features-swiper {
  overflow: visible;
  padding-bottom: 20px;
}

.features-swiper .swiper-slide {
  height: auto;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 178, 172, 0.35);
  box-shadow: var(--shadow-soft);
}

.feature-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.feature-card-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: var(--shadow-primary);
}

.feature-card-body {
  padding: 24px;
}

.feature-card-body h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.feature-card-body p {
  font-size: 0.9rem;
  color: var(--color-cream-muted);
  line-height: 1.6;
}

/* Home Gallery Section */
.home-gallery-section {
  background: var(--color-green-deep);
  position: relative;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header .section-subtitle {
  margin: 0 auto;
}

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

.gallery-filter {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--color-cream-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 8, 7, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-item-overlay span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-cream);
}

.gallery-item-overlay i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 7, 0.95);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 24px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  margin: 0 auto;
}

.lightbox-content p {
  margin-top: 16px;
  color: var(--color-cream-muted);
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--color-cream);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--color-cream);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* Luxury Experience */
.experience-section {
  background: var(--color-green-deep);
  position: relative;
  overflow: hidden;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.experience-gallery .gallery-main {
  grid-row: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.experience-gallery .gallery-main img,
.experience-gallery .gallery-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-gallery .gallery-sub {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.experience-list {
  margin-top: 32px;
}

.experience-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(56, 178, 172, 0.12);
  color: var(--color-cream-muted);
}

.experience-list li i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials-section {
  background: var(--color-bg-dark);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  color: var(--color-cream);
  line-height: 1.6;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
}

.testimonial-avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-info h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-cream);
}

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

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--color-cream);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Parallax BBQ Section */
.parallax-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 8, 7, 0.88), rgba(15, 31, 28, 0.78));
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.parallax-content .section-title {
  margin-bottom: 24px;
}

.parallax-content p {
  color: var(--color-cream-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.parallax-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--color-cream-muted);
  margin-top: 4px;
}

/* Nature Farming Section */
.nature-section {
  background: var(--color-bg-card);
  position: relative;
}

.nature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.nature-media {
  width: 100%;
}

.nature-video-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
  background: var(--color-bg-dark);
}

.nature-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nature-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.nature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}

.nature-img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

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

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

.nature-content .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.nature-content .tag {
  padding: 8px 18px;
  background: rgba(56, 178, 172, 0.12);
  border: 1px solid rgba(56, 178, 172, 0.28);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-primary);
}

/* CTA Banner */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 80px 60px;
  text-align: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 31, 28, 0.94), rgba(5, 8, 7, 0.9));
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--color-cream-muted);
  max-width: 550px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand img {
  max-width: 240px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--color-cream-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--color-cream-muted);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--color-cream-muted);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--color-cream-muted);
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--color-primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--color-cream-muted);
}

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

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--color-cream-muted);
}

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

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: floatBadge 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}
