@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #3a7d44;
  --secondary: #69b578;
  --accent: #d4a574;
  --dark: #2c3e2d;
  --light: #f8faf8;
  --text: #3d4a3e;
  --white: #ffffff;
  --shadow: 0 2px 15px rgba(58, 125, 68, 0.12);
  --transition: all 0.3s ease;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.2rem;
}
p {
  margin-bottom: 0.8rem;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--secondary);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
.btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 25px;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn:hover {
  background: var(--secondary);
  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);
}
.section {
  padding: 50px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 35px;
}
.section-header h2 {
  margin-bottom: 10px;
}
.section-header p {
  color: #6b7c6c;
  max-width: 500px;
  margin: 0 auto;
  font-size: 13px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}
.header.hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}
.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(58, 125, 68, 0.9), rgba(105, 181, 120, 0.85)),
    url("../campaign_visuals/bg.webp") center/cover;
  padding-top: 70px;
}
.hero-content {
  color: var(--white);
  max-width: 550px;
}
.hero-content h1 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 15px;
}
.hero-content p {
  font-size: 15px;
  margin-bottom: 25px;
  opacity: 0.95;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.hero .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.features {
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: var(--light);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
}
.feature-card h3 {
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 12px;
  color: #6b7c6c;
}

.about-preview {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.about-text h2 {
  margin-bottom: 15px;
}
.about-text p {
  font-size: 13px;
  margin-bottom: 12px;
}
.stats-row {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  font-size: 11px;
  color: #6b7c6c;
}

.services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e8ede8;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 45px;
  height: 45px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 12px;
  color: #6b7c6c;
}

.products-section {
  background: var(--light);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-image {
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 50px;
}
.product-info {
  padding: 18px;
}
.product-info h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.product-info p {
  font-size: 12px;
  color: #6b7c6c;
  margin-bottom: 10px;
}
.product-price {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.testimonial {
  background: var(--white);
}
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 35px;
  background: var(--light);
  border-radius: 15px;
}
.testimonial-text {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--dark);
}
.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}
.testimonial-rating {
  color: var(--accent);
  margin-bottom: 15px;
  font-size: 16px;
}

.cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  text-align: center;
}
.cta h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta p {
  margin-bottom: 20px;
  opacity: 0.95;
  font-size: 13px;
}
.cta .btn {
  background: var(--white);
  color: var(--primary);
}
.cta .btn:hover {
  background: var(--accent);
  color: var(--white);
}

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 35px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}
.footer-brand .logo {
  margin-bottom: 12px;
}
.footer-brand .logo-text {
  color: var(--white);
}
.footer-brand p {
  font-size: 12px;
  line-height: 1.7;
}
.footer-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-links a {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--white);
}
.footer-contact p {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-contact i {
  color: var(--secondary);
  width: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 11px;
}
.footer-bottom span {
  margin: 0 8px;
}
.policy-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.policy-links a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
.policy-links a:hover {
  color: var(--white);
}

.page-hero {
  padding: 120px 0 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero p {
  opacity: 0.9;
  font-size: 13px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  margin-top: 15px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb span {
  opacity: 0.6;
}

.content-section {
  background: var(--white);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}
.content-grid.reverse {
  direction: rtl;
}
.content-grid.reverse > * {
  direction: ltr;
}
.content-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.content-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.content-text h2 {
  margin-bottom: 12px;
}
.content-text p {
  font-size: 13px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefit-item {
  display: flex;
  gap: 12px;
  padding: 18px;
  background: var(--light);
  border-radius: 10px;
}
.benefit-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}
.benefit-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 12px;
  color: #6b7c6c;
  margin: 0;
}

.team-section {
  background: var(--light);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
}
.team-card h4 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.team-card span {
  font-size: 11px;
  color: var(--primary);
}
.team-card p {
  font-size: 12px;
  color: #6b7c6c;
  margin-top: 8px;
}

.contact-section {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.contact-info {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 30px;
  border-radius: 15px;
  color: var(--white);
}
.contact-info h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-item i {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.contact-item div h4 {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}
.contact-item div p {
  font-size: 12px;
  opacity: 0.9;
  margin: 0;
}
.contact-form {
  background: var(--light);
  padding: 30px;
  border-radius: 15px;
}
.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #dce3dc;
  border-radius: 8px;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.checkbox-group {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.checkbox-group input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.checkbox-group label {
  font-size: 11px;
  color: #6b7c6c;
}
.checkbox-group a {
  color: var(--primary);
}

.map-section {
  padding: 0;
}
.map-section iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

.error-page,
.thankyou-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--light);
}
.error-content,
.thankyou-content {
  max-width: 450px;
  padding: 30px;
}
.error-icon,
.thankyou-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 40px;
}
.error-content h1,
.thankyou-content h1 {
  margin-bottom: 12px;
}
.error-content p,
.thankyou-content p {
  color: #6b7c6c;
  margin-bottom: 20px;
  font-size: 14px;
}

.policy-content {
  background: var(--white);
}
.policy-text {
  max-width: 800px;
  margin: 0 auto;
}
.policy-text h2 {
  font-size: 1.3rem;
  margin: 25px 0 12px;
  color: var(--dark);
}
.policy-text h3 {
  font-size: 1.1rem;
  margin: 18px 0 10px;
}
.policy-text p {
  font-size: 13px;
  margin-bottom: 12px;
}
.policy-text ul {
  margin: 12px 0 12px 20px;
}
.policy-text li {
  font-size: 13px;
  margin-bottom: 6px;
  position: relative;
  padding-left: 15px;
}
.policy-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 18px;
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--transition);
}
.cookie-popup.show {
  transform: translateY(0);
}
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 12px;
  flex: 1;
}
.cookie-text a {
  color: var(--secondary);
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-buttons .btn {
  padding: 8px 18px;
  font-size: 12px;
}

.gallery-section {
  background: var(--light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.process-section {
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--secondary);
}
.process-step:last-child::after {
  display: none;
}
.process-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.process-step h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.process-step p {
  font-size: 11px;
  color: #6b7c6c;
}

.faq-section {
  background: var(--light);
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 15px 20px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--primary);
}
.faq-question i {
  transition: var(--transition);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 15px;
}
.faq-answer p {
  font-size: 12px;
  color: #6b7c6c;
  margin: 0;
}

.tips-section {
  background: var(--white);
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tip-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--light);
  border-radius: 10px;
}
.tip-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}
.tip-card h4 {
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.tip-card p {
  font-size: 12px;
  color: #6b7c6c;
  margin: 0;
}

@media (max-width: 992px) {
  .features-grid,
  .services-grid,
  .products-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .process-step::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    transition: var(--transition);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }
  .nav-menu.active {
    right: 0;
  }
  .header.scrolled .nav-menu {
    background: var(--white);
  }
  .about-grid,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .content-grid.reverse {
    direction: ltr;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .stats-row {
    justify-content: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .features-grid,
  .services-grid,
  .products-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .section {
    padding: 35px 0;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .btn {
    padding: 8px 18px;
    font-size: 12px;
  }
  .logo-text {
    font-size: 0.95rem;
  }
  .section {
    padding: 25px 0;
  }
}
