/* ===== SPLIT HERO SECTION ===== */

.agency-hero-split {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

.agency-hero-split::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 122, 79, 0.03) 0%, rgba(31, 122, 79, 0.08) 100%);
  z-index: 0;
}

.agency-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* LEFT SIDE */
.agency-hero-left {
  padding-right: 0;
}

.agency-hero-left h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  color: #0f2419;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.agency-highlight {
  color: #1f7a4f;
  position: relative;
  display: inline-block;
}

.agency-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 32px;
  max-width: 540px;
}

/* PILL BADGE */
.agency-hero-pill {
  display: inline-block;
  background: linear-gradient(135deg, #e7f6ec 0%, #d4f1e3 100%);
  color: #1f7a4f;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(31, 122, 79, 0.1);
  box-shadow: 0 2px 8px rgba(31, 122, 79, 0.08);
}

/* STATS BOXES */
.agency-hero-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-stat-box {
  background: white;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(31, 122, 79, 0.08);
  min-width: 140px;
  transition: all 0.3s ease;
}

.hero-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31, 122, 79, 0.12);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1f7a4f;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  color: #718096;
  font-weight: 500;
}

/* BUTTONS */
.agency-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.agency-btn-primary {
  background: linear-gradient(135deg, #1f7a4f 0%, #16613d 100%);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(31, 122, 79, 0.25);
  border: none;
}

.agency-btn-primary:hover {
  background: linear-gradient(135deg, #16613d 0%, #0f4429 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 122, 79, 0.35);
}

.agency-btn-dark {
  background: #ffffff;
  color: #1f7a4f;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid #1f7a4f;
}

.agency-btn-dark:hover {
  background: #1f7a4f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 122, 79, 0.25);
}

/* RIGHT IMAGE */
.agency-hero-right {
  position: relative;
}

.agency-hero-right img {
  width: 100%;
  max-width: 100%;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 8px solid white;
  transition: all 0.4s ease;
}

.agency-hero-right img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .agency-hero-right img {
    height: 480px;
  }
}

@media (max-width: 1024px) {
  .agency-hero-left h1 {
    font-size: 2.8rem;
  }
  
  .agency-hero-grid {
    gap: 30px;
  }
  
  .agency-hero-right img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .agency-hero-split {
    padding: 60px 0 80px;
  }
  
  .agency-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .agency-hero-left {
    padding-right: 0;
  }

  .agency-hero-left h1 {
    font-size: 2.2rem;
  }
  
  .agency-hero-subtitle {
    margin: 0 auto 32px;
  }
  
  .agency-hero-stats {
    justify-content: center;
  }

  .agency-hero-buttons {
    justify-content: center;
  }
  
  .hero-stat-box {
    min-width: 120px;
  }
  
  .agency-hero-right {
    margin: 0 auto;
  }
  
  .agency-hero-right img {
    height: auto;
    min-height: 350px;
  }
}
