@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --primary-color: #16A085;
  --secondary-color: #0F6B5A;
  --accent-color: #1ABC9C;
  --light-color: #E8F8F5;
  --dark-color: #0A3D30;
  --gradient-primary: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
  --hover-color: #0D8C72;
  --background-color: #F4FEFB;
  --text-color: #2C3E50;
  --border-color: rgba(22, 160, 133, 0.25);
  --divider-color: rgba(15, 107, 90, 0.12);
  --shadow-color: rgba(15, 107, 90, 0.12);
  --highlight-color: #F59D2A;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--alt-font);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.7;
}

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark-color);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  box-shadow: 0 2px 16px var(--shadow-color);
}

.logo a { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.logo img { height: 42px; width: auto; }
.logo span {
  font-family: var(--main-font);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: .04em;
}

.navigation ul { list-style: none; display: flex; gap: 1.8rem; }
.navigation a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-family: var(--main-font);
  font-size: .95rem;
  letter-spacing: .03em;
  transition: color .25s;
}
.navigation a:hover { color: var(--accent-color); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: .3s; }
#nav-toggle { display: none; }

@media (max-width: 768px) {
  header { flex-wrap: wrap; padding: .75rem 1rem; justify-content: center; }
  .logo { order: 0; flex: 1 1 100%; display: flex; justify-content: center; margin-bottom: .5rem; }
  .hamburger { display: flex; position: absolute; right: 1rem; top: 1.1rem; }
  .navigation { display: none; flex: 1 1 100%; }
  #nav-toggle:checked ~ .navigation { display: block; }
  .navigation ul { flex-direction: column; gap: 0; padding: .5rem 0; }
  .navigation li a { display: block; padding: .65rem 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  #nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  #nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ─── HERO ─── */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,.52),rgba(0,0,0,.52)), url('./img/bg.jpg') no-repeat center center/cover;
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(26,188,156,.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero h1 { font-family: var(--main-font); color: #fff; font-size: clamp(2rem,5vw,3.6rem); line-height: 1.15; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: .04em; }
.hero p { color: rgba(255,255,255,.88); font-size: clamp(1rem,2.2vw,1.25rem); margin-bottom: 2rem; }
.btn-hero {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff; font-family: var(--main-font);
  text-transform: uppercase; letter-spacing: .06em;
  padding: .85rem 2.4rem; border-radius: 50px;
  text-decoration: none; font-size: 1rem;
  box-shadow: 0 8px 24px rgba(26,188,156,.4);
  transition: transform .25s, box-shadow .25s;
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(26,188,156,.5); }

/* ─── SECTIONS ─── */
section { padding-top: 10dvh; padding-bottom: 10dvh; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

.section-label {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff; font-family: var(--main-font);
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 30px; margin-bottom: 1rem;
}

.section-title { font-family: var(--main-font); font-size: clamp(1.6rem,3.5vw,2.4rem); color: var(--dark-color); line-height: 1.25; margin-bottom: 1rem; }
.section-sub { color: var(--text-color); font-size: 1.05rem; max-width: 640px; }

/* ─── CONTENT 1 ─── */
.content1 { background: var(--background-color); }
.content1-grid {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.content1-img { flex: 0 0 40%; max-width: 40%; }
.content1-img img { width: 100%; border-radius: 16px; box-shadow: 8px 12px 32px var(--shadow-color); display: block; }
.content1-text { flex: 1; min-width: 280px; }
.content1-text p { margin-bottom: 1rem; font-size: 1.03rem; }
.content1-list { list-style: none; margin-top: .5rem; }
.content1-list li { padding: .45rem 0; display: flex; align-items: flex-start; gap: .6rem; }
.content1-list li i { color: var(--primary-color); margin-top: .25rem; flex-shrink: 0; }

@media (max-width: 768px) { .content1-img { flex: 0 0 100%; max-width: 100%; } }

/* ─── DIVIDER ─── */
.divider-section { padding: 2.5rem 0; }
.divider-inner { display: flex; align-items: center; gap: 1.2rem; }
.divider-line { flex: 1; height: 1px; background: var(--border-color); }
.divider-text { font-family: var(--main-font); color: var(--primary-color); font-size: 1rem; text-align: center; letter-spacing: .04em; white-space: nowrap; }
@media (max-width: 600px) { .divider-text { white-space: normal; text-align: center; font-size: .9rem; } }

/* ─── CTA 1 ─── */
.cta1 {
  background: linear-gradient(rgba(0,0,0,.54),rgba(0,0,0,.54)), url('./img/bg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  text-align: center;
}
.cta1 h2 { font-family: var(--main-font); font-size: clamp(1.8rem,4vw,3rem); color: #fff; margin-bottom: 1rem; text-transform: uppercase; }
.cta1 p { color: rgba(255,255,255,.88); font-size: 1.15rem; margin-bottom: 2rem; }
.btn-cta {
  display: inline-block;
  background: var(--highlight-color);
  color: var(--dark-color); font-family: var(--main-font);
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .85rem 2.4rem; border-radius: 50px; text-decoration: none;
  font-size: 1rem; box-shadow: 0 6px 22px rgba(245,157,42,.45);
  transition: transform .25s, box-shadow .25s;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(245,157,42,.55); }

/* ─── FEATURES ─── */
.features { background: var(--light-color); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; position: relative; }

.feature-item {
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 4px 6px 18px var(--shadow-color), -2px -2px 8px rgba(255,255,255,.7);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.feature-item:hover { transform: translateY(-5px); box-shadow: 6px 12px 28px var(--shadow-color); }
.feature-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff; font-family: var(--main-font); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; box-shadow: 0 4px 12px rgba(22,160,133,.3);
}
.feature-item h3 { font-family: var(--main-font); font-size: 1.15rem; color: var(--dark-color); margin-bottom: .5rem; }
.feature-item p { font-size: .97rem; color: var(--text-color); }
.feature-icon { font-size: 2rem; color: var(--primary-color); margin-bottom: .75rem; }

/* ─── CONTENT 2 ─── */
.content2 { background: var(--background-color); }
.content2-grid { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.content2-img { flex: 0 0 50%; max-width: 50%; }
.content2-img img { width: 100%; border-radius: 16px; box-shadow: 8px 12px 32px var(--shadow-color); display: block; }
.content2-text { flex: 1; min-width: 280px; }
.content2-text p { margin-bottom: 1rem; font-size: 1.03rem; }
@media (max-width: 768px) { .content2-img { flex: 0 0 100%; max-width: 100%; } }

/* ─── CTA 2 ─── */
.cta2 {
  background: linear-gradient(rgba(0,0,0,.54),rgba(0,0,0,.54)), url('./img/bg.jpg') no-repeat center/cover;
  background-attachment: fixed;
  text-align: center;
}
.cta2 h2 { font-family: var(--main-font); font-size: clamp(1.8rem,4vw,2.8rem); color: #fff; margin-bottom: 1rem; text-transform: uppercase; }
.cta2 p { color: rgba(255,255,255,.88); font-size: 1.1rem; margin-bottom: 2rem; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--light-color); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem; margin-top: 3rem; }
.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: 3px 5px 18px var(--shadow-color);
}
.testimonial-stars { color: var(--highlight-color); margin-bottom: .75rem; letter-spacing: .1em; }
.testimonial-text { font-size: .97rem; color: var(--text-color); margin-bottom: 1rem; font-style: italic; line-height: 1.7; }
.testimonial-author { font-family: var(--main-font); font-size: .9rem; color: var(--primary-color); letter-spacing: .04em; }

/* ─── FORM SECTION ─── */
.form-section { background: var(--gradient-primary); }
.form-section .section-title { color: #fff; }
.form-section .section-sub { color: rgba(255,255,255,.9); }
.form-cta-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 20px; padding: 2.5rem; backdrop-filter: blur(8px); max-width: 580px; margin: 2rem auto 0; }
.form-cta-card p { color: rgba(255,255,255,.92); font-size: 1.05rem; margin-bottom: 1.5rem; text-align: center; }
.form-cta-card a { display: block; text-align: center; }

/* ─── CONTACT ─── */
.contact { background: var(--background-color); }
.contact-grid { display: flex; gap: 3rem; flex-wrap: wrap; }
.contact-info { flex: 0 0 38%; min-width: 260px; }
.contact-info h3 { font-family: var(--main-font); font-size: 1.4rem; color: var(--dark-color); margin-bottom: 1.2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.contact-detail i { color: var(--primary-color); margin-top: .25rem; flex-shrink: 0; }
.contact-detail span { font-size: .97rem; }

.contact-form-wrap { flex: 1; min-width: 280px; }
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-group { flex: 1; min-width: 200px; margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .88rem; font-family: var(--main-font); color: var(--dark-color); margin-bottom: .4rem; letter-spacing: .03em; }
.form-control {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: 10px; font-family: var(--alt-font);
  font-size: .97rem; background: #fff; color: var(--text-color);
  box-shadow: inset 2px 2px 6px var(--shadow-color);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.form-control:focus { border-color: var(--primary-color); box-shadow: inset 2px 2px 6px var(--shadow-color), 0 0 0 3px rgba(22,160,133,.15); }
textarea.form-control { resize: vertical; min-height: 110px; }
.btn-submit {
  display: inline-block; width: 100%;
  background: var(--gradient-primary);
  color: #fff; font-family: var(--main-font);
  font-size: 1rem; text-transform: uppercase;
  letter-spacing: .06em; padding: .85rem 1.5rem;
  border: none; border-radius: 50px; cursor: pointer;
  box-shadow: 0 6px 20px rgba(22,160,133,.35);
  transition: transform .25s, box-shadow .25s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(22,160,133,.45); }

/* ─── FAQ ─── */
.faq { background: var(--light-color); }
.faq-list { max-width: 780px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 1.25rem; }
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  box-shadow: 3px 5px 16px var(--shadow-color), -1px -1px 6px rgba(255,255,255,.6);
  transition: box-shadow .3s;
}
.faq-item:hover { box-shadow: 5px 8px 24px var(--shadow-color); }
.faq-item h3 { font-family: var(--main-font); font-size: 1.05rem; color: var(--dark-color); margin-bottom: .75rem; display: flex; align-items: flex-start; gap: .6rem; }
.faq-item h3 i { color: var(--primary-color); flex-shrink: 0; margin-top: .2rem; }
.faq-item p { font-size: .97rem; color: var(--text-color); line-height: 1.75; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark-color);
  padding: 2rem 2rem;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
footer .logo img { height: 38px; }
footer nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; }
footer nav a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .88rem; transition: color .2s; }
footer nav a:hover { color: var(--accent-color); }
.footer-copy { width: 100%; text-align: center; color: rgba(255,255,255,.45); font-size: .8rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.08); margin-top: .5rem; }
.footer-copy a { color: rgba(255,255,255,.55); }
@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  footer nav ul { justify-content: center; }
}