* {
  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;
}














/* === CONTACT US PAGE === */
.contact-hero {
  background: linear-gradient(
    135deg,
    rgba(156, 175, 136, 0.1),
    rgba(212, 167, 106, 0.05)
  );
  padding: 100px 0 25px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--forest);
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  margin-top: 35px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--clay);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === CONTACT GRID === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 60px 0 100px;
}

/* === CONTACT FORM === */
.contact-form-section {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(156, 175, 136, 0.1);
  border: 1px solid rgba(156, 175, 136, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.form-subtitle {
  color: var(--clay);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-label {
  display: block;
  color: var(--forest);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(156, 175, 136, 0.3);
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: rgba(245, 241, 230, 0.5);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 167, 106, 0.1);
}

.form-control::placeholder {
  color: rgba(156, 175, 136, 0.6);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(45deg, var(--forest), var(--clay));
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(58, 90, 64, 0.3);
}

.submit-btn::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;
}

.submit-btn:hover::after {
  transform: scale(1);
}

/* === CONTACT INFO === */
.contact-info-section {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(156, 175, 136, 0.1);
  border: 1px solid rgba(156, 175, 136, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--clay));
}

.info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.info-subtitle {
  color: var(--clay);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 2rem;
  padding: 25px;
  border-radius: 15px;
  background: rgba(245, 241, 230, 0.5);
  border: 1px solid rgba(156, 175, 136, 0.2);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateX(5px);
  border-color: var(--gold);
  background: rgba(212, 167, 106, 0.05);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--clay));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-content h4 {
  color: var(--forest);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.info-content p {
  color: var(--clay);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.info-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.info-link:hover {
  color: var(--forest);
  gap: 10px;
}


/* === FAQ SECTION === */
.faq-section {
  margin: 50px 0;
}

.faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--forest);
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(156, 175, 136, 0.2);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(156, 175, 136, 0.1);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgba(245, 241, 230, 0.5);
}

.faq-question h4 {
  color: var(--forest);
  font-size: 1.2rem;
  margin: 0;
}

.faq-icon {
  color: var(--gold);
  font-size: 1.2rem;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 25px 30px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--clay);
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-section,
  .contact-info-section {
    padding: 40px 30px;
  }

  .page-title {
    font-size: 3rem;
  }

  .form-title,
  .info-title {
    font-size: 1.8rem;
  }

  .faq-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 90px 0 10px;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .contact-form-section,
  .contact-info-section {
    padding: 30px 20px;
  }

  .contact-info-item {
    padding: 20px;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 20px;
  }
}





















/* 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;
  }
}
