@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: #0F1021;
  --gradient-primary: linear-gradient(135deg, #5CB338 0%, #337357 100%);
  --hover-color: #4A9B2D;
  --background-color: #FDFCF8;
  --text-color: #2C3D4F;
  --border-color: rgba(92, 179, 56, 0.25);
  --divider-color: rgba(51, 115, 87, 0.12);
  --shadow-color: rgba(15, 16, 33, 0.12);
  --highlight-color: #E01171;
  --main-font: 'Playfair Display', 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.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: var(--dark-color);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px var(--shadow-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 55px;
  width: auto;
  transition: transform 0.35s ease;
}

header .logo img:hover {
  transform: scale(1.08);
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

header nav ul li a {
  color: var(--light-color);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  letter-spacing: 0.3px;
}

header nav ul li a::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--highlight-color);
  transition: width 0.35s ease;
  border-radius: 2px;
}

header nav ul li a:hover::before {
  width: 100%;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle input {
  display: none;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--light-color);
  margin: 6px 0;
  transition: 0.35s;
  border-radius: 2px;
}

@media (max-width: 768px) {
  header .logo {
    margin: 0 auto;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    left: 20px;
  }

  header nav {
    position: absolute;
    top: 91px;
    left: 0;
    width: 100%;
    background: var(--dark-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .menu-toggle input:checked ~ nav {
    max-height: 450px;
  }

  header nav ul {
    flex-direction: column;
    padding: 25px;
    gap: 18px;
  }

  .menu-toggle input:checked ~ .menu-toggle span:nth-child(2) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle input:checked ~ .menu-toggle span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle input:checked ~ .menu-toggle span:nth-child(4) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 0 25px;
}

.hero-content {
  max-width: 850px;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.75);
  letter-spacing: -0.5px;
}

.hero-section p {
  font-size: 1.35rem;
  margin-bottom: 35px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
  line-height: 1.6;
}

.hero-button {
  display: inline-block;
  padding: 16px 45px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 60px;
  font-weight: 700;
  box-shadow: 0 10px 25px var(--shadow-color);
  transition: all 0.35s ease;
  letter-spacing: 0.5px;
}

.hero-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px var(--shadow-color);
  background: var(--hover-color);
}

/* Content Sections */
.content-section {
  padding: 10vh 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 50px;
  align-items: center;
}

.content-image {
  border-radius: 25px;
  box-shadow: 0 12px 45px var(--shadow-color);
  overflow: hidden;
  transition: transform 0.35s ease;
}

.content-image:hover {
  transform: scale(1.03);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-text h2 {
  font-size: 2.6rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.content-text p {
  font-size: 1.12rem;
  margin-bottom: 18px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.1rem;
  }

  .hero-section p {
    font-size: 1.15rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .content-text h2 {
    font-size: 2.1rem;
  }
}

/* Section Divider */
.section-divider {
  text-align: center;
  padding: 70px 0;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-color);
  z-index: 0;
}

.section-divider h3 {
  display: inline-block;
  background: var(--background-color);
  padding: 0 35px;
  position: relative;
  z-index: 1;
  font-size: 1.9rem;
  color: var(--secondary-color);
  letter-spacing: -0.3px;
}

/* CTA Sections */
.cta-section {
  padding: 10vh 0;
  text-align: center;
  color: white;
  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(0, 0, 0, 0.65);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 25px;
}

.cta-section h2 {
  font-size: 2.9rem;
  margin-bottom: 25px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.75);
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 1.35rem;
  margin-bottom: 35px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
  line-height: 1.7;
}

/* Features Section */
.features-section {
  padding: 10vh 0;
  background: linear-gradient(135deg, var(--light-color) 0%, var(--background-color) 100%);
}

.features-timeline {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}

.features-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.feature-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.feature-item:nth-child(odd) {
  flex-direction: row;
}

.feature-item:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  width: 45%;
  padding: 35px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow-color);
  border: 2px solid var(--border-color);
  transition: all 0.35s ease;
  position: relative;
}

.feature-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px var(--shadow-color);
  border-color: var(--primary-color);
}

.feature-icon {
  position: absolute;
  left: 50%;
  top: 35px;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 18px var(--shadow-color);
  z-index: 2;
}

.feature-content h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--secondary-color);
  letter-spacing: -0.3px;
}

.feature-content p {
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .features-timeline::before {
    left: 25px;
  }

  .feature-item,
  .feature-item:nth-child(even) {
    flex-direction: column;
  }

  .feature-content {
    width: 100%;
    margin-left: 45px;
  }

  .feature-icon {
    left: -18px;
    transform: translateX(0);
  }

  .cta-section h2 {
    font-size: 2.1rem;
  }

  .cta-section p {
    font-size: 1.15rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 10vh 0;
  background: var(--background-color);
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 60px;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow-color);
  border: 2px solid var(--border-color);
  transition: all 0.35s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2.2rem;
  color: var(--border-color);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px var(--shadow-color);
  border-color: var(--primary-color);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
  color: var(--text-color);
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.12rem;
}

/* Contact Section */
.contact-section {
  padding: 10vh 0;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--light-color) 100%);
}

.contact-section h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 60px;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.9rem;
  margin-bottom: 35px;
  color: var(--dark-color);
  letter-spacing: -0.3px;
}

.contact-item {
  display: flex;
  align-items: start;
  margin-bottom: 30px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px var(--shadow-color);
  transition: all 0.35s ease;
}

.contact-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 25px var(--shadow-color);
}

.contact-item i {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-right: 18px;
  min-width: 35px;
}

.contact-item p {
  margin: 0;
  line-height: 1.7;
}

.contact-form {
  background: white;
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 12px 45px var(--shadow-color);
}

.contact-form h3 {
  font-size: 1.9rem;
  margin-bottom: 35px;
  color: var(--dark-color);
  letter-spacing: -0.3px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1.05rem;
  font-family: var(--alt-font);
  transition: all 0.35s ease;
  background: var(--background-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 12px var(--shadow-color);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.submit-button {
  width: 100%;
  padding: 16px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 60px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px var(--shadow-color);
  letter-spacing: 0.5px;
}

.submit-button:hover {
  background: var(--hover-color);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px var(--shadow-color);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-form {
    padding: 35px 25px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 10vh 0;
  background: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 60px;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

.faq-container {
  max-width: 950px;
  margin: 0 auto;
}

.faq-item {
  background: var(--background-color);
  margin-bottom: 25px;
  border-radius: 20px;
  box-shadow: 0 6px 25px var(--shadow-color);
  border: 2px solid var(--border-color);
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 35px var(--shadow-color);
  border-color: var(--primary-color);
}

.faq-question {
  padding: 28px 35px;
  background: white;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 18px;
}

.faq-question i {
  color: var(--primary-color);
  font-size: 1.4rem;
}

.faq-answer {
  padding: 0 35px 28px 35px;
  line-height: 1.9;
  color: var(--text-color);
  background: white;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  padding: 45px 0 25px;
  color: var(--light-color);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}

footer .logo img {
  height: 55px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  flex-wrap: wrap;
}

footer nav ul li a {
  color: var(--light-color);
  font-size: 15px;
  transition: color 0.35s ease;
}

footer nav ul li a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  width: 100%;
  text-align: center;
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid var(--border-color);
  font-size: 15px;
}

.footer-credit a {
  color: var(--highlight-color);
  font-weight: 700;
}

.footer-credit a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    text-align: center;
  }

  footer nav ul {
    flex-direction: column;
    gap: 18px;
  }
}