/* ============================================
   HOMEPAGE STYLES
   ============================================ */

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(41,180,245,0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,45,107,0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cerulean);
}

.eyebrow-line {
  color: var(--cerulean);
  font-weight: 400;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.hero-title-outline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  font-weight: 900;
  color: var(--text-primary);
}

.hero-title-accent {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.4vw, 4.3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--cerulean);
  text-shadow: 0 0 30px var(--glow-cerulean), 0 0 60px var(--glow-cerulean-s);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  padding-left: 14px;
  border-left: 2px solid var(--cerulean);
  margin-top: 8px;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 400px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-orb {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Marquee Strip */
.marquee-strip {
  background: var(--cerulean);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-content span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg-base);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bg-base);
  flex-shrink: 0;
}

/* Features Section */
.features-section {
  background: var(--bg-base);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cerulean);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--cerulean);
}

.section-description {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.5;
}

/* Feature numbers match icon colors */
.feature-card[data-feature="01"] .feature-number {
  color: var(--gold);
}

.feature-card[data-feature="02"] .feature-number {
  color: var(--teal-light);
}

.feature-card[data-feature="03"] .feature-number {
  color: var(--success);
}

.feature-card[data-feature="04"] .feature-number {
  color: var(--cerulean);
}

.feature-card[data-feature="05"] .feature-number {
  color: var(--teal);
}

.feature-card[data-feature="06"] .feature-number {
  color: var(--gold-light);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* Feature 01 - Fully Insured & Bonded: Gold */
.feature-card[data-feature="01"] .feature-icon {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(223, 192, 111, 0.12));
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
}

.feature-card[data-feature="01"]:hover .feature-icon {
  box-shadow: 0 0 24px var(--glow-gold), 0 0 12px rgba(201, 168, 76, 0.4);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.22), rgba(223, 192, 111, 0.18));
}

/* Feature 02 - Always Punctual: Teal Light */
.feature-card[data-feature="02"] .feature-icon {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(13, 148, 136, 0.12));
  border: 1.5px solid rgba(20, 184, 166, 0.3);
  color: var(--teal-light);
}

.feature-card[data-feature="02"]:hover .feature-icon {
  box-shadow: 0 0 24px rgba(20, 184, 166, 0.4), 0 0 12px rgba(20, 184, 166, 0.3);
  border-color: var(--teal-light);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.22), rgba(13, 148, 136, 0.18));
}

/* Feature 03 - Cleaned with Care: Success Green */
.feature-card[data-feature="03"] .feature-icon {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(34, 197, 94, 0.12));
  border: 1.5px solid rgba(52, 211, 153, 0.3);
  color: var(--success);
}

.feature-card[data-feature="03"]:hover .feature-icon {
  box-shadow: 0 0 24px rgba(52, 211, 153, 0.4), 0 0 12px rgba(52, 211, 153, 0.3);
  border-color: var(--success);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.22), rgba(34, 197, 94, 0.18));
}

/* Feature 04 - Residential Experts: Cerulean */
.feature-card[data-feature="04"] .feature-icon {
  background: linear-gradient(135deg, rgba(41, 180, 245, 0.15), rgba(77, 206, 255, 0.12));
  border: 1.5px solid rgba(41, 180, 245, 0.3);
  color: var(--cerulean);
}

.feature-card[data-feature="04"]:hover .feature-icon {
  box-shadow: 0 0 24px var(--glow-cerulean), 0 0 12px rgba(41, 180, 245, 0.3);
  border-color: var(--cerulean);
  background: linear-gradient(135deg, rgba(41, 180, 245, 0.22), rgba(77, 206, 255, 0.18));
}

/* Feature 05 - Eco-Friendly Products: Teal */
.feature-card[data-feature="05"] .feature-icon {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(20, 184, 166, 0.12));
  border: 1.5px solid rgba(13, 148, 136, 0.3);
  color: var(--teal);
}

.feature-card[data-feature="05"]:hover .feature-icon {
  box-shadow: 0 0 24px rgba(13, 148, 136, 0.4), 0 0 12px rgba(13, 148, 136, 0.3);
  border-color: var(--teal);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.22), rgba(20, 184, 166, 0.18));
}

/* Feature 06 - 100% Guaranteed: Gold Light */
.feature-card[data-feature="06"] .feature-icon {
  background: linear-gradient(135deg, rgba(223, 192, 111, 0.15), rgba(240, 223, 160, 0.12));
  border: 1.5px solid rgba(223, 192, 111, 0.3);
  color: var(--gold-light);
}

.feature-card[data-feature="06"]:hover .feature-icon {
  box-shadow: 0 0 24px rgba(223, 192, 111, 0.4), 0 0 12px rgba(223, 192, 111, 0.3);
  border-color: var(--gold-light);
  background: linear-gradient(135deg, rgba(223, 192, 111, 0.22), rgba(240, 223, 160, 0.18));
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.feature-description {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Quote Divider */
.quote-divider {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.quote-line {
  height: 1px;
  background: var(--border);
}

.quote-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
  text-align: center;
}

.quote-accent {
  color: var(--cerulean);
  text-shadow: 0 0 20px var(--glow-cerulean-s);
}

/* Services List */
.services-list-section {
  background: var(--bg-base);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.services-container {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
  position: relative;
}

.service-row:last-child {
  border-bottom: none;
}

.service-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(41,180,245,0.1);
  transition: width var(--duration) var(--ease);
}

.service-row:hover {
  background: var(--bg-card-hover);
}

.service-row:hover::before {
  width: 100%;
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cerulean);
  opacity: 0.6;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.service-description {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
}

.service-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cerulean);
  transition: all var(--duration) var(--ease);
}

.service-row:hover .service-arrow {
  background: var(--cerulean);
  color: var(--bg-base);
  border-color: var(--cerulean);
  box-shadow: 0 0 12px var(--glow-cerulean-s);
}

/* Testimonials */
.testimonials-section {
  background: var(--bg-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
  border-color: rgba(41,180,245,0.4);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 20px var(--glow-cerulean-s);
  transform: translateY(-4px);
}

.testimonial-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cerulean);
  opacity: 0.5;
  line-height: 1;
  margin-top: -10px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cerulean), var(--crown-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
}

.cta-title em {
  font-style: italic;
  color: var(--cerulean);
}

.cta-description {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.btn-large {
  padding: 16px 36px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-orb {
    order: -1;
  }
  
  .hero-description {
    max-width: 100%;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }
  
  .hero-title-outline,
  .hero-title-accent {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .quote-line {
    display: none;
  }
  
  .quote-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .service-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  
  .service-arrow {
    align-self: flex-start;
  }
}
