/* SERVICES PAGE SPECIFIC STYLES */

/* Services Hero Section */
.services-hero {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../services/services-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: 80px;
}

.services-hero .hero-content h1 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.services-hero .hero-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: #ffe600;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Services Introduction */
.services-intro {
  padding: 6rem 0;
  background: #fff;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Enhanced Services Grid */
.main-services {
  padding: 6rem 0;
  background: #f8f8f8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-card.enhanced {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card.enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

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

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

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-content h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.service-content > p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.service-features li {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffe600;
  font-weight: bold;
}

.service-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f8f8;
  border-radius: 8px;
  text-align: center;
}

.price-label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
}

.service-btn {
  width: 100%;
  padding: 1rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  margin-top: auto;
  flex-shrink: 0;
  display: block;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-btn:hover {
  background: #ffe600;
  color: #000;
  transform: translateY(-2px);
}

/* Service Process - FIXED GRID LAYOUT */
.service-process {
  padding: 6rem 0;
  background: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
  width: 100%;
  text-align: left;
}

.process-step:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
  background: #000;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

/* Why Choose Us */
.why-choose-us {
  padding: 6rem 0;
  background: #f8f8f8;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  background: #ffe600;
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.3rem;
}

.feature-text p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.why-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Call to Action */
.services-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ccc;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  display: inline-block;
}

.cta-btn.primary {
  background: #ffe600;
  color: #000;
}

.cta-btn.primary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-btn.secondary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
  }
  
  .why-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-hero {
    height: 40vh;
    margin-top: 70px;
  }
  
  .services-intro,
  .main-services,
  .service-process,
  .why-choose-us,
  .services-cta {
    padding: 4rem 0;
  }
  
  .intro-content h2,
  .cta-content h2,
  .why-text h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-image {
    height: 180px;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  .service-btn {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  
  /* MOBILE PROCESS STEPS */
  .process-steps {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
    max-width: 100%;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.5rem;
    max-width: 100%;
    width: 100%;
  }
  
  .step-content {
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-content {
    padding: 1rem;
  }
  
  .service-btn {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    min-height: 44px;
  }
  
  .intro-content h2,
  .cta-content h2,
  .why-text h2 {
    font-size: 1.8rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    padding: 1rem;
  }
  
  .service-pricing {
    padding: 0.75rem;
  }
  
  .price {
    font-size: 1rem;
  }
}
