/* Homepage Hero Section */
.hero-section {
  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;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-xl);
  text-align: center;
}

.hero-stat-item {
  color: white;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: var(--spacing-xs);
}

.hero-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Services Grid Section */
.services-overview-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.service-overview-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.service-overview-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

/* About Section */
.about-preview-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-secondary);
  position: relative;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-text-content h2 {
  margin-bottom: var(--spacing-md);
}

.about-text-content p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
}

.about-image-wrapper {
  position: relative;
}

.about-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.about-features-list {
  list-style: none;
  margin: var(--spacing-md) 0;
}

.about-features-list li {
  padding: var(--spacing-xs) 0;
  display: flex;
  align-items: center;
  color: var(--text-secondary);
}

.about-features-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  margin-right: var(--spacing-sm);
  font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-card);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: var(--spacing-sm);
}

.testimonial-star {
  color: #FFD700;
  font-size: 1.2rem;
}

/* Process Section */
.process-section {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.process-section h2 {
  color: white;
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.process-step {
  text-align: center;
  padding: var(--spacing-lg);
  position: relative;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto var(--spacing-md) auto;
}

.process-step h3 {
  color: white;
  margin-bottom: var(--spacing-sm);
}

.process-step p {
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  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;
  padding: var(--spacing-xxl) 0;
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-primary);
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.contact-info h3 {
  margin-bottom: var(--spacing-md);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background: var(--bg-card);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary);
}

.contact-info-icon {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

/* Gallery Section */
.gallery-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-card);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay-text {
  color: white;
  font-weight: 600;
  text-align: center;
}

/* Price Calculator */
.price-calculator {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  margin: var(--spacing-xl) 0;
}

.calculator-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.price-result {
  text-align: center;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: var(--border-radius);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.price-description {
  opacity: 0.9;
}

/* Team Section */
.team-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.team-member-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

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

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

.team-member-info {
  padding: var(--spacing-lg);
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
}

.team-member-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.team-member-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Service Details Page */
.service-hero {
  background: var(--bg-secondary);
  padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl) 0;
  text-align: center;
}

.service-details-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.service-description {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.service-pricing-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  border: 2px solid var(--primary);
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--border-color);
}

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

.pricing-service {
  font-weight: 500;
}

.pricing-price {
  font-weight: 700;
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    position: static;
    transform: none;
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-content-wrapper,
  .contact-content-wrapper,
  .service-details-content {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .testimonials-grid,
  .process-steps-grid,
  .team-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .calculator-form {
    grid-template-columns: 1fr;
  }

  .price-amount {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .gdpr-popup {
    left: 10px;
    right: 10px;
    max-width: none;
  }
}