*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary: #2d5a27;
  --primary-dark: #1e3d1a;
  --primary-light: #4a7c42;
  --secondary: #8fbc8f;
  --accent: #c9a227;
  --bg: #f8f9f5;
  --bg-alt: #eef2e6;
  --text: #2c3e2c;
  --text-light: #5a6b5a;
  --white: #fff;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}
html {
  scroll-behavior: smooth;
  font-size: 15px;
}
body {
  font-family: "Nunito", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary-dark);
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-dark);
}
h1 {
  font-size: 1.9rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.2rem;
}
p {
  margin-bottom: 0.8rem;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
.btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-accent {
  background: var(--accent);
  color: var(--text);
}
.btn-accent:hover {
  background: #b8921f;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}
.header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.header-inner {
  background: linear-gradient(
    135deg,
    rgba(45, 90, 39, 0.97),
    rgba(74, 124, 66, 0.95)
  );
  backdrop-filter: blur(8px);
  padding: 12px 0;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.logo i {
  font-size: 1.4rem;
  color: var(--accent);
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-list {
  display: flex;
  gap: 18px;
}
.nav-list a {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}
.nav-list a:hover {
  color: var(--white);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 5px;
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 60px 20px 20px;
}
.mobile-nav.active {
  right: 0;
}
.mobile-nav-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav-list a {
  color: var(--white);
  font-size: 0.9rem;
  padding: 10px 15px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  background: var(--primary);
  color: var(--white);
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.hero {
  padding: 100px 0 50px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(143, 188, 143, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.hero h1 {
  margin-bottom: 15px;
}
.hero p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  z-index: 1;
}
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.section {
  padding: 50px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-header {
  text-align: center;
  margin-bottom: 35px;
}
.section-header h2 {
  margin-bottom: 8px;
}
.section-header p {
  color: var(--text-light);
  font-size: 0.9rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  padding: 25px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--white);
  font-size: 1.2rem;
}
.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.82rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-content h2 {
  margin-bottom: 12px;
}
.about-content p {
  color: var(--text-light);
  font-size: 0.9rem;
}
.about-list {
  margin: 15px 0;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}
.about-list i {
  color: var(--primary);
  margin-top: 3px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-content {
  padding: 20px;
}
.service-content h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}
.service-content p {
  color: var(--text-light);
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.service-price {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
}
.service-price span {
  font-size: 0.75rem;
  color: var(--text-light);
  font-family: "Nunito", sans-serif;
  font-weight: 400;
}
.testimonials {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 50px 0;
}
.testimonials .section-header h2,
.testimonials .section-header p {
  color: var(--white);
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.85rem;
}
.testimonial-role {
  font-size: 0.75rem;
  opacity: 0.8;
}
.cta-section {
  background: var(--bg-alt);
  padding: 50px 0;
}
.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
}
.cta-box h2 {
  color: var(--white);
  margin-bottom: 10px;
}
.cta-box p {
  opacity: 0.9;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.cta-box .btn {
  background: var(--white);
  color: var(--primary);
}
.cta-box .btn:hover {
  background: var(--accent);
  color: var(--text);
}
.page-hero {
  padding: 90px 0 40px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 8px;
}
.page-hero p {
  opacity: 0.9;
  font-size: 0.9rem;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.8rem;
}
.breadcrumb a {
  color: var(--white);
  opacity: 0.8;
}
.breadcrumb a:hover {
  opacity: 1;
  color: var(--white);
}
.breadcrumb span {
  opacity: 0.6;
}
.content-section {
  padding: 50px 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.content-main h2 {
  margin-bottom: 15px;
}
.content-main p {
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.sidebar-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.sidebar-card h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}
.sidebar-card p {
  font-size: 0.82rem;
  color: var(--text-light);
}
.sidebar-card ul li {
  padding: 6px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--bg-alt);
}
.sidebar-card ul li:last-child {
  border: none;
}
.contact-section {
  padding: 50px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info h2 {
  margin-bottom: 15px;
}
.contact-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.contact-details {
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
}
.contact-item span {
  font-size: 0.85rem;
}
.contact-form-box {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.contact-form-box h3 {
  margin-bottom: 20px;
  text-align: center;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dde5dd;
  border-radius: var(--radius);
  font-family: "Nunito", sans-serif;
  font-size: 0.85rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.checkbox-group input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--primary);
}
.checkbox-group label {
  font-size: 0.78rem;
  color: var(--text-light);
  cursor: pointer;
}
.map-section {
  padding: 0 0 50px;
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.team-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--primary);
  font-size: 1.5rem;
}
.team-card h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.team-card p {
  color: var(--text-light);
  font-size: 0.8rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  display: flex;
  gap: 15px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.value-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}
.value-content h3 {
  margin-bottom: 5px;
  font-size: 0.95rem;
}
.value-content p {
  color: var(--text-light);
  font-size: 0.82rem;
  margin: 0;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.step-content h3 {
  margin-bottom: 5px;
  font-size: 0.95rem;
}
.step-content p {
  color: var(--text-light);
  font-size: 0.82rem;
  margin: 0;
}
.error-page,
.thankyou-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  height: 100vh;
}
.error-page h1,
.thankyou-page h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.error-page p,
.thankyou-page p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.thankyou-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.policy-content {
  padding: 50px 0;
}
.policy-content h1 {
  margin-bottom: 25px;
  text-align: center;
}
.policy-content h2 {
  margin: 25px 0 12px;
  font-size: 1.2rem;
}
.policy-content p {
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text-light);
}
.policy-content ul {
  margin: 12px 0 12px 20px;
}
.policy-content ul li {
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
  position: relative;
  padding-left: 15px;
}
.policy-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 25px 0 15px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand p {
  opacity: 0.8;
  font-size: 0.8rem;
  line-height: 1.6;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--white);
}
.footer-links ul li {
  margin-bottom: 6px;
}
.footer-links a {
  color: var(--white);
  opacity: 0.8;
  font-size: 0.8rem;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--white);
}
.footer-contact p {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 5px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.75rem;
  opacity: 0.7;
}
.footer-policies {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-policies a {
  color: var(--white);
  opacity: 0.7;
  font-size: 0.75rem;
}
.footer-policies a:hover {
  opacity: 1;
  color: var(--white);
}
.privacy-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: none;
}
.privacy-popup.show {
  display: block;
}
.privacy-popup h4 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.privacy-popup p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.privacy-popup-btns {
  display: flex;
  gap: 10px;
}
.privacy-popup .btn {
  padding: 8px 16px;
  font-size: 0.8rem;
}
@media (max-width: 992px) {
  .features-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .nav-list {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid,
  .about-grid,
  .contact-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 80px 0 40px;
  }
  .hero-image {
    order: -1;
  }
  .features-grid,
  .services-grid,
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .section {
    padding: 35px 0;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .cta-box {
    padding: 25px 15px;
  }
  .contact-form-box {
    padding: 20px 15px;
  }
  .privacy-popup {
    left: 10px;
    right: 10px;
  }
}
@media (max-width: 320px) {
  html {
    font-size: 13px;
  }
  .hero {
    padding: 70px 0 30px;
  }
  .logo {
    font-size: 1rem;
  }
}
