/* Manvaasam Luxury Design System */
:root {
  /* Exclusive Palette */
  --primary-green: #64bb3c;
  /* --primary-green: #10B981; */
  --primary-dark: #4a8f2d;
  /* --primary-dark: #059669; */
  --gold: #c5a059;
  --gold-dark: #a6803d;
  --dark: #0f1012;
  --dark-light: #1a1c23;
  --champagne: #f4f1ea;
  --off-white: #faf9f6;
  --slate: #4a4e54;
  
  /* Luxury Eco Palette */
  --beige-warm: #F5F1E9;
  --forest-dark: #1A2A20;
  --gold-muted: #B09B71;
  --olive-deep: #4B533F;

  /* Typography System */
  --font-main: 'Inter', sans-serif;
  --forest-deep: #1B3B2B; /* Deep Forest Green for Headings */
  --green-muted: #5D6D5E; /* Muted Gray-Green for Body Text */

  /* Motion */
  --transition-soft: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-entry:
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--forest-deep);
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p, span, li, label, input, textarea {
  font-family: var(--font-main);
  color: var(--green-muted);
  font-weight: 400 !important;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Natural Green Text Selection */
::selection {
  background-color: var(--brand-brown);
  color: #ffffff;
}
::-moz-selection {
  background-color: var(--brand-brown);
  color: #ffffff;
}
/* ::selection{
    background-color: #10B981;
    color: #FFFFFF;
}
::-moz-selection {
    background-color: #10B981;
    color: #FFFFFF;
} */
body {
  font-family: var(--font-main);
  background-color: var(--off-white);
  color: var(--green-muted);
  overflow-x: hidden;
}

/* Luxury Sections */
.section-luxury {
  padding: 150px 0;
}

.container-luxury {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Refined Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
}

.heading-xl {
  font-size: clamp(3.2rem, 10vw, 6rem);
}

.heading-lg {
  font-size: clamp(2.5rem, 6vw, 4rem);
}
.heading-md {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.text-meta {
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--primary-green);
  margin-bottom: 20px;
  display: block;
}

/* Cinematic Transitions */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-entry);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Luxury Buttons */
.btn-luxury {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  padding: 18px 45px;
  border: 1px solid var(--dark);
  display: inline-block;
  transition: var(--transition-soft);
  position: relative;
  overflow: hidden;
}

.btn-luxury:hover {
  color: var(--off-white);
  background: #6b4e2e;
}

.btn-luxury-gold {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-luxury-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* Parallax Elements */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Menu Customization */
.custom-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  height: 90px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Exclusive Card */
.exclusive-card {
  background: white;
  padding: 60px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-soft);
}

.exclusive-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

/* Custom Cursor Effect */
@media (min-width: 1024px) {
    .cursor-dot,
    .cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        opacity: 0.85;
        transition: transform 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out, opacity 0.3s ease-out;
        will-change: transform;
    }

    .cursor-dot {
        width: 12px;
        height: 12px;
        background-color: #6B4E2E;
        margin-left: -6px;
        margin-top: -6px;
        box-shadow: 0 0 15px rgba(107, 78, 46, 0.6);
    }

    .cursor-ring {
        width: 40px;
        height: 40px;
        border: 1px solid #6B4E2E;
        margin-left: -20px;
        margin-top: -20px;
        opacity: 0.6;
    }

    .cursor-dot.hover {
        background-color: #64BB3C;
        transform: scale(1.5);
        box-shadow: 0 0 20px rgba(100, 187, 60, 0.8);
    }

    .cursor-ring.hover {
        border-color: #64BB3C;
        transform: scale(1.3);
        opacity: 0.4;
    }
}

/* --- High-End Luxury Hero Redesign --- */
.hero-window {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Very slow cinematic zoom */
  animation: ken-burns-slow 40s ease-in-out infinite alternate;
  z-index: 1;
  filter: brightness(0.8) contrast(1.1);
}

.hero-mobile {
  display: none;
}

.hero-overlay-luxe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Deep cinematic gradient */
  background: linear-gradient(
    180deg,
    rgba(26, 42, 32, 0.7) 0%,
    rgba(26, 42, 32, 0.3) 50%,
    rgba(26, 42, 32, 0.7) 100%
  );
  z-index: 2;
}

/* Slider Styles */
.glass-slider-badge {
  position: absolute;
  bottom: 25px;
  left: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.12); /* Very transparent */
  padding: 10px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

.glass-slider-badge i {
  color: #FFFFFF;
  font-size: 0.9rem;
}

.glass-slider-badge span {
  font-size: 0.8rem;
  color: #FFFFFF;
  letter-spacing: 0.8px;
  font-weight: 500;
  text-transform: uppercase;
}
.story-slider .swiper-pagination-bullet-active {
  background: var(--primary-green) !important;
}

.hero-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 3;
}

.hero-content-luxe {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--beige-warm);
  padding: 0 40px;
}

/* Staggered Reveal */
.luxe-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.8s var(--ease-premium), transform 1.8s var(--ease-premium);
}

.luxe-reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.luxe-delay-1 { transition-delay: 0.3s; }
.luxe-delay-2 { transition-delay: 0.7s; }
.luxe-delay-3 { transition-delay: 1.1s; }
.luxe-delay-4 { transition-delay: 1.5s; }

/* Premium Typography */
.hero-luxe-badge {
  display: inline-block;
  background: rgba(245, 241, 233, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(245, 241, 233, 0.15);
  padding: 10px 32px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige-warm);
  margin-bottom: 40px;
}

.hero-luxe-title {
  font-size: clamp(2.6rem, 10vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--beige-warm);
}

.hero-luxe-title .accent-text {
  position: relative;
  display: inline; /* Changed from inline-block to allow natural word wrapping without extra gaps */
}

.hero-luxe-title .accent-text::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-muted);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1.5s var(--ease-premium) 1s;
}

.luxe-reveal-active .accent-text::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-luxe-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  max-width: 650px;
  line-height: 1.8;
  color: rgba(245, 241, 233, 0.8);
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}

/* Premium Button */
.btn-luxe-outline {
  position: relative;
  padding: 20px 52px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--beige-warm);
  background: transparent;
  border: 1px solid rgba(245, 241, 233, 0.3);
  border-radius: 2px;
  transition: var(--transition-soft);
  overflow: hidden;
}

.btn-luxe-outline:hover {
  border-color: var(--beige-warm);
  background: rgba(245, 241, 233, 0.05);
  letter-spacing: 0.2em;
  transform: translateY(-2px);
}

/* Animations */
@keyframes ken-burns-slow {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

/* Interactive Scroll Indicator */
.luxe-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.6;
}

.luxe-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--beige-warm);
}

.luxe-scroll-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
  animation: luxe-line-flow 2.5s infinite var(--ease-premium);
}

/* --- Brand Preloader --- */
.luxe-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999; /* Highest priority */
  transition: opacity 1s var(--ease-premium), visibility 1s var(--ease-premium);
}

.luxe-preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  animation: preloader-reveal 1.2s var(--ease-premium) forwards;
}

.preloader-logo {
    height: clamp(140px, 18vw, 210px); /* Increased size from 100px-150px to 160px-240px */
  width: auto;
  margin-bottom: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.02));
}

.preloader-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.preloader-dots .dot {
  width: 12px;
  height: 12px;
  background: var(--primary-green);
  border-radius: 50%;
  animation: luxe-dot-pulse 1.4s infinite ease-in-out both;
}

.preloader-dots .dot:nth-child(1) { animation-delay: -0.32s; }
.preloader-dots .dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes luxe-dot-pulse {
  0%, 80%, 100% { 
    transform: scale(0.6); 
    opacity: 0.2; 
  }
  40% { 
    transform: scale(1.2); 
    opacity: 1; 
  }
}

@keyframes preloader-reveal {
  from { 
    opacity: 0; 
    transform: scale(0.95) translateY(10px); 
  }
  to { 
    opacity: 1; 
    transform: scale(1) translateY(0); 
  }
}

@keyframes luxe-line-flow {
  0% { height: 0; opacity: 0; transform: translateY(0); }
  30% { height: 80px; opacity: 1; transform: translateY(0); }
  100% { height: 0; opacity: 0; transform: translateY(80px); }
}
/* Mobile Luxury Refinements */
/* Mobile Luxury Refinements */
@media (max-width: 768px) {
  .hero-window {
    height: 70vh; /* Aggressively reduced height */
    min-height: 480px; /* Reduced min-height */
  }

  .hero-content-luxe {
    padding: 0 20px;
  }

  .hero-luxe-badge {
    margin-bottom: 16px;
    padding: 6px 20px;
    font-size: 0.65rem;
  }

  .hero-luxe-title {
    margin-bottom: 12px;
  }

  .hero-luxe-sub {
    margin-bottom: 32px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .btn-luxe-outline {
    padding: 16px 40px;
    font-size: 0.8rem;
  }

  .luxe-scroll {
    bottom: 20px;
  }

  .luxe-scroll-line {
    height: 40px;
  }

  .division-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Responsive Video Toggling */
  .hero-desktop {
    display: none !important;
  }
  .hero-mobile {
    display: block !important;
  }
}
