/* ===================================
   Parking Lot Striping SLC - CSS
   Design inspired by logo color scheme
   Black/Dark Gray with Yellow/Gold accents
   =================================== */

/* CSS Variables */
:root {
    --primary-yellow: #F5A623;
    --accent-gold: #D4950C;
    --primary-dark: #2C2C2C;
    --secondary-dark: #1A1A1A;
    --light-gray: #F5F5F5;
    --medium-gray: #6B7280;
    --text-dark: #333333;
    --white: #FFFFFF;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 { font-size: 2.75rem; font-weight: 800; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: #4A5568;
}

a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover { color: var(--accent-gold); }

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: 2px solid var(--primary-yellow);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
    background-color: var(--primary-dark);
    color: var(--white);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-call {
    background-color: var(--primary-dark);
    color: var(--primary-yellow);
    border: 2px solid var(--primary-dark);
    font-weight: 700;
}

.btn-call:hover {
    background-color: var(--secondary-dark);
    color: var(--primary-yellow);
}

.btn-large { padding: 14px 28px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* Header */
.header {
    background-color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(44, 44, 44, 0.98);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

body {
    padding-top: 80px;
}

.nav {
    padding: 1rem 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-brand .logo {
    display: block;
}

.nav-brand .logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow);
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border-radius: 0 0 4px 4px;
    border-top: 3px solid var(--primary-yellow);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    background-color: var(--primary-yellow);
    border-radius: 4px;
    border: 2px solid var(--primary-dark);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background-color: var(--accent-gold);
    transform: scale(1.05);
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--primary-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active {
    background-color: var(--accent-gold);
}

.nav-toggle.active span {
    background-color: var(--primary-dark);
}

/* Mobile Menu Active State */
@media (max-width: 768px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-dark);
        padding: 1.5rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .nav-menu.active .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu.active .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--white);
    }

    .nav-menu.active .nav-link:hover {
        background-color: rgba(245, 166, 35, 0.1);
        color: var(--primary-yellow);
    }

    .nav-menu.active .dropdown-menu {
        position: static;
        background-color: rgba(0, 0, 0, 0.3);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
    }

    .nav-menu.active .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero.hero-with-bg {
    background-image:
        linear-gradient(to bottom, rgba(44, 44, 44, 0.95) 0%, rgba(44, 44, 44, 0.3) 100%),
        url('../images/parking-lot-line-striping-machine-numbered-spaces.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--accent-gold) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero.hero-with-bg .hero-content {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero.hero-with-bg .hero-image {
    display: none;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 4px;
    border-left: 3px solid var(--primary-yellow);
}

.checkmark {
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
    border: 4px solid var(--primary-yellow);
}

/* Video Section */
.video-section {
    background: var(--light-gray);
    padding: 3rem 0 2rem 0;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Service Hero */
.service-hero,
.services-hero,
.location-hero,
.locations-hero,
.quote-hero,
.contact-hero,
.about-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #3A3A3A 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    border-bottom: 4px solid var(--primary-yellow);
}

.service-hero h1,
.services-hero h1,
.location-hero h1,
.locations-hero h1,
.quote-hero h1,
.contact-hero h1,
.about-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.service-subtitle,
.location-subtitle,
.quote-subtitle,
.contact-subtitle,
.about-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.service-cta,
.location-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quote-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 4px;
    border-left: 3px solid var(--primary-yellow);
}

/* Sections */
.services {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-yellow);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--medium-gray);
    max-width: 950px;
    margin: 1.5rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: var(--primary-yellow);
    cursor: pointer;
    color: inherit;
}

.service-card:hover h3,
.service-card:hover p {
    color: inherit;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card h3 {
    margin: 1.5rem 2rem 1rem 2rem;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.25rem;
}

.service-card p {
    margin: 0 2rem 1.5rem 2rem;
    color: var(--text-gray);
    line-height: 1.6;
    flex: 1;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0 2rem 2rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    background-color: var(--primary-yellow);
    border-radius: 6px;
    margin-top: auto;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.service-card:hover .service-link {
    background-color: var(--primary-dark);
    color: var(--white);
}

.service-card:hover .service-link::after {
    transform: translateX(4px);
}

/* Service Areas */
.service-areas {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.county-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.county-card {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.county-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-2px);
    border-color: var(--primary-yellow);
}

.county-card h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
}

.city-list li {
    padding: 0;
}

.city-list li a {
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    padding: 0.4rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.city-list li a::before {
    content: '›';
    margin-right: 0.4rem;
    color: var(--primary-yellow);
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
}

.city-list li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.city-list li a:hover {
    color: var(--primary-dark);
    background-color: #f9fafb;
    padding-left: 0.75rem;
}

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

.area-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-yellow);
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.area-item h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.area-item p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin: 0;
}

.view-all-locations {
    text-align: center;
    margin-top: 2rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

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

.benefit-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-yellow);
    transition: all 0.3s ease;
    border-top: 1px solid #E5E7EB;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
    border-left-width: 6px;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary-dark);
    stroke-width: 2.5;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.35rem;
    text-align: center;
}

.benefit-item p {
    text-align: center;
    color: #4A5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* CTA Sections */
/* Trust Signals */
.trust-signals {
    background: var(--primary-dark);
    padding: 3rem 0;
    border-top: 3px solid var(--primary-yellow);
    border-bottom: 3px solid var(--primary-yellow);
}

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

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.stars {
    color: var(--primary-yellow);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-dark);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Service Process */
.service-process {
    padding: 5rem 0;
    background: #f9fafb;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    color: var(--primary-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.step-icon {
    display: none;
}

.process-step > div:last-child {
    flex: 1;
    text-align: left;
}

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

.process-step p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateX(4px);
}

.faq-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    border-top: 4px solid var(--primary-yellow);
    border-bottom: 4px solid var(--primary-yellow);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: var(--white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.checkbox-label, .radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.radio-group-full .radio-label {
    justify-content: center;
    position: relative;
}

.radio-group-full .radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-group-full .radio-label .radio-mark {
    display: none;
}

.radio-group-full .radio-label input[type="radio"]:checked + .radio-mark ~ * {
    font-weight: 600;
}

.radio-group-full .radio-label:has(input[type="radio"]:checked) {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-weight: 600;
}

.checkbox-label:hover, .radio-label:hover {
    border-color: var(--primary-yellow);
    background: rgba(245, 166, 35, 0.05);
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-group-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.radio-group-full .radio-label {
    width: 100%;
}

.form-section {
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    padding: 2rem 2rem 0.1rem 2rem;
    margin-bottom: 2rem;
    background: var(--white);
}

.form-section legend {
    font-weight: 700;
    color: var(--primary-dark);
    padding: 0 1rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Additional Services Styling */
.additional-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    transition: background 0.2s;
}

.service-row:hover {
    background: #e9ecef;
}

.service-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
}

.service-row label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.service-row input[type="number"] {
    width: 160px;
    padding: 0.5rem;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.service-row input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.service-row input[type="number"]::placeholder {
    color: #adb5bd;
    font-size: 0.85rem;
}

/* Address Autocomplete Suggestions */
.address-suggestions {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.address-suggestion {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.address-suggestion:last-child {
    border-bottom: none;
}

.address-suggestion:hover {
    background: #f8f9fa;
}

#property-address {
    position: relative;
}

.form-group {
    position: relative;
}

/* Quote Form */
.quote-form-section {
    padding: 3.5rem 0 5rem 0;
    background-color: var(--light-gray);
}

.quote-form-section .container {
    padding: 0 20px !important;
}

@media (min-width: 769px) {
    .quote-form-section .container {
        padding: 0 40px !important;
    }
}

.quote-form-container {
    display: grid;
    grid-template-columns: 62% 35%;
    gap: 3%;
}

.quote-form-main {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-yellow);
}

.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quote-info, .contact-alternative, .service-guarantee {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-yellow);
}

.service-guarantee ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-guarantee li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.process-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-icon {
    background: var(--primary-yellow);
    color: var(--primary-dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

.hours {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-top: 1rem;
}

/* Contact Page */
.contact-main {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-yellow);
}

.contact-icon {
    background: var(--primary-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-yellow);
    stroke-width: 2;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

.emergency-contact {
    background: var(--primary-yellow);
    border: 3px solid var(--accent-gold);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 2rem;
}

.emergency-contact h3,
.emergency-contact p {
    color: var(--primary-dark);
}

.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-yellow);
}

/* Service Areas */
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-area {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.service-area:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-area h3 {
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-area li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
    color: #4A5568;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.service-area li:last-child {
    border-bottom: none;
}

.service-area li:hover {
    color: var(--primary-yellow);
    padding-left: 0.5rem;
}

.coverage-note {
    background: var(--primary-yellow);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.coverage-note p {
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0;
}

/* Services Overview Page (services/index.html) */
.services-overview {
    padding: 4rem 0 6rem 0;
    background-color: var(--white);
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.services-overview > .container > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    gap: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--light-gray);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.service-content > p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #4A5568;
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.service-features li {
    padding: 0.5rem 0.75rem;
    background: var(--light-gray);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: "✓";
    color: var(--primary-yellow);
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.service-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* County Headings */
.county-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-yellow);
}

.county-heading:first-of-type {
    margin-top: 2rem;
}

/* New Service Cards Design */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card-new {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 1fr;
    gap: 0.75rem 1rem;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.service-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: var(--light-gray);
}

.service-icon-new {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    width: 48px;
    height: 48px;
    background: var(--primary-yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-icon-new i,
.service-icon-new svg {
    color: var(--primary-dark);
    stroke: var(--primary-dark);
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.service-card-new:hover .service-icon-new {
    background: var(--primary-dark);
}

.service-card-new:hover .service-icon-new i,
.service-card-new:hover .service-icon-new svg {
    color: var(--primary-yellow) !important;
    stroke: var(--primary-yellow) !important;
}


.service-card-new h3 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.3;
    align-self: center;
}

.service-card-new p {
    grid-row: 2 / 3;
    grid-column: 1 / 4;
    font-size: 0.925rem;
    line-height: 1.6;
    color: #4A5568;
    margin: 0;
}

.service-arrow {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
    width: 32px;
    height: 32px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-arrow i {
    width: 20px;
    height: 20px;
    color: #CBD5E0;
    transition: all 0.3s ease;
}

.service-card-new:hover .service-arrow i {
    transform: translateX(4px);
    color: var(--primary-yellow);
}

/* Non-linked location cards */
.location-card-no-link {
    cursor: default;
}

.location-card-no-link:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.location-card-no-link:hover::before {
    transform: scaleX(0);
}

.location-card-no-link:hover .service-arrow i {
    transform: none;
    color: #CBD5E0;
}

.location-card-no-link .service-arrow i {
    opacity: 0.5;
}

.service-benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2D3748 100%);
}

.service-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.benefit-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-dark);
    stroke-width: 2.5;
}

.benefit-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0;
}

/* Locations Overview Page (locations/index.html) */
.locations-overview {
    padding: 4rem 0 6rem 0;
    background-color: var(--white);
}

.locations-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.locations-overview > .container > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.locations-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-yellow);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-left-width: 6px;
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.location-card h3 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-card h3 a:hover {
    color: var(--primary-yellow);
}

.location-card > p {
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.location-features {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 4px;
}

.location-features p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.location-features strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.location-card .btn {
    margin-top: 1rem;
}

.coverage-info {
    padding: 4rem 0;
    background: var(--light-gray);
}

.coverage-info h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.coverage-info > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.extended-areas ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 2rem auto;
}

.extended-areas li {
    padding: 1rem;
    background: var(--white);
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.extended-areas li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    background: var(--primary-yellow);
    color: var(--primary-dark);
}

.services-offered {
    padding: 5rem 0;
    background: var(--white);
}

.services-offered h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.services-offered > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

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

.service-link-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-yellow);
}

.service-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    border-top-width: 5px;
}

.service-link-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-link-card h3 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link-card h3 a:hover {
    color: var(--primary-yellow);
}

.service-link-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Service Details */
.service-details {
    padding: 3rem 0 5rem 0;
    background-color: var(--light-gray);
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-main {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-yellow);
    transition: box-shadow 0.3s ease;
}

.service-main:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Enhanced Content Typography */
.service-main h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-yellow);
    font-weight: 700;
}

.service-main h2:first-child {
    margin-top: 0;
}

.service-main h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.service-main h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.service-main h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-main p {
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

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

.service-main > p:first-of-type {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #2D3748;
    margin-bottom: 2rem;
}

.service-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--primary-yellow);
    background: var(--light-gray);
    border-radius: 6px;
    color: #2D3748;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 3rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1.25rem;
}

.service-list li:hover {
    background: #FFF9E6;
    border-left-width: 6px;
    padding-left: 3.125rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.step:hover {
    background: #FFF9E6;
    border-left-width: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateX(4px);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-gold) 100%);
    color: var(--primary-dark);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.step h3 {
    color: var(--primary-dark);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step p {
    color: #4A5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

.service-info, .related-services {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-yellow);
}

.service-info:hover, .related-services:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.quote-form h3, .service-info h3, .related-services h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.service-info ul, .related-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-info li, .related-services li {
    padding: 0.875rem 0;
    border-bottom: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.service-info li:last-child, .related-services li:last-child {
    border-bottom: none;
}

.service-info li a, .related-services li a {
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-info li a::before, .related-services li a::before {
    content: '›';
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.service-info li:hover, .related-services li:hover {
    padding-left: 0.5rem;
}

.service-info li a:hover, .related-services li a:hover {
    color: var(--primary-yellow);
}

.service-info li a:hover::before, .related-services li a:hover::before {
    transform: translateX(4px);
}

.view-all {
    color: var(--primary-yellow);
    font-weight: 600;
}

/* Location Pages */
.location-details {
    padding: 3rem 0 5rem 0;
    background-color: var(--light-gray);
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-main {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-yellow);
    transition: box-shadow 0.3s ease;
}

.location-main:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Enhanced Location Content Typography */
.location-main h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-yellow);
    font-weight: 700;
}

.location-main h2:first-child {
    margin-top: 0;
}

.location-main h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.location-main h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.location-main h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.location-main p {
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

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

.location-main > p:first-of-type {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #2D3748;
    margin-bottom: 2rem;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.neighborhood {
    background: var(--light-gray);
    padding: 1.75rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.neighborhood:hover {
    background: #FFF9E6;
    border-left-width: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.neighborhood h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.neighborhood p {
    color: #4A5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.property-types {
    display: grid;
    gap: 0.75rem;
    margin: 2.5rem 0;
    list-style: none;
    padding: 0;
}

.property-types li {
    padding: 1.25rem 1.5rem;
    background: var(--light-gray);
    border-left: 4px solid var(--primary-yellow);
    border-radius: 6px;
    color: #2D3748;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 3rem;
    font-weight: 500;
}

.property-types li::before {
    content: '▸';
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1.25rem;
}

.property-types li:hover {
    background: #FFF9E6;
    border-left-width: 6px;
    padding-left: 3.125rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.local-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.local-benefits .benefit {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.local-benefits .benefit:hover {
    background: #FFF9E6;
    border-left-width: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.local-benefits .benefit h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.local-benefits .benefit p {
    color: #4A5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.location-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

.service-areas-nearby, .local-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.service-areas-nearby:hover, .local-info:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.service-areas-nearby h3, .local-info h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.service-areas-nearby ul, .local-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-areas-nearby li, .local-info li {
    padding: 0.875rem 0;
    border-bottom: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.service-areas-nearby li:last-child, .local-info li:last-child {
    border-bottom: none;
}

.service-areas-nearby li a, .local-info li a {
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-areas-nearby li a::before, .local-info li a::before {
    content: '›';
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.service-areas-nearby li:hover, .local-info li:hover {
    padding-left: 0.5rem;
}

.service-areas-nearby li a:hover, .local-info li a:hover {
    color: var(--primary-yellow);
}

.service-areas-nearby li a:hover::before, .local-info li a:hover::before {
    transform: translateX(4px);
}

/* Testimonials */
.local-testimonials {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.testimonial {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-yellow);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    font-weight: 600;
    color: var(--primary-yellow);
}

/* About Page */
.about-story {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 4px;
    border-top: 4px solid var(--primary-yellow);
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 4px solid var(--primary-yellow);
}

.values-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.values-list li {
    padding: 1rem;
    background: var(--white);
    border-left: 4px solid var(--primary-yellow);
    border-radius: 4px;
}

.company-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    text-align: center;
    border-top: 4px solid var(--primary-yellow);
    border-bottom: 4px solid var(--primary-yellow);
}

.company-stats h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

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

.stat-item {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 4px;
    border: 2px solid rgba(245, 166, 35, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.reason-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-yellow);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-yellow);
    border-radius: 50%;
}

.reason-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-dark);
    stroke-width: 2.5;
}

.team-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.team-member {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid var(--primary-yellow);
}

.member-photo img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.member-title {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 1rem;
}

.certifications {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.cert-item {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid var(--primary-yellow);
}

.cert-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-commitment {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.commitment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.commitment-text {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    border-left: 4px solid var(--primary-yellow);
}

.commitment-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 4px;
    border: 4px solid var(--primary-yellow);
}

/* ADA Specific */
.ada-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.ada-service {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--primary-yellow);
}

.ada-service h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.ada-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.ada-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.ada-table th,
.ada-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.ada-table th {
    background: var(--primary-dark);
    color: var(--white);
    font-weight: 700;
}

.compliance-alert {
    background: var(--primary-yellow);
    border: 3px solid var(--accent-gold);
    border-radius: 4px;
    padding: 1.5rem;
}

.compliance-alert h3,
.compliance-alert p {
    color: var(--primary-dark);
}

/* Warehouse Specific */
.color-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.color-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-yellow);
}

.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    flex-shrink: 0;
    border: 3px solid var(--primary-dark);
}

.color-swatch.yellow { background-color: #FBBF24; }
.color-swatch.white { background-color: #FFFFFF; }
.color-swatch.red { background-color: #DC2626; }
.color-swatch.blue { background-color: #2563EB; }
.color-swatch.green { background-color: #059669; }
.color-swatch.orange { background-color: #EA580C; }

.color-info h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.color-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.safety-stats {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    border-top: 4px solid var(--primary-yellow);
}

.stat {
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    display: block;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.faq-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-yellow);
}

.faq-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--light-gray);
    padding: 1.25rem 0;
    border-bottom: 2px solid var(--primary-yellow);
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    justify-content: center;
}

.breadcrumbs li::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--primary-yellow);
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: var(--medium-gray);
}

.breadcrumbs a:hover {
    color: var(--primary-yellow);
}

/* Quote CTA */
.quote-cta {
    padding: 5rem 0;
    background-color: var(--light-gray);
    text-align: center;
}

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

.cta-stats .stat {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-yellow);
}

.cta-stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.cta-stats .stat-label {
    color: var(--medium-gray);
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    border-top: 4px solid var(--primary-yellow);
}

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

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #D1D5DB;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: #D1D5DB;
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: var(--primary-yellow);
}

.emergency {
    color: var(--primary-yellow);
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 166, 35, 0.3);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links span {
    color: rgba(245, 166, 35, 0.5);
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    border-top: 2px solid var(--primary-yellow);
    padding: 0.75rem 1rem;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-cta-bar .cta-buttons {
    display: flex;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-cta-bar .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.9rem;
    text-align: center;
}

/* Add padding to body when mobile CTA bar is visible */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }

    .mobile-cta-bar {
        display: block;
    }
}

/* Info Boxes - General styling for callout sections */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.info-box {
    background: linear-gradient(135deg, var(--light-gray) 0%, #FFFFFF 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    border-left: 4px solid var(--primary-yellow);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.info-box:hover {
    border-left-width: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.info-box h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-box p {
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

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

.info-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.info-box li {
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

/* Responsive Design - Tablet/Medium Screens */
@media (max-width: 1200px) {
    .nav .container {
        gap: 1rem;
    }

    .nav-list {
        gap: 1rem;
    }

    .nav-cta {
        gap: 0.5rem;
    }
}

@media (max-width: 1100px) {
    .nav-cta .btn-call {
        display: none;
    }
}

@media (max-width: 1080px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .nav .container {
        max-width: 100%;
        gap: 0.75rem;
    }

    .nav-list {
        gap: 0.75rem;
    }

    .service-sidebar,
    .location-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.25rem; }

    .hero.hero-with-bg {
        background-position: 80% center;
    }

    /* Reduce hero padding on mobile */
    .service-hero,
    .location-hero,
    .services-hero,
    .locations-hero,
    .quote-hero,
    .contact-hero,
    .about-hero {
        padding: 3rem 0;
    }
    .hero-features { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .services-grid-new { grid-template-columns: 1fr; }
    .locations-main-grid { grid-template-columns: 1fr; }
    .services-list { grid-template-columns: 1fr; }
    .extended-areas ul { grid-template-columns: 1fr; }
    .service-features { grid-template-columns: 1fr; }
    .county-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .city-list {
        grid-template-columns: 1fr;
    }

    .areas-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
    .benefits-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .quote-form-container {
        grid-template-columns: 1fr;
        gap: 0.7%;
    }
    .contact-content { grid-template-columns: 1fr; }
    .service-content { grid-template-columns: 1fr; }
    .location-content { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; }
    .commitment-content { grid-template-columns: 1fr; text-align: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .hero-cta { flex-direction: column; }
    .service-cta, .location-cta { flex-direction: column; }
    .faq-grid { grid-template-columns: 1fr; }
    .neighborhoods-grid { grid-template-columns: 1fr; }
    .service-areas-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .info-boxes { grid-template-columns: 1fr; }

    /* Mobile adjustments for service and location pages */
    .service-main,
    .location-main {
        padding: 2rem 1.5rem;
    }

    .service-main h2,
    .location-main h2 {
        font-size: 1.75rem;
    }

    .service-main h3,
    .location-main h3 {
        font-size: 1.35rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .step-number {
        margin: 0 auto 1rem;
    }

    .service-sidebar,
    .location-sidebar {
        position: static;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .service-hero h1, .services-hero h1, .location-hero h1, .locations-hero h1, .quote-hero h1, .contact-hero h1, .about-hero h1 { font-size: 1.9rem; }
    .btn { font-size: 0.9rem; padding: 12px 24px; }
    .btn-large { padding: 16px 32px; font-size: 1rem; }
    .quote-benefits { grid-template-columns: 1fr; }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid .stat-item {
        min-width: 0;
        width: 100%;
        padding: 2rem 1.5rem;
    }

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

    .cta-stats .stat {
        min-width: 0;
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .reason-item {
        min-width: 0;
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .team-member {
        min-width: 0;
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .cert-item {
        min-width: 0;
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .contact-method {
        min-width: 0;
        width: 100%;
        padding: 1.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .emergency-contact {
        min-width: 0;
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .contact-form-container {
        min-width: 0;
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .quote-form-main {
        min-width: 0;
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .quote-form-main fieldset,
    .quote-form-main .form-section {
        min-width: 0;
        width: 100%;
        padding: 1.5rem 1rem 0 1rem;
    }

    .quote-info {
        min-width: 0;
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .contact-alternative {
        min-width: 0;
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .service-guarantee {
        min-width: 0;
        width: 100%;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 425px) {
    .container {
        padding: 0 10px;
    }

    .nav .container {
        padding: 0 10px;
    }

    .nav-brand .logo img {
        height: 40px;
    }

    .mobile-cta-bar .btn {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .mobile-cta-bar .cta-buttons {
        gap: 0.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .service-hero h1,
    .services-hero h1,
    .location-hero h1,
    .locations-hero h1,
    .quote-hero h1,
    .contact-hero h1,
    .about-hero h1 {
        font-size: 1.6rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.phone-icon { margin-right: 0.5rem; }

/* 404 Error Page */
.error-404 {
    padding: 8rem 0 5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.error-code {
    font-size: 10rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin: 0;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.error-404 h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: var(--white);
}

.error-message {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.helpful-links {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.helpful-links h3 {
    color: var(--primary-yellow);
    margin-bottom: 2rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
}

.link-group h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary-yellow);
}

.search-suggestion {
    background: rgba(245, 166, 35, 0.1);
    border: 2px solid var(--primary-yellow);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.search-suggestion p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.search-suggestion a {
    color: var(--primary-yellow);
    font-weight: 600;
}

.search-suggestion a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 6rem;
    }

    .error-404 h2 {
        font-size: 2rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .additional-services-grid {
        grid-template-columns: 1fr;
    }

    .radio-group-full {
        grid-template-columns: 1fr;
    }
}


/* Image Placeholder Styling - for missing images */
img {
    background-color: var(--light-gray);
    object-fit: cover;
}

img[src$=".png"],
img[src$=".jpg"],
img[src$=".jpeg"],
img[src$=".svg"],
img[src$=".webp"] {
    min-height: 60px;
}


/* Logo images - hide placeholder text */
.logo img,
.footer-logo img {
    border: none;
    background: transparent;
}


/* ===================================
   Template System Styles
   =================================== */

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--light-gray);
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--medium-gray);
    font-weight: 700;
}

.breadcrumbs a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--primary-yellow);
}

.breadcrumbs li:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

/* Hero Sections - Generic Template Styling */
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Hero Content Max Width */
.location-hero .container,
.service-hero .container,
.services-hero .container,
.locations-hero .container {
    max-width: 900px;
}

.location-hero h1,
.service-hero h1,
.services-hero h1,
.locations-hero h1 {
    text-align: center;
}

.location-hero .hero-subtitle,
.service-hero .hero-subtitle,
.services-hero .hero-subtitle,
.locations-hero .hero-subtitle {
    text-align: center;
}

/* Page Sidebar */
.page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 0.5rem;
}

.sidebar-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #4A5568;
}

.sidebar-card .btn-full {
    width: 100%;
    text-align: center;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 0.75rem;
}

.sidebar-links li:last-child {
    margin-bottom: 0;
}

.sidebar-links a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.sidebar-links a::before {
    content: "›";
    margin-right: 0.5rem;
    color: var(--primary-yellow);
    font-weight: 700;
}

.sidebar-links a:hover {
    background-color: var(--light-gray);
    color: var(--primary-yellow);
    padding-left: 1rem;
}

.sidebar-card .view-all {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-yellow);
    font-size: 0.95rem;
}

.sidebar-card .view-all:hover {
    color: var(--accent-gold);
}

/* City Info Card */
.city-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.95rem;
}

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

.city-info-list strong {
    color: var(--primary-dark);
    margin-right: 0.5rem;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

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

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

.review-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-yellow);
}

.review-card p {
    font-style: italic;
    color: #4A5568;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.review-card cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

/* Bottom CTA Section (already exists, but ensure consistency) */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

/* Responsive Adjustments for Template Sections */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 0.75rem 0;
    }

    .breadcrumbs li {
        font-size: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===================================
   Legal Pages (Privacy, Terms)
   =================================== */

.legal-page {
    padding: 4rem 0;
    background-color: var(--white);
}

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.legal-page .last-updated {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-yellow);
}

.legal-page h3 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--primary-yellow);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--accent-gold);
}

/* Mobile Responsive Styles for New Sections */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

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

    .trust-signals {
        padding: 2rem 0;
    }

    .testimonials,
    .service-process,
    .faq-section {
        padding: 3rem 0;
    }
}
