﻿.chd-colors {
    --brand-primary: #eb0a1e;
    --brand-secondary: #000;
    --brand-text-primary: #fff;
    --brand-text-secondary: #ffffff;
    --bg-light-grey: #f4f4f4;
    --bg-dark-charcoal: #222222;
}

.chd-main {
    width: 100%;
    margin: 0 auto;
    --zero-size: 0;
    --sm-size: 0.5rem;
    --md-size: 1rem;
    --lg-size: 2rem;
    --xl-size: 4rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .chd-main * {
        box-sizing: border-box;
    }

    .chd-main p:empty {
        display: none;
    }

    .chd-main *:is(header, section) {
        padding: var(--md-size);
    }

    .chd-main *:is(h1, h2, h3, h4) {
        margin: 0 0 var(--md-size);
        padding: 0;
    }

.chd-container {
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    position: relative;
    margin-top: 50px;
}


.full-width-hero {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('https://chd-seo-cdn.s3.amazonaws.com/TeamGillmanAcura/acura-front.webp') bottom/cover no-repeat;
}

    .full-width-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.45);
        z-index: 2;
    }

.chd-hero-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 3;
}

.chd-hero-content {
    position: absolute;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
    color: var(--brand-text-primary);
    max-width: 600px;
}

    .chd-hero-content h1 {
        font-size: 3rem;
        line-height: 1;
    }


a.chd-btn {
    display: inline-block;
    text-align: center;
    background-color: var(--brand-primary);
    color: var(--brand-text-primary);
    padding: 0.75rem 2rem;
    transition: all 0.25s ease;
    text-decoration: none !important;
    font-weight: 700;
    border: 1px solid var(--brand-primary);
    text-transform: uppercase;
}

    a.chd-btn.pill {
        border-radius: 50px;
        padding: 0.6rem 2.5rem;
        font-size: 0.85rem;
    }

    a.chd-btn:hover {
        background-color: var(--brand-secondary);
        border-color: var(--brand-secondary);
    }


.full-width-grey-section {
    background-color: var(--bg-light-grey);
    width: 100%;
    padding: var(--xl-size) 0;
}

.full-width-white-section {
    background-color: #fff;
    width: 100%;
    padding: var(--xl-size) 0;
}


.bleed-section {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    background-color: var(--bg-dark-charcoal);
    padding: 0 !important;
}

    .bleed-section::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background-size: cover;
        background-position: center;
    }

    .bleed-section.reverse::before {
        right: auto;
        left: 0;
    }

.img-pros::before {
    background-image: url('https://chd-seo-cdn.s3.amazonaws.com/TeamGillmanAcura/certified-toyota-service2-1200x900-min.jpg');
}

.img-parts::before {
    background-image: url('https://chd-seo-cdn.s3.amazonaws.com/TeamGillmanAcura/toyota-genuine-service-1200x900-min.jpg');
}

.bleed-content-wrapper {
    display: flex;
    width: 100%;
    min-height: 550px;
    align-items: stretch;
}

.stagger-text {
    flex: 1 1 50%;
    padding: var(--xl-size) var(--lg-size);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 5;
}

.stagger-spacer {
    flex: 1 1 50%;
}

.stagger-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.stagger-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #ddd;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--xl-size) var(--lg-size);
}

.service-pod {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .service-pod img {
        width: 90px;
        height: 90px;
        margin-bottom: var(--md-size);
        object-fit: contain;
    }

    .service-pod h3 {
        font-size: 1.6rem;
        margin-bottom: var(--sm-size);
        color: #333;
    }

    .service-pod p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: var(--lg-size);
        color: #555;
    }

    .service-pod .chd-btn {
        margin-top: auto;
        width: fit-content;
        font-size: 0.9rem;
    }

.more-services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--md-size) var(--lg-size);
    list-style: none;
    padding: 0;
    margin: 0;
}

    .more-services-list li {
        font-size: 0.85rem;
        color: #444;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 8px;
    }

        .more-services-list li::before {
            content: '✓';
            color: #333;
            font-size: 0.7rem;
            margin-top: 2px;
        }

.highlight-red {
    color: var(--brand-primary) !important;
    font-weight: 600;
}

.split-boxes {
    display: flex;
    gap: var(--lg-size);
    margin: var(--xl-size) auto;
}

.info-box {
    flex: 1 1 50%;
    overflow: hidden;
    padding: 0 !important;
}

    .info-box img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

    .info-box .box-content {
        padding: 30px;
        text-align: center;
        color: #fff;
        min-height: 215px;
    }

    .info-box.location .box-content {
        background-color: var(--brand-primary);
    }

    .info-box.model .box-content {
        background-color: var(--bg-dark-charcoal);
    }

    .info-box h3 {
        text-transform: uppercase;
        margin-bottom: var(--lg-size);
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

.info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    padding: 0;
    text-align: left;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
}

    .info-list li {
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .info-list li::before {
            content: '✓';
            font-size: 0.8rem;
        }


@media(max-width:992px) {
    .bleed-section, .bleed-section.reverse {
        flex-direction: column;
        min-height: auto;
    }

        .bleed-section::before {
            position: relative;
            width: 100%;
            height: 350px;
            right: 0;
            left: 0;
        }

    .bleed-content-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .stagger-text {
        flex: 1 1 100%;
        order: 2;
        padding: var(--lg-size);
    }

    .stagger-spacer {
        display: none;
    }

    .services-grid, .split-boxes, .more-services-list {
        grid-template-columns: repeat(2, 1fr);
        flex-direction: column;
    }
}
.editor a:not(.no-hover) {
    color: white!important;
    text-decoration: underline;
}

@media(max-width:768px) {
    .chd-hero-content h1 {
        font-size: 2.2rem;
    }

    .services-grid, .more-services-list {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .info-list {
        grid-template-columns: 1fr;
    }
}
