* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gilroy";
}

html,
body {
  height: 100%;
  width: 100%;
}

:root {
  --nav-height: 96px;
  --sage: #9caf88;
  --forest: #3a5a40;
  --gold: #d4a76a;
  --cream: #f5f1e6;
  --clay: #b87d4b;
  --dark: #1a2c21;
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
} */

/* === MODERN NAVBAR === */
.modern-nav {
  
   position: fixed;
  top: 0;
  left: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
  background: rgba(245, 241, 230, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(156, 175, 136, 0.2);
}

.modern-nav.scrolled {
  padding: 1rem 0;
  background: rgba(245, 241, 230, 0.98);
  box-shadow: 0 10px 30px rgba(26, 44, 33, 0.1);
  border-bottom: 2px solid var(--gold);
}

.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1001;
}

.brand-glow {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0.3;
  filter: blur(10px);
  animation: brandPulse 4s infinite;
}

@keyframes brandPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1.2);
  }
}

.brand-text {
  position: relative;
  background: linear-gradient(45deg, var(--forest), var(--clay));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-icon {
  color: var(--gold);
  font-size: 2rem;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--forest);
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid transparent;
}

.nav-link:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 167, 106, 0.1),
    transparent
  );
  transition: 0.5s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-cta {
  background: linear-gradient(45deg, var(--forest), var(--clay));
  color: white !important;
  border: none;
  padding: 1rem 2rem !important;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(58, 90, 64, 0.3);
  transition: var(--transition);
}

.nav-cta::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  transform: scale(0);
  transition: transform 0.5s;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(58, 90, 64, 0.4);
}

.nav-cta:hover::after {
  transform: scale(1);
}

/* === FLOATING NAV INDICATORS === */
.nav-indicator {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.3s;
}

.nav-item:hover .nav-indicator {
  width: 80%;
}

/* === MODERN HAMBURGER === */
.hamburger-modern {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: 2px solid var(--forest);
  border-radius: 10px;
  padding: 8px;
  z-index: 1001;
  transition: var(--transition);
}

.hamburger-modern:hover {
  border-color: var(--gold);
  transform: rotate(90deg);
}

.hamburger-modern span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: var(--transition);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger-modern span:nth-child(1) {
  top: 10px;
}

.hamburger-modern span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hamburger-modern span:nth-child(3) {
  bottom: 10px;
}

.hamburger-modern.active {
  border-color: var(--gold);
}

.hamburger-modern.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger-modern.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-modern.active span:nth-child(3) {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

/* === STUNNING HERO SECTION === */
.hero-section {
  min-height: calc(100vh - var(--nav-height));
  padding-top: 150px;
  background: linear-gradient(
    135deg,
    rgba(245, 241, 230, 0.95) 0%,
    rgba(156, 175, 136, 0.1) 100%
  );
  position: relative;
}

/* === ANIMATED BACKGROUND ELEMENTS === */
.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-herb {
  position: absolute;
  font-size: 3rem;
  color: var(--sage);
  opacity: 0.2;
  animation: float 20s infinite linear;
}

.floating-herb:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-herb:nth-child(2) {
  top: 40%;
  right: 15%;
  animation-delay: -5s;
}

.floating-herb:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: -10s;
}

.floating-herb:nth-child(4) {
  bottom: 20%;
  right: 10%;
  animation-delay: -15s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
    opacity: 0.4;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.2;
  }
}

/* === MAIN HERO CONTENT === */
.hero-container {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-family: "Marcellus", serif;
  font-size: 5rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.title-line {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  animation: slideUp 1s forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.3s;
}

.title-line:nth-child(3) {
  animation-delay: 0.6s;
  color: var(--gold);
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--clay);
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.9s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === INTERACTIVE BUTTONS === */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 1.2s forwards;
}

.hero-btn {
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, var(--forest), var(--clay));
  color: white;
  border: none;
  box-shadow: 0 10px 30px rgba(58, 90, 64, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s;
}

.hero-btn:hover .btn-glow {
  opacity: 1;
}

.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(58, 90, 64, 0.4);
}

.btn-secondary:hover {
  background: var(--forest);
  color: white;
}

/* === ANIMATED FEATURES GRID === */
.hero-features {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 1.5s forwards;
}

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(156, 175, 136, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(156, 175, 136, 0.2);
  border-color: var(--gold);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: var(--forest);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* === PARTICLE BACKGROUND === */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
  .hamburger-modern {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(245, 241, 230, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 120px 2rem 2rem;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(26, 44, 33, 0.1);
    border-left: 2px solid var(--gold);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem !important;
    margin: 0.5rem 0;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

/* === MOBILE MENU OVERLAY === */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 44, 33, 0.7);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}












/* === SECTION DIVIDER === */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--sage),
    var(--gold),
    var(--sage),
    transparent
  );
  margin: 100px 0;
  position: relative;
}

.divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  padding: 0 2rem;
  color: var(--gold);
  font-size: 2rem;
}





/* === PILLARS SECTION === */
.pillars-section {
  padding: 50px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--forest);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--clay);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(156, 175, 136, 0.1);
}

.pillar-card:hover {
  transform: translateY(-15px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(156, 175, 136, 0.2);
}

.pillar-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(156, 175, 136, 0.1);
  font-weight: 700;
  line-height: 1;
}

.pillar-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.2);
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--forest);
  margin-bottom: 1rem;
  font-weight: 600;
}

.pillar-description {
  color: var(--clay);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pillar-learn-more {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.pillar-learn-more:hover {
  gap: 1rem;
  color: var(--forest);
}

/* === RESPONSIVE (PILLARS) === */
@media (max-width: 992px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .pillar-title {
    font-size: 1.8rem;
  }
}











/* === AYURVEDA EXPERIENCE SECTION === */
.ayurveda-experience {
  padding: 65px 0;
  background: linear-gradient(
    180deg,
    #f7f6ec 0%,
    #ffffff 50%,
    #f7f6ec 100%
  );
}

.experience-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 100px;
}

.experience-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--forest);
  line-height: 1.2;
}

.experience-title span {
  color: var(--gold);
}

.experience-subtitle {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--clay);
}

/* Rows */
.experience-rows {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.experience-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.experience-row.reverse {
  direction: rtl;
}

.experience-row.reverse * {
  direction: ltr;
}

/* Text */
.experience-text h3 {
  font-size: 2.4rem;
  color: var(--forest);
  margin-bottom: 16px;
}

.experience-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark);
}

/* Visual */
.experience-visual {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(212, 167, 106, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--gold);
  margin: auto;
  transition: var(--transition);
}

.experience-row:hover .experience-visual {
  transform: scale(1.1) rotate(8deg);
}

/* CTA */
.experience-cta {
  margin-top: 120px;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .experience-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .experience-row.reverse {
    direction: ltr;
  }

  .experience-rows {
    gap: 80px;
  }
}






























/* footer Section */
/* === SIMPLE MODERN FOOTER === */
.modern-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 40px 0 10px;
  position: relative;
  overflow: hidden;
}

.footer-top {
  /* padding-bottom: 50px; */
  border-bottom: 1px solid rgba(245, 241, 230, 0.1);
  margin-bottom: 15px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-description {
  color: rgba(245, 241, 230, 0.8);
  line-height: 1.6;
  max-width: 300px;
  font-size: 0.95rem;
}

.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 25px;
  font-weight: 500;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(245, 241, 230, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-links i {
  font-size: 0.8rem;
  color: var(--gold);
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
}

.footer-contact span {
  color: rgba(245, 241, 230, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 241, 230, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--forest);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  /* padding-top: 30px; */
}

.footer-bottom span {
  font-size: 15px;
  color: #aaa;
}

.footer-bottom span a {
  text-decoration: none;
  color: #aaa;
}

.copyright {
  color: rgba(245, 241, 230, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.footer-legal a {
  color: rgba(245, 241, 230, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* .footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 167, 106, 0.3),
    transparent
  );
  margin: 40px 0;
} */

/* === FOOTER DECORATION === */
.footer-decoration {
  position: absolute;
  opacity: 0.05;
  font-size: 8rem;
  color: var(--cream);
  pointer-events: none;
}

.footer-decoration:nth-child(1) {
  top: 50px;
  right: 10%;
}

.footer-decoration:nth-child(2) {
  bottom: 50px;
  left: 10%;
  transform: rotate(45deg);
}

/* === RESPONSIVE FOOTER === */
@media (max-width: 992px) {
  .modern-footer {
    padding: 60px 0 30px;
  }

  .footer-heading {
    margin-top: 30px;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-decoration {
    font-size: 5rem;
  }
}

@media (max-width: 768px) {
  .modern-footer {
    padding: 50px 0 25px;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .footer-heading {
    font-size: 1.3rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .footer-decoration {
    display: none;
  }
}





/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Pulse Effect */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}
