@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #D35400;
  --secondary-color: #A04000;
  --accent-color: #F39C12;
  --light-color: #FEF5E7;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #F39C12 0%, #D35400 100%);
  --hover-color: #BA4A00;
  --background-color: #FDFAF6;
  --text-color: #4A4A4A;
  --border-color: rgba(211, 84, 0, 0.2);
  --divider-color: rgba(211, 84, 0, 0.15);
  --shadow-color: rgba(211, 84, 0, 0.12);
  --highlight-color: #F1C40F;
  --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);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.7;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  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: 10px; text-decoration: none; }
.logo img { height: 40px; width: auto; }
.logo-text {
  font-family: var(--main-font);
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 1px;
}

.navigation ul { list-style: none; display: flex; gap: 1.5rem; }
.navigation a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--main-font);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.navigation a:hover { color: var(--accent-color); }

/* Hamburger */
.hamburger-toggle { display: none; }
.hamburger-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger-label span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger-toggle:checked ~ .navigation { display: flex; flex-direction: column; }
.hamburger-toggle:checked ~ .hamburger-label span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.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,-6px); }

/* ===== SECTIONS ===== */
section { position: relative; overflow: hidden; }
.section-pad { padding-top: 10dvh; padding-bottom: 10dvh; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HERO ===== */
.hero-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52)), url('./img/bg.jpg') no-repeat center center/cover;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 2rem 1.5rem; }
.hero-content h1 {
  font-family: var(--main-font);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 1.8rem;
}
.btn-primary {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--main-font);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(211,84,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(211,84,0,0.45); }

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: var(--main-font);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.section-subtitle {
  color: var(--text-color);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.title-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== CONTENT SECTIONS ===== */
.content-grid {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.content-img {
  flex: 0 0 40%;
  max-width: 40%;
}
.content-img img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 6px 12px 32px var(--shadow-color), -2px -2px 8px rgba(255,255,255,0.8);
  display: block;
}
.content-text { flex: 1; min-width: 260px; }
.content-text h2 { font-family: var(--main-font); color: var(--primary-color); margin-bottom: 1rem; font-size: clamp(1.4rem,3vw,2rem); }
.content-text p { margin-bottom: 0.9rem; }
.content-text ul { list-style: none; padding: 0; }
.content-text ul li {
  padding: 0.35rem 0 0.35rem 1.6rem;
  position: relative;
}
.content-text ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

.content-img-half { flex: 0 0 50%; max-width: 50%; }
.content-img-half img { width: 100%; border-radius: 14px; box-shadow: 6px 12px 32px var(--shadow-color); display: block; }

/* ===== DIVIDER ===== */
.divider-section { padding: 2.5rem 0; }
.divider-line {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.divider-line::before, .divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}
.divider-text {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  padding: 0 1rem;
}

/* ===== CTA ===== */
.cta-section {
  padding: 10dvh 0;
  background: linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52)), url('./img/bg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  background-size: cover;
  text-align: center;
}
.cta-section h2 { font-family: var(--main-font); color: #fff; font-size: clamp(1.6rem,4vw,2.6rem); margin-bottom: 0.8rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.cta-section p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 1.6rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ===== FEATURES (TIMELINE) ===== */
.features-section { background: #F4ECE0; }
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.8rem;
  box-shadow: 4px 6px 20px var(--shadow-color), -1px -1px 6px rgba(255,255,255,0.9);
  transition: transform 0.2s, box-shadow 0.2s;
}
.timeline-item:hover { transform: translateX(6px); box-shadow: 8px 12px 28px rgba(211,84,0,0.18); }
.timeline-dot {
  position: absolute;
  left: -2.1rem;
  top: 1.4rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--primary-color);
}
.timeline-item h3 { font-family: var(--main-font); color: var(--primary-color); margin-bottom: 0.4rem; font-size: 1.15rem; display: flex; align-items: center; gap: 0.6rem; }
.timeline-item h3 i { color: var(--accent-color); }
.timeline-item p { font-size: 0.97rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--background-color); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: 4px 8px 24px var(--shadow-color);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text { font-style: italic; margin-bottom: 1rem; position: relative; z-index: 1; }
.testimonial-name { font-family: var(--main-font); color: var(--primary-color); font-size: 0.95rem; }
.testimonial-stars { color: var(--highlight-color); margin-bottom: 0.5rem; }

/* ===== FORM ===== */
.form-section { background: var(--light-color); }
.form-cta-box {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 6px 12px 32px var(--shadow-color);
  max-width: 600px;
  margin: 0 auto;
}
.form-cta-box h2 { font-family: var(--main-font); color: var(--primary-color); margin-bottom: 0.6rem; }
.form-cta-box p { margin-bottom: 1.5rem; }
.form-grid { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-field label { font-size: 0.88rem; font-family: var(--main-font); color: var(--secondary-color); text-transform: uppercase; letter-spacing: 0.5px; }
.form-field input, .form-field textarea {
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-family: var(--alt-font);
  font-size: 0.97rem;
  background: var(--background-color);
  color: var(--text-color);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(211,84,0,0.12);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  display: block;
  width: 100%;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem;
  font-family: var(--main-font);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
  box-shadow: 0 4px 18px rgba(211,84,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(211,84,0,0.4); }

/* ===== CONTACT ===== */
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { font-family: var(--main-font); color: var(--primary-color); margin-bottom: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1rem; }
.contact-item i { color: var(--primary-color); margin-top: 3px; font-size: 1.1rem; }
.contact-item p { font-size: 0.97rem; }

/* ===== FAQ ===== */
.faq-section { background: #F4ECE0; }
.faq-list { display: flex; flex-direction: column; gap: 1.2rem; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  box-shadow: 3px 6px 18px var(--shadow-color);
  transition: transform 0.2s;
}
.faq-item:hover { transform: translateY(-2px); }
.faq-item h3 { font-family: var(--main-font); color: var(--primary-color); font-size: 1.05rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.6rem; }
.faq-item h3 i { color: var(--accent-color); font-size: 0.9rem; }
.faq-item p { font-size: 0.97rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark-color);
  padding: 2rem 2rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
footer .logo img { height: 36px; }
footer nav ul { list-style: none; display: flex; gap: 1.4rem; flex-wrap: wrap; }
footer nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
footer nav a:hover { color: var(--accent-color); }
.footer-bottom {
  text-align: center;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger-label { display: flex; }
  .navigation {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--dark-color);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .navigation ul { flex-direction: column; gap: 0.8rem; }
  header { position: relative; }
  .logo { margin: 0 auto; }

  .content-img, .content-img-half { flex: 0 0 100%; max-width: 100%; order: -1; }
  .content-text { flex: 0 0 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  footer nav ul { justify-content: center; }
  .cta-section { background-attachment: scroll; }
}