/* CLEANING GREEN & EARTHY THEME */

/* Updated Color Palette */
:root {
  --primary: #10B981 !important;      /* Emerald Green */
  --secondary: #059669 !important;    /* Deep Green */
  --accent: #34D399 !important;       /* Light Green */
  --earth: #92400E !important;        /* Brown Earth */
  --sage: #6B7280 !important;         /* Sage Gray */
  --light: #F0FDF4 !important;        /* Mint Light */
}

/* Hero Overlay - Green Gradient - Darker for Better Text Contrast */
.video-overlay {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.75), rgba(5, 150, 105, 0.70)) !important;
}

/* All Hero Sections - Consistent Styling */
.hero-cleaning,
.contact-hero {
  position: relative !important;
}

/* Hero Background Images - Consistent */
.hero-video-bg,
.hero-bg-image {
  filter: brightness(0.85) !important;
}

/* Hero Image Slider */
.hero-image-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-image-slider .hero-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-image-slider .hero-bg-image.active {
  opacity: 1;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 1.5rem;
  background: #FFFFFF;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.85));
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: #FFFFFF;
  opacity: 0.95;
  margin: 0;
}

/* FAQ Accordion */
.faq-section {
  padding: 5rem 1.5rem;
  background: #F9FAFB;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-item {
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.faq-item:hover {
  border-color: #10B981;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.faq-item.active {
  border-color: #10B981;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #F9FAFB;
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.faq-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.faq-toggle {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: #10B981;
  font-weight: bold;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: #6B7280;
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.75rem 1.75rem 1.75rem;
}

.faq-answer p {
  margin: 0;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-question {
    font-size: 1.05rem;
    padding: 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}

/* Hero Text - High Visibility */
.hero-title {
  color: #FFFFFF !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.8) !important;
  font-weight: 900 !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Title with accent - Enhanced */
.hero-title .title-accent,
.title-large {
  filter: brightness(1.2) contrast(1.1) !important;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3), 0 2px 10px rgba(0, 0, 0, 0.5) !important;
  font-weight: 900 !important;
}

.hero-subtitle {
  color: #FFFFFF !important;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4), 0 1px 5px rgba(0, 0, 0, 0.3) !important;
  font-weight: 600 !important;
  opacity: 0.98 !important;
}

.hero-content p,
.hero-cleaning p {
  color: #FFFFFF !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;
  opacity: 0.95 !important;
}

.hero-badge-animated,
.hero-badge {
  background: rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Navigation Active State - Green */
.nav-link:hover,
.nav-link.active {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5) !important;
  color: var(--primary) !important;
}

/* Service Cards Hover - Green Glow */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.2) !important;
  border-color: var(--primary) !important;
}

/* Process Section Background - Mint/Green */
.process-section {
  background: linear-gradient(135deg, #F0FDF4, #ECFDF5) !important;
}

/* Step Number - Green Gradient */
.step-number {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
}

/* Step Card Hover - Green Shadow */
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.15) !important;
}

/* Why Section Background - Earthy Mint */
.why-section {
  background: linear-gradient(135deg, #F0FDF4, #ECFDF5) !important;
}

/* Primary Button - Green Gradient with Strong Text */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4) !important;
}

/* Hero CTA Buttons - Strong Visibility */
.cta-primary {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

.cta-secondary {
  color: #FFFFFF !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

/* CTA Section - Green Gradient */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
}

/* Section Badge - Green with Strong Text */
.section-badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Section Titles - Dark and Bold */
.section-title {
  color: #1A1A1A !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

/* Description Text - Readable */
.section-desc,
.why-desc {
  color: #444444 !important;
  font-weight: 500 !important;
}

/* Feature Titles - Strong and Clear */
.why-feature h4,
.service-card h3,
.step-card h3 {
  color: #1A1A1A !important;
  font-weight: 700 !important;
}

/* Feature Descriptions - Readable */
.why-feature p,
.service-card p,
.step-card p {
  color: #555555 !important;
  font-weight: 500 !important;
}

/* Feature Icons - Brighter */
.feature-icon,
.step-icon {
  font-size: 2.5rem !important;
  filter: brightness(1.1) !important;
}

/* Submit Button - Green (Forms) */
.submit-button {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3) !important;
}

.submit-button:hover {
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4) !important;
}

/* Form Focus States - Green */
.cleaning-form .form-group input:focus,
.cleaning-form .form-group select:focus,
.cleaning-form .form-group textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1) !important;
}

/* Success Message - Green */
.cleaning-form .success-check {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
}

/* Contact Cards - Green Glow on Hover */
.cleaning-contact-card:hover {
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2) !important;
}

/* Hero Badge - Earthy Touch */
.hero-badge-animated {
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

/* Hero Features Bar - Maximum Visibility */
.hero-features-bar {
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(12px) !important;
  padding: 1.5rem !important;
  border-radius: 16px !important;
}

.feature-badge {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
  font-size: 1rem !important;
}

.feature-badge .badge-icon {
  color: #34D399 !important;
  font-weight: 900 !important;
  filter: brightness(1.4) !important;
  text-shadow: 0 2px 10px rgba(52, 211, 153, 0.7) !important;
  font-size: 1.2rem !important;
}

.feature-badge span {
  color: #FFFFFF !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

/* Icon Backgrounds - Green Tint */
.icon-bg {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
}

/* Pricing Cards - Green Accents */
.pricing-card {
  border-top: 4px solid var(--primary) !important;
}

.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15) !important;
}

/* Testimonial Cards - Subtle Green */
.testimonial-card:hover {
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.1) !important;
}

/* Links - Green on Hover */
a:hover {
  color: var(--primary) !important;
}

/* Social Links - Green Hover */
.social-link:hover {
  background: var(--primary) !important;
}

/* Nav Link Underline - Green */
.nav-link::after {
  background: var(--primary) !important;
}

/* Floating Switch Button - Earth/Crafts Color */
.cleaning-nav .nav-link-special {
  background: linear-gradient(135deg, #EC4899, #BE185D) !important;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4) !important;
}

.cleaning-nav .nav-link-special:hover {
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.6) !important;
}

/* Earthy Accent Elements */
.earth-accent {
  color: var(--earth) !important;
}

.sage-text {
  color: var(--sage) !important;
}

/* Contact Hero - Gradient Background */
.contact-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
}

.contact-hero .section-title,
.contact-hero h1 {
  color: #FFFFFF !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  font-weight: 900 !important;
}

.contact-hero p {
  color: #FFFFFF !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  opacity: 0.95 !important;
}

.contact-hero .section-badge {
  background: rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* All Hero Sections with Badges */
.hero-cleaning .section-badge {
  background: rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Additional Green Touches */
.feature-badge {
  background: rgba(16, 185, 129, 0.1) !important;
  color: var(--secondary) !important;
  font-weight: 700 !important;
}

.product-badge {
  background: var(--primary) !important;
  color: white !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Stars - Bright Gold */
.stars {
  color: #FFC107 !important;
  filter: brightness(1.2) !important;
  text-shadow: 0 1px 4px rgba(255, 193, 7, 0.4) !important;
  font-size: 1.3rem !important;
}

/* Stats - Strong Visibility */
.stat-number {
  color: #FFFFFF !important;
  font-weight: 900 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  filter: brightness(1.1) !important;
}

.stat-label {
  color: #FFFFFF !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Pricing Text - Strong */
.price {
  color: var(--primary) !important;
  font-weight: 900 !important;
}

.pricing-card h3 {
  color: #1A1A1A !important;
  font-weight: 800 !important;
}

/* Hero CTA Buttons - Green Theme */
.hero-cleaning .cta-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4) !important;
}

.hero-cleaning .cta-primary:hover {
  box-shadow: 0 15px 50px rgba(16, 185, 129, 0.6) !important;
}

/* Stats Badge - Earthy */
.stats-badge {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.9)) !important;
}

/* Scroll Indicator - Green */
.scroll-down {
  color: rgba(16, 185, 129, 0.8) !important;
}

/* Mobile Menu Adjustments */
@media (max-width: 768px) {
  .nav-menu {
    background: linear-gradient(to bottom, #F0FDF4, #ffffff) !important;
  }
}

/* WHY SECTION - HEADER OUTSIDE CARD */
.why-section {
  padding: 3rem 1.5rem !important;
}

.why-section .section-header {
  text-align: center !important;
  margin-bottom: 2rem !important;
  max-width: none !important;
}

.why-desc {
  margin: 0 0 1.5rem !important;
}

.why-features {
  gap: 1rem !important;
  margin-bottom: 1.5rem !important;
}

/* CARDY BUT CONNECTED LAYOUT */
.why-card-container {
  max-width: 1400px !important;
  margin: 0 auto !important;
}

@media (min-width: 768px) {
  .why-card-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    background: white !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08) !important;
  }
  
  .why-content {
    margin-bottom: 0 !important;
    padding: 2.5rem !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02), rgba(146, 64, 14, 0.02)) !important;
  }
  
  .why-showcase {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 0 !important;
    position: relative !important;
  }
  
  .showcase-image {
    height: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  
  .showcase-image img {
    height: 100% !important;
    object-fit: cover !important;
  }
  
  .stats-badge {
    position: absolute !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }
}

@media (min-width: 1024px) {
  .why-content {
    padding: 3rem !important;
  }
}
