:root {
  --primary-color: #1B3A4B;
  --secondary-color: #D2E4DC;
  --accent-color: #4CAF50;
  --text-color: #333333;
  --light-text: #ffffff;
  --background-light: #ffffff;
  --dark-bg: #121212;
  --gray-text: #9e9e9e;
}

/* ============================================
   HOMEPAGE HERO SECTION - Matching Other Pages
   ============================================ */
.homepage-hero {
  height: 70vh;
  background: linear-gradient(135deg, rgba(27, 58, 75, 0.9), rgba(76, 175, 80, 0.1)),
              url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: var(--nav-height-desktop);
  overflow: hidden;
}

.homepage-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(27, 58, 75, 0.85), rgba(76, 175, 80, 0.1));
}

.homepage-hero .hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Desktop: Show desktop headlines, hide mobile */
.homepage-hero .hero-headline-desktop {
  display: block;
}

.homepage-hero .hero-headline-mobile {
  display: none;
}

.homepage-hero .hero-subheadline-desktop {
  display: block;
}

.homepage-hero .hero-subheadline-mobile {
  display: none;
}

.homepage-hero .hero-premium-badge {
  display: none;
}

.homepage-hero .hero-trust-signal {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.homepage-hero .hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.homepage-hero .hero-text p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
}

.homepage-hero .highlight {
  color: var(--accent-color);
  position: relative;
}

.homepage-hero .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  border-radius: 2px;
}

.homepage-hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.homepage-hero .stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.homepage-hero .stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.homepage-hero .stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.homepage-hero .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.homepage-hero .floating-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.homepage-hero .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.homepage-hero .card-icon i {
  font-size: 1.5rem;
  color: white;
}

.homepage-hero .card-icon.google-logo {
  background: white;
  padding: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.homepage-hero .card-icon.google-logo svg {
  width: 28px;
  height: 28px;
  display: block;
}

.homepage-hero .rating-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin: 0.75rem 0 0.5rem;
}

.homepage-hero .rating-stars i {
  color: #FFD700;
  font-size: 1rem;
}

.homepage-hero .floating-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.homepage-hero .floating-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin: 0;
}

.homepage-hero .hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.homepage-hero .hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.homepage-hero .hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.homepage-hero .hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.2rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
}

.homepage-hero .hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.homepage-hero .hero-cta-secondary i,
.homepage-hero .hero-cta-secondary span {
  color: #ffffff !important;
}

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

/* Responsive Design for Homepage Hero */
@media (max-width: 1024px) {
  .homepage-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .homepage-hero .hero-text h1 {
    font-size: 2.8rem;
  }

  .homepage-hero .hero-text p {
    font-size: 1.1rem;
  }

  .homepage-hero .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .homepage-hero {
    height: 85vh;
    min-height: 600px;
    background-attachment: scroll;
    margin-top: var(--nav-height-mobile, 70px);
  }

  .homepage-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(27, 58, 75, 0.92) 0%, rgba(27, 58, 75, 0.88) 50%, rgba(76, 175, 80, 0.15) 100%);
  }

  .homepage-hero .hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .homepage-hero .hero-text {
    width: 100%;
    max-width: 100%;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Premium badge */
  .homepage-hero .hero-premium-badge {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }

  .homepage-hero .hero-premium-badge span {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(255, 255, 255, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, sans-serif;
  }

  /* Hide desktop headlines, show mobile */
  .homepage-hero .hero-headline-desktop {
    display: none;
  }

  .homepage-hero .hero-headline-mobile {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.8px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    color: white;
    text-align: center;
  }

  /* Hide desktop subheadline, show mobile */
  .homepage-hero .hero-subheadline-desktop {
    display: none;
  }

  .homepage-hero .hero-subheadline-mobile {
    display: block;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-style: italic;
  }

  /* Sophisticated trust signal */
  .homepage-hero .hero-trust-signal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-decoration: none;
  }

  .homepage-hero .trust-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .homepage-hero .rating-stars {
    display: flex;
    gap: 0.2rem;
  }

  .homepage-hero .rating-stars i {
    font-size: 1.1rem;
    color: #FFD700;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
  }

  .homepage-hero .rating-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .homepage-hero .google-logo-inline {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  .homepage-hero .google-logo-inline svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  }

  .homepage-hero .google-logo-inline span {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
  }

  .homepage-hero .highlight {
    display: inline-block;
  }

  .homepage-hero .highlight::after {
    height: 3px;
    bottom: -3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.9;
  }

  .homepage-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    width: 100%;
    max-width: 320px;
    margin-top: 0;
    order: 3;
  }

  .homepage-hero .hero-cta-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.4rem 2rem;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-color), #45a049);
    color: white;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .homepage-hero .hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .homepage-hero .hero-cta-primary:hover::before {
    left: 100%;
  }

  .homepage-hero .hero-cta-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(76, 175, 80, 0.5);
  }

  .homepage-hero .hero-cta-primary i {
    transition: transform 0.3s ease;
  }

  .homepage-hero .hero-cta-primary:active i {
    transform: translateX(4px);
  }

  .homepage-hero .hero-cta-secondary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', -apple-system, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .homepage-hero .hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  }

  .homepage-hero .hero-cta-secondary:active {
    transform: translateY(-1px);
  }


  .homepage-hero .hero-stats {
    display: none;
  }

  .homepage-hero .hero-response-note {
    display: block;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.25rem 0 0.5rem 0;
    letter-spacing: 0.2px;
  }
}

@media (max-width: 480px) {
  .homepage-hero {
    height: 80vh;
    min-height: 550px;
  }

  .homepage-hero .hero-content {
    padding: 1.25rem 1rem;
  }

  .homepage-hero .hero-premium-badge span {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    letter-spacing: 1px;
  }

  .homepage-hero .hero-headline-mobile {
    font-size: 1.9rem;
    line-height: 1.15;
    margin-bottom: 0.8rem;
    letter-spacing: -0.6px;
  }

  .homepage-hero .hero-subheadline-mobile {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
  }

  .homepage-hero .hero-trust-signal {
    padding: 0.9rem;
    gap: 0.8rem;
    margin-bottom: 1.75rem;
  }

  .homepage-hero .trust-rating {
    gap: 0.4rem;
  }

  .homepage-hero .rating-stars i {
    font-size: 1rem;
  }

  .homepage-hero .rating-text {
    font-size: 0.75rem;
  }

  .homepage-hero .google-logo-inline {
    padding: 0.5rem 0.7rem;
    gap: 0.3rem;
  }

  .homepage-hero .google-logo-inline svg {
    width: 14px;
    height: 14px;
  }

  .homepage-hero .google-logo-inline span {
    font-size: 0.7rem;
  }

  .homepage-hero .hero-actions {
    max-width: 100%;
    gap: 0.7rem;
  }

  .homepage-hero .hero-cta-primary {
    padding: 1.3rem 1.8rem;
    font-size: 1.1rem;
  }

  .homepage-hero .hero-cta-secondary {
    padding: 1.15rem 1.8rem;
    font-size: 1rem;
  }
}


/* Reset for hero header element */
header.index-hero {
  margin: 0;
  padding: 0;
  display: block;
}

/* NEW MODERN HERO SECTION FOR DESKTOP */
.index-hero {
  position: relative;
  margin: 0;
  padding: 0;
  padding-top: var(--nav-height-desktop); /* Space for fixed nav bar */
  overflow: hidden;
  width: 100%;
}

/* Desktop Hero - Professional & Clean Design - SCOPED TO HOMEPAGE ONLY */
@media (min-width: 1024px) {
  .index-hero .desktop-hero-new {
    min-height: calc(70vh - 70px);
    max-height: calc(90vh - 70px);
    height: calc(70vh - 70px);
    background: 
      linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.9) 100%),
      url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: scroll;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 0;
  }

  /* Professional background overlay with subtle pattern */
  .index-hero .hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      /* Subtle diagonal pattern */
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.01) 2px,
        rgba(255, 255, 255, 0.01) 4px
      ),
      /* Gradient overlay for depth */
      radial-gradient(circle at 30% 50%, rgba(76, 175, 80, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 70% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
    opacity: 1;
    z-index: 1;
  }

  /* Subtle animated shimmer effect */
  .index-hero .desktop-hero-new::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.03) 50%,
      transparent 70%
    );
    animation: shimmer 8s ease-in-out infinite;
    z-index: 1;
  }

  @keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  }

  .index-hero .hero-content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 100%;
    box-sizing: border-box;
  }

  .index-hero .hero-main-content {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    margin: 0 auto;
  }

  /* Hero Badge - Hidden for clean design */
  .index-hero .hero-badge {
    display: none;
  }

  .index-hero .badge-icon {
    color: #4CAF50;
    font-size: 1.2rem;
  }

  .index-hero .badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }

  /* Hero Headlines - SCOPED TO HOMEPAGE */
  .index-hero .hero-headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .index-hero .headline-accent {
    background: linear-gradient(135deg, #4CAF50, #81C784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .index-hero .hero-subheading {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  }

  /* Hero Stats */
  .index-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }

  .index-hero .stat-item {
    text-align: left;
    min-width: 100px;
  }

  .index-hero .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4CAF50;
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .index-hero .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }

  /* Hero Actions - SCOPED TO HOMEPAGE */
  .index-hero .hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
  }

  /* Hero CTA Buttons - SCOPED TO HOMEPAGE */
  .index-hero .hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
  }

  .index-hero .hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
  }

  .index-hero .hero-cta-primary:hover::before {
    left: 100%;
  }

  .index-hero .hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
  }

  .index-hero .cta-arrow {
    transition: transform 0.3s ease;
  }

  .index-hero .hero-cta-primary:hover .cta-arrow {
    transform: translateX(4px);
  }

  .index-hero .hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
  }

  .index-hero .hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    color: #ffffff !important;
  }
  
  .index-hero .hero-cta-secondary i {
    font-size: 1rem;
    color: #ffffff !important;
  }
  
  .index-hero .hero-cta-secondary span {
    color: #ffffff !important;
  }

  /* Hero Visual Card - SCOPED TO HOMEPAGE */
  .index-hero .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
  }

  .index-hero .hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 400px;
  }

  .index-hero .hero-card:hover {
    transform: translateY(-10px);
  }

  .index-hero .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .index-hero .service-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
  }

  .index-hero .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
  }

  .index-hero .card-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .index-hero .feature {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.3;
  }

  /* Hide mobile/tablet hero on desktop */
  .index-hero .mobile-tablet-hero {
    display: none;
  }
}

/* Responsive scaling for all desktop sizes (1024px and up) - SCOPED TO HOMEPAGE */
@media (min-width: 1024px) {
  .index-hero .hero-headline {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
  }

  .index-hero .hero-subheading {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    max-width: min(500px, 90%);
  }

  .index-hero .hero-stats {
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
  }

  .index-hero .stat-number {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  }

  .index-hero .hero-actions {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .index-hero .hero-cta-primary,
  .index-hero .hero-cta-secondary {
    padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  }

  .index-hero .hero-card {
    max-width: min(400px, 100%);
    padding: clamp(1.5rem, 2.5vw, 2rem);
  }
}

/* Specific adjustments for ultra-wide screens - SCOPED TO HOMEPAGE */
@media (min-width: 1600px) {
  .index-hero .hero-content-container {
    max-width: 1400px;
    gap: 5rem;
  }
}

/* Adjustments for narrower desktop screens - SCOPED TO HOMEPAGE */
@media (min-width: 1024px) and (max-width: 1200px) {
  .index-hero .desktop-hero-new {
    min-height: 70vh;
    max-height: 90vh;
    height: calc(70vh - 70px);
    padding: 0;
  }
  
  .index-hero .hero-content-container {
    max-width: 1000px;
    padding: 0 clamp(1.5rem, 3vw, 2.5rem);
    height: 100%;
  }
  
  .index-hero .hero-main-content {
    max-width: 700px;
    padding: 0;
  }
}

/* Mobile/Tablet Hero - MATCHES DESKTOP DESIGN - SCOPED TO HOMEPAGE */
@media (max-width: 1023px) {
  .index-hero .desktop-hero-new {
    display: none;
  }

  .mobile-tablet-hero {
    min-height: 60vh;
    max-height: 85vh;
    padding: clamp(2rem, 6vh, 4rem) clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    background: 
      linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.9) 100%),
      url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }

  /* Mobile background overlay */
  .mobile-tablet-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.01) 2px,
        rgba(255, 255, 255, 0.01) 4px
      ),
      radial-gradient(circle at 30% 50%, rgba(76, 175, 80, 0.08) 0%, transparent 50%);
    z-index: 1;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1023px) {
  .mobile-tablet-hero {
    min-height: 65vh;
    max-height: 85vh;
    padding: clamp(2.5rem, 7vh, 4.5rem) clamp(1.5rem, 5vw, 2.5rem);
  }
  
  .index-hero-content {
    padding: 0 clamp(1.5rem, 5vw, 2.5rem);
  }
  
  .hero-content-box {
    width: 70%;
    max-width: 750px;
    padding: clamp(2rem, 5vw, 3rem);
  }
}

@media (max-width: 768px) {
  .index-hero {
    padding-top: var(--nav-total-mobile); /* Mobile nav offset + height */
    background-attachment: scroll;
  }
  
  .mobile-tablet-hero {
    min-height: 55vh;
    max-height: 80vh;
    padding: clamp(1.5rem, 5vh, 3rem) clamp(1rem, 3vw, 1.5rem);
  }
  
  .index-hero-content {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
    min-height: 100%;
    box-sizing: border-box;
  }
  
  .hero-content-box {
    padding: clamp(1.25rem, 3vh, 2rem);
    width: 100%;
    max-width: 100%;
  }
}

.index-hero::before {
  display: none;
}

.index-hero::after {
  display: none;
}

.index-hero-content {
  width: 100%;
  max-width: 1200px;
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
  text-align: left;
  min-height: 100%;
  box-sizing: border-box;
}

.hero-content-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  width: 65%;
  max-width: 800px;
  box-sizing: border-box;
}

.index-hero-title {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  opacity: 1;
  color: var(--primary-color);
  letter-spacing: 1px;
  max-width: 900px;

}

.index-hero-description {
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 1;
  color: var(--text-color);
  font-weight: 400;
}
.index-hero-description.mobile {
  display: none;
}
.index-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.cta-button {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  width: auto;
  min-width: 160px;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #ffed4a;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--primary-color);

}

.cta-button.secondary:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

.index-section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.index-location-grid,
.index-service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1.5rem 0;
}

.index-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 1.5rem 0;
  justify-items: center;
}

@media (max-width: 992px) and (min-width: 769px) {
  .index-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.index-location-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 1.25rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.index-industry-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 1.25rem;
  border-radius: 8px;
  text-align: left;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  max-width: 280px;
  width: 100%;
  min-height: 200px;
  margin: 0 auto;
}

.index-industry-card .industry-title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.index-industry-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  display: inline-block;
}

.index-industry-card p:not(.industry-title) {
  display: none;
}

.index-location-card:hover,
.index-industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.index-service-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


.index-locations {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.location-subtitle {
  font-size: 1.2rem;
  color: var(--gray-text);
  margin-top: 1rem;
  max-width: 700px;
  margin: 1rem auto 0;
}

.index-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0 4rem;
}

@media (max-width: 768px) {
  /* Hide sections on mobile for better UX - saves ~1100px of scroll */
  .index-locations,
  .index-industries,
  .diagonal-section,
  .stats,
  .map-section {
    display: none !important;
  }
}

.index-location-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.index-location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.1);
  border-color: var(--accent-color);
}

.location-icon {
  background: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.location-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.index-location-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.location-description {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.location-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-features li {
  padding: 0.5rem 0;
  color: var(--gray-text);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.location-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.location-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.location-stats .stat-item {
  padding: 1.5rem;
  background: rgba(255,255,255,0.8);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.05);
}

.location-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.location-stats .stat-label {
  color: var(--gray-text);
  font-size: 1rem;
}

.index-services {
  padding: 8rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: visible;
  color: var(--primary-color);
  z-index: 5;
}

@media (max-width: 768px) {
  .index-services {
    background-attachment: scroll;
    background-position: center center;
  }

  .index-services h2 {
    content: "Office and Facility Cleaning Services";
  }
}

.index-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

.index-services h2 {
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

.mobile-heading {
  display: none;
}

/* Floating Particles Container */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 15s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(76, 175, 80, 0.4);
}

/* Random positioning and animation delays for each particle */
.particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 20%;
  top: 10%;
  animation-delay: 1s;
  animation-duration: 14s;
}

.particle:nth-child(3) {
  left: 30%;
  top: 30%;
  animation-delay: 2s;
  animation-duration: 16s;
}

.particle:nth-child(4) {
  left: 40%;
  top: 15%;
  animation-delay: 0.5s;
  animation-duration: 13s;
}

.particle:nth-child(5) {
  left: 50%;
  top: 25%;
  animation-delay: 1.5s;
  animation-duration: 15s;
}

.particle:nth-child(6) {
  left: 60%;
  top: 35%;
  animation-delay: 2.5s;
  animation-duration: 17s;
}

.particle:nth-child(7) {
  left: 70%;
  top: 20%;
  animation-delay: 0.8s;
  animation-duration: 14s;
}

.particle:nth-child(8) {
  left: 80%;
  top: 30%;
  animation-delay: 1.8s;
  animation-duration: 16s;
}

.particle:nth-child(9) {
  left: 15%;
  top: 50%;
  animation-delay: 2.2s;
  animation-duration: 13s;
}

.particle:nth-child(10) {
  left: 25%;
  top: 45%;
  animation-delay: 0.3s;
  animation-duration: 15s;
}

.particle:nth-child(11) {
  left: 35%;
  top: 55%;
  animation-delay: 1.2s;
  animation-duration: 17s;
}

.particle:nth-child(12) {
  left: 45%;
  top: 50%;
  animation-delay: 2.8s;
  animation-duration: 14s;
}

.particle:nth-child(13) {
  left: 55%;
  top: 60%;
  animation-delay: 0.7s;
  animation-duration: 16s;
}

.particle:nth-child(14) {
  left: 65%;
  top: 55%;
  animation-delay: 1.7s;
  animation-duration: 13s;
}

.particle:nth-child(15) {
  left: 75%;
  top: 65%;
  animation-delay: 2.3s;
  animation-duration: 15s;
}

/* Particle float animation */
@keyframes floatParticle {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) translateX(15px);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px) translateX(-10px);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-40px) translateX(20px);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .particle {
    width: 3px;
    height: 3px;
    opacity: 0.2;
  }
}

@media (max-width: 768px) {
  .desktop-heading {
    display: none;
  }

  .mobile-heading {
    display: block;
    line-height: 1.2;

  }
}

.index-services > .index-section-content {
  position: relative;
  z-index: 2;
}

.index-services > .index-section-content > p {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    position: relative;
    z-index: 2;
  }

  @media (max-width: 768px) {
    .index-services > .index-section-content > p {
      text-align: left;
      margin-bottom: 2rem;
      padding: 0 1rem;
      font-size: 1rem;
      line-height: 1.5;
    }
  }

.index-service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 1rem;
}

@media (max-width: 1200px) {
  .index-service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.index-service-card {
  background: #ffffff;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 4px solid var(--accent-color);
  display: flex;
  flex-direction: column;
  align-self: start;
  z-index: 1;
}

.index-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #45a049);
  z-index: 2;
}

.index-service-card:hover {
  z-index: 20;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(76, 175, 80, 0.2), 0 8px 20px rgba(0,0,0,0.1);
  border-color: rgba(76, 175, 80, 0.3);
}

.index-service-card:hover::before {
  height: 5px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}


.service-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.service-card-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.index-service-card:hover .service-card-image-wrapper::after {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: blur(0px) brightness(1) contrast(1);
}

.index-service-card:hover .service-card-image {
  transform: scale(1.1);
  filter: blur(3px) brightness(0.7) contrast(1.05);
}


.service-card-content {
  padding: 1.75rem 1.5rem;
  position: relative;
  z-index: 1;
  background: #ffffff;
  text-align: left;
  min-height: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
  border-radius: 0 0 12px 12px;
  transition: all 0.4s ease;
}

.service-card-title {
  color: var(--primary-color);
  margin: 0 0 0.75rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  flex-shrink: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-card-brief {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin: 0 0 1.25rem 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  flex-grow: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* HOVER CONTENT - Replaces title and brief on hover */
.service-card-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 1.75rem 1.5rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 0 12px 12px;
}

.index-service-card:hover .service-card-hover-content {
  opacity: 1;
  visibility: visible;
}

.index-service-card:hover .service-card-title,
.index-service-card:hover .service-card-brief {
  opacity: 0;
  visibility: hidden;
}

.service-hover-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-hover-bullets li {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-hover-bullets li:last-child {
  margin-bottom: 0;
}

.service-hover-bullets li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.service-hover-button {
  position: static;
  transform: none;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  color: #ffffff;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  letter-spacing: 0.2px;
  white-space: nowrap;
  pointer-events: none;
  display: inline-block;
  margin-top: 1rem;
  text-align: center;
  border: none;
}

.index-service-card:hover .service-hover-button {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.service-hover-button:hover {
  background: linear-gradient(135deg, #45a049, var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

@media (max-width: 768px) {
  .service-card-hover-content {
    padding: 1.5rem 1.25rem;
  }
  
  .service-hover-bullets li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  
  .service-hover-button {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
}


.index-service-card .learn-more {
  display: inline-block;
  background: var(--accent-color);
  color: #ffffff;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  align-self: flex-start;
}

.index-service-card::before {
  display: none;
}


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

.index-service-card p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.index-service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.index-service-features li {
  padding: 0.5rem 0;
  color: var(--text-color);
  font-size: 1rem;
  position: relative;
  padding-left: 1.8rem;
}

.index-service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

@media (max-width: 768px) {
  /* Hide particles on mobile */
  .particles-container {
    display: none;
  }

  .index-services {
    padding: 3rem 1.5rem;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
  }

  .index-services > .index-section-content {
    max-width: 100%;
  }

  /* Professional Header Section */
  .index-services .mobile-heading {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 0.75rem;
    padding: 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
  }

  .index-services > .index-section-content > p {
    text-align: left;
    margin-bottom: 2.5rem;
    padding: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #495057;
    font-weight: 400;
  }

  .service-slider-container {
    position: relative;
    padding: 0;
  }

  .index-service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0;
    margin: 0;
  }

  /* Vertical Card Layout - Modern Mobile Design */
  .index-service-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: auto;
  }

  .index-service-card:last-child {
    margin-bottom: 0;
  }

  .index-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .service-card-image-wrapper {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    border-radius: 0;
    overflow: hidden;
    border: none;
    border-bottom: 1px solid #e9ecef;
    align-self: stretch;
    position: relative;
  }
  
  .index-service-card .service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
  }

  .index-service-card:hover .service-card-image {
    transform: none;
    filter: none;
  }

  .service-card-image-wrapper::after {
    display: none;
  }
  
  .service-badge {
    display: none;
  }

  .index-service-card .service-card-content {
    padding: 1.5rem;
    border-radius: 0;
    margin: 0;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex: 1;
    overflow: visible;
    background: transparent;
    gap: 0.75rem;
  }

  .service-card-title {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.4;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    flex-shrink: 0;
  }

  .service-card-brief {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
    flex-grow: 0;
    flex-shrink: 0;
    text-align: left;
  }

  /* Service Features List */
  .service-card-hover-content {
    position: static;
    opacity: 1;
    visibility: visible;
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
    min-height: 0;
  }

  .service-hover-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
  }

  .service-hover-bullets li {
    color: #495057;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
  }

  .service-hover-bullets li:last-child {
    margin-bottom: 0;
  }

  .service-hover-bullets li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #495057;
    font-weight: 600;
    font-size: 0.875rem;
  }

  /* Professional CTA Button - Full Width at Bottom */
  .service-hover-button {
    position: static;
    transform: none;
    background: #212529;
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.2px;
    white-space: nowrap;
    pointer-events: auto;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
    border: 1px solid #212529;
    flex-shrink: 0;
  }

  .service-hover-button:hover {
    background: #343a40;
    border-color: #343a40;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  .service-hover-button:active {
    background: #1a1a1a;
    border-color: #1a1a1a;
  }

  .index-service-card:hover .service-hover-button {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .index-service-card:hover .service-card-title,
  .index-service-card:hover .service-card-brief {
    opacity: 1;
    visibility: visible;
  }

  /* Remove slider indicators */
  .service-slider-indicators {
    display: none;
  }

  .service-cards-hint {
    display: none;
  }

  /* Hide desktop heading on mobile */
  .index-services .desktop-heading {
    display: none;
  }
}

@media (max-width: 480px) {
  .index-services {
    padding: 2.5rem 1.25rem;
  }

  .index-services .mobile-heading {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
  }

  .index-services > .index-section-content > p {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }

  .index-service-cards {
    gap: 1.25rem;
  }

  .index-service-card {
    gap: 0;
  }

  .service-card-image-wrapper {
    width: 100%;
    height: 180px;
  }

  .index-service-card .service-card-content {
    padding: 1.25rem;
    gap: 0.625rem;
  }

  .service-card-title {
    font-size: 1.1875rem;
  }

  .service-card-brief {
    font-size: 0.875rem;
  }

  .service-hover-bullets li {
    font-size: 0.8125rem;
    margin-bottom: 0.4375rem;
  }

  .service-hover-button {
    padding: 0.8125rem 1.25rem;
    font-size: 0.875rem;
  }
}

.index-industries {
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, #f3f4f6, #ffffff);
}

.industry-highlights {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 3rem 0;
  text-align: center;
}

.highlight-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.highlight-text {
  color: var(--gray-text);
  font-size: 1.1rem;
}

.industry-features {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  text-align: left;
}

.industry-features li {
  padding: 0.2rem 0;
  color: var(--gray-text);
  font-size: 0.75rem;
  position: relative;
  padding-left: 1.125rem;
  line-height: 1.4;
}

.industry-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 0.8125rem;
}

.industry-certifications {
  text-align: center;
  margin: 4rem 0 3rem 0;
}

.industry-certifications h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.certification-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cert-badge {
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.cert-badge i {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .industry-highlights {
    flex-direction: column;
    gap: 2rem;
  }

  .certification-badges {
    gap: 1rem;
  }

  .cert-badge {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .announcement-item:nth-child(3),
  .announcement-separator:nth-child(4) {
    display: none;
  }
}

.stats {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 5rem 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}


.index-testimonials {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.index-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

.index-testimonials h2 {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary-color);
  font-size: 2.8rem;
  font-weight: 700;
}

.index-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

@media (min-width: 1024px) {
  .index-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.index-testimonial-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}

.index-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.index-testimonial-card .stars {
  color: #FFB400;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.index-testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.index-testimonial-card p::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  left: -1rem;
  top: -1.5rem;
  color: var(--accent-color);
  opacity: 0.1;
}

.index-testimonial-card cite {
  display: block;
  font-weight: 600;
  color: var(--primary-color);
  font-style: normal;
  font-size: 1.1rem;
  position: relative;
  padding-left: 1.5rem;
}

.index-testimonial-card cite::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1rem;
  height: 2px;
  background: var(--accent-color);
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .index-testimonials {
    padding: 4rem 1.5rem;
    background: #ffffff;
  }

  .index-testimonials .location-header {
    text-align: left;
    margin-bottom: 2.5rem;
  }

  .index-testimonials .location-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
    text-align: left;
  }

  .index-testimonials .location-subtitle {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    text-align: left;
  }

  .milwaukee-highlight {
    margin-bottom: 2.5rem;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(76, 175, 80, 0.12) 100%);
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.2);
  }

  .milwaukee-badge {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
    margin-bottom: 0.875rem;
  }

  .milwaukee-badge i {
    font-size: 1.125rem;
  }

  .milwaukee-note {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #495057;
    text-align: left;
  }

  .index-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }

  .index-testimonial-card {
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
  }

  .index-testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .index-testimonial-card .stars {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
  }

  .index-testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 1.5rem;
  }

  .index-testimonial-card p::before {
    font-size: 3rem;
    left: -0.5rem;
    top: -1rem;
  }

  .index-testimonial-card cite {
    font-size: 1rem;
    padding-left: 1.25rem;
  }

  .testimonials-cta {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
  }

  .google-reviews-link {
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .index-testimonials {
    padding: 3rem 1.25rem;
  }

  .index-testimonials .location-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
  }

  .index-testimonials .location-subtitle {
    font-size: 0.9375rem;
  }

  .milwaukee-highlight {
    padding: 1.5rem 1.25rem;
    margin-bottom: 2rem;
  }

  .milwaukee-badge {
    font-size: 0.9375rem;
    padding: 0.5625rem 1.125rem;
  }

  .milwaukee-note {
    font-size: 0.875rem;
  }

  .index-testimonial-grid {
    gap: 1.25rem;
  }

  .index-testimonial-card {
    padding: 1.75rem 1.25rem;
  }

  .index-testimonial-card .stars {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .index-testimonial-card p {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }

  .index-testimonial-card cite {
    font-size: 0.9375rem;
  }
}

@media (max-width: 768px) {
    .index-hero-content {
      width: 100%;
      max-width: 100%;
      padding: 0;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
      text-align: center;
      min-height: auto;
    }

    .hero-content-box {
      background: none;
      padding: 0;
      width: 100%;
      max-width: 100%;
      box-shadow: none;
      border-radius: 0;
      backdrop-filter: none;
      border: none;
      margin: 0 auto;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    /* Hide mobile hero badge/trusted signal bubble */
    .mobile-tablet-hero .hero-badge {
      display: none;
    }
    
    .hero-content-box {
      text-align: center;
      align-items: center;
    }

    .index-hero-title {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.05;
      margin: 0;
      color: white;
      letter-spacing: -0.02em;
      animation: slideInUp 0.8s ease-out 0.2s both;
      text-align: center;
      max-width: 95%;
      word-wrap: break-word;
    }

    .mobile-tablet-hero .headline-accent {
      background: linear-gradient(135deg, #4CAF50, #81C784);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

  .index-hero-description {
    display: none;
  }

  /* Mobile Hero Description - matches desktop style */
    .index-hero-description.mobile {
      display: block;
      font-size: 1.15rem;
      line-height: 1.4;
      margin: 0;
      padding: 0 1rem;
      text-align: center;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 400;
      max-width: 90%;
      animation: slideInUp 0.8s ease-out 0.3s both;
    }

    .index-hero-description.desktop {
      display: none;
    }

    /* Mobile Hero Actions - matches desktop */
    .index-cta-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      width: 100%;
      padding: 0 1rem;
      animation: slideInUp 1s ease-out 0.4s both;
      margin: 0;
    }

    .index-cta-buttons .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, #4CAF50, #45a049);
      color: white;
      padding: 1.1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.05rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
      border: none;
      width: 100%;
      max-width: 320px;
      text-transform: none;
      letter-spacing: 0.5px;
      position: relative;
      overflow: hidden;
    }

    .index-cta-buttons .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.6s ease;
    }

    .index-cta-buttons .cta-button:hover::before {
      left: 100%;
    }

    .index-cta-buttons .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(76, 175, 80, 0.5);
    }

    .index-cta-buttons .cta-button:active {
      transform: scale(0.97);
    }

    .index-cta-buttons .cta-button.secondary {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .index-cta-buttons .cta-button.secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    }
    
    .index-cta-buttons .cta-button.secondary i {
      font-size: 1rem;
    }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Google-style Rating Component */
  .ndc-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Roboto Condensed', sans-serif;
    animation: slideInUp 0.8s ease-out 0.3s both;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .ndc-rating-stars {
    color: #fbbc04;
    font-size: 1.1rem;
    letter-spacing: 1px;
    line-height: 1;
  }

  .ndc-rating-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  @media (max-width: 768px) {
    .ndc-rating {
      gap: 0.4rem;
      padding: 0.6rem 1rem;
      margin-bottom: 1.5rem;
    }

    .ndc-rating-stars {
      font-size: 1rem;
    }

    .ndc-rating-text {
      font-size: 0.8rem;
    }
  }

  /* Desktop rating styles */
  @media (min-width: 769px) {
    .index-hero-title {
      margin-bottom: 1rem;
    }

    .ndc-rating {
      background: rgba(255, 255, 255, 0.98);
      margin-bottom: 2rem;
      padding: 1rem 1.5rem;
    }

    .ndc-rating-stars {
      font-size: 1.2rem;
    }

    .ndc-rating-text {
      font-size: 1rem;
    }
  }

  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .index-section-content {
    padding: 0 1rem;
  }

  .index-location-grid,
  .index-service-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  
  .index-industry-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    gap: 1rem;
    padding: 1rem;
    margin: 0 -1rem;
  }

  .index-location-card,
  .index-industry-card,
  .index-service-card {
    padding: 0rem;
    margin: 0.5rem 0;
    border-radius: 12px;
    transform: none;
    transition: transform 0.2s ease;
  }

  .index-location-card:active,
  .index-industry-card:active,
  .index-service-card:active {
    transform: scale(0.98);
  }

  .index-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.5rem;
  }

  .index-testimonial-card {
    margin: 0.5rem 0;
    padding: 1.5rem;
  }

  section {
    padding: 3rem 1rem;
  }

  section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }



  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }



  .cta-button {
    width: 100%;
    text-align: center;
  }
  .diagonal-section {
    padding: 4rem 1rem;
  }

  .diagonal-features {
    gap: 1rem;
  }

  .diagonal-feature {
    padding: 1.5rem;
  }
}

.hero-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #1a2942, #2c3e50);
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-banner {
    display: none;
  }
}

/* Base styles */
:root {
  --primary-color: #1a2942;
  --secondary-color: #2c3e50;
  --accent-color: #4CAF50;
  --text-color: #333;
  --gray-text: #666;
}


/* Service Gallery Section - Desktop Only */
.service-gallery {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
}

.service-gallery .section-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.gallery-header::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  border-radius: 2px;
}

.gallery-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: -0.6px;
  line-height: 1.2;
}

.gallery-header p {
  font-size: 1.1rem;
  color: var(--gray-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 1fr;
}

/* Desktop: Show all cards, hide button */
.gallery-more-container {
  display: contents;
}

.gallery-view-more-wrapper {
  display: none;
}

.gallery-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.02) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

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

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(76, 175, 80, 0.1);
}

.image-container {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: brightness(1) saturate(1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
  filter: brightness(1.05) saturate(1.1);
}

.gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #45a049 100%);
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-badge {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5), 0 3px 10px rgba(0, 0, 0, 0.15);
}

.gallery-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  background: #ffffff;
}

.gallery-title {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.gallery-description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  flex-grow: 1;
  font-weight: 400;
}

/* Mobile Gallery Section - Premium Modern Design */
@media (max-width: 768px) {
  .service-gallery {
    padding: 4rem 1.5rem;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  .service-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0 50%, transparent);
  }

  .service-gallery .section-content {
    max-width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
  }

  .gallery-header {
    text-align: left;
    margin-bottom: 3rem;
    padding: 0;
    max-width: 100%;
  }

  .gallery-header h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.8px;
    max-width: 100%;
  }

  .gallery-header p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    max-width: 100%;
    letter-spacing: -0.1px;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .gallery-item {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: none;
    width: 100%;
    margin: 0;
    position: relative;
  }

  .gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .image-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    margin: 0;
  }

  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  }

  .gallery-content {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #ffffff;
  }

  .gallery-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.4px;
  }

  .gallery-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.1px;
  }

  /* Gallery More Container - Hidden by default on mobile */
  .gallery-more-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.6s ease, margin-top 0.4s ease;
    margin-top: 0;
  }

  .gallery-more-container.expanded {
    opacity: 1;
    max-height: 5000px;
    margin-top: 0;
  }

  /* View More Button - Mobile Only */
  .gallery-view-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding: 0;
  }

  .gallery-view-more-btn {
    background: #ffffff;
    color: var(--primary-color, #1b3a4b);
    border: 2px solid var(--primary-color, #1b3a4b);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .gallery-view-more-btn:hover {
    background: var(--primary-color, #1b3a4b);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .gallery-view-more-btn:active {
    transform: translateY(0);
  }

  .gallery-view-more-btn.expanded .view-more-icon {
    transform: rotate(180deg);
  }

  .view-more-icon {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .service-gallery {
    padding: 3rem 1.25rem;
  }

  .gallery-header {
    margin-bottom: 2.5rem;
  }

  .gallery-header h2 {
    font-size: 1.875rem;
    margin-bottom: 0.875rem;
    letter-spacing: -0.6px;
  }

  .gallery-header p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .gallery-grid {
    gap: 2rem;
  }

  .gallery-item {
    border-radius: 16px;
  }

  .gallery-item::after {
    border-radius: 16px;
  }

  .image-container {
    aspect-ratio: 1 / 1;
  }

  .gallery-content {
    padding: 1.5rem 1.25rem;
    gap: 0.625rem;
  }

  .gallery-title {
    font-size: 1.25rem;
    letter-spacing: -0.3px;
  }

  .gallery-more-container {
    gap: 2rem;
  }

  .gallery-view-more-wrapper {
    margin-top: 1.5rem;
  }

  .gallery-view-more-btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }

  .gallery-description {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

/* Diagonal Section */
.diagonal-section {
  position: relative;
  padding: 8rem 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: skewY(-3deg);
  margin: 6rem 0;
  overflow: hidden;
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(45deg);
}

.diagonal-content {
  max-width: 1200px;
  margin: 0 auto;
  color: white;
  position: relative;
  z-index: 1;
  text-align: center;
  transform: skewY(3deg);
}

.diagonal-content h2 {
  color: white;
  margin-bottom: 1.5rem;
}
.diagonal-content p {
  color: white; 
}

.diagonal-text {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
  opacity: 0.9;
}

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

.diagonal-feature {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.diagonal-feature:hover {
  transform: translateY(-5px);
}

.diagonal-feature i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.diagonal-feature h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.diagonal-feature p {
  opacity: 0.8;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

.cta-section .cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.cta-section .cta-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.cta-section .cta-features i {
  color: var(--accent-color);
}

.cta-section .cta-button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: var(--accent-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.cta-section .cta-button:hover {
  transform: translateY(-2px);
  background: #ffed4a;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}


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

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  z-index: 0;
}

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

.service-card:hover {
  color: white;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover i {
  color: white;
  z-index: 1;
  position: relative;
}

address {
  margin-top: 1rem;
  font-style: normal;
}

address p {
  margin: 0.5rem 0;
}

address i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.location-card,
.industry-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.location-card:hover,
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.location-card i,
.industry-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-card cite {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Added styles for popup and view more button */
.view-more-container {
  text-align: center;
  margin-top: 3rem;
}

.view-more-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.view-more-button * {
  pointer-events: none;
}

.view-more-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #45a049, #3d8b40);
}

.view-more-button:focus {
  outline: 3px solid rgba(76, 175, 80, 0.5);
  outline-offset: 2px;
}

.view-more-button i {
  font-size: 1.1rem;
}

/* ============================================
   PROFESSIONAL POPUP REDESIGN
   ============================================ */

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1010;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem 1rem;
}

.popup.popup-open {
  display: flex !important;
  opacity: 1;
  animation: popupFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}

.popup-content {
  position: relative;
  background: #ffffff;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  border-radius: 20px;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: scale(0.96) translateY(-50%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  top: 50%;
  display: flex;
  flex-direction: column;
}

.popup.popup-open .popup-content {
  transform: scale(1) translateY(-50%);
  animation: popupScaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popupScaleIn {
  from {
    transform: scale(0.96) translateY(-50%);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(-50%);
    opacity: 1;
  }
}

.popup-content .facilities-popup {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 92vh;
  overflow: hidden;
}

.popup-content-inner {
  padding: 3rem;
  overflow-y: auto;
  flex: 1;
}

@media (max-width: 768px) {
  .popup {
    padding: 1rem 0.5rem;
  }

  .popup-content {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    max-height: 95vh;
  }

  .popup-content-inner {
    padding: 2rem 1.5rem;
  }
}

.close-popup {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.75rem;
  cursor: pointer;
  color: #64748b;
  background: rgba(248, 250, 252, 0.9);
  border: none;
  padding: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.close-popup:hover {
  background: #f1f5f9;
  color: #1e293b;
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.close-popup:active {
  transform: rotate(90deg) scale(0.95);
}

.close-popup:focus {
  outline: 3px solid rgba(76, 175, 80, 0.4);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .close-popup {
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}

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

.industry-sections {
  padding: 2rem 0;
}

.industry-section {
  margin-bottom: 3rem;
}

.industry-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.industry-section h3 i {
  color: var(--accent-color);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.industry-item {
  background: white;
  padding: 1.8rem;
  border-radius: 10px;
  text-align: left;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.industry-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-color: var(--accent-color);
}

.industry-item h4 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.industry-item p {
  color: var(--text-color);
  margin: 0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.industry-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-features li {
  padding: 0.4rem 0;
  color: var(--gray-text);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.industry-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-item {
    padding: 1.5rem;
  }
}

/* Popup Header Styles */
.popup-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}

.popup-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #45a049);
  border-radius: 2px;
}

.popup-header h2 {
  color: #1e293b;
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.popup-header p {
  color: #64748b;
  font-size: 1.125rem;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .popup-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .popup-header h2 {
    font-size: 1.75rem;
  }

  .popup-header p {
    font-size: 1rem;
  }
}

.service-regions {
  padding: 0;
}

.region-section {
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.region-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.region-section h3 {
  color: #1e293b;
  margin-bottom: 1.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: -0.01em;
}

.region-section h3 i {
  color: #4CAF50;
  font-size: 1.25rem;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
  padding: 0.5rem;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.city-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: left;
  border: 1.5px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.city-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #4CAF50, #45a049);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #4CAF50;
  background: #ffffff;
}

.city-item:hover::before {
  transform: scaleY(1);
}

.city-item h4 {
  color: #1e293b;
  margin: 0;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.city-item p {
  color: #64748b;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 400;
}

.service-area-footer {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  margin-left: -3rem;
  margin-right: -3rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  border-radius: 0 0 20px 20px;
}

.coverage-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #475569;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  line-height: 1.7;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.coverage-note i {
  color: #4CAF50;
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
  padding: 0.5rem;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage-note p {
  margin: 0;
  flex: 1;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.125rem 2.25rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.cta-button-primary {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.35);
}

.cta-button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-button-primary:hover::before {
  left: 100%;
}

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(76, 175, 80, 0.45);
  background: linear-gradient(135deg, #45a049, #3d8b40);
}

.cta-button-primary:active {
  transform: translateY(-1px);
}

.cta-button-secondary {
  background: #ffffff;
  color: #1e293b;
  border: 2px solid #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-button-secondary:hover {
  background: #f8fafc;
  border-color: #4CAF50;
  color: #4CAF50;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-button-secondary:active {
  transform: translateY(-1px);
}

.cta-button i {
  font-size: 1.125rem;
}

.cta-button:focus {
  outline: 3px solid rgba(76, 175, 80, 0.4);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .service-area-footer {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-radius: 0 0 16px 16px;
  }

  .coverage-note {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 1rem;
    font-size: 0.875rem;
    gap: 0.875rem;
  }

  .coverage-note i {
    width: 32px;
    height: 32px;
    font-size: 1.125rem;
  }

  .popup-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.75rem;
  }
}

@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    margin: 20px auto;
    padding: 1.5rem;
  }

  .popup-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* HTML structure removed from CSS file - should be in HTML template */
/* Mobile Contact Form - Only visible on mobile */
.ndc-mobile-form-section {
  display: none;
}

@media (max-width: 768px) {
  .ndc-mobile-form-section {
    display: block;
    padding: 2.5rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
  }

  .ndc-mobile-form-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .ndc-mobile-form {
    background: #ffffff;
    padding: 2.25rem 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
  }

  .form-header {
    text-align: left;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
  }

  .ndc-mobile-form h2 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: left;
    letter-spacing: -0.3px;
    line-height: 1.3;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  .form-subtitle {
    color: #6c757d;
    font-size: 0.875rem;
    text-align: left;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
  }

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

  .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #495057;
    letter-spacing: 0.1px;
    text-transform: uppercase;
  }

  .form-label i {
    font-size: 0.875rem;
    color: #6c757d;
    width: 16px;
    text-align: center;
  }

  .ndc-input,
  .ndc-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.9375rem;
    background: #ffffff;
    transition: all 0.2s ease;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #212529;
    font-weight: 400;
  }

  .ndc-input:focus,
  .ndc-select:focus {
    outline: none;
    border-color: #495057;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(73, 80, 87, 0.1);
  }

  .ndc-input::placeholder {
    color: #adb5bd;
    font-weight: 400;
  }

  .select-wrapper {
    position: relative;
  }

  .select-wrapper .ndc-select {
    appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
    color: #212529;
  }

  .select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6c757d;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
  }

  .select-wrapper:focus-within .select-arrow {
    transform: translateY(-50%) rotate(180deg);
  }

  .ndc-select option {
    color: #212529;
    padding: 0.5rem;
  }

  .form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem;
    background: #f8f9fa;
    border-radius: 4px;
    margin: 1.75rem 0 1.25rem;
    border: 1px solid #e9ecef;
  }

  .form-guarantee span {
    font-size: 0.8125rem;
    color: #6c757d;
    font-weight: 400;
    letter-spacing: 0.1px;
  }

  .ndc-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: #212529;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0;
    text-transform: none;
    letter-spacing: 0.3px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .ndc-submit-btn:hover {
    background: #343a40;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }

  .ndc-submit-btn:active {
    background: #1a1a1a;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 480px) {
  .ndc-mobile-form-section {
    padding: 2rem 1.25rem;
  }

  .ndc-mobile-form {
    padding: 1.75rem 1.5rem;
  }

  .form-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
  }

  .ndc-mobile-form h2 {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
  }

  .form-subtitle {
    font-size: 0.8125rem;
  }

  .ndc-form-group {
    margin-bottom: 1.25rem;
  }

  .form-label {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .ndc-input,
  .ndc-select {
    padding: 0.8125rem 0.9375rem;
    font-size: 0.875rem;
  }

  .form-guarantee {
    padding: 0.8125rem;
    margin: 1.5rem 0 1rem;
  }

  .form-guarantee span {
    font-size: 0.75rem;
  }

  .ndc-submit-btn {
    padding: 0.9375rem 1.75rem;
    font-size: 0.875rem;
  }
}

/* Google Reviews Section */
.google-reviews {
  padding: 6rem 1rem;
  background: #f3f4f6;
  text-align: center;
}

.google-review-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.google-stars {
  margin-bottom: 1.5rem;
}

.star {
  color: #FFC107;
  font-size: 2rem;
  margin: 0 2px;
}

.rating-text {
  display: block;
  margin-top: 0.5rem;
  font-weight: 500;
  color: #64748b;
}

.review-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  margin: 1rem 0;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.review-link:hover {
  background: var(--primary-color);
  color: white;
}

.google-badge {
  margin-top: 1.5rem;
}

.google-badge img {
  max-width: 200px;
  height: auto;
}
.industry-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-color);
  line-height: 1.3;
}

/* ============================================
   NEW ENHANCEMENTS CSS
   ============================================ */

/* Trust Badges Bar */
.trust-badges-bar {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-badges-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow: hidden;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-badge-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

/* Hide badges from right to left as screen gets smaller */
@media (max-width: 1200px) {
  .trust-badge-last {
    display: none;
  }
}

@media (max-width: 992px) {
  .trust-badge-item:nth-last-child(2) {
    display: none;
  }
}

@media (max-width: 768px) {
  .trust-badge-item:nth-last-child(3) {
    display: none;
  }
  
  .trust-badges-container {
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .trust-badge-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .trust-badge-item:nth-last-child(4) {
    display: none;
  }
}


/* Service Badge - Overlay on Image */
.service-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.6rem 1.25rem;
  background: var(--accent-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.index-service-card:hover .service-badge {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.emergency-badge {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.5), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.index-service-card:hover .emergency-badge {
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.6), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.popular-badge {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.2);
  font-weight: 800;
}

.index-service-card:hover .popular-badge {
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

@keyframes pulse {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.9;
    transform: scale(1.02);
  }
}

/* Process Section */
.process-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
  position: relative;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .process-steps {
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 3rem 1rem;
    background: #f8f9fa;
  }

  .process-section .index-section-content {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .process-section .location-header {
    text-align: left;
    margin-bottom: 2.5rem;
    padding: 0;
  }

  .process-section .location-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .process-section .location-subtitle {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
  }

  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0;
    padding: 0;
  }
  
  .process-step {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    display: block;
    margin-bottom: 0;
  }

  .process-step:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .step-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.2);
  }

  .step-icon {
    display: none;
  }

  .process-step h3 {
    color: #212529;
    font-size: 1.125rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    line-height: 1.4;
  }

  .process-step p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .process-step a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 2.5rem 1rem;
  }

  .process-section .location-header {
    margin-bottom: 2rem;
  }

  .process-section .location-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
  }

  .process-section .location-subtitle {
    font-size: 0.9375rem;
  }

  .process-steps {
    gap: 1.25rem;
  }

  .process-step {
    padding: 1.25rem;
  }

  .step-number {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.9375rem;
    top: 1.25rem;
    left: 1.25rem;
  }

  .process-step h3 {
    font-size: 1.0625rem;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .process-step p {
    font-size: 0.875rem;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}

.process-step {
  text-align: center;
  position: relative;
  padding: 1.25rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.step-icon {
  margin: 0.75rem 0 0.5rem;
  font-size: 2rem;
  color: var(--accent-color);
}

.process-step h3 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.process-step p {
  color: var(--text-color);
  line-height: 1.5;
  font-size: 0.8125rem;
}

.process-step a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

.process-step a:hover {
  text-decoration: underline;
}

/* Mobile styles are handled above in the process-steps media query */

/* Enhanced FAQ Section */
.faq-section {
  padding: 6rem 1rem;
  background: #ffffff;
}

.faq-subtitle {
  text-align: center;
  color: var(--gray-text);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.faq-subtitle a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

.faq-subtitle a:hover {
  text-decoration: underline;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  user-select: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-color);
}

.faq-question i {
  color: var(--accent-color);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

.faq-answer a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  color: var(--text-color);
}

.faq-cta a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

.faq-cta a:hover {
  text-decoration: underline;
}

/* Enhanced Testimonials */
.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #4285F4;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.google-reviews-link:hover {
  background: #357ae8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.google-reviews-link i {
  font-size: 1.2rem;
}

/* Enhanced CTA Section */
.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 8px;
  color: var(--primary-color);
}

.cta-guarantee i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.cta-guarantee span {
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-button.primary {
  background: var(--accent-color);
  color: white;
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-button.secondary,
  .cta-button.primary {
    width: 100%;
    text-align: center;
  }
}

/* Milwaukee Highlight */
.milwaukee-highlight {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(76, 175, 80, 0.1) 100%);
  border-radius: 12px;
  border: 2px solid rgba(76, 175, 80, 0.2);
}

.milwaukee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.milwaukee-badge i {
  font-size: 1.3rem;
}

.milwaukee-note {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Mobile Benefit Strip */
.mobile-benefit-strip {
  display: none;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  padding: 16px 0;
  margin: 20px 0;
}

.mobile-benefit-strip .benefit-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.mobile-benefit-strip p {
  font-size: 16px;
  font-weight: 500;
  color: #495057;
  margin: 0;
  line-height: 1.4;
  font-style: italic;
}

.mobile-benefit-strip p:before,
.mobile-benefit-strip p:after {
  content: '"';
  color: #6c757d;
  font-size: 18px;
  font-weight: 700;
}


/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }
  
  .floating-cta.mobile-cta {
    display: none;
  }
  
  .mobile-sticky-phone,
  .mobile-sticky-quote {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  
  .mobile-sticky-phone {
    background: var(--accent-color);
    color: white;
  }
  
  .mobile-sticky-phone:hover {
    background: #45a049;
    transform: translateY(-2px);
  }
  
  .mobile-sticky-quote {
    background: var(--primary-color);
    color: white;
  }
  
  .mobile-sticky-quote:hover {
    background: #2a3d5a;
    transform: translateY(-2px);
  }
  
  .mobile-sticky-phone i,
  .mobile-sticky-quote i {
    font-size: 1.1rem;
  }
  
  @media (max-width: 768px) {
    .index-testimonial-grid {
      grid-template-columns: 1fr;
    }

    /* Add padding to body to prevent content from being hidden behind sticky bar */
    body {
      padding-bottom: 80px;
    }

      .mobile-benefit-strip {
        display: block !important;
      }

  }
}

/* Enhanced Floating CTA */
.floating-cta.desktop-cta .cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

  .floating-cta.desktop-cta .cta-button i {
  font-size: 1rem;
}
