/* ===== SERVICES PAGE CSS ===== */

:root {
  --primary-blue: #0b2e5b;
  --primary-green: #2fa84f;
  --accent-gold: #f4a300;
  --light-grey: #f8f9fa;
  --text-muted: #6c757d;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --transition: all 0.3s ease-in-out;
}

/* ===== HERO SECTION ===== */
.services-hero {
  background:
    linear-gradient(rgba(11, 46, 91, 0.8), rgba(11, 46, 91, 0.8)),
    url("img/services-hero.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 180px 0 120px;
  color: #fff;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
}

.services-hero .hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-hero .hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.services-hero .hero-desc {
  font-size: 18px;
  max-width: 650px;
  opacity: 0.9;
}

/* ===== SERVICES ABOUT ===== */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.section-label span {
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

.section-title {
  color: var(--primary-blue);
  font-weight: 700;
}

.about-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-item {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 5px;
}

.stat-item p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
}

.stat-item:nth-child(3) {
  grid-column: span 2;
}

/* ===== SERVICES GRID ===== */
.section-top-label {
  color: var(--primary-green);
  font-weight: 700;
  letter-spacing: 2px;
}

.section-main-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 40px;
}

.service-card-v2 {
  background: #fff;
  padding: 40px 30px;
  border-radius: 25px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue), #1a3a6b);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.service-card-v2:hover {
  transform: translateY(-10px);
  color: #fff;
  box-shadow: 0 20px 40px rgba(11, 46, 91, 0.15);
  border-color: transparent;
}

.service-card-v2:hover::before {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(47, 168, 79, 0.1);
  color: var(--primary-green);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card-v2:hover .card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: rotateY(360deg);
}

.service-card-v2 h5 {
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card-v2 p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: var(--text-muted);
  transition: var(--transition);
}

.service-card-v2:hover p {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== CTA SECTION ===== */
.cta-inner {
  background: var(--primary-blue);
  border-radius: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-inner h2 {
  font-weight: 700;
  font-size: 36px;
}

.cta-inner p {
  max-width: 600px;
  opacity: 0.8;
  font-size: 17px;
}

.cta-primary-btn {
  background: var(--primary-green);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.cta-primary-btn:hover {
  background: #258c41;
  transform: scale(1.05);
  color: #fff;
}

.cta-secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ===== HVAC SOLUTIONS PAGE SPECIFIC ===== */

.hvac-hero {
  background:
    linear-gradient(rgba(11, 46, 91, 0.75), rgba(11, 46, 91, 0.75)),
    url("img/hvac-hero.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 180px 0 120px;
  color: #fff;
  border-radius: 0 0 50px 50px;
}

.hvac-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.hvac-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-size: 16px;
}

.hvac-list li i {
  color: var(--primary-green);
  font-size: 18px;
}

.feature-card-v2 {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-icon-v2 {
  width: 50px;
  height: 50px;
  background: rgba(47, 168, 79, 0.1);
  color: var(--primary-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .services-hero .hero-title,
  .hvac-hero .hero-title {
    font-size: 42px;
  }

  .services-hero,
  .hvac-hero {
    padding: 150px 0 80px;
    border-radius: 0 0 30px 30px;
  }
  /* ... */

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item:nth-child(3) {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .services-hero .hero-title {
    font-size: 32px;
  }

  .services-hero .hero-desc {
    font-size: 16px;
  }

  .section-main-title {
    font-size: 30px;
  }

  .cta-inner h2 {
    font-size: 28px;
  }
}
