@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #27AE60;
  --secondary-color: #16A085;
  --accent-color: #5CB338;
  --light-color: #ECE852;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #5CB338 0%, #27AE60 100%);
  --hover-color: #239B56;
  --background-color: #FEFAE0;
  --text-color: #2C3D4F;
  --border-color: rgba(92, 179, 56, 0.25);
  --divider-color: rgba(39, 174, 96, 0.15);
  --shadow-color: rgba(22, 160, 133, 0.2);
  --highlight-color: #FFC145;
  --main-font: 'Merriweather', serif;
  --alt-font: 'Lato', 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;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  padding: 1.2rem 0;
  box-shadow: 0 6px 20px var(--shadow-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 55px;
  width: auto;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

header nav a {
  color: #ffffff;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--light-color);
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 80%;
}

header nav a:hover {
  background-color: rgba(92, 179, 56, 0.2);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}

#menu-checkbox {
  display: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, rgba(22, 160, 133, 0.85), rgba(39, 174, 96, 0.75));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Content Sections */
.content-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.content-grid {
  display: flex;
  align-items: center;
  gap: 50px;
}

.content-image {
  flex: 0 0 40%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow-color);
  position: relative;
}

.content-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid var(--accent-color);
  border-radius: 25px;
  opacity: 0.5;
}

.content-text {
  flex: 1;
}

/* Section Divider */
.section-divider {
  position: relative;
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(90deg, transparent 0%, var(--light-color) 50%, transparent 100%);
}

.section-divider h3 {
  position: relative;
  display: inline-block;
  background: var(--background-color);
  padding: 1rem 3rem;
  z-index: 1;
  color: var(--primary-color);
  border: 3px solid var(--border-color);
  border-radius: 50px;
  box-shadow: 0 8px 20px var(--shadow-color);
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 10rem 2rem;
  text-align: center;
  color: #ffffff;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 16, 33, 0.8);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

/* Features Section */
.features-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: linear-gradient(180deg, #FEFAE0 0%, #ECE852 100%);
}

.features-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  position: relative;
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  background: #ffffff;
  border-radius: 20px;
  border-left: 6px solid var(--primary-color);
  box-shadow: 10px 10px 25px var(--shadow-color), -5px -5px 15px rgba(255, 255, 255, 0.6);
  transition: all 0.4s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 15px 15px 35px var(--shadow-color), -8px -8px 20px rgba(255, 255, 255, 0.8);
  border-left-color: var(--accent-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px var(--shadow-color);
}

/* Testimonials Section */
.testimonials-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: rgba(236, 232, 82, 0.15);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 20px;
  border-top: 5px solid var(--primary-color);
  box-shadow: 8px 8px 20px var(--shadow-color), -4px -4px 12px rgba(255, 255, 255, 0.6);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 30px var(--shadow-color), -6px -6px 18px rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  padding: 3rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 10px 10px 30px var(--shadow-color);
  border: 2px solid var(--border-color);
}

.contact-info-item {
  margin-bottom: 2rem;
  display: flex;
  align-items: start;
  gap: 1.5rem;
}

.contact-info-item i {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-top: 0.3rem;
}

/* Form Styles */
.contact-form {
  padding: 3rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 10px 10px 30px var(--shadow-color);
  border: 2px solid var(--border-color);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-family: var(--alt-font);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.15);
  background: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.submit-btn {
  width: 100%;
  padding: 1.2rem 2.5rem;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px var(--shadow-color);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

/* FAQ Section */
.faq-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 2.5rem;
  background: var(--background-color);
  border-radius: 20px;
  border: 2px solid var(--border-color);
  box-shadow: 8px 8px 20px var(--shadow-color), -4px -4px 12px rgba(255, 255, 255, 0.6);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.faq-item:hover::before {
  transform: scaleY(1);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 30px var(--shadow-color), -6px -6px 18px rgba(255, 255, 255, 0.8);
}

.faq-question {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
}

.faq-answer {
  color: var(--text-color);
  line-height: 1.9;
}

/* Footer */
footer {
  background: linear-gradient(90deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  color: #ffffff;
  padding: 4rem 0 1rem;
}

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: #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

footer nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-color);
  transition: width 0.3s ease;
}

footer nav a:hover::after {
  width: 100%;
}

footer nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2.5rem;
}

.footer-credit a {
  color: var(--highlight-color);
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  header nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: linear-gradient(90deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    padding: 2.5rem;
    transition: left 0.3s ease;
    box-shadow: 0 10px 25px var(--shadow-color);
  }

  header nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  #menu-checkbox:checked ~ nav {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  header .logo {
    margin: 0 auto;
  }

  .content-grid {
    flex-direction: column;
  }

  .content-image {
    flex: 0 0 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  footer .container {
    flex-direction: column;
    text-align: center;
  }

  footer nav ul {
    justify-content: center;
  }
}