@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: #FEF5EC;
  --dark-color: #1A0A00;
  --gradient-primary: linear-gradient(135deg, #F39C12 0%, #D35400 100%);
  --hover-color: #B24600;
  --background-color: #FFFAF5;
  --text-color: #2C3E50;
  --border-color: rgba(211, 84, 0, 0.2);
  --divider-color: rgba(211, 84, 0, 0.12);
  --shadow-color: rgba(211, 84, 0, 0.12);
  --highlight-color: #344CB7;
  --main-font: 'Raleway', sans-serif;
  --alt-font: 'Fira 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.75;
}

h1, h2, h3, h4 {
  font-family: var(--main-font);
  letter-spacing: 0.02em;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1A0A00 0%, #2C1A00 100%);
  box-shadow: 0 3px 24px rgba(211,84,0,0.25);
  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: 2rem; }
.navigation ul li a {
  color: #f0d8c0;
  text-decoration: none;
  font-family: var(--main-font);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
  padding-bottom: 3px;
  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: #f0d8c0;
  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 */
.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.58), rgba(0,0,0,0.58)), url('./img/bg.jpg') no-repeat center center / cover;
  min-height: 65vh;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(211,84,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; padding: 2rem 1.5rem; }
.hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  text-shadow: 0 3px 24px rgba(0,0,0,0.6);
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.hero p {
  color: #f0d8c0;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 620px;
  margin: 0 auto 2rem;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  font-family: var(--main-font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 1.3rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.9rem 2.4rem;
  border-radius: 4px;
  font-family: var(--main-font);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 20px rgba(211,84,0,0.45);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(211,84,0,0.55);
}

/* SECTIONS */
section { padding-top: 10dvh; padding-bottom: 10dvh; }

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--dark-color);
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--gradient-primary);
  margin-top: 0.6rem;
  border-radius: 2px;
}
.section-subtitle {
  color: #7a5035;
  font-size: 1.05rem;
  max-width: 580px;
  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: 20px; box-shadow: 8px 12px 40px 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.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* 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.6rem,4vw,2.8rem); margin-bottom: 1rem; font-weight: 700; }
.cta-parallax p { color: #f0d8c0; 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: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  margin-bottom: 1.8rem;
  background: #fff;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-color);
  border-radius: 10px;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  box-shadow: 5px 5px 20px var(--shadow-color), -2px -2px 10px rgba(255,255,255,0.8);
  transition: transform 0.25s, box-shadow 0.25s;
}
.timeline-item:hover {
  transform: translateX(8px) translateY(-2px);
  box-shadow: 10px 10px 32px var(--shadow-color);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 1.6rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--accent-color);
}
.timeline-item .item-icon { color: var(--primary-color); font-size: 1.6rem; margin-bottom: 0.6rem; }
.timeline-item h3 { font-size: 1.1rem; color: var(--dark-color); margin-bottom: 0.4rem; font-weight: 600; }
.timeline-item p { font-size: 0.95rem; color: #7a5035; }

/* 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: 20px; box-shadow: 8px 12px 40px var(--shadow-color); }

/* TESTIMONIALS */
.testimonials-section { background: var(--background-color); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent-color);
  border-radius: 12px;
  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-text { font-size: 0.95rem; color: #7a5035; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { font-family: var(--main-font); font-size: 0.85rem; color: var(--primary-color); font-weight: 600; }
.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.6rem;
  box-shadow: 4px 4px 16px var(--shadow-color), -1px -1px 6px rgba(255,255,255,0.8);
  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-size: 1.05rem; color: var(--dark-color); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.7rem; font-weight: 600; }
.faq-item h3 i { color: var(--primary-color); }
.faq-item p { font-size: 0.95rem; color: #7a5035; }

/* FOOTER */
footer { background: linear-gradient(135deg, #1A0A00 0%, #2C1A00 100%); 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: #c09070; 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: #8a5030; font-size: 0.78rem; padding-top: 1.2rem; border-top: 1px solid rgba(211,84,0,0.2); 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: #7a5035; font-size: 0.97rem; }
.styled-list li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--primary-color); }

@media (max-width: 768px) {
  .hamburger-label { display: flex; }
  .navigation { display: none; position: absolute; top: 72px; left: 0; right: 0; background: linear-gradient(135deg, #1A0A00 0%, #2C1A00 100%); padding: 1.2rem 2rem; border-top: 1px solid rgba(211,84,0,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; }
}