/* HOMEPAGE SPECIFIC LAYOUTS - UNITED ENTERPRISES */

/* 1. HERO SECTION */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-main) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: var(--primary-light);
  border-radius: 50%;
  margin-right: 0.5rem;
  box-shadow: 0 0 10px var(--primary-light);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(20, 184, 166, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

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

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 2. SECTION HEADER COMMONS */
.section-header-top {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.section-title {
  font-size: 2.8rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* 3. STATISTICS BAR */
.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 4.5rem 0;
}

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

.stat-card h3 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-title);
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 1rem;
  color: #CCFBF1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.service-card {
  background: var(--white);
  padding: 3rem 2.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(20, 184, 166, 0.25);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

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

.why-card {
  padding: 2.8rem;
  border-radius: var(--radius-md);
}

/* 6. INDUSTRIES SERVED */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.industry-card {
  background: var(--white);
  padding: 2.2rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.industry-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.industry-card h4 {
  font-size: 1.15rem;
  color: var(--text-main);
}

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

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: rgba(20, 184, 166, 0.25);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 3.5rem;
  padding: 0 3rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-box {
  background: var(--white);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border: 4px solid var(--white);
  border-radius: 50%;
  top: 25px;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
  z-index: 2;
}

.timeline-item:nth-child(odd)::after {
  right: -10px;
}

.timeline-item:nth-child(even)::after {
  left: -10px;
}

.timeline-year {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

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

.process-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(20, 184, 166, 0.15);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  line-height: 1;
  font-family: var(--font-title);
}

.process-card h4 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 1.2rem;
}

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

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

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.faq-header {
  padding: 1.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  user-select: none;
}

.faq-icon-indicator {
  transition: var(--transition);
  color: var(--primary);
}

.faq-item.active .faq-icon-indicator {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 2rem 1.8rem 2rem;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  display: none;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .services-grid, .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .services-grid, .why-grid, .stats-grid, .industries-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .timeline-container::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 3.5rem;
    padding-right: 0;
    text-align: left !important;
  }
  .timeline-item::after {
    left: 10px !important;
  }
}
