/* ======== Services Page Styles ======== */

/* ====== Enhanced Hero Section ====== */
.services-hero {
  position: relative;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #007f80 100%);
  min-height: 500px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 87px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-branding {
  margin-bottom: 2rem;
}

.hero-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.brand-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007f80, #fff);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {

  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #007f80;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  min-width: 2.5rem;
  text-align: center;
  display: inline-block;
}

.stat-plus,
.stat-percent,
.stat-slash {
  font-size: 2rem;
  font-weight: 700;
  color: #007f80;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ====== Services Grid Section ====== */
.services-grid-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-hub-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  border: 1px solid #f0f0f0;
  width: 100%;
  display: flex;
  flex-direction: row;
  min-height: 300px;
}

.services-hub-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  position: relative;
  width: 40%;
  min-height: 300px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-hub-card .service-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.services-hub-card:hover .service-image img {
  transform: scale(1.05) !important;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 127, 128, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services-hub-card:hover .service-overlay {
  opacity: 1;
}

.service-overlay i {
  color: white;
  font-size: 2rem;
  transform: translateX(-10px);
  transition: transform 0.3s ease;
}

.services-hub-card:hover .service-overlay i {
  transform: translateX(0);
}

.service-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon {
  background: linear-gradient(135deg, #007f80, #005f60);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 127, 128, 0.3);
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
}

.service-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.feature-tag {
  background: #f0f8f8;
  color: #007f80;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ====== Included Services Section ====== */
.included-services-section {
  background: white;
  padding: 4rem 0;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.checklist-item:hover {
  transform: translateX(5px);
  background: #f0f8f8;
}

.check-icon {
  background: linear-gradient(135deg, #007f80, #005f60);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 127, 128, 0.3);
}

.check-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}

.check-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* ====== Industries Section ====== */
.industries-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.industry-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.industry-icon {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.industry-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
}

.industry-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ====== CTA Section ====== */
.services-cta {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #007f80 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: white;
  color: #007f80;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ====== Responsive Design ====== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  
  .checklist-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .services-hero {
    min-height: 400px;
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .stat-item {
    flex-direction: row;
    gap: 0.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    padding: 0 1rem;
  }
  
  .services-hub-card {
    flex-direction: column;
    min-height: auto;
  }
  
  .service-image {
    width: 100%;
    height: 250px;
    min-height: 250px;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-logo {
    height: 60px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .service-content {
    padding: 1rem;
  }
  
  .checklist-item {
    padding: 1rem;
  }
  
  .industry-card {
    padding: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
}