/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Palette - Navy & Red Theme */
    --color-bg:        #0C1E36;  /* Deep Navy */
    --color-white:     #FFFFFF;  /* Neon White */
    --color-red:       #FF3B30;  /* Neon Red */
    --color-peach:     #E8B09A;  /* Peach Accent */
    --color-black:     #000000;  /* Outline Black */
    --color-blue:      #00E0FF;  /* Electric Blue */
    
    /* Legacy color mappings for compatibility */
    --neon-green: var(--color-blue);  /* Changed to blue */
    --neon-pink: #FF10F0;
    --neon-blue: var(--color-blue);
    --neon-yellow: #FFFF00;
    --neon-orange: var(--color-red);
    
    /* Dark Theme - Updated */
    --bg-dark: var(--color-bg);
    --bg-darker: #071228;
    --bg-card: #142642;
    --text-primary: var(--color-white);
    --text-secondary: #b0b0b0;
    
    /* Fonts with proper fallbacks to prevent layout shifts */
    --font-display: 'Bebas Neue', Arial, sans-serif;
    --font-heading: 'Oswald', Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Font loading optimization with proper fallbacks */
@font-face {
    font-family: 'Bebas Neue';
    font-display: swap; /* Changed from optional to swap */
    src: local('Bebas Neue');
}

@font-face {
    font-family: 'Oswald';
    font-display: swap; /* Changed from optional to swap */
    src: local('Oswald');
}

@font-face {
    font-family: 'Inter';
    font-display: swap; /* Changed from optional to swap */
    src: local('Inter');
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg); /* Deep Navy background */
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 30, 54, 0.98); /* Deep Navy with opacity */
    /* REMOVED backdrop-filter that can cause blur issues */
    border-bottom: 2px solid var(--color-red); /* Red accent line */
    box-shadow: 0 0 20px rgba(255, 59, 48, 0.3); /* Red glow */
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem; /* Reduced from 2rem */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    color: var(--text-primary);
    /* text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); */ /* REMOVED FOR TESTING */
}

.logo-accent {
    color: var(--color-red); /* Changed to neon red */
    text-shadow: 0 0 6px rgba(255,59,48,0.6); /* Subtle red glow */
}

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

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-dark);
    padding: 0.5rem 1rem;
    list-style: none;
    border-bottom: 2px solid var(--neon-green);
    z-index: 10;
}

.dropdown-menu a {
    display: block;
    padding: 0.25rem 0;
    text-transform: none;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
    display: block;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-red);
    text-shadow: 0 0 6px rgba(255, 59, 48, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    box-shadow: 0 0 6px rgba(255, 59, 48, 0.6);
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-blue); /* Electric blue for phone */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 6px rgba(0, 224, 255, 0.6);
    transition: all 0.3s ease;
}

.phone-number:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(0, 224, 255, 0.8),
                 0 0 20px rgba(0, 224, 255, 0.6);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid var(--neon-green);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.mobile-menu .mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .nav-item {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .nav-link {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.mobile-menu .nav-link::after {
    display: none;
}

/* Mobile Submenu for Service Areas */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.2);
}

.mobile-submenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu .nav-link {
    padding: 0.75rem 3rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.mobile-submenu .nav-link:hover {
    color: var(--neon-green);
    background: rgba(57, 255, 20, 0.1);
}

/* Mobile Phone Link */
.mobile-phone {
    background: rgba(57, 255, 20, 0.1);
    border-bottom: 2px solid var(--neon-green) !important;
}

.phone-link-mobile {
    color: var(--neon-green) !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.phone-link-mobile span {
    font-size: 1.25rem;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 1rem 0;
    margin-bottom: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    min-height: 20px; /* Prevent layout shift */
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    margin: 0 0.5rem;
    color: var(--neon-green);
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.5);
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 600;
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8rem;
    }
}

/* Additional Mobile Optimizations for Service Pages */
@media (max-width: 768px) {
    /* Reduce CTA box prominence on mobile */
    .content-wrapper blockquote {
        margin: 1.5rem 0;
        padding: 1.5rem;
        /* Prevent reflow on mobile */
        min-height: 150px;
    }
    
    .content-wrapper blockquote h3 {
        font-size: 1.5rem;
        margin: 0.75rem 0;
    }
    
    /* Hide sticky call button on service/location pages */
    body.interior-page .sticky-call-button {
        display: none !important;
    }
    
    /* Make review text smaller in footer on mobile */
    .footer-review-links {
        font-size: 0.875rem;
    }
    
    .footer-review-links p {
        margin-bottom: 0.5rem;
    }
    
    /* Optimize the quote CTA at bottom of service pages */
    .content-wrapper > blockquote:last-of-type {
        background: #f0faf0;
        border: 2px solid var(--neon-green);
        margin-bottom: 0;
    }
}

/* Service Areas Hub Page */
.service-areas-hub {
    padding: 2rem 0 5rem;
    background: #f9f9f9;
}

.service-areas-hub .page-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* ========================================
   NEON TEXT GLOW - BEST PRACTICES IMPLEMENTATION
   Fixes blurry text on Chrome/Safari using layered text-shadow
   ======================================== */

/* Reset any problematic properties on hero title */
.hero-title {
    /* Base font setup */
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 0.9;
    margin-bottom: 1rem;
    text-align: center;
    
    /* CRITICAL: Remove ALL transforms and filters that cause blur */
    transform: none !important;
    filter: none !important;
    -webkit-transform: none !important;
    -webkit-filter: none !important;
    
    /* Optimize text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    
    /* No animations or transitions that can cause blur */
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
    
    /* Ensure proper stacking */
    position: relative;
    z-index: 1;
}

/* Individual title lines - keep them simple */
.hero-title .title-line-1,
.hero-title .title-line-2 {
    display: block;
    /* NO transforms at all */
    transform: none !important;
    -webkit-transform: none !important;
    
    /* Consistent font weight */
    font-weight: 400;
    
    /* No animations */
    animation: none !important;
    will-change: auto !important;
}

/* ARMED - Neon White with subtle glow */
.hero-title .title-line-1 {
    color: var(--color-white);
    font-size: 1em;
    margin-bottom: -0.05em;
    /* Subtle layered white neon glow effect */
    text-shadow: 
        /* Inner bright white glow */
        0 0 5px rgba(255,255,255,0.8),
        0 0 10px rgba(255,255,255,0.6),
        /* Outer softer white glow */
        0 0 20px rgba(255,255,255,0.3),
        0 0 30px rgba(255,255,255,0.2);
}

/* EXTERMINATORS - Neon Red with glow */
.hero-title .title-line-2 {
    color: var(--color-red);
    font-size: 0.85em;
    letter-spacing: 0.05em;
    margin: 0 auto;
    /* Subtle layered red neon glow effect */
    text-shadow: 
        /* Inner bright red glow */
        0 0 5px rgba(255,59,48,0.9),
        0 0 10px rgba(255,59,48,0.7),
        /* Outer softer red glow */
        0 0 20px rgba(255,59,48,0.4),
        0 0 30px rgba(255,59,48,0.3);
}

/* Remove ALL backdrop filters and transforms from hero section */
.hero-section,
.hero-background,
.hero-content,
.neon-grid,
.hero-bugs {
    /* NO filters or backdrop filters */
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    
    /* NO transforms that might affect text rendering */
    transform: none !important;
    -webkit-transform: none !important;
}

/* iOS Safari specific optimizations */
@supports (-webkit-touch-callout: none) {
    .hero-title {
        /* Force hardware acceleration WITHOUT blur */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-font-smoothing: subpixel-antialiased;
    }
    
    /* Subtle glow for mobile */
    .title-line-1 {
        text-shadow: 0 0 6px rgba(255,255,255,0.6);
    }
    
    .title-line-2 {
        text-shadow: 0 0 6px rgba(255,59,48,0.6);
    }
}

/* Chrome-specific optimizations */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
    .hero-title {
        /* Chrome-specific rendering optimization */
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Disable ALL animations on mobile for performance */
@media (max-width: 768px) {
    .hero-section *,
    .hero-content *,
    .hero-background * {
        animation: none !important;
        transition: opacity 0.2s ease !important; /* Only allow simple opacity transitions */
    }
    
    /* Subtle glow for iOS */
    .title-line-1 {
        text-shadow: 
            /* Even more reduced for mobile */
            0 0 5px rgba(255,255,255,0.7),
            0 0 15px rgba(255,255,255,0.3);
    }
    
    .title-line-2 {
        text-shadow: 
            /* Even more reduced for mobile */
            0 0 5px rgba(255,59,48,0.8),
            0 0 15px rgba(255,59,48,0.4);
    }
}

.service-areas-hub .title-main {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Service Areas Section */
.areas {
    margin-top: 3rem;
}

.area-section {
    margin-bottom: 2rem;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.area-section:hover {
    border-color: var(--color-blue);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.3); /* Blue glow */
}

.area-accordion {
    width: 100%;
}

.area-accordion summary {
    padding: 2rem;
    cursor: pointer;
    background: #f9f9f9;
    transition: all 0.3s ease;
    list-style: none;
    position: relative;
}

.area-accordion summary::-webkit-details-marker {
    display: none;
}

.area-accordion summary::after {
    content: "▼";
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--color-blue); /* Changed to blue */
    transition: transform 0.3s ease;
}

.area-accordion[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.area-accordion summary:hover {
    background: #f0faf0;
}

.area-accordion summary h2 {
    margin: 0 0 0.5rem 0;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #0066CC; /* Darker blue for contrast */
    text-transform: uppercase;
}

.area-description {
    display: block;
    color: #666;
    font-size: 1rem;
    font-weight: 400;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.city-card {
    display: block;
    padding: 1.5rem;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.city-card:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.4); /* Blue glow */
    transform: translateY(-3px);
}

.city-card h3 {
    margin: 0 0 0.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #1a1a1a;
    text-transform: uppercase;
}

.city-card:hover h3 {
    color: #fff; /* White text on blue background */
}

.city-focus {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.city-card:hover .city-focus {
    color: #fff; /* White text on blue background */
}

.city-coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f0f0f0;
}

.city-coming-soon:hover {
    background: #f0f0f0;
    border-color: #e0e0e0;
    transform: none;
    box-shadow: none;
}

/* San Gabriel Valley gets special treatment as primary area */
#san-gabriel-valley .area-accordion summary h2 {
    color: var(--color-blue);
    text-shadow: 0 0 10px rgba(0, 224, 255, 0.3); /* Blue glow */
}

#san-gabriel-valley {
    border-color: var(--color-blue);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.2); /* Blue glow */
}

/* Mobile optimizations for service areas page */
@media (max-width: 768px) {
    .service-areas-hub .page-title .title-main {
        font-size: 2rem;
    }
    
    .area-section {
        margin-bottom: 1rem;
    }
    
    .area-accordion summary {
        padding: 1.5rem;
    }
    
    .area-accordion summary h2 {
        font-size: 1.5rem;
    }
    
    .area-accordion summary::after {
        right: 1.5rem;
    }
    
    .city-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.5rem;
    }
    
    .city-card {
        padding: 1rem;
    }
    
    .city-card h3 {
        font-size: 1.125rem;
    }
}

/* Service Areas Grid (for other pages) */
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-areas-grid h3 {
    margin-top: 0;
}

.service-areas-grid h3 a {
    color: #006600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-areas-grid h3 a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.service-areas-grid > div {
    background: #f9f9f9;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-areas-grid > div:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    transform: translateY(-5px);
}

/* Locations List Page */
.areas {
    margin-top: 2rem;
}

.area-section {
    margin-bottom: 2rem;
}

.area-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.city-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.city-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    color: var(--text-primary);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.city-card:hover {
    background: #f0faf0;
    border-color: var(--neon-green);
}

.area-accordion summary {
    cursor: pointer;
}

.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
    .desktop-only {
        display: block;
    }
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* iOS Safari fixes are now in the NEON TEXT GLOW section above */

/* Prevent scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Interior Pages - White Background */
body.interior-page {
    background-color: #f9f9f9 !important;
    color: #333333 !important;
}

body.interior-page .site-header {
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 2px solid var(--neon-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.interior-page main {
    background: #f9f9f9;
    min-height: calc(100vh - 300px);
}

body.interior-page .site-footer {
    background: var(--bg-darker);
    color: var(--text-primary);
}

body.interior-page .site-footer h3 {
    color: var(--neon-yellow);
}

body.interior-page .site-footer a {
    color: var(--text-secondary);
}

body.interior-page .site-footer .footer-links a:hover {
    color: var(--neon-green);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 80px;
    overflow: hidden;
    /* Deep navy gradient background */
    background: linear-gradient(180deg, #0C1E36 0%, #071228 100%);
    /* Isolate rendering context to prevent interference */
    isolation: isolate;
    /* Force layer creation for better performance */
    will-change: transform;
    transform: translateZ(0);
}

html {
    scroll-behavior: smooth;
}

.hero-background {
    position: absolute;
    top: 0; /* Start from top */
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.neon-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 224, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 224, 255, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    /* More visible blue grid */
    opacity: 0.8;
    /* Ensure it doesn't affect text rendering */
    pointer-events: none;
    z-index: 0;
}

/* Grid animation disabled - can cause rendering issues */
@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(0, 0); } /* No movement */
}

.hero-bugs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bug {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
}

.bug-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bug-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.bug-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.bug-4 {
    top: 40%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(40px, 10px) rotate(270deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.badge-text {
    display: inline-block;
    padding: 0.5rem 2rem;
    background: var(--color-peach); /* Peach accent from logo */
    color: var(--color-bg); /* Dark text on peach */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    box-shadow: 0 0 10px rgba(232,176,154,0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(232,176,154,0.5), inset 0 0 20px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 20px rgba(232,176,154,0.8), inset 0 0 20px rgba(255, 255, 255, 0.4); }
}

/* Hero title is now styled in the NEON TEXT GLOW section above */

/* Title line styles are now in the NEON TEXT GLOW section above */

/* Desktop and mobile styles are now in the NEON TEXT GLOW section above */

/* Optional: Subtle neon flicker effect (disabled by default to prevent blur) */
@keyframes neon-flicker {
    /* Various percentages where the neon is at full brightness */
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    /* Percentages where the neon dims slightly (not completely off) */
    20%, 24%, 55% {
        opacity: 0.97;
        filter: brightness(0.95);
    }
}

/* To enable flicker on desktop only (uncomment if desired): */
/*
@media (min-width: 1024px) {
    .title-line-2 {
        animation: neon-flicker 1.5s infinite alternate;
    }
}
*/

/* Only animate after page load and on desktop */
@media (min-width: 769px) {
    /* Disabled flicker animation - can cause blur */
    /* body.loaded .title-line-2 {
        animation: neon-flicker 3s infinite alternate;
    } */

    /* Grid animation disabled to prevent rendering issues */
    /* body.loaded .neon-grid {
        animation: grid-move 20s linear infinite;
    } */

    body.loaded .bug {
        animation: float 10s infinite ease-in-out;
    }
}

/* On mobile, optimize for performance */
@media (max-width: 768px) {
    .neon-grid, .hero-bugs {
        display: none;
    }
    
    /* Optimize hero title rendering on mobile */
    .hero-title {
        will-change: auto;
        contain: layout style;
        /* iOS-specific text rendering fixes */
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        /* Disable 3D transforms */
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    .title-line-1,
    .title-line-2 {
        /* iOS blur fixes */
        -webkit-text-stroke: 0;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        perspective: 1000;
        -webkit-perspective: 1000;
    }
    
    .title-line-2 {
        text-shadow: 0 0 5px var(--neon-green);
        /* Remove multiple shadows on mobile for performance */
    }
    
    /* Disable complex animations on mobile */
    * {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0.2s !important;
    }
    
    /* Keep essential transitions */
    .nav-link, .cta-button, .service-card, .area-card {
        transition-duration: 0.2s !important;
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    margin-bottom: 3rem;
}

.subtitle-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    /* text-shadow: 0 0 10px var(--neon-yellow); */ /* REMOVED FOR TESTING */
}

.subtitle-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-style: italic;
}

.hero-rating {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-rating .stars {
    font-size: 1.5rem;
    color: var(--neon-yellow);
    filter: drop-shadow(0 0 10px var(--neon-yellow));
}

.hero-rating .rating-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    /* Optimize rendering */
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.cta-primary {
    background: var(--color-red); /* Neon red */
    color: var(--color-white);
    border-color: var(--color-red);
    padding: .75rem 1.5rem;
    border: none;
    border-radius: .25rem;
    box-shadow: 0 0 6px rgba(255,59,48,0.6);
    transition: box-shadow .2s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(255,59,48,0.8);
}

.cta-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    border-radius: .25rem;
    box-shadow: 0 0 4px rgba(255,255,255,0.4);
    transition: background .2s ease, box-shadow .2s ease;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 8px rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-text small {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.feature-icon {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

/* Review Feature Links */
.review-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: rgba(0, 0, 0, 0.9); /* Increased opacity instead of blur */
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    /* REMOVED backdrop-filter that causes blur on nearby elements */
}

.review-text {
    display: inline-block;
    color: #ffffff;
}

.review-text strong {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Yelp Review Button - Default State */
.yelp-review {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 26, 26, 0.8);
}

.yelp-review .review-text {
    color: rgba(255, 255, 255, 0.9);
}

.yelp-review strong {
    color: #ff4444;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

/* Yelp Review Button - Hover State */
.yelp-review:hover {
    background: rgba(196, 18, 0, 0.9);
    border-color: #ff1a1a;
    box-shadow: 0 0 30px rgba(255, 26, 26, 0.6);
    transform: translateY(-2px);
}

.yelp-review:hover .review-text,
.yelp-review:hover .review-text strong {
    color: #ffffff;
}

/* Google Review Button - Default State */
.google-review {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(66, 133, 244, 0.8);
}

.google-review .review-text {
    color: rgba(255, 255, 255, 0.9);
}

.google-review strong {
    color: #5c9aff;
    text-shadow: 0 0 10px rgba(92, 154, 255, 0.5);
}

/* Google Review Button - Hover State */
.google-review:hover {
    background: rgba(66, 133, 244, 0.9);
    border-color: #4285f4;
    box-shadow: 0 0 30px rgba(66, 133, 244, 0.6);
    transform: translateY(-2px);
}

.google-review:hover .review-text,
.google-review:hover .review-text strong {
    color: #ffffff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .review-feature {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 250px;
        justify-content: center;
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10; /* Ensure it's above other elements */
}

.hero-scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.scroll-arrow {
    font-size: 1.5rem;
    color: var(--neon-green);
}

/* iOS Safari fixes are now consolidated in the NEON TEXT GLOW section above */

/* Hide scroll indicator on mobile devices */
@media (max-width: 768px) {
    .hero-scroll-indicator {
        display: none;
    }
}

/* For tablets and small laptops, make it smaller and adjust position */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-scroll-indicator {
        bottom: 1rem;
    }
    
    .scroll-text {
        font-size: 0.75rem;
    }
    
    .scroll-arrow {
        font-size: 1.25rem;
    }
}

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

/* Services Preview Section */
.services-preview {
    padding: 5rem 0;
    background: #f9f9f9;
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(57, 255, 20, 0.3) 20%,
        rgba(255, 16, 240, 0.3) 50%,
        rgba(0, 255, 255, 0.3) 80%,
        transparent
    );
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.title-accent {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #cc4400; /* Darker orange for better contrast */
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a; /* Darker for better contrast */
}

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

.service-card {
    background: #ffffff;
    border: 2px solid #ddd;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Optimize rendering */
    will-change: transform;
    transform: translateZ(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--neon-green);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(50%);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    filter: grayscale(0%) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #1a1a1a; /* Darker for better contrast */
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: #006600; /* Darker green for accessibility */
    text-shadow: 0 0 8px rgba(0, 102, 0, 0.3);
}

.service-card p {
    color: #333333; /* Darker for better contrast */
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
}

.service-link {
    color: #005500; /* Much darker green for accessibility */
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #003300; /* Even darker on hover */
    text-shadow: 0 0 10px rgba(0, 51, 0, 0.5);
}

/* Service Standards Section */
.service-standards {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.service-standards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 102, 0, 0.3) 20%,
        rgba(57, 255, 20, 0.3) 50%,
        rgba(0, 255, 255, 0.3) 80%,
        transparent
    );
}

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

.standards-intro {
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333333;
}

.standards-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.standards-images {
    position: sticky;
    top: 100px;
}

.image-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.image-stack img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    aspect-ratio: 4/3;
    object-fit: contain; /* Changed from cover to contain to prevent cropping */
    background: #f9f9f9; /* Add background for letterboxing */
    transition: all 0.3s ease;
    position: relative;
}

.image-stack img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    border-color: rgba(57, 255, 20, 0.6);
}

.standards-list {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.standards-subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #006600;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--neon-green);
    padding-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

.standards-table {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.standard-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.standard-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    transform: translateX(5px);
}

.standard-number {
    width: 50px;
    height: 50px;
    background: var(--neon-green);
    color: #000000;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    flex-shrink: 0;
}

.standard-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.standard-content p {
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Service Standards */
@media (max-width: 1024px) {
    .standards-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .standards-images {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .image-stack {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .service-standards {
        padding: 3rem 0;
    }
    
    .standards-header {
        margin-bottom: 2rem;
    }
    
    .standards-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .standards-list {
        padding: 2rem 1.5rem;
    }
    
    .standards-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .standards-table {
        gap: 1rem;
    }
    
    .standard-item {
        grid-template-columns: 45px 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .standard-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .standard-content h4 {
        font-size: 1.1rem;
    }
    
    .standard-content p {
        font-size: 0.9rem;
    }
    
    .image-stack img {
        max-height: 250px;
        border-width: 1px;
    }
}

/* Service Areas Preview Section */
.service-areas-preview {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.service-areas-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 255, 255, 0.3) 20%,
        rgba(57, 255, 20, 0.3) 50%,
        rgba(255, 255, 0, 0.3) 80%,
        transparent
    );
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.area-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.3), transparent);
    transition: left 0.5s ease;
}

.area-card:hover::before {
    left: 100%;
}

/* Primary area card special styling */
.area-card.area-primary {
    border-color: #006600; /* Darker green for accessibility */
    background: linear-gradient(135deg, #f0faf0 0%, #ffffff 100%);
    box-shadow: 0 0 20px rgba(0, 102, 0, 0.2);
}

.area-card.area-primary h3 {
    color: #004400; /* Very dark green */
}

.area-card:hover {
    border-color: #006600;
    box-shadow: 0 0 30px rgba(0, 102, 0, 0.3);
    transform: translateY(-5px);
}

.area-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #004466; /* Much darker blue for accessibility */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.area-card:hover h3 {
    color: #003344; /* Even darker on hover */
    text-shadow: 0 0 10px rgba(0, 51, 68, 0.3);
}

.area-card p {
    color: #333333; /* Darker for better contrast */
    font-size: 0.875rem;
    margin: 0;
    font-weight: 500;
}

/* Homepage Area Selector */
.area-selector-home {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.area-btn {
    background: #ffffff;
    color: #1a1a1a;
    border: 3px solid #e0e0e0;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.125rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.area-btn:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    transform: translateY(-2px);
}

.area-btn.active {
    background: var(--neon-green);
    color: #000;
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
}

.area-btn .area-count {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.area-btn.active .area-count {
    background: rgba(0, 0, 0, 0.2);
}

/* Area Cities Grid */
.area-cities {
    animation: fadeIn 0.3s ease;
}

.area-coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f5f5f5;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .area-selector-home {
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .area-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        flex: 1 1 100%;
        justify-content: center;
    }
    
    .area-btn .area-count {
        font-size: 0.75rem;
        padding: 0.125rem 0.5rem;
    }
    
    /* Alternative: Show all areas on mobile in collapsible sections */
    .service-areas-preview.mobile-compact .area-selector-home {
        display: none;
    }
    
    .service-areas-preview.mobile-compact .area-cities {
        display: none !important;
    }
    
    .mobile-area-sections {
        display: block;
    }
}

/* Hide mobile sections on desktop */
@media (min-width: 769px) {
    .mobile-area-sections {
        display: none;
    }
}

/* Mobile Area Sections */
.mobile-area-detail {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-area-detail[open] {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.mobile-area-summary {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.mobile-area-summary::-webkit-details-marker {
    display: none;
}

.mobile-area-detail[open] .mobile-area-summary {
    background: rgba(57, 255, 20, 0.05);
}

.mobile-area-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
}

.area-badge {
    background: var(--neon-green);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.mobile-cities-grid {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.mobile-city-link {
    display: block;
    padding: 0.75rem;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

.mobile-city-link:hover {
    background: var(--neon-green);
    border-color: var(--neon-green);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(57, 255, 20, 0.3);
}

.mobile-city-soon {
    display: block;
    padding: 0.75rem;
    background: #f0f0f0;
    border: 1px dashed #ccc;
    border-radius: 5px;
    color: #999;
    text-align: center;
    font-style: italic;
}

/* Remove primary card heading special styling */

/* Sticky Call Button */
.sticky-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
    background: #FF0000;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5),
                0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse-red 2s infinite;
}

/* Hide sticky button on service pages on mobile */
@media (max-width: 768px) {
    body.interior-page .sticky-call-button {
        display: none !important;
    }
}

.sticky-call-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.7),
                0 6px 20px rgba(0, 0, 0, 0.4);
}

.sticky-call-button.show {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes pulse-red {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.5),
                    0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.8),
                    0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 20px var(--neon-green),
                    0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px var(--neon-green),
                    0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Critical CSS for above-the-fold content */
.service-page h1:first-of-type {
    /* Optimize first paint */
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* Footer Styles */
.site-footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--neon-green);
    margin-top: 5rem;
    padding: 3rem 0 2rem;
}

/* Footer Contrast Improvements for PageSpeed Insights */
.footer-section p {
    color: #cccccc !important;
}

.service-area p {
    color: #cccccc !important;
}

.service-area strong {
    color: #ffffff !important;
}

.footer-area-prompt p {
    color: #cccccc !important;
}

.city-coming-soon {
    color: #aaaaaa !important;
    opacity: 0.8;
}

.contact-info p {
    color: #cccccc !important;
}

.footer-bottom p {
    color: #cccccc !important;
}

.area-select {
    color: #ffffff !important;
    background-color: #2a2a2a !important;
}

.area-select option {
    background-color: #2a2a2a !important;
    color: #ffffff !important;
}

.area-tab {
    color: #cccccc !important;
}

.area-tab.active {
    color: #000000 !important;
}

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

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

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow);
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.footer-areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

/* Footer Area Selector */
.footer-area-selector {
    margin-bottom: 1rem;
}

.area-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
}

.area-select:hover,
.area-select:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
    outline: none;
}

.area-select option {
    background: #1a1a1a; /* Lighter than pure black for better readability */
    color: #ffffff;
    padding: 0.5rem;
    font-size: 1rem;
}

/* Better contrast for dropdown on Chrome/Safari */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .area-select {
        background-color: #1a1a1a;
        color: #ffffff;
    }
    
    .area-select option {
        background-color: #2a2a2a;
        color: #ffffff;
    }
    
    .area-select option:hover {
        background-color: var(--neon-green);
        color: var(--bg-dark);
    }
}

.footer-cities-container {
    min-height: 200px;
    position: relative;
}

.footer-cities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    animation: fadeIn 0.3s ease;
}

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

.footer-cities li {
    margin-bottom: 0.5rem;
}

.footer-cities a {
    display: block;
    padding: 0.25rem 0;
    transition: all 0.2s ease;
}

.footer-cities a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    transform: translateX(5px);
}

.city-coming-soon {
    color: var(--text-secondary);
    opacity: 0.6;
    font-style: italic;
}

.footer-area-prompt {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
}

.footer-area-success {
    text-align: center;
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 5px;
}

/* Footer Area Tabs (Mobile) */
.footer-area-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.area-tab {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.875rem;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.area-tab:hover {
    border-color: var(--neon-green);
    color: var(--text-primary);
}

.area-tab.active {
    background: var(--neon-green);
    color: var(--bg-dark);
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.city-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    font-weight: 700;
}

.area-tab.active .city-count {
    background: rgba(0, 0, 0, 0.2);
}

/* Show/hide desktop and mobile versions */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: flex;
    }
    
    .footer-cities {
        grid-template-columns: 1fr;
    }
    
    .footer-cities-container {
        min-height: 150px;
    }
    
    /* Make first tab visually prominent */
    .area-tab:first-child {
        background: rgba(57, 255, 20, 0.1);
    }
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-link {
    color: #ff6666; /* Lighter pink for better contrast on dark background */
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ffaaaa;
    text-shadow: 0 0 10px rgba(255, 170, 170, 0.5);
}

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

.footer-bottom p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.tagline {
    font-style: italic;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.footer-legal {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-review-links {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-review-links p {
    margin: 0;
    color: var(--neon-yellow);
}

.review-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.review-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.google-review:hover {
    color: #4285f4;
    text-shadow: 0 0 10px #4285f4;
}

.yelp-review:hover {
    color: #ff1a1a;
    text-shadow: 0 0 10px #ff1a1a;
}

.legal-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.separator {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Contact Page Styles */
.contact-hero {
    padding: 2rem 0 5rem;
    min-height: calc(100vh - 200px);
    background: #ffffff;
    position: relative;
}

body.interior-page .contact-hero {
    background: #ffffff;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 16, 240, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(57, 255, 20, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-title {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title .title-accent {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neon-orange);
    text-shadow: 0 0 20px var(--neon-orange);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.page-title .title-main {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

body.interior-page .page-title .title-main {
    color: #000000;
    text-shadow: none;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-primary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.phone-priority {
    border: 3px solid var(--neon-red, #FF0000);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.phone-priority::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    animation: pulse-red 3s ease-in-out infinite;
}

@keyframes pulse-red {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.email-secondary {
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.contact-label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.phone-icon-large {
    font-size: 3rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.phone-number-large {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #FF0000;
    text-shadow: 
        0 0 20px #FF0000,
        0 0 40px #FF0000,
        0 0 60px #FF0000,
        0 0 80px #FF0000;
    letter-spacing: 3px;
    animation: neon-pulse-red 2s ease-in-out infinite;
}

@keyframes neon-pulse-red {
    0%, 100% { 
        text-shadow: 
            0 0 20px #FF0000,
            0 0 40px #FF0000,
            0 0 60px #FF0000,
            0 0 80px #FF0000;
    }
    50% { 
        text-shadow: 
            0 0 30px #FF0000,
            0 0 50px #FF0000,
            0 0 70px #FF0000,
            0 0 100px #FF0000;
    }
}

.phone-display:hover .phone-number-large {
    transform: scale(1.05);
}

.email-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-icon {
    font-size: 2rem;
}

.email-address {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue);
    letter-spacing: 1px;
}

.email-display:hover .email-address {
    text-shadow: 0 0 30px var(--neon-blue),
                 0 0 50px var(--neon-blue);
}

.contact-note {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

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

.info-card {
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    transform: translateY(-5px);
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.info-detail {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-style: italic;
}

.service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.area-tag {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: var(--neon-green);
    color: var(--bg-dark);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px var(--neon-green);
    transition: all 0.3s ease;
}

.area-tag:hover {
    box-shadow: 0 0 20px var(--neon-green);
    transform: scale(1.05);
}

.contact-bottom {
    text-align: center;
    padding: 3rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.tagline-large {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 30px var(--neon-pink);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.family-note {
    color: var(--text-secondary);
    font-style: italic;
}

/* Single Page Styles */
.page-content {
    padding: 2rem 0 5rem;
    min-height: calc(100vh - 200px);
}

body.interior-page .page-content {
    background: #f9f9f9;
}

.page-content .page-title {
    text-align: center;
    margin-bottom: 3rem;
}

.page-content .title-main {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    line-height: 1.8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.content-wrapper h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #006600;
    margin: 2.5rem 0 1.5rem;
    text-transform: uppercase;
    border-bottom: 3px solid var(--neon-green);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.content-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #cc4400;
    margin: 2rem 0 1rem;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    color: #333333;
    font-size: 1.05rem;
}

.content-wrapper ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.content-wrapper ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.content-wrapper li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.content-wrapper ul li {
    padding-left: 2rem;
    position: relative;
    color: #333333;
}

.content-wrapper ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.content-wrapper strong {
    color: #8B0000; /* Dark red for much better contrast */
    font-weight: 700;
}

.content-wrapper a {
    color: #004466; /* Much darker blue for accessibility */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.content-wrapper a:hover {
    color: #003300; /* Dark green on hover */
    text-shadow: 0 0 5px rgba(0, 51, 0, 0.3);
}

.content-wrapper blockquote {
    margin: 2rem 0;
    padding: 2rem;
    background: #f0faf0;
    border-left: 5px solid var(--neon-green);
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-wrapper blockquote p {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: #000000; /* Pure black for maximum contrast */
    font-weight: 600;
}

.content-wrapper blockquote h3 {
    color: #003300; /* Very dark green */
    font-size: 1.75rem;
    margin: 1rem 0;
}

.content-wrapper blockquote strong {
    color: #000000; /* Pure black for strong text in blockquotes */
}

.content-wrapper hr {
    margin: 3rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 102, 0, 0.5) 20%,
        rgba(57, 255, 20, 0.5) 50%,
        rgba(0, 102, 204, 0.5) 80%,
        transparent
    );
}

/* About Us Page Styles */
.about-hero {
    padding: 2rem 0 5rem;
    background: #f9f9f9;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333333;
    max-width: 800px;
    margin: 0 auto;
}

.section-heading {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    color: #22aa22;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* License Cards */
.credentials-section {
    margin-bottom: 5rem;
}

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

.license-card {
    background: #ffffff;
    border: 2px solid #ffcc00;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.license-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent,
        var(--neon-yellow) 50%,
        transparent
    );
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.license-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.license-type {
    color: #666666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.license-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #ff8800;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 5rem;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--neon-pink) 20%,
        var(--neon-green) 50%,
        var(--neon-blue) 80%,
        transparent
    );
}

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

.review-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.review-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
    transform: translateY(-5px);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff8800;
}

.review-text {
    color: #333333;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.reviewer {
    color: #ff6600;
    font-weight: 600;
    text-align: right;
}

/* Values Section */
.values-section {
    margin-bottom: 4rem;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Service Page Styles */
.service-page {
    padding: 2rem 0 5rem;
    background: #f9f9f9;
    /* Optimize rendering */
    content-visibility: auto;
    contain: layout style paint;
}

.service-page .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.service-content {
    background: #ffffff;
    padding: 3rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-height: 600px; /* Prevent layout shift */
}

.service-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem); /* Responsive font size */
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    /* Reserve space to prevent reflow */
    min-height: 1.2em;
}

.service-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #006600;
    margin: 2.5rem 0 1.5rem;
    text-transform: uppercase;
    border-bottom: 3px solid var(--neon-green);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #cc4400;
    margin: 2rem 0 1rem;
}

.service-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333333;
    font-size: 1.05rem;
    /* Optimize text rendering */
    text-rendering: optimizeSpeed;
    font-feature-settings: "kern" 1;
}

.service-content ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.service-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    padding-left: 2rem;
    position: relative;
    color: #333333;
}

.service-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.service-content strong {
    color: #8B0000; /* Dark red for much better contrast */
    font-weight: 700;
}

.service-content blockquote {
    margin: 2rem 0;
    padding: 2rem;
    background: #f0faf0;
    border-left: 5px solid var(--neon-green);
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-content blockquote p {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: #000000; /* Pure black for maximum contrast */
    font-weight: 600;
}

.service-content blockquote h3 {
    color: #003300; /* Very dark green */
    font-size: 1.75rem;
    margin: 1rem 0;
}

.service-content hr {
    margin: 3rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 102, 0, 0.5) 20%,
        rgba(57, 255, 20, 0.5) 50%,
        rgba(0, 102, 204, 0.5) 80%,
        transparent
    );
}

/* CTA Banner */
.cta-banner {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f0faf0 0%, #e8f8e8 100%);
    border: 3px solid var(--neon-green);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
    position: relative;
    overflow: hidden;
    /* Improve rendering performance */
    will-change: transform;
    transform: translateZ(0);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
    /* Disable animation on mobile for performance */
}

@media (min-width: 769px) {
    .cta-banner::before {
        animation: pulse-green 4s ease-in-out infinite;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: #000000; /* Pure black for maximum contrast */
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.cta-banner p {
    margin-bottom: 2rem;
    color: #1a1a1a; /* Very dark gray */
    font-size: 1.125rem;
}

.cta-button.cta-primary {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
    letter-spacing: 1px;
}

.cta-tagline {
    margin-top: 1rem;
    font-style: italic;
    color: #003300; /* Very dark green for better contrast */
    font-weight: 700;
    font-size: 1.125rem;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
    min-height: 500px; /* Prevent layout shift */
}

.sidebar-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 150px; /* Prevent layout shift */
}

.sidebar-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.15);
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid var(--neon-green);
    padding-bottom: 0.75rem;
}

.contact-card {
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0faf0 100%);
}

.contact-card h3 {
    color: #006600;
    border-bottom: 3px solid var(--neon-green);
}

.phone-link,
.email-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.phone-link {
    background: var(--neon-green);
    color: #1a1a1a;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.phone-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.6);
}

.phone-icon,
.email-icon {
    font-size: 1.5rem;
}

.email-link {
    border-color: #004466; /* Much darker blue */
    color: #004466;
    background: #f0f8ff;
}

.email-link:hover {
    background: #004466;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 68, 102, 0.5);
}

.services-list {
    list-style: none;
    padding: 0;
    /* Reserve minimum height to prevent layout shift */
    min-height: 300px;
}

.services-list li {
    margin-bottom: 0.5rem;
}

.services-list a {
    color: #333333;
    text-decoration: none;
    display: block;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: #f9f9f9;
}

.services-list a:hover {
    background: var(--neon-green);
    color: #1a1a1a;
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
    transform: translateX(5px);
}

.trust-badges h3 {
    color: #006600;
}

.badge-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.badge {
    padding: 0.75rem;
    background: #f0faf0;
    border: 2px solid var(--neon-green);
    border-radius: 5px;
    color: #006600;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

.badge:hover {
    background: var(--neon-green);
    color: #1a1a1a;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

/* Area Links in Service Pages */
.area-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.area-links a {
    display: block;
    padding: 0.5rem;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    color: #333333;
    text-decoration: none;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 5px;
}

.area-links a:hover {
    background: var(--neon-green);
    color: #1a1a1a;
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

/* Location Page Styles */
.location-page {
    padding: 0 0 5rem;
    background: #f9f9f9;
}

.location-page .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.location-content {
    background: #ffffff;
    padding: 3rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.location-content h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #ff8800;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.location-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #22aa22;
    margin: 2.5rem 0 1.5rem;
    text-transform: uppercase;
}

.location-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ff6600;
    margin: 2rem 0 1rem;
}

.location-content strong {
    color: #8B0000; /* Dark red for much better contrast */
    font-weight: 600;
}

.location-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.location-content ul li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: #333333;
}

.location-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #22aa22;
    font-size: 1.5rem;
}

.location-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 136, 0, 0.1);
    border-left: 4px solid #cc4400; /* Darker orange for accessibility */
    font-style: italic;
    color: #1a1a1a; /* Much darker text */
}

.location-content blockquote p {
    margin-bottom: 0.5rem;
    color: #1a1a1a; /* Ensure dark text in blockquotes */
}

.location-content p {
    color: #333333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.location-content hr {
    margin: 3rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--neon-pink) 20%,
        var(--neon-green) 50%,
        var(--neon-blue) 80%,
        transparent
    );
}

/* Location Sidebar */
.location-sidebar {
    position: sticky;
    top: 100px;
}

.cta-card {
    background: #ffffff;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    text-align: center;
}

.phone-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem;
    margin: 1rem 0;
    background: #FF0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.phone-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.7);
}

.phone-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phone-text strong {
    font-size: 1.125rem;
    letter-spacing: 1px;
}

.phone-text span {
    font-size: 1.25rem;
}

.availability {
    color: #22aa22;
    font-weight: 600;
    margin-top: 1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: #333333;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.city-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.city-links a {
    display: block;
    padding: 0.5rem;
    background: rgba(34, 170, 34, 0.1);
    border: 1px solid #22aa22;
    color: #333333;
    text-decoration: none;
    text-align: center;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.city-links a:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--neon-green);
}

/* Service Links in Location Pages */
.service-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.service-links a {
    display: block;
    padding: 0.75rem 1rem;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    color: #333333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.service-links a:hover {
    background: var(--neon-green);
    color: #1a1a1a;
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
    transform: translateX(5px);
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .service-page .container,
    .location-page .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-sidebar,
    .location-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

/* Location Page Service Highlights */
.location-services-box {
    background: linear-gradient(135deg, #f0faf0 0%, #e8f8e8 100%);
    border: 3px solid var(--neon-green);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.location-services-box h3 {
    color: #006600;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.location-services-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-services-box li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 102, 0, 0.1);
}

.location-services-box li:last-child {
    border-bottom: none;
}

.location-services-box a {
    color: #003300; /* Very dark green for accessibility */
    text-decoration: none;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.location-services-box a:hover {
    color: #001a00; /* Almost black green */
    text-shadow: 0 0 5px rgba(0, 26, 0, 0.3);
    transform: translateX(5px);
}

.location-services-box .arrow {
    font-size: 1.2rem;
}

/* Image optimization with aspect-ratio to prevent layout shifts */
img {
    max-width: 100%;
    height: auto;
    display: block;
    aspect-ratio: attr(width) / attr(height);
}

/* Optimize Cloudflare images */
img[src*="imagedelivery.net"] {
    content-visibility: auto;
    contain-intrinsic-size: 350px;
}

/* About Us Page Custom Styles */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Ensure consistent section spacing */
.about-content > hr {
    margin: 4rem 0;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #006600;
    margin: 3rem 0 2rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--neon-green);
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #ff6600;
    margin: 2rem 0 1rem;
    text-align: left;
}

/* Style the emoji headers */
.about-content h3:has(📆),
.about-content h3:has(📍),
.about-content h3:has(🎯),
.about-content h3:has(✓) {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 2rem 0 1rem;
}

.about-content h3 em {
    display: block;
    font-size: 1.25rem;
    color: #666;
    font-weight: normal;
    margin-top: 0.5rem;
}

.about-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(57, 255, 20, 0.5) 20%,
        rgba(255, 102, 0, 0.5) 50%,
        rgba(0, 153, 204, 0.5) 80%,
        transparent
    );
    margin: 3rem 0;
}

/* Improve image styling */
.about-content img {
    display: block;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin: 2rem auto;
    border: 3px solid var(--neon-green);
}

/* Style lists with proper spacing and alignment */
.about-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-content ul li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.about-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-green);
}

/* Better table styling */
.about-content table {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.about-content table th {
    background: #006600;
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.about-content table tr:last-child td {
    border-bottom: none;
}

.about-content table tr:hover {
    background: #f9f9f9;
}

/* Style customer testimonial blockquotes */
.about-content blockquote {
    background: #f9f9f9;
    border-left: 4px solid var(--neon-green);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-style: italic;
    position: relative;
}

.about-content blockquote p {
    margin: 0 0 0.5rem 0;
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.6;
}

.about-content blockquote p:last-child {
    margin-bottom: 0;
    font-style: normal;
    text-align: right;
    color: #666;
    font-size: 0.95rem;
}

/* Special CTA blockquote styling */
.about-content blockquote:has(h3) {
    background: linear-gradient(135deg, #f0faf0 0%, #e8f8e8 100%);
    border: 3px solid var(--neon-green);
    border-left: 3px solid var(--neon-green);
    padding: 2.5rem;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
    font-style: normal;
    text-align: center;
    transition: all 0.3s ease;
    margin: 3rem auto;
}

.about-content blockquote:has(h3):hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.5);
}

.about-content blockquote h3 {
    color: #006600;
    font-size: 2rem;
    margin: 0 0 1rem 0;
    text-align: center;
}

.about-content blockquote h3 a {
    color: #006600;
    text-decoration: none;
}

/* Ensure proper section alignment */
.about-content > h2,
.about-content > h3 {
    clear: both;
}

/* Consistent paragraph spacing */
.about-content > p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #333333;
}

/* Style the bottom quote */
.about-content > blockquote:last-child {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    border-left: 5px solid #ff6600;
    margin: 4rem 0 2rem;
    padding: 2rem;
    font-size: 1.1rem;
}

/* Center the tagline after CTA */
.about-content h2 + p,
.about-content h3 + p strong {
    display: block;
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin: 1rem auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-content {
        padding: 0 1rem;
    }
    
    .about-content img {
        max-width: 100%;
    }
    
    .about-content h2 {
        font-size: 2rem;
        margin: 2rem 0 1.5rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-content h3:has(📞) {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
    
    .about-content table {
        font-size: 0.9rem;
    }
    
    .about-content table th,
    .about-content table td {
        padding: 0.75rem;
    }
    
    /* Stack emoji headers on mobile */
    .about-content h3:has(📆),
    .about-content h3:has(📍),
    .about-content h3:has(🎯),
    .about-content h3:has(✓) {
        font-size: 1.25rem;
    }
    
    .about-content ul li {
        padding-left: 2rem;
        font-size: 1rem;
    }
    
    .about-content ul li::before {
        font-size: 1.25rem;
    }
    
    .about-content blockquote {
        padding: 1rem 1.5rem;
        margin: 1rem 0;
    }
    
    .about-content blockquote:has(h3) {
        padding: 2rem 1.5rem;
    }
    
    .about-content blockquote h3 {
        font-size: 1.5rem;
    }
}

/* Review Page Styles */
.reviews-section {
    margin: 3rem 0;
}

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

.review-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info strong {
    font-size: 1.125rem;
    color: #333;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #666;
}

.review-logo {
    width: 20px;
    height: 20px;
}

.review-rating {
    font-size: 1.25rem;
}

.review-content {
    margin: 1rem 0;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.review-date {
    font-size: 0.875rem;
    color: #999;
    text-align: right;
}

.review-links {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 10px;
}

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

.review-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.google-button {
    border-color: #4285f4;
    color: #4285f4;
}

.google-button:hover {
    background: #4285f4;
    color: white;
}

.yelp-button {
    border-color: #ff1a1a;
    color: #ff1a1a;
}

.yelp-button:hover {
    background: #ff1a1a;
    color: white;
}

/* Preload critical fonts */
@media print {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-title {
        font-size: clamp(3rem, 10vw, 5rem);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-number-large {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .email-address {
        font-size: 1.25rem;
    }
    
    .tagline-large {
        font-size: 1.75rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        padding: 2rem;
    }
    
    .license-cards {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .service-page .container {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .service-content {
        padding: 2rem;
    }
    
    .service-content h1 {
        font-size: 2rem;
    }
    
    .location-page .container {
        grid-template-columns: 1fr;
    }
    
    .location-sidebar {
        position: static;
    }
    
    .location-content {
        padding: 2rem;
    }
    
    .location-content h1 {
        font-size: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .area-card.primary {
        grid-column: span 2;
    }
    
    .area-card h3 {
        font-size: 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* About Page Image Fixes - Prevent cropping */
.about-content img,
.about-hero img {
    max-width: 100%;
    height: auto;
    border: 3px solid var(--neon-green);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    object-fit: contain !important; /* Show full image without cropping */
    object-position: center;
    display: block;
    margin: 1rem auto;
}

/* Ensure images are not constrained by containers */
.about-content p img,
.about-content figure img,
.about-content .image-wrapper img {
    position: static !important;
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 600px;
}

/* Remove any aspect ratio constraints */
.about-content .image-wrapper,
.about-content figure {
    overflow: visible !important;
    padding-bottom: 0 !important;
    height: auto !important;
}

/* Mobile adjustments for images */
@media (max-width: 768px) {
    .about-content img,
    .about-hero img {
        max-height: 400px;
    }
}