/* Services Page Styles */

/* Services Hero Section */
.services-hero{
  background:linear-gradient(135deg, var(--brand), var(--accent));
  color:#fff;
  padding:80px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.services-hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events:none;
}

.services-hero-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  position:relative;
  z-index:1;
}

.services-hero-content h1{
  font-size:clamp(2.5rem, 5vw, 4rem);
  font-weight:800;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.services-hero-content h1 i{
  font-size:0.8em;
}

.services-hero-content p{
  font-size:1.2rem;
  max-width:800px;
  margin:0 auto;
  opacity:0.9;
  line-height:1.6;
  color: #fff;
}

/* Services Overview Section */
.services-overview{
  background:#fff;
  padding:80px 0;
}

.overview-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.overview-header{
  text-align:center;
  margin-bottom:60px;
}

.overview-header h2{
  font-size:clamp(2rem, 4vw, 2.8rem);
  font-weight:800;
  color:var(--text);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.overview-header h2 i{
  color:var(--brand);
  font-size:0.8em;
}

.overview-header p{
  font-size:1.1rem;
  color:var(--muted);
  max-width:900px;
  margin:0 auto;
}

.overview-features{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:30px;
}

.feature-item{
  background:#fff;
  padding:30px;
  border-radius:15px;
  text-align:center;
  box-shadow:0 6px 20px rgba(0,0,0,0.06);
  border:1px solid rgba(46,125,115,0.1);
  transition:all 0.3s ease;
}

.feature-item:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon{
  width:60px;
  height:60px;
  background:linear-gradient(135deg, var(--brand), var(--accent));
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

.feature-icon i{
  font-size:1.5rem;
  color:#fff;
}

.feature-item h3{
  font-size:1.2rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:10px;
}

.feature-item p{
  color:var(--muted);
  font-size:0.95rem;
}

/* Detailed Services Section */
.detailed-services{
  background:linear-gradient(135deg, #f8fbfa 0%, #ffffff 100%);
  padding:80px 0;
}

.services-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.services-header{
  text-align:center;
  margin-bottom:60px;
}

.services-header h2{
  font-size:clamp(2rem, 4vw, 2.8rem);
  font-weight:800;
  color:var(--text);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.services-header h2 i{
  color:var(--brand);
  font-size:0.8em;
}

.services-header p{
  font-size:1.1rem;
  color:var(--muted);
  max-width:900px;
  margin:0 auto;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(350px, 1fr));
  gap:30px;
}

.service-detail-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  border:1px solid rgba(46,125,115,0.1);
  transition:all 0.3s ease;
}

.service-detail-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.service-image{
  height:200px;
  overflow:hidden;
}

.service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.3s ease;
}

.service-detail-card:hover .service-image img{
  transform:scale(1.05);
}

.service-content{
  padding:30px;
}

.service-content h3{
  font-size:1.4rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:15px;
}

.service-description{
  color:var(--muted);
  line-height:1.6;
  margin-bottom:20px;
}

.service-details{
  display:flex;
  gap:20px;
  margin-bottom:20px;
  flex-wrap:wrap;
}

.detail-item{
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(46,125,115,0.1);
  color:var(--brand);
  padding:8px 12px;
  border-radius:20px;
  font-size:0.9rem;
  font-weight:600;
}

.detail-item i{
  font-size:0.8em;
}

.service-benefits{
  margin-bottom:25px;
}

.service-benefits h4{
  font-size:1rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:10px;
}

.service-benefits ul{
  list-style:none;
  padding:0;
}

.service-benefits li{
  color:var(--muted);
  font-size:0.9rem;
  margin-bottom:5px;
  padding-left:15px;
  position:relative;
}

.service-benefits li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--brand);
  font-weight:700;
}

.service-btn{
  display:inline-block;
  background:linear-gradient(135deg, var(--brand), var(--accent));
  color:#fff;
  padding:12px 24px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  text-align:center;
  transition:all 0.3s ease;
  width:100%;
}

.service-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(46,125,115,0.3);
}

/* Service Process Section */
.service-process{
  background:#fff;
  padding:80px 0;
}

.process-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.process-header{
  text-align:center;
  margin-bottom:60px;
}

.process-header h2{
  font-size:clamp(2rem, 4vw, 2.8rem);
  font-weight:800;
  color:var(--text);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.process-header h2 i{
  color:var(--brand);
  font-size:0.8em;
}

.process-header p{
  font-size:1.1rem;
  color:var(--muted);
  max-width:600px;
  margin:0 auto;
}

.process-steps{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:30px;
}

.step-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:20px;
  padding:30px;
  background:rgba(46,125,115,0.05);
  border-radius:15px;
  border:1px solid rgba(46,125,115,0.1);
  transition:all 0.3s ease;
}

.step-item:hover{
  background:rgba(46,125,115,0.1);
  transform:translateY(-2px);
}

.step-number{
  width:60px;
  height:60px;
  background:linear-gradient(135deg, var(--brand), var(--accent));
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  font-weight:700;
  flex-shrink:0;
}

.step-content h3{
  font-size:1.3rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:15px;
}

.step-content p{
  color:var(--muted);
  line-height:1.6;
  font-size:0.95rem;
}

/* CTA Section */
.cta-section{
  background:linear-gradient(135deg, var(--brand), var(--accent));
  color:#fff;
  padding:80px 0;
  text-align:center;
}

.cta-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.cta-content h2{
  font-size:clamp(2rem, 4vw, 2.8rem);
  font-weight:800;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.cta-content h2 i{
  font-size:0.8em;
}

.cta-content p{
  font-size:1.2rem;
  margin-bottom:40px;
  opacity:0.9;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}

.cta-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.cta-buttons .btn{
  padding:16px 32px;
  font-size:1.1rem;
  font-weight:700;
  border-radius:50px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:all 0.3s ease;
  min-width:180px;
  justify-content:center;
}

.cta-buttons .btn.primary{
  background:#fff;
  color:var(--brand);
  box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.cta-buttons .btn.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,0.15);
  background:var(--brand-050);
}

.cta-buttons .btn.secondary{
  background:rgba(255,255,255,0.2);
  color:#fff;
  border:2px solid rgba(255,255,255,0.3);
  backdrop-filter:blur(10px);
}

.cta-buttons .btn.secondary:hover{
  background:rgba(255,255,255,0.3);
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,0.2);
}

/* Services Page Responsive */
@media (max-width: 768px){
  .services-hero{
    padding:60px 0;
  }
  
  .services-overview,
  .detailed-services,
  .service-process,
  .cta-section{
    padding:60px 0;
  }
  
  .overview-features,
  .services-grid,
  .process-steps{
    grid-template-columns:1fr;
    gap:25px;
  }
  
  .service-details{
    justify-content:center;
  }
  
  .step-item{
    flex-direction:column;
    text-align:center;
    gap:15px;
  }
  
  .cta-buttons{
    flex-direction:column;
    align-items:center;
  }
  
  .cta-buttons .btn{
    width:100%;
    max-width:300px;
  }
}

@media (max-width: 480px){
  .services-hero{
    padding:40px 0;
  }
  
  .services-overview,
  .detailed-services,
  .service-process,
  .cta-section{
    padding:40px 0;
  }
  
  .service-image{
    height:150px;
  }
  
  .service-content,
  .step-item{
    padding:25px 20px;
  }
}
