@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #2E8B57;
  --primary-dark: #1B5E3F;
  --accent: #22C55E;
  --accent-hover: #1B9D4B;
  --bg-primary: #F8FFF8;
  --bg-secondary: #F0F8F0;
  --bg-card: #FFFFFF;
  --text-primary: #333333;
  --text-secondary: #666666;
  --border-color: #E0E0E0;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow-light: 0 2px 10px rgba(46, 139, 87, 0.1);
  --shadow-medium: 0 8px 30px rgba(46, 139, 87, 0.15);
  --shadow-heavy: 0 20px 60px rgba(46, 139, 87, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
}

.kf-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.kf-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-light);
}

.mn-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bp-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
}

.bp-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
}

.qt-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.qt-nav-menu a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.qt-nav-menu a:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

.vz-phone-cta {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vz-phone-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.dx-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.dx-hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
}

.dx-hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.dx-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.dx-hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

main {
  padding-top: 90px;
}

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

.yz-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(46, 139, 87, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

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

.wt-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.wt-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #e8f5e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wt-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.lk-hero-buttons a {
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.lk-hero-buttons .primary {
  background: var(--primary);
  color: white;
}

.lk-hero-buttons .primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.lk-hero-buttons .secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.lk-hero-buttons .secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.gm-section {
  padding: 5rem 0;
  overflow: hidden;
}

.gm-section:nth-child(even) {
  background: var(--bg-secondary);
}

.nf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hv-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.hv-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hv-section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.pq-service-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.pq-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pq-service-card:hover::before {
  transform: scaleX(1);
}

.pq-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.pq-service-card svg {
  width: 48px;
  height: 48px;
  stroke: var(--primary);
  margin-bottom: 1.5rem;
}

.pq-service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.pq-service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.sx-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

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

.wu-feature-item {
  text-align: center;
  padding: 1.5rem;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.wu-feature-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.wu-feature-item:nth-child(2) {
  animation-delay: 0.2s;
}

.wu-feature-item:nth-child(3) {
  animation-delay: 0.4s;
}

.wu-feature-item:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wu-feature-item svg {
  width: 64px;
  height: 64px;
  stroke: var(--primary);
  margin-bottom: 1.5rem;
}

.wu-feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

.xz-about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.xz-about-text p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.ab-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

.ab-image-container:hover img {
  transform: scale(1.05);
}

.ek-testimonials-slider {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-light);
  text-align: center;
  position: relative;
}

.ek-testimonial {
  max-width: 600px;
  margin: 0 auto;
}

.ek-testimonial blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.jm-testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.jm-testimonial-author div h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}

.jm-testimonial-author div p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.yc-cta-section {
  background: linear-gradient(rgba(46, 139, 87, 0.9), rgba(27, 94, 63, 0.9)), url('../images/banner4-professional-cleaning-service_orig.jpg') center/cover;
  color: white;
  text-align: center;
  padding: 6rem 0;
  position: relative;
}

.yc-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.yc-cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.pc-cta-button {
  background: white;
  color: var(--primary);
  padding: 1.25rem 3rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pc-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

.kf-footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

.my-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.ng-footer-section h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent);
}

.ng-footer-section p,
.ng-footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s ease;
}

.ng-footer-section a:hover {
  color: var(--accent);
}

.bo-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.rw-contact-form {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  margin-top: 2rem;
}

.rw-form-group {
  margin-bottom: 1.5rem;
}

.rw-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.rw-form-group input,
.rw-form-group textarea,
.rw-form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.rw-form-group input:focus,
.rw-form-group textarea:focus,
.rw-form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.rw-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.ep-submit-btn {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.ep-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.mz-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-primary);
  color: white;
  padding: 1rem;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mz-cookie-banner.show {
  transform: translateY(0);
}

.kt-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.kt-cookie-content p {
  flex: 1;
  margin: 0;
}

.kt-cookie-content button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .qt-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem 2rem;
    box-shadow: var(--shadow-light);
  }

  .qt-nav-menu.active {
    display: flex;
  }

  .dx-hamburger {
    display: flex;
  }

  .vz-phone-cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .wt-hero-content h1 {
    font-size: 2.5rem;
  }

  .lk-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .lk-hero-buttons a {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .xz-about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .tv-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kt-cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .gm-section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .mn-nav-container {
    padding: 0 1rem;
  }

  .nf-container {
    padding: 0 1rem;
  }

  .tv-features-grid {
    grid-template-columns: 1fr;
  }

  .wt-hero-content {
    padding: 0 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}