@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #239B56;
  --secondary-color: #1A7A42;
  --accent-color: #2ECC71;
  --light-color: #E9F7EF;
  --dark-color: #0D2B1A;
  --gradient-primary: linear-gradient(135deg, #2ECC71 0%, #239B56 100%);
  --hover-color: #1E8449;
  --background-color: #F6FDF8;
  --text-color: #1C2E22;
  --border-color: rgba(46, 204, 113, 0.22);
  --divider-color: rgba(35, 155, 86, 0.12);
  --shadow-color: rgba(35, 155, 86, 0.14);
  --highlight-color: #E74C3C;
  --main-font: 'Playfair Display', sans-serif;
  --alt-font: 'Nunito', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.8;
}

h1, h2, h3, h4 {
  font-family: var(--main-font);
  letter-spacing: 0.01em;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark-color);
  box-shadow: 0 3px 22px rgba(35,155,86,0.3);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }

.navigation ul { list-style: none; display: flex; gap: 1.8rem; }
.navigation ul li a {
  color: #a5d8b8;
  text-decoration: none;
  font-family: var(--alt-font);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.3s;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.navigation ul li a:hover { color: var(--accent-color); border-bottom-color: var(--accent-color); }

.hamburger-toggle { display: none; }
.hamburger-label { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 5px; }
.hamburger-label span { display: block; width: 26px; height: 2px; background: #a5d8b8; transition: all 0.3s; border-radius: 2px; }
.hamburger-toggle:checked ~ .navigation { display: flex; flex-direction: column; }
.hamburger-toggle:checked ~ .hamburger-label span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-toggle:checked ~ .hamburger-label span:nth-child(2) { opacity: 0; }
.hamburger-toggle:checked ~ .hamburger-label span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* HERO */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.54), rgba(0,0,0,0.54)), url('./img/bg.jpg') no-repeat center center / cover;
  min-height: 60vh;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(46,204,113,0.16) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(231,76,60,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; padding: 2rem 1.5rem; }
.hero h1 {
  color: #ffffff;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  line-height: 1.22;
  text-shadow: 0 3px 28px rgba(0,0,0,0.65);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.hero p { color: #b8e8cc; font-size: clamp(1rem, 2.5vw, 1.2rem); max-width: 620px; margin: 0 auto 2rem; }
.hero-badge {
  display: inline-block;
  background: transparent;
  border: 2px solid rgba(46,204,113,0.7);
  color: var(--accent-color);
  font-family: var(--alt-font);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 1.3rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.9rem 2.3rem;
  border-radius: 8px;
  font-family: var(--alt-font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 20px rgba(35,155,86,0.45);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(35,155,86,0.55); }

section { padding-top: 10dvh; padding-bottom: 10dvh; }

.section-title {
  font-size: clamp(1.5rem, 3.8vw, 2.4rem);
  color: var(--dark-color);
  margin-bottom: 0.7rem;
  font-style: italic;
}
.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: var(--gradient-primary);
  margin-top: 0.55rem;
  border-radius: 2px;
}
.section-subtitle { color: #2a6a3a; font-size: 1rem; max-width: 560px; margin-bottom: 2.5rem; }

/* CONTENT 1 */
.content-grid-1 { display: flex; gap: 2.5rem; align-items: center; }
.content-grid-1 .img-col { flex: 0 0 40%; }
.content-grid-1 .text-col { flex: 1; }
.content-grid-1 img { width: 100%; border-radius: 16px; box-shadow: 10px 14px 44px var(--shadow-color); }

/* DIVIDER */
.section-divider { padding: 2rem 0; text-align: center; position: relative; }
.section-divider::before { content: ''; display: block; height: 1px; background: var(--border-color); position: absolute; top: 50%; left: 0; right: 0; }
.divider-text {
  position: relative;
  display: inline-block;
  background: var(--background-color);
  padding: 0.4rem 1.5rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  font-style: italic;
}

/* CTA */
.cta-parallax {
  background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url('./img/bg.jpg') no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.cta-parallax h2 { color: #fff; font-size: clamp(1.5rem,4vw,2.7rem); margin-bottom: 1rem; font-style: italic; }
.cta-parallax p { color: #b8e8cc; max-width: 580px; margin: 0 auto 2rem; font-size: 1.1rem; }

/* FEATURES */
.features-section { background: var(--light-color); }
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 1rem; top: 0; bottom: 0; width: 2px; background: var(--gradient-primary); }
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.6rem 1.6rem 1.6rem 2rem;
  box-shadow: 5px 5px 22px var(--shadow-color), -2px -2px 10px rgba(255,255,255,0.9);
  transition: transform 0.25s, box-shadow 0.25s;
}
.timeline-item:hover { transform: translateX(7px) translateY(-2px); box-shadow: 10px 10px 30px var(--shadow-color); }
.timeline-item::before { content: ''; position: absolute; left: -1.9rem; top: 1.6rem; width: 14px; height: 14px; border-radius: 50%; background: var(--accent-color); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--accent-color); }
.timeline-item .item-icon { color: var(--primary-color); font-size: 1.5rem; margin-bottom: 0.5rem; }
.timeline-item h3 { font-family: var(--alt-font); font-size: 1.05rem; color: var(--dark-color); margin-bottom: 0.4rem; font-weight: 700; }
.timeline-item p { font-size: 0.93rem; color: #2a6a3a; }

/* CONTENT 2 */
.content-grid-2 { display: flex; gap: 2.5rem; align-items: center; flex-direction: row-reverse; }
.content-grid-2 .img-col { flex: 0 0 50%; }
.content-grid-2 .text-col { flex: 1; }
.content-grid-2 img { width: 100%; border-radius: 16px; box-shadow: 10px 14px 44px var(--shadow-color); }

/* TESTIMONIALS */
.testimonials-section { background: var(--background-color); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 5px 5px 22px var(--shadow-color), -2px -2px 8px rgba(255,255,255,0.9);
  position: relative;
  transition: transform 0.2s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card::before { content: '\201C'; position: absolute; top: -0.5rem; left: 1.2rem; font-size: 5rem; color: var(--accent-color); opacity: 0.15; font-family: 'Playfair Display', serif; line-height: 1; font-style: italic; }
.testimonial-text { font-size: 0.94rem; color: #2a6a3a; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { font-family: var(--alt-font); font-size: 0.83rem; color: var(--primary-color); font-weight: 700; }
.testimonial-stars { color: var(--highlight-color); margin-bottom: 0.8rem; font-size: 0.85rem; }

/* FAQ */
.faq-section { background: var(--light-color); }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 4px 4px 16px var(--shadow-color), -1px -1px 6px rgba(255,255,255,0.85);
  transition: box-shadow 0.3s, transform 0.2s;
}
.faq-item:hover { box-shadow: 8px 8px 28px var(--shadow-color); transform: translateY(-2px); }
.faq-item h3 { font-family: var(--alt-font); font-size: 1rem; color: var(--dark-color); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.7rem; font-weight: 700; }
.faq-item h3 i { color: var(--accent-color); }
.faq-item p { font-size: 0.93rem; color: #2a6a3a; }

/* FOOTER */
footer { background: var(--dark-color); padding: 2.5rem 2rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
footer .logo img { height: 36px; filter: brightness(0) invert(1); }
footer nav ul { list-style: none; display: flex; gap: 1.5rem; flex-wrap: wrap; }
footer nav ul li a { color: #7ab890; text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
footer nav ul li a:hover { color: var(--accent-color); }
.footer-credit { text-align: center; color: #4a7a5a; font-size: 0.78rem; padding-top: 1.2rem; border-top: 1px solid rgba(46,204,113,0.18); margin-top: 1.5rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-credit a { color: var(--accent-color); text-decoration: none; }

.styled-list { list-style: none; padding: 0; }
.styled-list li { padding: 0.5rem 0; padding-left: 1.8rem; position: relative; color: #2a6a3a; font-size: 0.96rem; }
.styled-list li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--accent-color); }

@media (max-width: 768px) {
  .hamburger-label { display: flex; }
  .navigation { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark-color); padding: 1.2rem 2rem; border-top: 1px solid rgba(46,204,113,0.2); }
  .navigation ul { flex-direction: column; gap: 1rem; }
  header { flex-wrap: wrap; }
  .content-grid-1, .content-grid-2 { flex-direction: column; }
  .content-grid-1 .img-col, .content-grid-2 .img-col { flex: none; width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  footer nav ul { flex-direction: column; gap: 0.7rem; }
}