/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* CSS Variables for Colors */
:root {
    --primary-blue: #87CEEB;    /* Light blue */
    --secondary-green: #90EE90;  /* Light green */
    --dark-blue: #4682B4;       /* Darker blue for text/accents */
    --dark-green: #6AB76A;      /* Darker green for accents */
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.header .container {
    position: relative;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--dark-blue);
}

.phone-link {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.menu-toggle {
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    display: block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-size: 24px;
    font-weight: normal;
    border-radius: 6px;
    text-align: center;
    min-width: 50px;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

.dropdown.active .menu-toggle i,
.dropdown.hover .menu-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-radius: 12px;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    max-height: 450px;
    overflow-y: auto;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Desktop Dropdown Menu Text Colors */
.dropdown-menu a {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    color: var(--primary);
    background: var(--primary-light);
    padding-left: 24px;
}

/* Desktop Collapsible Menu Colors */
@media (min-width: 769px) {
    .collapsible-toggle {
        color: var(--text-dark) !important;
    }
    
    .collapsible-toggle:hover {
        color: var(--primary) !important;
    }
    
    .county-toggle {
        color: var(--primary) !important;
        background: var(--primary-light) !important;
    }
    
    .county-toggle:hover {
        background: var(--primary-light) !important;
        color: var(--primary) !important;
    }
    
    .dropdown-menu .collapsible-submenu li a {
        color: var(--text-light) !important;
    }
    
    .dropdown-menu .collapsible-submenu li a:hover {
        color: var(--secondary-green) !important;
    }
}

.dropdown:hover .dropdown-menu,
.dropdown.hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    transform: none;
    padding-left: 24px;
}

/* County Headers */
.county-header {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px 8px 20px;
    margin-top: 8px;
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
}

.county-header:first-child {
    margin-top: 0;
}

/* Dropdown Dividers */
.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 16px;
    opacity: 0.3;
}

/* City Links Styling */
.dropdown-menu a[href*="-appliance-repair.html"] {
    padding-left: 32px;
    font-size: 0.95em;
    color: var(--text-light);
    border-left: 3px solid transparent;
}

.dropdown-menu a[href*="-appliance-repair.html"]:hover {
    background-color: var(--secondary-light);
    color: var(--secondary-green);
    border-left-color: var(--secondary-green);
    padding-left: 36px;
}






/* Simple Bold White Text Link */
.specialty-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.specialty-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
    color: var(--white);
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--white);
    color: var(--dark-blue);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-blue);
    transform: translateY(-2px);
}



/* About Intro Section */
.about-intro {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

/* Custom Appliance Icons */

/* Washing Machine */
.washer-icon .washer-body {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 8px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.washer-icon .washer-door {
    width: 35px;
    height: 35px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: 7px;
    background: rgba(135, 206, 235, 0.1);
}

.washer-icon .washer-drum {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-blue);
    border-top: 2px solid transparent;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 6px;
    animation: spin 2s linear infinite;
}

/* Dryer */
.dryer-icon .dryer-body {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 8px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.dryer-icon .dryer-door {
    width: 35px;
    height: 35px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: 7px;
    background: rgba(144, 238, 144, 0.1);
}

.dryer-icon .dryer-vent {
    width: 15px;
    height: 3px;
    background: var(--secondary-green);
    position: absolute;
    top: 15px;
    left: 10px;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite alternate;
}

/* Refrigerator */
.fridge-icon .fridge-body {
    width: 45px;
    height: 55px;
    background: #fff;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.fridge-icon .fridge-door {
    width: 43px;
    height: 35px;
    background: rgba(135, 206, 235, 0.1);
    position: absolute;
    top: 1px;
    left: 1px;
    border-radius: 4px;
}

.fridge-icon .fridge-handle {
    width: 2px;
    height: 15px;
    background: #ddd;
    position: absolute;
    top: 10px;
    right: 3px;
    border-radius: 1px;
}

.fridge-icon .fridge-freezer {
    width: 43px;
    height: 18px;
    background: rgba(144, 238, 144, 0.1);
    position: absolute;
    bottom: 1px;
    left: 1px;
    border-radius: 0 0 4px 4px;
}

/* Microwave */
.microwave-icon .microwave-body {
    width: 55px;
    height: 40px;
    background: #fff;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.microwave-icon .microwave-door {
    width: 35px;
    height: 30px;
    background: rgba(135, 206, 235, 0.1);
    position: absolute;
    top: 5px;
    left: 3px;
    border-radius: 2px;
}

.microwave-icon .microwave-window {
    width: 25px;
    height: 20px;
    background: rgba(0,0,0,0.1);
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 2px;
}

.microwave-icon .microwave-buttons {
    width: 12px;
    height: 25px;
    background: #f0f0f0;
    position: absolute;
    top: 7px;
    right: 3px;
    border-radius: 2px;
}

.microwave-icon .microwave-handle {
    width: 3px;
    height: 20px;
    background: #ddd;
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
}

/* Oven */
.oven-icon .oven-body {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.oven-icon .oven-door {
    width: 45px;
    height: 40px;
    background: rgba(135, 206, 235, 0.1);
    position: absolute;
    top: 5px;
    left: 2.5px;
    border-radius: 4px;
}

.oven-icon .oven-window {
    width: 35px;
    height: 20px;
    background: rgba(255, 165, 0, 0.2);
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 2px;
    animation: flicker 2s ease-in-out infinite alternate;
}

.oven-icon .oven-handle {
    width: 25px;
    height: 3px;
    background: #ddd;
    position: absolute;
    bottom: 8px;
    left: 10px;
    border-radius: 2px;
}

.oven-icon .oven-racks {
    width: 30px;
    height: 1px;
    background: #ccc;
    position: absolute;
    bottom: 20px;
    left: 8px;
    border-radius: 1px;
    box-shadow: 0 6px 0 #ccc, 0 12px 0 #ccc;
}

/* Stove/Range */
.stove-icon .stove-body {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
    gap: 4px;
}

.stove-icon .stove-burner {
    width: 15px;
    height: 15px;
    border: 2px solid #333;
    border-radius: 50%;
    background: rgba(255, 69, 0, 0.2);
    animation: flicker 1.8s ease-in-out infinite alternate;
}

.stove-icon .stove-burner:nth-child(2) {
    animation-delay: 0.5s;
}

.stove-icon .stove-burner:nth-child(3) {
    animation-delay: 1s;
}

.stove-icon .stove-burner:nth-child(4) {
    animation-delay: 1.5s;
}

/* Freezer (Chest Style) */
.freezer-icon .freezer-body {
    width: 55px;
    height: 40px;
    background: #fff;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.freezer-icon .freezer-lid {
    width: 53px;
    height: 15px;
    background: rgba(173, 216, 230, 0.3);
    position: absolute;
    top: 1px;
    left: 1px;
    border-radius: 4px 4px 2px 2px;
    animation: pulse 3s ease-in-out infinite alternate;
}

.freezer-icon .freezer-handle {
    width: 15px;
    height: 3px;
    background: #ddd;
    position: absolute;
    top: 6px;
    right: 10px;
    border-radius: 2px;
}

.freezer-icon .freezer-door {
    width: 50px;
    height: 35px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    position: relative;
}

.freezer-icon .freezer-coils {
    width: 45px;
    height: 2px;
    background: #888;
    position: absolute;
    bottom: 5px;
    left: 2px;
    border-radius: 1px;
    box-shadow: 0 -4px 0 #888, 0 -8px 0 #888;
    opacity: 0.6;
}

/* Garbage Disposal */
.disposal-icon .disposal-body {
    width: 40px;
    height: 55px;
    position: relative;
}

.disposal-icon .disposal-top {
    width: 40px;
    height: 15px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    position: absolute;
    top: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.disposal-icon .disposal-unit {
    width: 30px;
    height: 40px;
    background: linear-gradient(to bottom, #f0f0f0, #ddd);
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 15px;
    left: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: vibrate 0.1s linear infinite alternate;
}

/* Dishwasher */
.dishwasher-icon .dishwasher-body {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dishwasher-icon .dishwasher-door {
    width: 45px;
    height: 40px;
    background: rgba(135, 206, 235, 0.1);
    position: absolute;
    top: 5px;
    left: 2.5px;
    border-radius: 4px;
}

.dishwasher-icon .dishwasher-handle {
    width: 20px;
    height: 2px;
    background: #ddd;
    position: absolute;
    top: 8px;
    left: 12px;
    border-radius: 1px;
}

.dishwasher-icon .dishwasher-racks {
    width: 35px;
    height: 2px;
    background: #ccc;
    position: absolute;
    bottom: 15px;
    left: 7px;
    border-radius: 1px;
}

.dishwasher-icon .dishwasher-racks::after {
    content: '';
    width: 35px;
    height: 2px;
    background: #ccc;
    position: absolute;
    top: 8px;
    border-radius: 1px;
}

/* Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

@keyframes flicker {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

@keyframes vibrate {
    from { transform: translateX(-1px); }
    to { transform: translateX(1px); }
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card ul {
    list-style: none;
    color: var(--text-light);
}

.service-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
}

/* Google Reviews Section */
.google-reviews {
    padding: 80px 0;
    background: var(--white);
}

.google-reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    font-weight: 600;
}

.google-reviews-widget {
    margin-bottom: 3rem;
}

/* Manual Google Reviews Styling (fallback) */
.manual-google-reviews {
    max-width: 800px;
    margin: 0 auto;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.overall-rating .stars {
    display: flex;
    gap: 0.25rem;
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-text {
    color: var(--text-dark);
    font-weight: 500;
}

.view-all-link {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--primary-blue);
}

.reviews-placeholder {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.reviews-placeholder p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.reviews-placeholder ol {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    color: var(--text-light);
}

.reviews-placeholder a {
    color: var(--dark-blue);
    text-decoration: none;
}

.reviews-placeholder a:hover {
    text-decoration: underline;
}

/* Leave Review CTA */
.leave-review-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    border-radius: 12px;
    margin-top: 3rem;
    color: var(--white);
}

.leave-review-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.leave-review-cta .btn {
    background: var(--white);
    color: var(--dark-blue);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.leave-review-cta .btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Elfsight Widget Customizations */
.elfsight-app-google-reviews {
    margin: 2rem 0;
}

/* Override widget styles to match our theme */
.elfsight-widget-google-reviews {
    --reviews-background: var(--white);
    --reviews-text-color: var(--text-dark);
    --reviews-primary-color: var(--primary-blue);
}

/* LG Compressor Page Styles */

/* Warranty Coverage Section */
.warranty-coverage {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.warranty-coverage h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 4rem;
    font-weight: 600;
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.warranty-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.warranty-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.warranty-card.extended {
    border: 2px solid #32cd32;
    background: rgba(50, 205, 50, 0.2);
}

.warranty-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.warranty-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.lg-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.problem-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Cost Savings Section */
.cost-savings {
    padding: 80px 0;
    background: var(--light-gray);
}

.cost-savings h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    font-weight: 600;
}

.savings-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.option {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.option.affordable {
    border: 3px solid var(--secondary-green);
    transform: scale(1.05);
}

.option.expensive {
    border: 3px solid #ff6b6b;
}

.option h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.option .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.option.affordable .price {
    color: var(--dark-green);
}

.option.expensive .price {
    color: #ff6b6b;
}

.option ul {
    list-style: none;
    text-align: left;
}

.option li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.option.affordable li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
}

.option.expensive li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--white);
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    font-weight: 600;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.step h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* LG CTA Section */
.lg-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    color: var(--white);
    text-align: center;
}

.lg-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.lg-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.emergency-note {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-note p {
    margin: 0;
    font-size: 1rem;
    color: var(--white);
}

/* LG Specialty Section - Main Page */
.lg-specialty {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c5530 0%, #1a3d3d 100%);
    border-top: 5px solid var(--secondary-green);
    border-bottom: 5px solid var(--primary-blue);
}

.lg-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 3rem;
    color: var(--white);
}

.lg-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.lg-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.lg-benefits {
    list-style: none;
    padding: 0;
}

.lg-benefits li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.btn-lg-special {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--secondary-green), #32cd32);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-lg-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn-lg-special:hover::before {
    left: 100%;
}

.btn-lg-special:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.3);
}

.btn-lg-special i:first-child {
    font-size: 1.5rem;
}

.btn-lg-special div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-lg-special strong {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.btn-lg-special span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-lg-special i:last-child {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-lg-special:hover i:last-child {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--light-gray);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
}

.feature i {
    font-size: 2rem;
    color: var(--dark-blue);
    width: 50px;
    text-align: center;
}

.feature span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.service-areas h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-areas p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.areas-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.area i {
    color: var(--dark-blue);
    font-size: 1.5rem;
}

/* Service Area Map */
.service-map {
    margin-top: 4rem;
    text-align: center;
}

.service-map h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.map-container {
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 3px solid var(--primary-blue);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
}

.map-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    color: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 600;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--white);
    width: 50px;
}

.contact-item h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.booking-button-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    text-align: center;
}

.booking-button-container h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.booking-button-container p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hcp-button {
    font-size: 1.2rem !important;
    padding: 1.2rem 3rem !important;
    margin: 2rem 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    transition: all 0.3s ease !important;
}

.hcp-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-hover) !important;
}

.booking-note {
    margin-top: 2rem !important;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 1rem !important;
}

.booking-note a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
}

.booking-note a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 2rem;
    justify-content: end;
}

.footer h4 {
    color: var(--secondary-green);
    margin-bottom: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-blue);
}

/* Zip Codes Styling */
.zip-codes {
    font-size: 0.8em;
    color: rgba(255,255,255,0.65);
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-top: 2px;
    font-style: italic;
}

.zip-codes:hover {
    opacity: 1;
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 20px 0 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-brand p {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer h4 {
        margin-bottom: 0.4rem;
    }
    
    .footer li {
        margin-bottom: 0.2rem;
    }
    
    /* Mobile Breadcrumbs */
    .breadcrumbs {
        padding: 8px 0;
        font-size: 0.8rem;
    }
    
    .breadcrumbs ol {
        flex-wrap: wrap;
    }
    
    /* Mobile Neighborhoods */
    .neighborhoods {
        padding: 40px 0;
    }
    
    .neighborhoods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .neighborhood-card {
        padding: 1.5rem;
    }
    
    /* Mobile Why Local */
    .why-local {
        padding: 40px 0;
    }
    
    .why-local h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .local-advantage {
        padding: 1.5rem;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
    
    /* Mobile Custom Icons */
    .personal-service-icon,
    .fast-response-icon,
    .better-value-icon,
    .community-investment-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .personal-service-icon::before {
        top: 18px;
        left: 22px;
        width: 16px;
        height: 16px;
    }
    
    .personal-service-icon::after {
        top: 34px;
        left: 18px;
        width: 24px;
        height: 12px;
    }
    
    .fast-response-icon::before {
        top: 22px;
        left: 16px;
        border-left: 14px solid var(--white);
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
    
    .fast-response-icon::after {
        top: 25px;
        left: 30px;
        border-left: 10px solid var(--white);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }
    
    .better-value-icon::before {
        top: 13px;
        left: 18px;
        width: 24px;
        height: 24px;
    }
    
    .better-value-icon::after {
        top: 22px;
        left: 28px;
        font-size: 14px;
    }
    
    .community-investment-icon::before {
        top: 32px;
        left: 14px;
        width: 10px;
        height: 16px;
    }
    
    .community-investment-icon::after {
        top: 24px;
        left: 26px;
        width: 10px;
        height: 24px;
    }
    
    .community-investment-icon .building-3 {
        top: 28px;
        right: 14px;
        width: 10px;
        height: 20px;
    }
    
    /* Mobile FAQ */
    .faq {
        padding: 40px 0;
    }
    
    .faq h2 {
        margin-bottom: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(0, 150, 255, 0.05);
    padding: 10px 0;
    font-size: 0.9rem;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--secondary-green);
}

.breadcrumbs li:last-child span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Neighborhoods Section */
.neighborhoods {
    background: rgba(173, 216, 230, 0.1);
    padding: 60px 0;
}

.neighborhoods h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.neighborhoods > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.neighborhood-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neighborhood-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.neighborhood-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.neighborhood-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.neighborhood-card .zip {
    display: inline-block;
    background: var(--secondary-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-radius {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

.service-radius a {
    color: var(--primary);
    text-decoration: none;
}

.service-radius a:hover {
    text-decoration: underline;
}

/* Why Choose Local Section */
.why-local {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.08) 0%, rgba(144, 238, 144, 0.08) 100%);
    padding: 60px 0;
}

.why-local h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.local-advantage {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--secondary-green);
}

.local-advantage:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advantage-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

/* Custom Competitive Advantage Icons */
.personal-service-icon {
    width: 70px;
    height: 70px;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.personal-service-icon::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 25px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
}

.personal-service-icon::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 20px;
    width: 30px;
    height: 15px;
    background: var(--white);
    border-radius: 15px 15px 0 0;
}

.fast-response-icon {
    width: 70px;
    height: 70px;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.fast-response-icon::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 18px;
    width: 0;
    height: 0;
    border-left: 16px solid var(--white);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.fast-response-icon::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 34px;
    width: 0;
    height: 0;
    border-left: 12px solid var(--white);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

.better-value-icon {
    width: 70px;
    height: 70px;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.better-value-icon::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: var(--white);
    border-radius: 50%;
}

.better-value-icon::after {
    content: '✓';
    position: absolute;
    top: 25px;
    left: 32px;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 18px;
}

.community-investment-icon {
    width: 70px;
    height: 70px;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.community-investment-icon::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 15px;
    width: 12px;
    height: 20px;
    background: var(--white);
}

.community-investment-icon::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 29px;
    width: 12px;
    height: 30px;
    background: var(--white);
}

.community-investment-icon .building-3 {
    position: absolute;
    top: 30px;
    right: 15px;
    width: 12px;
    height: 25px;
    background: var(--white);
}

.local-advantage h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.local-advantage p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Desktop - Hide mobile elements and show desktop nav */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-dropdown {
        display: none !important;
    }
    
    .nav {
        display: block !important;
    }
    
    .nav-links {
        display: flex !important;
    }
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: var(--white);
}

.faq h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(173, 216, 230, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: rgba(173, 216, 230, 0.1);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    /* Mobile Header Layout */
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        flex-wrap: nowrap;
        position: relative;
    }
    
    .nav-brand h1 {
        font-size: 1.4rem;
        margin: 0;
    }
    
    /* Hide desktop nav on mobile */
    .nav {
        display: none !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        background: transparent;
        padding: 0.5rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span {
        background: var(--text-dark);
        width: 25px;
        height: 3px;
        margin: 3px 0;
        transition: 0.3s;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile dropdown menu - only show on mobile */
    .mobile-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 8px 32px rgba(0,0,0,0.15);
        border-radius: 0 0 12px 12px;
        z-index: 1000;
        padding: 8px 0;
        margin: 0;
        list-style: none;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .mobile-dropdown.active {
        display: block !important;
    }
    
    .mobile-dropdown li {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .mobile-dropdown li:last-child {
        border-bottom: none;
    }
    
    .mobile-dropdown a {
        display: block;
        padding: 15px 20px;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    
    .mobile-dropdown a:hover {
        background: var(--primary-light);
        color: var(--primary);
        padding-left: 24px;
    }
    
    /* Mobile collapsible Service Areas */
    .mobile-collapsible-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
    }
    
    .mobile-collapsible-toggle:hover {
        background: var(--primary-light);
        color: var(--primary);
        padding-left: 24px;
    }
    
    .mobile-collapsible-toggle i {
        transition: transform 0.3s ease;
        font-size: 12px;
        color: var(--text-light);
    }
    
    .mobile-collapsible-item.mobile-expanded .mobile-collapsible-toggle i {
        transform: rotate(180deg);
    }
    

    /* Mobile collapsible submenu - hidden by default */
    .mobile-collapsible-submenu {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        background: var(--light-gray);
        margin: 0;
        padding: 0;
        list-style: none;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }
    
    /* Mobile collapsible submenu - expanded state */
    .mobile-collapsible-item.mobile-expanded .mobile-collapsible-submenu {
        max-height: 500px;
        opacity: 1;
    }
    
    .mobile-collapsible-submenu li a {
        display: block;
        padding: 12px 40px;
        font-size: 0.9em;
        color: var(--text-light);
        border-left: 3px solid transparent;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-collapsible-submenu li a:hover {
        background: var(--secondary-light);
        color: var(--secondary-green);
        border-left-color: var(--secondary-green);
        padding-left: 44px;
    }
    
    /* Mobile phone link */
    .mobile-dropdown .phone-link {
        background: var(--primary-blue);
        color: white;
        text-align: center;
        font-weight: 600;
        margin: 10px 20px;
        border-radius: 6px;
        padding: 12px 20px;
    }
    
    .mobile-dropdown .phone-link:hover {
        background: var(--dark-blue);
        color: white;
        transform: none;
        padding-left: 20px;
    }
    

    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        box-shadow: none;
        background: transparent;
        border: none;
        border-radius: 0;
        display: block;
        padding: 0;
        min-width: auto;
        max-height: none;
        overflow: visible;
        transition: all 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobile Dropdown Menu Styling */

    
    .dropdown-divider {
        background: rgba(255, 255, 255, 0.2);
        margin: 8px 20px;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .areas-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .service-map h3 {
        font-size: 1.6rem;
    }
    
    .map-container {
        margin: 0 1rem 2rem;
        border-radius: 8px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-description {
        padding: 0 1rem;
        font-size: 1rem;
    }
    

    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .google-rating-summary {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .leave-review-cta {
        padding: 2rem 1rem;
    }
    
    .lg-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .btn-lg-special {
        padding: 1.2rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .lg-text h2 {
        font-size: 1.8rem;
    }
    
    .lg-text p {
        font-size: 1.1rem;
    }
    
    .savings-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .option.affordable {
        transform: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .warranty-card {
        padding: 2rem;
    }
    
    .warranty-card h3 {
        font-size: 1.4rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-spacing {
        padding: 60px 0;
    }
    
    .services,
    .google-reviews,
    .about,
    .contact,
    .about-intro,
    .service-areas {
        padding: 60px 0;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .google-rating-summary,
    .leave-review-cta,
    .feature {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .hero-buttons .btn {
        animation: fadeInUp 0.6s ease 0.3s both;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
} 

/* Hamburger Icon */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger-icon span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.dropdown.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.dropdown.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.dropdown.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.dropdown.hover .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.dropdown.hover .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.dropdown.hover .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Collapsible Menu Structure */
.collapsible-item {
    position: relative;
}

.collapsible-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.collapsible-toggle:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    padding-left: 24px;
}

.collapsible-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.8em;
}

.collapsible-item.active .collapsible-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu .collapsible-menu,
.dropdown-menu .collapsible-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    background: var(--light-gray);
}

.dropdown-menu .collapsible-item.active .collapsible-menu,
.dropdown-menu .collapsible-item.active .collapsible-submenu {
    max-height: 500px;
    opacity: 1;
}

.dropdown-menu .collapsible-submenu {
    background: rgba(0,0,0,0.05);
    border-left: 3px solid var(--primary);
    margin: 0;
    padding-left: 0;
}

.dropdown-menu .collapsible-submenu li a {
    padding: 10px 20px 10px 32px;
    font-size: 0.9em;
    color: var(--text-light);
    border-left: 3px solid transparent;
}

.dropdown-menu .collapsible-submenu li a:hover {
    background-color: var(--secondary-light);
    color: var(--secondary-green);
    border-left-color: var(--secondary-green);
    padding-left: 36px;
}

.county-toggle {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95em;
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    margin: 4px 0;
} 