@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #27AE60;
  --secondary-color: #1E8449;
  --accent-color: #52BE80;
  --light-color: #E8F8F5;
  --dark-color: #145A32;
  --gradient-primary: linear-gradient(135deg, #52BE80 0%, #27AE60 100%);
  --hover-color: #229954;
  --background-color: #FEFAE0;
  --text-color: #2C3E50;
  --border-color: rgba(82, 190, 128, 0.3);
  --divider-color: rgba(30, 132, 73, 0.15);
  --shadow-color: rgba(20, 90, 50, 0.15);
  --highlight-color: #C0392B;
  --main-font: 'Merriweather', serif;
  --alt-font: 'Open Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(180deg, #145A32 0%, #1E8449 100%);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px var(--shadow-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.08);
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

header nav a {
  color: #E8F8F5;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

header nav a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--highlight-color);
  transition: width 0.3s ease;
}

header nav a:hover::before {
  width: 100%;
}

header nav a:hover {
  color: #FFFFFF;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: #E8F8F5;
  border-radius: 3px;
  transition: all 0.3s ease;
}

#menu-checkbox {
  display: none;
}

@media (max-width: 768px) {
  header .logo {
    margin: 0 auto;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    left: 20px;
  }

  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1E8449;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  #menu-checkbox:checked ~ nav {
    max-height: 500px;
  }

  header nav ul {
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
  }

  header nav li {
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
  }
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(82, 190, 128, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 850px;
  position: relative;
  z-index: 1;
}

/* Content Section */
.content-section {
  padding: 10vh 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: center;
}

.content-grid.reverse {
  grid-template-columns: 3fr 2fr;
}

.content-image {
  border-radius: 25px;
  box-shadow: 
    15px 15px 35px var(--shadow-color),
    -8px -8px 25px rgba(255, 255, 255, 0.5);
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.content-image:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .content-grid,
  .content-grid.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Section Divider */
.section-divider {
  text-align: center;
  position: relative;
  padding: 4rem 0;
  margin: 3rem 0;
}

.divider-line {
  height: 3px;
  background: var(--gradient-primary);
  position: relative;
  margin: 1.5rem 0;
  border-radius: 2px;
}

.divider-text {
  display: inline-block;
  background-color: var(--background-color);
  padding: 0 2.5rem;
  position: relative;
  z-index: 1;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
  padding: 10vh 0;
  text-align: center;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 90, 50, 0.8);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  color: #FFFFFF;
}

/* Features Section */
.features-section {
  padding: 10vh 0;
  background: linear-gradient(180deg, #FEFAE0 0%, #E8F8F5 100%);
}

.features-timeline {
  position: relative;
  max-width: 950px;
  margin: 4rem auto;
}

.feature-item {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  box-shadow: 
    12px 12px 35px var(--shadow-color),
    -6px -6px 20px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 
    18px 18px 45px var(--shadow-color),
    -10px -10px 30px rgba(255, 255, 255, 0.9);
  border-color: var(--primary-color);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.feature-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

/* Testimonials Section */
.testimonials-section {
  padding: 10vh 0;
  background: rgba(232, 248, 245, 0.5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 
    12px 12px 35px var(--shadow-color),
    -6px -6px 20px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--highlight-color);
  box-shadow: 
    18px 18px 45px var(--shadow-color),
    -10px -10px 30px rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
  padding: 10vh 0;
  background: linear-gradient(180deg, #E8F8F5 0%, #FEFAE0 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info {
  padding: 2rem;
}

.contact-item {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-left: 5px solid var(--primary-color);
  border-radius: 10px;
  box-shadow: 5px 5px 15px var(--shadow-color);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: 8px 8px 20px var(--shadow-color);
}

.contact-item i {
  color: var(--highlight-color);
  margin-right: 1.2rem;
  font-size: 1.4rem;
}

/* Form Styles */
.contact-form {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 
    12px 12px 35px var(--shadow-color),
    -6px -6px 20px rgba(255, 255, 255, 0.7);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(232, 248, 245, 0.5);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-color);
  font-family: var(--alt-font);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(82, 190, 128, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.submit-btn {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
  background: linear-gradient(135deg, #27AE60 0%, #1E8449 100%);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq-section {
  padding: 10vh 0;
  background: rgba(255, 255, 255, 0.5);
}

.faq-container {
  max-width: 950px;
  margin: 4rem auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 
    12px 12px 35px var(--shadow-color),
    -6px -6px 20px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  border-color: var(--primary-color);
  box-shadow: 
    18px 18px 45px var(--shadow-color),
    -10px -10px 30px rgba(255, 255, 255, 0.9);
}

.faq-question {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  font-size: 1.15rem;
}

.faq-question i {
  color: var(--highlight-color);
  margin-right: 1.2rem;
  font-size: 1.4rem;
}

.faq-answer {
  color: var(--text-color);
  line-height: 1.9;
  padding-left: 2.6rem;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #145A32 0%, #0D3B21 100%);
  padding: 3.5rem 0 1.5rem;
  color: #E8F8F5;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

footer .logo img {
  height: 55px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  flex-wrap: wrap;
}

footer nav a {
  color: #E8F8F5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer nav a:hover {
  color: var(--highlight-color);
}

footer .footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(82, 190, 128, 0.3);
  color: rgba(232, 248, 245, 0.7);
  font-size: 0.95rem;
}

footer .footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

footer .footer-bottom a:hover {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    text-align: center;
  }

  footer nav ul {
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
  background: linear-gradient(135deg, #27AE60 0%, #1E8449 100%);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}