.main-content {
  padding-top: 80px;
}

.hero-banner-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('images/hero1-professional-cleaning-service_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content-wrapper {
  max-width: 800px;
  z-index: 2;
  position: relative;
}

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

.hero-banner-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-circle {
  position: absolute;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(8, 145, 178, 0.1));
  border-radius: 50%;
  filter: blur(2px);
  animation: float 6s ease-in-out infinite;
}

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

.floating-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

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

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

.trust-logos-section {
  padding: 3rem 0;
  background: white;
  border-bottom: 1px solid var(--border-color);
}

.trust-logos-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  opacity: 0.7;
}

.trust-logo-item {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 1.25rem;
}

.features-highlight-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

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

.feature-highlight-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(8, 145, 178, 0.15);
}

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

.feature-icon-wrapper svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 2;
}

.services-overview-section {
  padding: 6rem 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-preview-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation-delay: 0.1s;
}

.service-preview-card:nth-child(2) { animation-delay: 0.2s; }
.service-preview-card:nth-child(3) { animation-delay: 0.3s; }
.service-preview-card:nth-child(4) { animation-delay: 0.4s; }

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 2rem;
}

.service-price-tag {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.pricing-calculator-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.calculator-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  margin-top: 3rem;
}

.calculator-input-group {
  margin-bottom: 2rem;
}

.calculator-input-group label {
  display: block;
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.calculator-slider {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
}

.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
}

.price-output {
  background: rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
}

.testimonials-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

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

.testimonial-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

.author-info h5 {
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.author-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.star-rating {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #ffc107;
}

.cta-banner-section {
  padding: 6rem 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('images/banner4-professional-cleaning-service_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.cta-banner-section h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-banner-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  margin-bottom: 3rem;
}

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

.team-member-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(8, 145, 178, 0.2);
}

.team-member-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member-info {
  padding: 2rem;
}

.member-name {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

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

.member-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-table-section {
  padding: 6rem 0;
  background: white;
}

.pricing-table {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
}

.pricing-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease;
}

.pricing-table-row:last-child {
  border-bottom: none;
}

.pricing-table-row:hover {
  background: var(--bg-primary);
}

.service-name {
  font-weight: 600;
  color: var(--text-primary);
}

.service-price {
  text-align: right;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info-card {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
}

.map-container {
  margin-top: 4rem;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .hero-banner-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-banner-section p {
    font-size: 1.25rem;
  }
  
  .trust-logos-wrapper {
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .features-grid,
  .services-grid,
  .testimonials-grid,
  .team-member-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-table-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }
  
  .service-price {
    text-align: center;
  }
  
  .calculator-wrapper {
    padding: 2rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .cta-banner-section h2 {
    font-size: 2rem;
  }
  
  .floating-circle {
    display: none;
  }
}