/* Services Page Specific Styles */

/* Hero Section */
.service-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  max-height: 600px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.404);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #000000;
  padding: 2rem 2.5rem;
  max-width: 700px;
  background: rgb(2, 2, 2);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(207, 9, 9, 0.4);
  backdrop-filter: blur(10px);
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
    color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  opacity: 0.95;
  margin: 0;
}

/* Services Overview Section */
.services-overview {
  padding: 80px 0;
  background: #f2f2f2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-overview h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #000;
}

.intro-text {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #000;
  font-weight: 600;
}

.service-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background: #fff;
}

.why-choose h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #000;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit {
  text-align: center;
  padding: 20px;
}

.benefit h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit h3 .tick {
  color: #00b300;
  display: inline-block;
  opacity: 0;
  transform: scale(0);
}

.benefit.animate h3 .tick {
  animation: tickPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.benefit:nth-child(1).animate h3 .tick { animation-delay: 0.1s; }
.benefit:nth-child(2).animate h3 .tick { animation-delay: 0.5s; }
.benefit:nth-child(3).animate h3 .tick { animation-delay: 0.9s; }
.benefit:nth-child(4).animate h3 .tick { animation-delay: 1.6s; }
.benefit:nth-child(5).animate h3 .tick { animation-delay: 2.0s; }
.benefit:nth-child(6).animate h3 .tick { animation-delay: 0.6s; }

@keyframes tickPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.benefit p {
  font-size: 1rem;
  color: #666;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-content {
    padding: 2rem 1.5rem;
    border-radius: 15px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .services-overview h2,
  .why-choose h2,
  .cta-section h2 {
    font-size: 2rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-overview,
  .why-choose,
  .cta-section {
    padding: 50px 0;
  }
}
