:root {
  --bg-light: #f2f7f2;
  --green-dark: #2e5f2d;
  --green: #3a7d44;
  --green-light: #a8d5ba;
  --text-dark: #26482c;
  --accent: #548c3f;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
a {
  text-decoration: none;
}

#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loader-logo {
  width: 60px;
  animation: spin 1s linear infinite;
}
.loader-text {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--green-dark);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 1rem 0;
  transition: background var(--transition);
  z-index: 1000;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Roboto Slab", serif;
  font-size: 1.75rem;
  color: var(--green-dark);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  background: var(--text-dark);
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.site-nav a {
  text-decoration: none;
  color: var(--text-dark);
  transition: color var(--transition);
}
.site-nav a:hover,
.site-nav .active {
  color: var(--green);
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: var(--bg-light);
    flex-direction: column;
    justify-content: center;
    transition: right var(--transition);
  }
  .site-nav.open {
    right: 0;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-section__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/slider1.jpg") center/cover no-repeat;
  filter: brightness(0.6);
}
.hero-section__content {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}
.hero-section__content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-section__content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.btn-hero {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: background var(--transition);
}
.btn-hero:hover {
  background: var(--accent);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  padding: 4rem 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.about-text h2 {
  font-family: "Roboto Slab", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-text p {
  margin-bottom: 1rem;
}
.about-image img {
  width: 100%;
  border-radius: 8px;
}

.services-section {
  background: #fff;
  padding: 4rem 0;
}
.services-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service-item {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  position: relative;
}
.service-item .price {
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  font-weight: bold;
  color: var(--green-dark);
}
.service-item h3 {
  margin-bottom: 0.75rem;
}
.service-item ul {
  list-style: disc inside;
}

.contact-section {
  padding: 12rem 0;
}
.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-list {
  list-style: none;
  margin-top: 1rem;
}
.contact-list li {
  margin-bottom: 0.75rem;
}
.contact-list a {
  color: var(--green-dark);
  text-decoration: none;
}

.cookies-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  align-items: center;
  z-index: 2000;
}
.cookies-button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background var(--transition);
}
.cookies-button:hover {
  background: var(--accent);
}

.site-footer {
  background: #fff;
  padding: 2rem 1rem;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
}
.footer-copy {
  font-size: 0.875rem;
  color: #666;
}
.footer-logo img {
  width: 50px;
  margin-bottom: 0.5rem;
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--green);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition);
}
.scroll-to-top.visible {
  opacity: 1;
}

@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-inner .about-image {
    order: -1;
  }
}
@media (max-width: 768px) {
  .hero-section__content h1 {
    font-size: 2.5rem;
  }
  .hero-section__content p {
    font-size: 1rem;
  }
}

.process-section {
  padding: 4rem 1rem;
  background: #f7fdf7;
}
.process-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2a5d2a;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.process-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}
.process-list li:nth-child(1) {
  animation-delay: 0.2s;
}
.process-list li:nth-child(2) {
  animation-delay: 0.4s;
}
.process-list li:nth-child(3) {
  animation-delay: 0.6s;
}
.process-list li:nth-child(4) {
  animation-delay: 0.8s;
}
.step-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: #2a5d2a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.step-content h3 {
  margin: 0 0 0.5rem;
  color: #2a5d2a;
}
.step-content p {
  margin: 0;
  color: #3c3c3c;
}

/* ----- Testimonials Section ----- */
.testimonials-section {
  padding: 4rem 1rem;
  background: #fff;
}
.testimonials-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2a5d2a;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial {
  border-left: 4px dotted #2a5d2a;
  padding-left: 1rem;
  font-style: italic;
  position: relative;
}
.testimonial p {
  margin-bottom: 1rem;
  color: #555;
}
.testimonial footer {
  font-weight: 500;
  color: #2a5d2a;
  text-align: right;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 1.75rem;
  }
  .process-list {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.founders-section {
  padding: 4rem 1rem;
  background: #fff;
}
.founders-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2a5d2a;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.founder {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}
.founder:nth-child(1) {
  animation-delay: 0.3s;
}
.founder:nth-child(2) {
  animation-delay: 0.5s;
}
.founder img {
  width: 100%;
  max-width: 200px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0 auto 1rem;
}
.founder h3 {
  margin: 0.5rem 0;
  color: #2a5d2a;
}
.founder p {
  margin: 0;
  color: #555;
  line-height: 1.4;
}

.team-photo-section {
  padding: 4rem 1rem;
  background: #f7fdf7;
}
.team-photo-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2a5d2a;
}
.team-photo-wrapper {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
  animation-delay: 0.4s;
}
.team-photo-wrapper img {
  display: inline-block;
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }
  .team-photo-wrapper img {
    max-width: 100%;
  }
}

.results-section {
  padding: 4rem 0;
}
.results-section .section-title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2c5f2d;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.results-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.results-item img:hover {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* Seasonal Garden Tips */
.tips-section {
  padding: 4rem 0;
  background: #f9fdf9;
}
.tips-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2a5d34;
  margin-bottom: 2rem;
  position: relative;
}
.tips-section .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #77a965;
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.tips-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.tip-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tip-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.tip-item h3 {
  margin-bottom: 0.5rem;
  color: #3d7a3d;
  font-size: 1.25rem;
}
.tip-item p {
  color: #555;
  line-height: 1.5;
}

.plans-section {
  padding: 4rem 0;
  background: #eef5ee;
}
.plans-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2a5d34;
  margin-bottom: 2rem;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.plan-card {
  background: #fff;
  padding: 2rem;
  border: 2px solid #d4e8d4;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.plan-card:hover {
  border-color: #77a965;
  transform: translateY(-6px);
}
.plan-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #356c35;
}
.plan-price {
  font-size: 2rem;
  color: #77a965;
  margin: 1rem 0;
}
.plan-price span {
  font-size: 1rem;
  color: #888;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  color: #555;
  text-align: left;
}
.plan-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.plan-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #77a965;
}
.btn-plan {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #77a965;
  color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-plan:hover {
  background: #a1d488;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .tips-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}


.showcase-section {
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
}
.showcase-container {
  position: relative;
}
.showcase-image {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 500px;
  transition: transform 0.5s ease;
}
.showcase-image:hover {
  transform: scale(1.05);
}
.showcase-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  background: rgba(42, 93, 52, 0.6);
  border-radius: 8px;
  animation: fadeIn 1s ease both;
}
.showcase-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.showcase-subtitle {
  font-size: 1.125rem;
  line-height: 1.4;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

@media (max-width: 768px) {
  .showcase-image {
    max-height: 300px;
  }
  .showcase-title {
    font-size: 2rem;
  }
  .showcase-subtitle {
    font-size: 1rem;
  }
}

.title_background {
  background: linear-gradient(135deg, #2A5D34 0%, #4A7C4A 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.title_background .title {
  color: #fff;
  font-family: "Roboto Slab", serif;
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
}
.title_background .title::before,
.title_background .title::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 60px;
  background: #F28A30;
  top: 50%;
  transform: translateY(-50%);
}
.title_background .title::before {
  left: -80px;
}
.title_background .title::after {
  right: -80px;
}

.text_background {
  background: #F7F7F7;
  padding: 2.5rem 0;
}
.text_background .text {
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 1.5rem;
}
.text_background .text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #2A5D34;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .title_background {
    padding: 2rem 0;
  }
  .title_background .title {
    font-size: 1.75rem;
  }
  .title_background .title::before,
  .title_background .title::after {
    width: 40px;
    left: -50px;
    right: -50px;
  }
  .text_background {
    padding: 2rem 0;
  }
  .text_background .text {
    font-size: 0.95rem;
    padding-left: 1rem;
  }
}