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

html {
    overflow-x: hidden;
    width: 100%;
}


:root {
    --primary-color: #FF6B35;
    --secondary-color: #1A1A1A;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --accent-orange: #FF8C42;
    --accent-color: #007bff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --border-radius: 16px;
    --subtle-border: 1px solid rgba(255, 107, 53, 0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

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

.hero .container {
    margin: 0 auto;
    max-width: 1400px;
    padding-left: 80px;
    padding-right: 80px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #fdfdfd 100%);
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.header .container {
    margin: 0;
    max-width: none;
    padding-left: 80px;
    padding-right: 80px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Desktop layout: logo - call now - text now - hamburger menu */
@media (min-width: 769px) {
    .header-content {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        position: static !important;
    }

    .logo {
        flex-shrink: 0;
        order: 1;
        width: auto !important;
        display: flex;
        justify-content: flex-start !important;
    }

    .header-buttons {
        margin-left: auto;
        order: 2;
        gap: 12px;
    }

    .mobile-menu-toggle {
        flex-shrink: 0;
        margin-left: 20px;
        order: 3;
        position: static !important;
        margin-top: 0 !important;
    }
}

.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.header-hours {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 400;
    opacity: 0.7;
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.nav-menu {
    display: none !important;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-dropdown .nav-link:hover {
    color: var(--primary-color);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    z-index: 1000;
    padding: 10px 0;
    margin-top: 8px;
    max-height: 320px;
    overflow-y: auto;
}

/* Custom scrollbar for locations dropdown */
.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 0.7;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255, 107, 53, 0.05);
    color: var(--primary-color);
    padding-left: 24px;
}

/* Dropdown will be controlled by JavaScript for better UX */
.nav-dropdown.show .dropdown-content {
    display: block;
}

.nav-dropdown.show .nav-link {
    color: var(--primary-color);
}

/* Add a small bridge area to prevent dropdown from closing during mouse movement */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
    z-index: 999;
}

/* Mobile Menu Toggle Button - Show on ALL screen sizes */
.mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Mobile Navigation */
.mobile-nav {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.95);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fdfdfd 100%);
    padding: 100px 30px 40px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-content > a {
    display: block;
    padding: 18px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-content > a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.mobile-nav-content > a:last-child {
    border-bottom: none;
}

/* Mobile Buttons in Navigation */
.mobile-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.mobile-btn.call-btn {
    background: var(--primary-color);
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.mobile-btn.call-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.mobile-btn.text-btn {
    background: var(--secondary-color);
    color: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-btn.text-btn:hover {
    background: #333333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Mobile Services Dropdown */
.mobile-services {
    margin-bottom: 0;
}

.mobile-services-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 18px 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: all 0.3s ease;
}

.mobile-services-toggle:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.mobile-services-toggle i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-services.active .mobile-services-toggle i {
    transform: rotate(180deg);
}

.mobile-services-list {
    display: none;
    background: rgba(255, 107, 53, 0.03);
    margin: 0 -30px;
    padding: 10px 30px 10px 50px;
    border-radius: 0;
}

.mobile-services.active .mobile-services-list {
    display: block;
}

.mobile-services-list a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.mobile-services-list a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 8px;
}

/* Mobile Locations Dropdown */
.mobile-locations {
    margin-bottom: 0;
}

.mobile-locations-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 18px 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: all 0.3s ease;
}

.mobile-locations-toggle:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.mobile-locations-toggle i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-locations.active .mobile-locations-toggle i {
    transform: rotate(180deg);
}

.mobile-locations-list {
    display: none;
    background: rgba(255, 107, 53, 0.03);
    margin: 0 -30px;
    padding: 10px 30px 10px 50px;
    border-radius: 0;
    max-height: 240px;
    overflow-y: auto;
}

.mobile-locations.active .mobile-locations-list {
    display: block;
}

.mobile-locations-list a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.mobile-locations-list a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 8px;
}

.mobile-cta {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 16px 24px !important;
    border-radius: 12px !important;
    text-align: center !important;
    margin: 30px 0 20px 0 !important;
    font-weight: 700 !important;
    border-bottom: none !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

/* Header Buttons Container */
.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-buttons .header-btn {
    padding: 12px 24px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    border: none !important;
    cursor: pointer;
    display: inline-block !important;
    font-size: 16px !important;
    line-height: 1.4;
    white-space: nowrap;
}

/* Call Now Button - Orange */
.header-btn.call-btn {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
    text-decoration: none !important;
}

.header-btn.call-btn:hover {
    background: var(--accent-orange) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    color: white !important;
    text-decoration: none !important;
}

/* Text Now Button - Black */
.header-btn.text-btn {
    background: var(--secondary-color) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none !important;
}

.header-btn.text-btn:hover {
    background: #333333 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: white !important;
    text-decoration: none !important;
}

/* Legacy header-cta for backward compatibility */
.header-cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.header-cta:hover {
    background: var(--accent-orange);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
/* Hero Section - Clean and Simple */
.hero {
    position: relative;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 70%, transparent 100%);
    color: white;
    display: flex;
    align-items: center;
    overflow: visible;
    min-height: 70vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Specific hero images for each vehicle page */
.car-tinting-page .hero-background {
    background-image: url('../images/vehicles/cars-tint.jpg');
    transform: scaleX(-1);
}

.van-tinting-page .hero-background {
    background-image: url('../images/vehicles/vans-tint.jpg');
}

.suv-tinting-page .hero-background {
    background-image: url('../images/vehicles/suvs-tint.jpg');
}

.truck-tinting-page .hero-background {
    background-image: url('../images/vehicles/trucks-tint.jpg');
}

.rv-tinting-page .hero-background {
    background-image: url('../images/vehicles/rvs-tint.jpg');
}

.farming-equipment-tinting-page .hero-background {
    background-image: url('../images/vehicles/farming-tint.jpg');
}

.hero .container {
    width: 100%;
    max-width: none;
    padding: 120px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.hero-left {
    text-align: left;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 0.9;
    color: white;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-intro {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 18px;
    color: white;
    font-family: 'Inter', sans-serif;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-benefits {
    list-style: none;
    margin: 20px 0 35px 0;
    padding: 0;
}

.hero-benefits li {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    color: white;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-benefits li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 20px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.hero-button:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Mobile Responsive */
@media (max-width: 768px) {
    .hero .container {
        max-width: 100%;
        padding: 40px 20px;
    }

    .hero-content {
        display: block;
    }

    .hero-left {
        text-align: center;
        width: 100%;
    }

    .hero-title {
        font-size: 42px;
        line-height: 0.95;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-intro {
        font-size: 18px;
    }

    .hero-benefits {
        text-align: left;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        display: table;
    }

    .hero-benefits li {
        font-size: 17px;
    }

    .hero-background {
        background-position: right center;
    }
}

/* Trust Banner */
.trust-banner {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.trust-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23FF6B35" opacity="0.05"/><circle cx="60" cy="40" r="1.5" fill="%23FF6B35" opacity="0.03"/><circle cx="80" cy="80" r="1" fill="%23FF6B35" opacity="0.04"/></svg>') repeat;
    pointer-events: none;
}

.trust-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 48px;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.trust-icon i {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.trust-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.2;
}

.trust-text p {
    font-size: 13px;
    color: #666;
    margin: 2px 0 0 0;
    line-height: 1.2;
}

/* Quote Section */
.quote-section {
    padding: 60px 0;
    background: var(--gray-light);
    overflow: visible;
    position: relative;
}

.quote-section .container {
    display: flex;
    justify-content: center;
}

/* Quote Form */
.quote-form {
    background: linear-gradient(135deg, #ffffff 0%, #fdfdfd 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: visible;
    min-height: 950px;
}


.form-title {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-label {
    display: block;
    margin-top: 10px;
    margin-bottom: 4px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

/* GHL Form Container */
.ghl-form-container {
    width: 100%;
    overflow: visible;
    border-radius: 8px;
    position: relative;
}

.ghl-form-container iframe {
    width: 100% !important;
    border: none !important;
    border-radius: 8px !important;
    position: relative !important;
    overflow: visible !important;
}

.required {
    color: var(--primary-color);
}

.quote-form input[type="text"],
.quote-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #333;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 2px;
}

.quote-form input::placeholder {
    color: #999;
    font-style: italic;
}

.service-options {
    margin: 5px 0 10px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: 400;
    margin: 1px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.consent-label {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 10px;
}

.form-disclaimer {
    margin: 15px 0;
}

.form-disclaimer input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.form-submit {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
    text-transform: capitalize;
}

.form-submit:hover {
    background: #333;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(to bottom, rgba(0, 163, 218, 0.8) 0%, rgba(0, 163, 218, 0.4) 25%, rgba(255, 255, 255, 1) 60%);
}

.why-choose h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 30px;
    padding: 20px 0;
    position: relative;
}

/* Force single column on tablets and mobile */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}


.feature {
    text-align: center;
    padding: 20px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(0, 163, 218, 0.5), transparent);
}

/* Mobile/tablet styling */
@media (max-width: 1024px) {
    .feature {
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #f0f0f0;
        padding: 30px 20px;
        margin-bottom: 10px;
    }

    .feature:not(:last-child)::after {
        display: none;
    }
}

.feature-icon {
    font-size: 80px;
    margin-bottom: 8px;
}

.feature-icon i,
.feature-icon svg {
    width: 80px !important;
    height: 80px !important;
    color: #2c2c2c !important;
    stroke: #2c2c2c !important;
}

.feature h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.feature p {
    color: #4a4a4a;
    line-height: 1.8;
    font-weight: 600;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    display: inline-block;
}

.feature-bullets li {
    color: #4a4a4a;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 8px;
    text-align: left;
    position: relative;
    padding-left: 25px;
}

.feature-bullets li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Reviews Widget */
.reviews-widget-container {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
}

.reviews-placeholder {
    background: var(--gray-light);
    border-radius: 15px;
    padding: 40px 20px;
    margin-bottom: 20px;
}

.review-stats {
    margin-bottom: 30px;
}

.stars-large {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 10px;
}

.review-stats h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 10px 0 5px 0;
}

.review-stats p {
    color: #666;
    font-size: 16px;
}

.review-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.review-snippet {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.stars-small {
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 10px;
}

.review-snippet p {
    font-size: 14px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.4;
}

.reviews-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-content {
    padding: 0 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
}

.cta-section .cta-btn.primary {
    background: white;
    color: black;
    border: 2px solid white;
}

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

.cta-section .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-section-mini .cta-btn.primary {
    background: var(--primary-color) !important;
    color: black !important;
    border: none !important;
}

.cta-section .cta-btn.primary,
.final-cta .cta-btn.primary {
    color: black !important;
}

.cta-section-mini .cta-btn.primary {
    color: white !important;
}

.cta-section-mini .cta-btn.secondary {
    background: black !important;
    color: white !important;
    border: 2px solid black !important;
}

/* Services Gallery */
.services-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.services-gallery::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.services-gallery::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.services-gallery h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
}

.gallery-overlay h3 {
    font-size: 24px;
    font-weight: 700;
}

/* Deals Section */
.deals-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.deals-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

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

.deal-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
    border-radius: 0 0 0 60px;
    opacity: 0.1;
}

.deal-card.windshield {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
}

.deal-image {
    height: 200px;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-content {
    padding: 30px;
}

.deal-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.deal-price {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.deal-card.discount .deal-content h3 {
    color: var(--primary-color);
    font-size: 36px;
}

.deal-description {
    margin-bottom: 10px;
    line-height: 1.6;
}

.deal-validity {
    font-size: 14px;
    opacity: 0.9;
    font-style: italic;
}

.strike {
    text-decoration: line-through;
    opacity: 0.8;
}

.cta-section-mini {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #fdfdfd 100%);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-section-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-orange));
}

.cta-section-mini::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section-mini h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section-mini .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section-mini .cta-btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}


/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Special 4-column grid for tint levels */
.tint-levels-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Gradient backgrounds for tint level cards */
.tint-5 {
    background: #333333 !important;
}

.tint-5 h3 {
    color: white !important;
}

.tint-5 .benefit-list li {
    color: white !important;
}

.tint-20 {
    background: #666666 !important;
}

.tint-20 h3 {
    color: white !important;
}

.tint-20 .benefit-list li {
    color: white !important;
}

.tint-35 {
    background: #999999 !important;
}

.tint-35 h3 {
    color: white !important;
}

.tint-35 .benefit-list li {
    color: white !important;
}

.tint-70 {
    background: #f0f0f0 !important;
}

/* Comparison section styling */
.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.bad-options-card {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8) !important;
    border: 2px solid #dc3545 !important;
    border-radius: 12px !important;
    opacity: 0.8;
    position: relative;
    text-align: center;
    padding: 30px 25px;
    padding-right: 35px;
}

.bad-option-item {
    margin-bottom: 30px;
}

.bad-option-item:last-child {
    margin-bottom: 0;
}

.bad-option-item .feature-icon {
    background: transparent;
    color: #dc3545 !important;
    border: none;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.bad-option-item .feature-icon i {
    color: #dc3545 !important;
}

.bad-option-item .feature-icon svg {
    color: #dc3545 !important;
    fill: none !important;
    stroke: #dc3545 !important;
    stroke-width: 2 !important;
}

.bad-option-item h3 {
    color: #666 !important;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.bad-option-item p {
    color: #777 !important;
    line-height: 1.6;
    font-size: 14px;
}

.best-option {
    background: linear-gradient(135deg, #FF6B35, #FF8C42) !important;
    border: 3px solid #28a745 !important;
    border-radius: 12px !important;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25) !important;
    position: relative;
    z-index: 3;
    margin-left: -20px;
}

.best-option::before {
    content: "BEST CHOICE";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.best-option h3,
.best-option p {
    color: white !important;
}

.best-option .feature-icon {
    background: transparent;
    color: white;
    border: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .best-option {
        transform: none;
        margin-left: 0;
    }
}

.benefit {
    text-align: center;
    padding: 30px 25px;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e5e5;
}

.benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i,
.benefit-icon svg {
    width: 36px !important;
    height: 36px !important;
    color: var(--primary-color) !important;
    stroke: var(--primary-color) !important;
}

.benefit h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.benefit p {
    color: #444;
    line-height: 1.7;
    font-size: 16px;
}

.benefit-list {
    line-height: 1.8;
    font-size: 16px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 280px;
    text-align: left;
}

.benefit-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 6px;
    color: #444;
}

.benefit-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Section Break */
.section-break {
    padding: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    height: 2px;
}

.section-break::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transform: translateY(-50%);
}

.section-break::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.gradient-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, #FF6B35 25%, #FF8C42 50%, #FF6B35 75%, transparent 100%);
    border-radius: 2px;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

/* Geoshield Section */
.geoshield-section {
    padding: 80px 0;
    background: var(--gray-light);
    text-align: center;
}

.geoshield-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    padding: 0 20px;
}

.film-showcase {
    text-align: center;
    margin-bottom: 60px;
}

.film-image {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.geoshield-section h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--secondary-color);
}


.geoshield-timeline {
    position: relative;
    margin: 50px auto;
    padding-left: 140px;
    max-width: 800px;
}

.geoshield-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    margin-left: 0;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    left: -140px;
    z-index: 2;
}

.timeline-icon i,
.timeline-icon svg {
    width: 40px !important;
    height: 40px !important;
    color: var(--primary-color) !important;
    stroke: var(--primary-color) !important;
}

.timeline-content {
    flex: 1;
    padding-left: 0;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
    margin-left: 0;
    text-align: left;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

.geoshield-promise {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.08) 100%);
    border-radius: 12px;
    margin: 40px auto;
    max-width: 600px;
}

.geoshield-promise p {
    font-size: 20px;
    color: var(--secondary-color);
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.02);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255, 107, 53, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 40px 20px 20px 20px;
    margin-top: 30px;
}

.faq-cta p {
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.faq-cta-btn {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Final Section */
.final-section {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

.final-simple p {
    font-size: clamp(1rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #4FC3F7;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    line-height: 1.2;
    margin: 0;
    max-width: 100%;
    word-spacing: 0.05em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial {
    background: linear-gradient(135deg, #ffffff 0%, #fdfdfd 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 48px;
    color: rgba(255, 107, 53, 0.1);
    font-weight: bold;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}

.testimonial .stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial .author {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Final CTA - Removed conflicting styles */

.phone-large {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Footer - Simple Working Solution */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Desktop - 4 columns */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Locations Grid */
.footer-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 15px;
}

.footer-locations-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Tablet - 2 columns */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 400px;
        margin: 0 auto 20px;
    }

    .footer-logo {
        margin-left: 0;
        text-align: center;
    }
}

/* Mobile - Single column */
@media (max-width: 600px) {
    .footer {
        padding: 50px 0 25px;
    }

    .footer .container {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-locations-grid {
        max-width: 280px;
        margin: 0 auto;
    }
}


.footer-logo {
    display: block;
    margin-bottom: 16px;
    margin-left: -20px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.footer-address {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 15px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section li:last-child {
    margin-bottom: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
    padding: 2px 0;
    position: relative;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom p {
    margin: 0 0 8px 0;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */

/* Removed redundant rule - now using mobile-first approach */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .header .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .nav-menu {
        gap: 24px;
    }

    .header-btn {
        font-size: 14px;
        padding: 12px 18px;
        white-space: nowrap;
    }

    /* Footer responsive adjustments for large tablets */
    .footer .container {
        padding: 0 40px;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }

    /* Features grid already single column by default - just adjust spacing */
    .features-grid {
        gap: 25px;
        padding: 35px 0;
    }

    .feature {
        padding: 35px 30px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #f0f0f0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    /* Remove vertical dividers on tablets too */
    .feature:not(:last-child)::after {
        display: none;
    }

    .feature-icon {
        font-size: 70px;
        margin-bottom: 25px;
    }

    .feature h3 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .feature-bullets {
        text-align: left;
        max-width: 350px;
        margin: 0 auto;
    }

    .feature-bullets li {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .tint-levels-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .hero .container {
        padding-left: 40px;
        padding-right: 40px;
    }


    .hero-title {
        font-size: 52px;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

/* Mobile Header Layout (below 769px) - VERTICAL STACK */
@media (max-width: 768px) {
    .header-content {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        position: relative;
    }

    .logo {
        order: 1;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 8px;
    }

    /* Buttons centered under logo */
    .header-buttons {
        order: 2;
        margin: 0 !important;
        display: flex !important;
        gap: 12px;
        align-items: center;
        justify-self: center;
    }

    /* Hamburger positioned absolutely to the right of buttons */
    .mobile-menu-toggle {
        position: absolute !important;
        top: 50%;
        left: 50%;
        transform: translate(140px, 12px);
        margin: 0 !important;
        order: unset !important;
    }
}

/* Small Mobile Phones (480px and below) - Additional adjustments only */
@media (max-width: 480px) {
    .header .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-content {
        gap: 8px;
    }

    .logo-img {
        height: 35px;
    }

    .header-btn {
        font-size: 11px;
        padding: 6px 10px;
    }

    .mobile-nav-content {
        width: 100%;
        max-width: 100%;
    }

    /* Footer responsive adjustments for tablets */
    .footer {
        padding: 60px 0 30px;
    }

    .footer .container {
        padding: 0 30px;
    }

    /* Features grid spacing adjustments for mobile */
    .features-grid {
        gap: 20px;
        padding: 30px 0;
    }

    .feature {
        padding: 30px 20px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #f0f0f0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    /* Remove the vertical dividers on mobile since we're single column */
    .feature:not(:last-child)::after {
        display: none;
    }

    .feature-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .feature h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .feature-bullets {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    .feature-bullets li {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

/* Small Tablets and Large Phones (600px and below) */

/* Mobile Extra Small (360px and below) - Fine-tuning for smallest screens */
@media (max-width: 360px) {
    .header .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .logo-img {
        height: 32px;
    }

    .header-btn {
        font-size: 10px;
        padding: 6px 8px;
    }

    /* Hero adjustments for small mobile */

    .hero .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.1;
    }
}


/* Mobile Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .cta-btn,
    .hero-button,
    .form-submit {
        min-height: 44px;
        padding: 12px 24px;
    }

    .timeline-item {
        display: block;
        margin-bottom: 25px;
        position: relative;
    }

    .timeline-item:last-child {
        margin-bottom: 10px;
    }

    .timeline-icon {
        position: absolute;
        left: -35px;
        top: 2px;
        width: 30px;
        height: 30px;
        background: white;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .timeline-icon i,
    .timeline-icon svg {
        width: 14px !important;
        height: 14px !important;
        color: var(--primary-color) !important;
        stroke: var(--primary-color) !important;
    }

    .timeline-content {
        padding-left: 0;
        padding-right: 10px;
    }

    .timeline-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
        color: var(--secondary-color);
        font-weight: 600;
        line-height: 1.3;
    }

    .timeline-content p {
        font-size: 13px;
        line-height: 1.5;
        color: #666;
    }

    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
    }

    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 18px;
    }

    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }

    .faq-icon {
        font-size: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 18px 18px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-cta {
        padding: 30px 15px 15px 15px;
    }

    .faq-cta p {
        font-size: 16px;
    }

    .faq-cta-btn {
        font-size: 18px;
        padding: 10px 20px;
    }

    /* Final Section */
    .final-section {
        padding: 60px 15px;
    }

    .final-simple p {
        font-size: clamp(0.9rem, 5vw, 2rem);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial {
        padding: 25px;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        min-height: 50px;
    }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }

    .footer .container {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-brand {
        grid-column: auto;
        max-width: 100%;
        margin-bottom: 0;
    }

    .footer-logo-img {
        height: 50px;
    }

    .footer-tagline {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-address {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-section li {
        margin-bottom: 12px;
    }

    .footer-section a {
        font-size: 14px;
        padding: 8px 4px;
        display: inline-block;
        min-height: 44px;
        line-height: 1.4;
    }

    .footer-bottom {
        padding-top: 30px;
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-bottom p {
        margin-bottom: 8px;
    }

    .footer-bottom p:last-child {
        margin-bottom: 0;
    }

    /* Further optimize features grid for small mobile */
    .features-grid {
        padding: 20px 0;
        gap: 15px;
    }

    .feature {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .feature-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .feature h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .feature-bullets li {
        font-size: 14px;
        margin-bottom: 6px;
    }

    /* Header */
    .header {
        padding: 10px 0;
    }

    .header .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .header-btn {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    /* Hero */

    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.1;
    }

    .hero-intro {
        font-size: 18px;
    }

    .hero-benefits li {
        font-size: 16px;
    }


    .hero-benefits {
        display: inline-block;
        text-align: left;
    }


    .hero-button i,
    .hero-button svg {
        width: 16px !important;
        height: 16px !important;
        flex-shrink: 0;
    }
    
    /* Trust Banner - Keep horizontal on mobile */
    .trust-content {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 4px;
        justify-content: center;
        padding: 8px;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .trust-icon {
        width: 30px !important;
        height: 30px !important;
        margin: 0 auto 4px !important;
    }

    .trust-icon i,
    .trust-icon svg {
        width: 24px !important;
        height: 24px !important;
    }

    .trust-text h4 {
        font-size: 11px !important;
        margin-bottom: 2px !important;
    }

    .trust-text p {
        font-size: 9px !important;
        line-height: 1.2 !important;
    }

    .trust-icon {
        font-size: 36px;
        flex-shrink: 0;
    }

    /* Override inline styles for location page trust banners */
    section[style*="padding: 60px 0; background: white"] div[style*="repeat(auto-fit, minmax(250px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        align-items: stretch !important;
    }

    section[style*="padding: 60px 0; background: white"] div[style*="display: flex; align-items: flex-start"] {
        align-items: flex-start !important;
        text-align: left !important;
        flex-direction: row !important;
        gap: 12px !important;
        padding: 15px !important;
        background: white !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    }
    
    .trust-icon {
        font-size: 30px;
    }
    
    .trust-text h4 {
        font-size: 13px;
    }
    
    .trust-text p {
        font-size: 11px;
    }
    
    /* Quote Form */
    .quote-form {
        margin: 0 5px;
        padding: 20px;
    }
    
    .form-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .form-label {
        font-size: 15px;
    }
    
    .quote-form input[type="text"],
    .quote-form input[type="tel"] {
        padding: 8px;
        font-size: 15px;
    }
    
    .checkbox-label {
        font-size: 15px;
    }
    
    .consent-label {
        font-size: 13px;
    }
    
    .form-submit {
        padding: 12px;
        font-size: 15px;
    }
    
    /* Services Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    /* Section Titles */
    .why-choose h2,
    .services-gallery h2,
    .deals-section h2,
    .benefits-section h2,
    .geoshield-section h2,
    .final-section h2 {
        font-size: 28px;
    }
    
    /* CTA Sections */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .phone-large {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 24px;
        font-size: 16px;
    }
    
    /* Film Showcase */
    .film-image {
        max-width: 300px;
    }
}

/* Mobile Extra Small (360px and below) */
@media (max-width: 360px) {
    /* Hero */
    .hero-title {
        font-size: 30px;
        line-height: 1.1;
    }
    
    /* Quote Form */
    .quote-form {
        padding: 15px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    /* Services Gallery */
    .gallery-item {
        height: 160px;
    }
    
    /* Section Titles */
    .why-choose h2,
    .services-gallery h2,
    .deals-section h2,
    .benefits-section h2,
    .geoshield-section h2 {
        font-size: 24px;
    }
}

/* Desktop - Left align hero content (everything above mobile/tablet) */
@media (min-width: 769px) {
    .hero-content {
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    .hero-left {
        text-align: left !important;
        align-items: flex-start !important;
        margin: 0 !important;
        width: auto !important;
    }

    .hero-title,
    .hero-subtitle,
    .hero-intro {
        text-align: left !important;
    }

    .hero-benefits {
        text-align: left !important;
        margin: 20px 0 35px 0 !important;
        display: block !important;
    }

    .hero-button {
        margin: 20px 0 0 0 !important;
        align-self: flex-start !important;
    }
}

/* Mobile Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .cta-btn,
    .hero-button,
    .form-submit {
        min-height: 44px;
        padding: 12px 24px;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
    
    /* Better form inputs */
    .quote-form input[type="text"],
    .quote-form input[type="tel"] {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Hover states for touch */
    .cta-btn:active,
    .hero-button:active,
    .form-submit:active {
        transform: scale(0.98);
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 480px) and (orientation: landscape) {

    .hero-left {
        padding: 25px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .quote-section {
        padding: 30px 0;
    }
}


/* Print Styles */
@media print {
    .header,
    .quote-section,
    .cta-section,
    .cta-section-mini,
    .final-section {
        display: none;
    }
    
    .hero {
        background: none;
        color: #333;
        page-break-inside: avoid;
    }
    
    .hero-background {
        display: none;
    }
}

/* Car Tinting Timeline Styles */
.car-timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.car-timeline {
    position: relative;
}

.car-timeline-item {
    position: relative;
    margin-bottom: 40px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.car-timeline-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.car-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-orange));
    border-radius: 2px;
}

.car-timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.car-timeline-item:nth-child(even) .car-timeline-icon {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-color));
}

.car-timeline-content {
    text-align: left;
}

.car-timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.car-timeline-content p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

.car-timeline-duration {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Mobile Car Timeline Adjustments */
@media (max-width: 768px) {
    .car-timeline-item {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .car-timeline-item:not(:last-child)::after {
        bottom: -30px;
        height: 30px;
    }

    .car-timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .car-timeline-content h3 {
        font-size: 20px;
    }
}

/* Final CTA Section Styles */
.final-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.final-cta::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2:first-of-type {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.final-cta-content {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.phone-large {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.final-cta .cta-btn.primary {
    background: white;
    color: black;
    border: 2px solid white;
}

.final-cta .cta-btn.secondary {
    background: black;
    color: white;
    border: 2px solid black;
}

.final-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Mobile Final CTA Adjustments */
@media (max-width: 768px) {
    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2:first-of-type {
        font-size: 32px;
    }

    .final-cta p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .final-cta-content {
        padding: 30px 20px;
        margin-top: 20px;
    }

    .phone-large {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 24px;
    }
}

/* Location Grid Styles */
.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-card {
    padding: 16px 12px;
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    text-align: center;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.location-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.2;
}

.location-card p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Tablet and Mobile - Compact Format */
@media (max-width: 768px) {
    .location-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 20px 0;
        justify-content: center;
    }

    .location-card {
        padding: 8px 12px;
        min-height: auto;
        border-radius: 20px;
        border: 1px solid var(--gray-medium);
        background: white;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .location-card h4 {
        font-size: 14px;
        margin-bottom: 0;
        font-weight: 500;
    }

    .location-card p {
        display: none;
    }

    .location-card:hover {
        transform: none;
        box-shadow: none;
        border-color: var(--primary-color);
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    /* Footer adjustments for very small screens */
    .footer {
        padding: 40px 0 20px;
    }

    .footer .container {
        padding: 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
        margin-bottom: 30px;
    }

    .footer-brand {
        grid-column: auto;
        max-width: 100%;
    }

    .footer-logo-img {
        height: 45px;
    }

    .footer-tagline {
        font-size: 15px;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-section a {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 25px;
        font-size: 12px;
    }
}

/* Remove blue color and underline from phone number links */
a[href^="tel:"] {
    color: inherit !important;
    text-decoration: none !important;
}

a[href^="sms:"] {
    color: inherit !important;
    text-decoration: none !important;
}

/* Ensure phone links in headers and CTAs maintain their styling */
.header-cta[href^="tel:"],
.mobile-cta[href^="tel:"],
.cta-btn[href^="tel:"],
.cta-btn[href^="sms:"],
.hero-button[href^="tel:"] {
    color: white !important;
    text-decoration: none !important;
}

.phone-large[href^="tel:"] {
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

/* Specific styling for phone numbers in CTA sections */
.cta-content h2,
.final-cta-content .phone-large {
    color: inherit !important;
}

