/* HOME PAGE STYLES */

.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.95) 0%, rgba(46, 89, 132, 0.9) 100%), url('../images/hero.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 6rem 0;
}

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

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

.hero-content p {
  font-size: 1.2rem;
  color: #E2E8F0;
  margin-bottom: 2.5rem;
  max-width: 650px;
}

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

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  border: 3px solid rgba(201, 162, 39, 0.4);
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* STATS BAR */
.stats-bar {
  background: var(--white);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

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

.stat-card h3 {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}

.stat-card p {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

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

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

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(46, 89, 132, 0.1);
  color: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

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

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

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--secondary);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-box {
  width: 45%;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent);
}

.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* PROCESS GRID */
.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);
  position: relative;
  border-bottom: 4px solid var(--secondary);
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(46, 89, 132, 0.2);
  margin-bottom: 1rem;
}

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

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

.faq-header {
  padding: 1.4rem 2rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-body {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-muted);
  display: none;
}

.faq-item.active .faq-body {
  display: block;
}

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

@media (max-width: 768px) {
  .hero-grid, .services-grid, .process-grid, .stats-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  .timeline-container::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; align-items: flex-end; }
  .timeline-box { width: 85%; }
}
