/* 
=========================================================
  AH - Home Page Specific Styles
========================================================= 
*/

/* --- 1. Cinematic Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Offset for navbar */
  background: url('https://images.unsplash.com/photo-1558904541-efa843a96f0a?auto=format&fit=crop&q=80&w=2070') center/cover no-repeat;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-headline {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-trust-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-badge i {
  color: var(--color-accent);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  font-size: 2rem;
  animation: bounce 2s infinite;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

/* --- 2. Trust Indicators --- */
.trust-icon-box {
  text-align: center;
  padding: 2rem 1rem;
}

.trust-icon-box i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.trust-icon-box h5 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* --- 3. Company Introduction --- */
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

/* --- 4. Why Choose AH & 5. Services --- */
.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(67, 160, 71, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.card-premium:hover .feature-icon {
  background-color: var(--color-primary);
  color: white;
  transform: rotateY(180deg);
}

.service-card {
  padding: 0;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
}

/* --- 7. How We Work (Timeline) --- */
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 2rem;
}

.process-step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  position: relative;
  z-index: 2;
}

.process-number {
  width: 80px;
  height: 80px;
  background: white;
  border: 4px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  background: var(--color-primary);
  color: white;
  transform: translateY(-10px);
}

/* --- 8. Statistics --- */
.stats-section {
  background: var(--color-primary);
  color: white;
  padding: 5rem 0;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

/* --- 9. Gallery --- */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 94, 32, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: translateY(0);
}

/* --- 11. Testimonials --- */
.testimonial-card {
  text-align: center;
  padding: 3rem 2rem;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--color-accent);
}

.stars {
  color: var(--color-warning);
  margin-bottom: 1rem;
}

/* --- 12. FAQ --- */
.accordion-button:not(.collapsed) {
  background-color: rgba(67, 160, 71, 0.1);
  color: var(--color-primary);
  font-weight: 600;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,.125);
}

/* --- 13. CTA Banner --- */
.cta-banner {
  background: linear-gradient(rgba(27, 94, 32, 0.9), rgba(27, 94, 32, 0.9)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&q=80&w=2070') center/cover;
  padding: 6rem 0;
  text-align: center;
  color: white;
}

.cta-banner h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

/* --- Responsive specific for Home --- */
@media (max-width: 991.98px) {
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-trust-badges {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .process-timeline {
    flex-direction: column;
    align-items: center;
  }
}
