/* HERO SECTION */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 7rem 0 8rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.18rem;
  color: #D1D5DB;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(212, 175, 55, 0.35);
}

/* STATS BAR */
.stats-section {
  background: var(--secondary);
  color: var(--white);
  padding: 4rem 0;
  border-bottom: 3px solid var(--accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.2rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.stat-item p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #E5E7EB;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

/* WHY CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.why-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

/* TIMELINE */
.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-year {
  flex-shrink: 0;
  width: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  text-align: right;
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--secondary);
  box-shadow: var(--shadow-sm);
  flex-grow: 1;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  background: var(--white);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  border: 1px solid var(--border-subtle);
}

.step-num {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1.5rem auto;
}

/* FAQ ACCORDION */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.4rem 1.8rem;
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.8rem;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.8rem 1.5rem 1.8rem;
}

@media (max-width: 1024px) {
  .hero-grid, .services-grid, .why-grid, .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-grid, .services-grid, .why-grid, .process-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 { font-size: 2.4rem; }
  .timeline-item { flex-direction: column; gap: 0.5rem; }
  .timeline-year { text-align: left; }
}
