/* ==========================================
SERVICES HERO
========================================== */
.services-hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #0b1d43, #2457ff);
  text-align: center;
  color: #fff;
}

.services-hero h1 {
  font-size: 58px;
  max-width: 850px;
  margin: 20px auto;
  line-height: 1.1;
}

.services-hero p {
  max-width: 700px;
  margin: auto;
  font-size: 19px;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================
FEATURED SERVICES
========================================== */
.featured-services {
  padding: 120px 0;
  background: white;
}

.featured-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.featured-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.featured-image img:hover {
  transform: scale(1.02);
}

.featured-content h2 {
  font-size: 46px;
  margin: 20px 0;
}

.featured-content p {
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 35px;
  font-size: 17px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
}

.service-features i {
  color: #2f6bff;
  font-size: 18px;
}

.gray {
  background: #f8fafc;
}

.reverse {
  grid-template-columns: 1fr 1fr;
}

/* ==========================================
ALL SERVICES LIST
========================================== */
.services-list {
  padding: 120px 0;
  background: #f8fafc;
}

.services-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 70px;
}

.service-box {
  background: white;
  padding: 45px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  transition: 0.35s;
}

.service-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.service-box i {
  font-size: 46px;
  color: #2f6bff;
  margin-bottom: 25px;
}

.service-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.service-box p {
  line-height: 1.9;
  margin-bottom: 25px;
  color: #64748b;
  font-size: 15px;
}

.service-box a {
  font-weight: 700;
  color: #2f6bff;
  text-decoration: none;
  transition: 0.3s;
}

.service-box a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* ==========================================
STATS STRIP
========================================== */
.stats-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b1d43, #2457ff);
}

.stats-strip .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  color: white;
}

.stats-strip .stats-grid h2 {
  font-size: 42px;
  margin-bottom: 8px;
  color: white;
  font-weight: 800;
}

.stats-strip .stats-grid p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* ==========================================
BUTTONS
========================================== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: #2563eb;
  transform: translateY(-3px);
}

/* ==========================================
SOCIALS
========================================== */
.socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.socials a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1e3c7a;
  color: white;
  transition: 0.3s;
}

.socials a:hover {
  background: #2457ff;
  transform: translateY(-6px);
}

/* ==========================================
SECTION HEAD
========================================== */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2563eb;
  background: #e8efff;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 38px;
  margin: 0 0 14px;
}

.section-head p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-size: 17px;
}

/* ==========================================
RESPONSIVE - TABLETS
========================================== */
@media (max-width: 992px) {
  .featured-service {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reverse {
    grid-template-columns: 1fr;
  }

  .services-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .featured-content h2 {
    font-size: 36px;
  }

  .section-head h2 {
    font-size: 32px;
  }
}

/* ==========================================
RESPONSIVE - MOBILE
========================================== */
@media (max-width: 768px) {
  .services-hero {
    padding: 60px 16px;
  }

  .services-hero h1 {
    font-size: 28px;
  }

  .services-hero p {
    font-size: 15px;
    padding: 0 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
  }

  .featured-services {
    padding: 60px 16px;
  }

  .featured-service {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .featured-content h2 {
    font-size: 28px;
  }

  .featured-content p {
    font-size: 15px;
  }

  .service-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-features li {
    font-size: 14px;
  }

  .gray {
    padding: 60px 16px;
  }

  .services-list {
    padding: 60px 16px;
  }

  .services-grid-large {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .service-box {
    padding: 28px 24px;
  }

  .service-box h3 {
    font-size: 22px;
  }

  .service-box p {
    font-size: 14px;
  }

  .stats-strip {
    padding: 60px 16px;
  }

  .stats-strip .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stats-strip .stats-grid h2 {
    font-size: 28px;
  }

  .stats-strip .stats-grid p {
    font-size: 14px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .section-head p {
    font-size: 15px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .featured-image img {
    border-radius: 20px;
  }
}

/* ==========================================
RESPONSIVE - SMALL PHONES
========================================== */
@media (max-width: 480px) {
  .services-hero h1 {
    font-size: 24px;
  }

  .services-hero p {
    font-size: 14px;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .stats-strip .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .featured-content h2 {
    font-size: 24px;
  }

  .service-box {
    padding: 24px 18px;
  }

  .service-box i {
    font-size: 36px;
  }

  .service-box h3 {
    font-size: 20px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .section-head p {
    font-size: 14px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* ==========================================
DESKTOP - REVERSE LAYOUT
========================================== */
@media (min-width: 993px) {
  .reverse .featured-content {
    order: 1;
  }

  .reverse .featured-image {
    order: 2;
  }
}
