/* Main Content Padding */
.main-content {
  padding-top: 120px;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(rgba(11, 76, 94, 0.8), rgba(11, 76, 94, 0.6)), url('images/hero1-professional-cleaning-service_orig.jpg') center/cover;
  color: white;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  opacity: 0.9;
}

.trust-badge svg {
  width: 40px;
  height: 40px;
  fill: var(--accent);
}

/* Stats Section */
.stats-section {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Services Grid */
.services-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.services-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.services-intro h2 {
  margin-bottom: 1rem;
}

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

.service-card-item .service-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-card-item .service-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.service-price {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--bg-secondary);
  padding: 5rem 0;
  overflow: hidden;
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-carousel {
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 400px;
  flex-shrink: 0;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.rating-stars svg {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
}

/* About Section */
.about-section {
  padding: 5rem 0;
}

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

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.about-text h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.about-features li svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* Contact Section */
.contact-section {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

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

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  flex-shrink: 0;
}

.contact-item div h5 {
  margin: 0 0 0.25rem 0;
  color: var(--primary);
}

.contact-item div p {
  margin: 0;
  color: var(--text-secondary);
}

.form-loading {
  display: none;
  text-align: center;
  color: var(--accent);
  margin-top: 1rem;
}

.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  border: 1px solid #c3e6cb;
}

.form-error {
  display: none;
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  border: 1px solid #f5c6cb;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.team-member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--accent);
}

.team-member-card h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member-bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Logo Grid */
.client-logos-section {
  background: white;
  padding: 4rem 0;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.client-logo img {
  max-height: 60px;
  width: auto;
}

/* Price Calculator */
.price-calculator {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin: 3rem 0;
}

.calculator-result {
  background: var(--bg-primary);
  padding: 1.5rem;
  border-radius: 15px;
  margin-top: 2rem;
  text-align: center;
}

.estimated-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(11, 76, 94, 0.9), rgba(11, 76, 94, 0.8)), url('images/section3-spotless-home-interior_orig.jpg') center/cover;
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Floating Elements */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(244, 162, 97, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content .lead {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-badges {
    gap: 1.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-slide {
    min-width: 300px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
}