.services-hero {
  background-image: url("../assets/images/services-hero.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(1, 67, 121, 0.85) 0%,
    rgba(0, 119, 182, 0.8) 100%
  );
  z-index: 1;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
}

.services-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}


.service p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
}



.cleaning-section {
  max-width: 1200px;
  margin: 40px auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.section-header {
  background: linear-gradient(135deg, #01426c 0%, #0277bd 100%);
  color: white;
  padding: 40px;
  text-align: center;
}

.section-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-content {
  padding: 40px;
}

.intro-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.8;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #01426c;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: #01426c;
  margin-bottom: 15px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.service-card h3 i {
  margin-right: 12px;
  font-size: 1.6rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

.learn-more {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 30px;
  background: #01426c;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(1, 66, 108, 0.3);
}

.learn-more:hover {
  background: #012b47;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(1, 66, 108, 0.4);
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
  background: #e8f4fc;
  padding: 25px;
  border-radius: 8px;
}

.benefit {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 250px;
}

.benefit i {
  background: #01426c;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .section-header h1 {
    font-size: 2.2rem;
  }

  .section-content {
    padding: 25px;
  }

  .services-container {
    grid-template-columns: 1fr;
  }
}

.guarantee {
  background: #01426c;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 40px;
  border-radius: 8px;
}


/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.gallery-header h2 {
    font-size: 2.5rem;
    color: #01426c;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(1, 66, 108, 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.service-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-header p {
        font-size: 1rem;
    }
    
    .gallery-content h3 {
        font-size: 1.5rem;
    }
}