* {
  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);
}

/* === MODERN NAVBAR === */
.modern-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: var(--nav-height);
  width: 100%;
  display: flex;
  align-items: center;
  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);
}

/* === BRAND === */
.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 {
  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 LINKS === */
.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%;
}

/* === CTA BUTTON === */
.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);
}

/* === NAV INDICATOR === */
.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;
}

/* === 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 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: var(--forest);
  transition: var(--transition);
}

.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 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);
}

/* === MOBILE MENU === */
@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);
    border-left: 2px solid var(--gold);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item,
  .nav-link {
    width: 100%;
    text-align: center;
  }
}

/* === 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;
}




























/* About Section  */



.about-section {
  padding-top: 120px;
  padding-bottom: 30px;
  background: linear-gradient(
    135deg,
    rgba(245, 241, 230, 0.95),
    rgba(156, 175, 136, 0.08)
  );
}

.about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-leaf-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--forest);
  font-weight: 600;
  letter-spacing: 1px;
}

.section-leaf-title i {
  color: var(--gold);
  font-size: 1.2rem;
}

.about-title {
  font-family: 'Marcellus', serif;
  font-size: 3.5rem;
  color: var(--forest);
  line-height: 1.2;
}

.about-title span {
  color: var(--gold);
}

.about-subtitle {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--clay);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content h3 {
  font-size: 2rem;
  color: var(--forest);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--forest);
}

.about-points i {
  color: var(--gold);
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(45deg, var(--forest), var(--clay));
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(58, 90, 64, 0.4);
}

/* Cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(156, 175, 136, 0.2);
}

.about-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-card h4 {
  color: var(--forest);
  margin-bottom: 6px;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(156, 175, 136, 0.25);
  border-color: var(--gold);
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 2.6rem;
  }
}














/* philosophy section  */

.philosophy-section {
  padding: 80px 0;
  background: #f9f7ef;
}

.philosophy-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-leaf-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--forest);
  font-weight: 600;
  letter-spacing: 1px;
}

.section-leaf-title i {
  color: var(--gold);
  font-size: 1.2rem;
}


.philosophy-title {
  font-family: 'Marcellus', serif;
  font-size: 3.2rem;
  color: var(--forest);
  line-height: 1.2;
}

.philosophy-title span {
  color: var(--gold);
}

.philosophy-subtitle {
  margin-top: 20px;
  font-size: 1.15rem;
  color: var(--clay);
}

.philosophy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.philosophy-step {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(156, 175, 136, 0.2);
}

.philosophy-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(156, 175, 136, 0.25);
  border-color: var(--gold);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--forest), var(--clay));
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.philosophy-step h4 {
  color: var(--forest);
  margin-bottom: 12px;
}

.philosophy-step p {
  color: var(--dark);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .philosophy-steps {
    grid-template-columns: 1fr 1fr;
  }

  .philosophy-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .philosophy-steps {
    grid-template-columns: 1fr;
  }
}
























/* why choose us section  */
.why-section {
  padding: 40px 0;
  background: #f7f6ec;
  text-align: center;
}

.why-title {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  color: var(--forest);
  margin-bottom: 70px;
}

.why-title span {
  color: var(--gold);
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 40px 30px;
  border: 1px solid rgba(156, 175, 136, 0.2);
  transition: all 0.4s ease;
}

.why-card i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.why-card h4 {
  color: var(--forest);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--dark);
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(156, 175, 136, 0.25);
  border-color: var(--gold);
}

/* Responsive */
@media (max-width: 992px) {
  .why-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 2.4rem;
  }
}

















/* 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;
  }
}
