@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #5CB338;
  --secondary-color: #337357;
  --accent-color: #A9B388;
  --light-color: #FEFAE0;
  --dark-color: #5F6F52;
  --gradient-primary: linear-gradient(135deg, #5CB338 0%, #337357 100%);
  --hover-color: #4a9c2d;
  --background-color: #FEFAE0;
  --text-color: #2C3D4F;
  --border-color: rgba(169, 179, 136, 0.3);
  --divider-color: rgba(51, 115, 87, 0.15);
  --shadow-color: rgba(92, 179, 56, 0.15);
  --highlight-color: #F59D2A;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Open Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
}

/* Header Styles */
header {
  background-color: var(--dark-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow-color);
  padding: 1rem 0;
}

header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.05);
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

header nav a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--highlight-color);
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

header nav a:hover {
  color: var(--highlight-color);
}

/* Mobile Menu Toggle */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-icon span {
  width: 30px;
  height: 3px;
  background-color: var(--light-color);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease;
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px var(--shadow-color),
              inset 0 -2px 5px rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--shadow-color),
              inset 0 -2px 5px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #4a9c2d 0%, #2a5a42 100%);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Styles */
section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  position: relative;
}

section h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--secondary-color);
}

section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Content Sections */
.content-section {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.content-section img {
  border-radius: 15px;
  box-shadow: 0 10px 40px var(--shadow-color),
              inset 0 1px 0 rgba(255,255,255,0.2);
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.content-section img:hover {
  transform: scale(1.03);
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 0 0 40%;
}

/* Divider */
.section-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 5vh 0;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  border-bottom: 2px solid var(--border-color);
}

.section-divider span {
  padding: 0 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  font-family: var(--main-font);
}

/* CTA Sections */
.cta-section {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
  text-align: center;
  color: white;
  padding: 10vh 2rem;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.cta-section h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.cta-section p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, rgba(169, 179, 136, 0.1) 0%, rgba(254, 250, 224, 0.5) 100%);
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 30px var(--shadow-color),
              inset 0 2px 5px rgba(255,255,255,0.5),
              inset 0 -2px 5px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 45px var(--shadow-color),
              inset 0 2px 5px rgba(255,255,255,0.5),
              inset 0 -2px 5px rgba(0,0,0,0.08);
}

.timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px var(--shadow-color),
              inset 0 2px 5px rgba(255,255,255,0.3);
  border: 4px solid var(--background-color);
}

.timeline-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(to bottom, var(--background-color) 0%, rgba(169, 179, 136, 0.1) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px var(--shadow-color),
              inset 0 2px 5px rgba(255,255,255,0.5),
              inset 0 -2px 5px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: var(--accent-color);
  font-family: Georgia, serif;
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 45px var(--shadow-color),
              inset 0 2px 5px rgba(255,255,255,0.5),
              inset 0 -2px 5px rgba(0,0,0,0.08);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

/* Form Section */
.form-section {
  background: linear-gradient(135deg, rgba(92, 179, 56, 0.05) 0%, rgba(51, 115, 87, 0.05) 100%);
}

/* Contact Section */
.contact-section {
  background: var(--background-color);
}

.contact-container {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info {
  flex: 0 0 35%;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow-color),
              inset 0 1px 3px rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px var(--shadow-color),
              inset 0 1px 3px rgba(255,255,255,0.5);
}

.contact-item i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1.3rem;
  min-width: 30px;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px var(--shadow-color),
              inset 0 2px 5px rgba(255,255,255,0.5),
              inset 0 -2px 5px rgba(0,0,0,0.05);
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: var(--alt-font);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background-color);
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(92, 179, 56, 0.1),
              inset 0 2px 5px rgba(0,0,0,0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(to bottom, rgba(169, 179, 136, 0.1) 0%, var(--background-color) 100%);
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 25px var(--shadow-color),
              inset 0 2px 5px rgba(255,255,255,0.5),
              inset 0 -2px 5px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px var(--shadow-color),
              inset 0 2px 5px rgba(255,255,255,0.5),
              inset 0 -2px 5px rgba(0,0,0,0.08);
}

.faq-question {
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(92, 179, 56, 0.08) 0%, rgba(51, 115, 87, 0.08) 100%);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question i {
  color: var(--primary-color);
  font-size: 1.3rem;
  min-width: 25px;
}

.faq-question h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin: 0;
}

.faq-answer {
  padding: 1.5rem 1.8rem;
  border-top: 1px solid var(--border-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 3rem 0 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

footer .logo img {
  height: 50px;
  width: auto;
}

footer nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

footer nav a {
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

footer nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--highlight-color);
  transition: width 0.3s ease;
}

footer nav a:hover::after {
  width: 100%;
}

footer nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  font-size: 0.9rem;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: var(--light-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }

  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }

  #menu-toggle:checked ~ nav {
    max-height: 500px;
  }

  header nav ul {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  header .logo {
    flex: 1;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  section h2 {
    font-size: 2.2rem;
  }

  .content-section {
    flex-direction: column;
    gap: 2rem;
  }

  .content-image {
    flex: 1;
    width: 100%;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
    padding-left: 60px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-icon {
    left: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    flex: 1;
    width: 100%;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  footer nav ul {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .section-divider span {
    font-size: 1rem;
    padding: 0 1rem;
  }
}