
/* =========================
   BASIC RESET
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.6;
}


/* =========================
   GENERAL
========================= */

a {
    color: inherit;
    text-decoration: none;
}

.section {
    padding: 90px 20px;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.section-heading p {
    color: #666666;
}

.section-label {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #0066CC;
}


/* =========================
   HEADER
========================= */

.site-header {
    width: 100%;
    border-bottom: 1px solid #dddddd;
    background-color: #ffffff;
    position: relative;
    z-index: 1000;
}

#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #111111;

    line-height: 1;
    white-space: nowrap;
}

.logo span {
    color: #0066CC;
}


/* =========================
   MAIN NAV
========================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav > a,
.nav-dropdown-title {
    display: flex;
    align-items: center;

    font-size: 15px;
    line-height: 1;
}

.main-nav a:hover {
    color: #0066CC;
}


/* =========================
   RESOURCE NAV DROPDOWN
========================= */

.nav-dropdown {
    position: relative;

    display: flex;
    align-items: center;
}

.nav-dropdown-title {
    display: flex;
    align-items: center;
}

.nav-dropdown-menu {
    position: absolute;

    top: calc(100% + 18px);
    left: 0;

    min-width: 220px;

    padding: 8px 0;

    background-color: #ffffff;

    border: 1px solid #dddddd;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 1001;
}

.nav-dropdown-menu a {
    display: block;

    padding: 12px 18px;

    white-space: nowrap;

    font-size: 14px;
    line-height: 1.4;
}

.nav-dropdown-menu a:hover {
    background-color: #EAF3FF;
    color: #0066CC;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================
   HEADER CALL BUTTON
========================= */

.header-button {
    padding: 10px 18px;

    background-color: #0066CC;
    color: #ffffff;

    border: 1px solid #0066CC;

    font-size: 14px;
    font-weight: bold;

    white-space: nowrap;
}

.header-button:hover {
    background-color: #0052A3;
}


/* =========================
   HOMEPAGE HERO
========================= */

.home-hero {
    min-height: 520px;

    display: flex;

    align-items: center;

    position: relative;

    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;
}


/* Dark overlay */

.home-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.55);
}


.home-hero-content {
    width: min(1100px, 90%);

    margin: 0 auto;

    position: relative;

    z-index: 1;
}


/* Small label */

.home-hero .section-label {
    margin-bottom: 15px;

    color: #4DA3FF;
}


/* Main heading */

.home-hero h1 {
    max-width: 800px;

    margin: 10px 0 20px;

    font-size: clamp(42px, 6vw, 68px);

    line-height: 0.98;
}


/* Description */

.home-hero-text {
    max-width: 550px;

    margin-bottom: 30px;

    font-size: 20px;

    line-height: 1.5;

    color: #dddddd;
}


/* Buttons */

.home-hero-buttons {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 15px;

    flex-wrap: wrap;
}


/* =========================
   HOMEPAGE HERO MOBILE
========================= */

@media (max-width: 700px) {

    .home-hero {
        min-height: 450px;
    }

    .home-hero h1 {
        font-size: 42px;

        line-height: 1;
    }

    .home-hero-text {
        font-size: 18px;
    }

    .home-hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================
   HERO
========================= */

.hero {
    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 80px 20px;

    background-image: url("images/hero.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    position: relative;
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        rgba(0, 0, 0, 0.60),
        rgba(0, 0, 0, 0.45)
    );
}

.hero-content {
    max-width: 850px;

    position: relative;

    z-index: 1;

    color: #ffffff;
}

.hero-label {
    display: inline-block;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 20px;

    padding-bottom: 8px;

    color: #4DA3FF;

    border-bottom: 2px solid #0066CC;
}

.hero h1 {
    font-size: 58px;

    line-height: 1.1;

    margin-bottom: 25px;
}

.hero-text {
    max-width: 650px;

    margin: 0 auto 35px;

    font-size: 20px;

    color: #ffffff;
}

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


/* =========================
   BUTTONS
========================= */

.button {
    display: inline-block;

    padding: 14px 25px;

    font-weight: bold;
}

.primary-button {
    background-color: #0066CC;

    color: #ffffff;
}

.primary-button:hover {
    background-color: #0052A3;
}

.secondary-button {
    border: 1px solid #ffffff;

    background-color: #ffffff;

    color: #111111;
}

.secondary-button:hover {
    background-color: #EAF3FF;
}


/* =========================
   SERVICES
========================= */

.services-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    border: 1px solid #dddddd;

    padding: 30px;

    background-color: #ffffff;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);

    border-color: #0066CC;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: #666666;
}

.service-card a {
    display: inline-block;

    margin-top: 20px;

    font-weight: bold;

    color: #0066CC;
}

.service-card a:hover {
    color: #0052A3;
}

.service-card-image {
    width: 100%;
    height: 170px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   RESOURCES
========================= */

.resources-section {
    background-color: #EAF3FF;
}

.resources-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.resource-card {
    background-color: #ffffff;

    border: 1px solid #dddddd;

    padding: 30px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.resource-card:hover {
    transform: translateY(-4px);

    border-color: #0066CC;
}

.resource-card h3 {
    margin-bottom: 15px;
}

.resource-card p {
    color: #666666;

    margin-bottom: 20px;
}

.resource-card a {
    font-weight: bold;

    color: #0066CC;
}

.resource-card a:hover {
    color: #0052A3;
}


/* =========================
   FEATURED ARTICLE
========================= */

.featured-section {
    background-color: #111111;

    color: #ffffff;
}

.featured-content {
    max-width: 900px;

    margin: 0 auto;
}

.featured-label {
    display: inline-block;

    margin-bottom: 20px;

    color: #4DA3FF;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.featured-title-link {
    display: block;

    color: #ffffff;
}

.featured-content h2 {
    max-width: 800px;

    font-size: 44px;

    line-height: 1.15;

    margin-bottom: 20px;

    transition: color 0.2s ease;
}

.featured-title-link:hover h2 {
    color: #4DA3FF;
}

.featured-description {
    max-width: 700px;

    color: #cccccc;

    font-size: 18px;

    margin-bottom: 20px;
}

.featured-meta {
    color: #888888;

    font-size: 14px;
}


/* =========================
   ABOUT NJ AUTO
========================= */

.about-section {
    background-color: #ffffff;
}

.about-container {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 70px;

    align-items: center;
}

.about-content h2 {
    max-width: 600px;

    font-size: 42px;

    line-height: 1.15;

    margin-bottom: 25px;
}

.about-content p:not(.section-label) {
    max-width: 650px;

    color: #666666;

    margin-bottom: 18px;
}

.about-link {
    display: inline-block;

    margin-top: 15px;

    color: #0066CC;

    font-weight: bold;
}

.about-link:hover {
    color: #0052A3;
}

.about-highlights {
    border-left: 3px solid #0066CC;
}

.about-highlight {
    padding: 22px 25px;

    border-bottom: 1px solid #dddddd;
}

.about-highlight:last-child {
    border-bottom: none;
}

.about-highlight strong {
    display: block;

    font-size: 18px;

    margin-bottom: 5px;
}

.about-highlight span {
    color: #666666;

    font-size: 15px;
}


/* =========================
   CONTACT / LOCATION
========================= */

.contact-section {
    background-color: #F5F5F5;
}

.contact-container {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: stretch;
}

.contact-content {
    display: flex;

    flex-direction: column;

    justify-content: center;
}

.contact-content h2 {
    font-size: 42px;

    line-height: 1.15;

    margin-bottom: 20px;
}

.contact-intro {
    max-width: 550px;

    color: #666666;

    margin-bottom: 35px;
}

.contact-details {
    display: grid;

    gap: 22px;

    margin-bottom: 35px;
}

.contact-detail-label {
    display: block;

    margin-bottom: 5px;

    color: #0066CC;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1.5px;
}

.contact-detail p,
.contact-detail a {
    font-size: 17px;
}

.contact-detail a {
    color: #111111;

    font-weight: bold;
}

.contact-detail a:hover {
    color: #0066CC;
}

.contact-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.contact-outline-button {
    border: 1px solid #111111;

    background-color: transparent;

    color: #111111;
}

.contact-outline-button:hover {
    background-color: #ffffff;

    border-color: #0066CC;

    color: #0066CC;
}


/* =========================
   MAP
========================= */

.map-container {
    min-height: 450px;
}

.map-placeholder {
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background-color: #dddddd;

    text-align: center;
}

.map-placeholder span {
    font-size: 18px;

    font-weight: bold;
}

.map-placeholder p {
    margin-top: 8px;

    color: #666666;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background-color: #111111;

    color: #ffffff;

    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    gap: 30px;
}

.site-footer p {
    color: #aaaaaa;

    margin-top: 8px;
}


/* =========================
   RESOURCE ICONS & LINK
========================= */

.resource-icon {
    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    background-color: #0066CC;

    color: #ffffff;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1px;
}

.resources-link {
    text-align: center;

    margin-top: 40px;
}

.resources-link a {
    color: #0066CC;

    font-weight: bold;
}

.resources-link a:hover {
    color: #0052A3;
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-button {
    display: none;

    background: none;

    border: none;

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

    color: #111111;
}


/* =========================
   VIN DECODER PAGE
========================= */

.tool-hero {
    padding: 90px 20px;

    background-color: #111111;

    color: #ffffff;

    text-align: center;
}

.tool-hero-content {
    max-width: 800px;

    margin: 0 auto;
}

.tool-hero h1 {
    font-size: 52px;

    line-height: 1.1;

    margin-bottom: 20px;
}

.tool-hero p:not(.section-label) {
    max-width: 650px;

    margin: 0 auto;

    color: #cccccc;

    font-size: 18px;
}


/* =========================
   VIN TOOL
========================= */

.vin-tool-section {
    padding: 80px 20px;

    background-color: #F5F5F5;
}

.vin-tool-container {
    max-width: 1000px;

    margin: 0 auto;
}

.vin-tool-card {
    background-color: #ffffff;

    padding: 45px;

    border: 1px solid #dddddd;
}

.vin-tool-card h2 {
    font-size: 32px;

    margin-bottom: 12px;
}

.vin-tool-intro {
    max-width: 700px;

    color: #666666;

    margin-bottom: 30px;
}

.vin-tool-card label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: bold;
}

.vin-input-row {
    display: flex;

    gap: 12px;
}

.vin-input-row input {
    flex: 1;

    min-width: 0;

    padding: 14px 16px;

    border: 1px solid #bbbbbb;

    font-size: 16px;

    text-transform: uppercase;
}

.vin-input-row input:focus {
    outline: none;

    border-color: #0066CC;
}

.vin-input-note {
    margin-top: 10px;

    color: #777777;

    font-size: 13px;
}


/* =========================
   VIN STATUS
========================= */

.vin-loading {
    margin-top: 25px;

    padding: 15px;

    background-color: #EAF3FF;

    color: #0066CC;

    font-weight: bold;
}

.vin-error {
    margin-top: 25px;

    padding: 15px;

    background-color: #fff0f0;

    border: 1px solid #e0b0b0;

    color: #a00000;
}


/* =========================
   VIN RESULTS
========================= */

.vin-results {
    margin-top: 40px;
}

.vin-results-header {
    margin-bottom: 25px;
}

.vin-results-header h2 {
    font-size: 34px;
}


/* =========================
   VIN SUMMARY
========================= */

.vin-summary {
    margin-bottom: 35px;

    padding: 35px;

    background-color: #111111;

    color: #ffffff;
}

.vin-summary h3 {
    margin-bottom: 8px;

    font-size: 36px;

    line-height: 1.15;
}

.vin-summary-details {
    color: #cccccc;

    font-size: 17px;
}

.vin-summary-specs {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 25px;
}

.vin-summary-spec {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.vin-summary-spec span {
    color: #999999;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 1.5px;
}

.vin-summary-spec strong {
    color: #ffffff;

    font-size: 17px;
}

.vin-summary-vin {
    display: flex;

    flex-direction: column;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #444444;
}

.vin-summary-vin span {
    margin-bottom: 5px;

    color: #999999;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1.5px;
}

.vin-summary-vin strong {
    font-size: 16px;

    letter-spacing: 1px;
}


/* =========================
   RESULT SECTIONS
========================= */

.vin-result-section {
    margin-bottom: 35px;
}

.vin-result-section h3 {
    margin-bottom: 12px;

    font-size: 24px;
}

.vin-section-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid #dddddd;

    border-left: 1px solid #dddddd;
}

.vin-result-item {
    padding: 18px 20px;

    background-color: #ffffff;

    border-right: 1px solid #dddddd;

    border-bottom: 1px solid #dddddd;
}

.vin-result-label {
    display: block;

    margin-bottom: 5px;

    color: #0066CC;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.vin-result-value {
    display: block;

    font-size: 17px;

    font-weight: bold;
}


/* =========================
   VIN DISCLAIMER
========================= */

.vin-disclaimer {
    margin-top: 25px;

    padding: 20px;

    background-color: #ffffff;

    border-left: 3px solid #0066CC;

    color: #666666;

    font-size: 14px;
}

.vin-disclaimer strong {
    color: #111111;
}


/* =========================
   VIN CTA
========================= */

.vin-cta {
    margin-top: 60px;

    padding: 45px;

    background-color: #111111;

    color: #ffffff;

    text-align: center;
}

.vin-cta h2 {
    font-size: 32px;

    margin-bottom: 15px;
}

.vin-cta p {
    max-width: 700px;

    margin: 0 auto 25px;

    color: #cccccc;
}


/* =========================
   VIN MOBILE
========================= */

@media (max-width: 600px) {

    .tool-hero {
        padding: 65px 20px;
    }

    .tool-hero h1 {
        font-size: 38px;
    }

    .vin-tool-section {
        padding: 50px 15px;
    }

    .vin-tool-card {
        padding: 25px;
    }

    .vin-input-row {
        flex-direction: column;
    }

    .vin-input-row .button {
        width: 100%;
    }

    .vin-summary {
        padding: 25px;
    }

    .vin-summary h3 {
        font-size: 28px;
    }

    .vin-section-grid {
        grid-template-columns: 1fr;
    }

    .vin-result-item {
        padding: 16px;
    }

    .vin-cta {
        padding: 30px 20px;
    }

    .vin-cta h2 {
        font-size: 28px;
    }

    .vin-summary-specs {
        gap: 20px;
    }

    .vin-summary-spec {
        min-width: 90px;
    }

}


/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 900px) {

    .header-container {
        position: relative;

        min-height: 60px;

        padding: 15px 20px;
    }


    /* Hamburger */

    .mobile-menu-button {
        display: block;

        order: 1;

        padding: 0;

        z-index: 2;
    }


    /* Center logo */

    .logo {
        position: absolute;

        left: 50%;

        top: 50%;

        transform: translate(-50%, -50%);

        z-index: 1;
    }


    /* Call button */

    .header-button {
        display: block;

        order: 3;

        padding: 9px 14px;

        font-size: 13px;

        z-index: 2;
    }


    /* Navigation */

    .main-nav {
        display: none;
    }

    .main-nav.mobile-nav-open {
        display: flex;

        position: absolute;

        top: 60px;

        left: 0;

        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background-color: #ffffff;

        border-top: 1px solid #dddddd;

        border-bottom: 1px solid #dddddd;

        z-index: 1000;
    }

    .main-nav.mobile-nav-open > a,
    .main-nav.mobile-nav-open .nav-dropdown-title {
        display: block;

        padding: 15px 20px;

        border-bottom: 1px solid #eeeeee;

        font-size: 15px;

        line-height: 1.4;
    }


    /* Resource dropdown */

    .nav-dropdown {
        display: block;
    }

    .nav-dropdown-menu {
        position: static;

        display: none;

        min-width: 0;

        padding: 0;

        border: none;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown-menu a {
        display: block;

        padding: 15px 40px;

        background-color: #f8f8f8;

        border-bottom: 1px solid #eeeeee;

        font-size: 14px;
    }


    /* Other responsive layouts */

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 45px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .header-container {
        padding: 15px 20px;
    }

    /*
       IMPORTANT:
       .header-button is intentionally NOT hidden here.
       It remains visible on mobile.
    */

    .section {
        padding: 65px 20px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 550px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-text {
        font-size: 18px;
    }

    .footer-container {
        flex-direction: column;
    }

    .featured-content h2 {
        font-size: 32px;
    }

    .featured-description {
        font-size: 16px;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contact-content h2 {
        font-size: 32px;
    }

    .map-container {
        min-height: 300px;
    }

}


/* =========================
   VIN RECALLS
========================= */

.vin-recall-section {
    margin-top: 45px;
}

.vin-recall-loading {
    padding: 20px;

    background-color: #f5f5f5;

    color: #666666;
}

.vin-recall-clear {
    padding: 25px;

    background-color: #f5f5f5;

    border-left: 4px solid #0066CC;
}

.vin-recall-clear strong {
    display: block;

    margin-bottom: 8px;

    font-size: 18px;
}

.vin-recall-clear p {
    margin: 0;

    color: #666666;
}

.vin-recall-warning {
    margin-bottom: 20px;

    padding: 20px;

    background-color: #f5f5f5;

    border-left: 4px solid #0066CC;
}

.vin-recall-warning strong {
    display: block;

    margin-bottom: 6px;

    font-size: 20px;
}

.vin-recall-warning p {
    margin: 0;

    color: #666666;
}

.vin-recall-item {
    margin-bottom: 20px;

    padding: 25px;

    background-color: #ffffff;

    border: 1px solid #dddddd;
}

.vin-recall-number {
    margin-bottom: 15px;

    color: #0066CC;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.vin-recall-item p {
    margin-bottom: 12px;

    line-height: 1.6;
}

.vin-recall-item p:last-child {
    margin-bottom: 0;
}

.vin-recall-note {
    margin-top: 25px;

    padding: 20px;

    background-color: #f5f5f5;

    color: #666666;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================
   PRE-PURCHASE INSPECTION
========================= */

.ppi-container {
    width: min(1100px, 90%);

    margin: 0 auto;
}


/* =========================
   HERO
========================= */

.ppi-hero {
    min-height: 520px;

    display: flex;

    align-items: center;

    background-color: #111111;

    color: #ffffff;
}

.ppi-hero-content {
    width: min(1100px, 90%);

    margin: 0 auto;

    display: block;

    color: inherit;
}

.ppi-hero h1 {
    margin: 10px 0 20px;

    font-size: clamp(42px, 7vw, 78px);

    line-height: 0.95;
}

.ppi-hero-text {
    max-width: 500px;

    margin-bottom: 30px;

    font-size: 21px;

    line-height: 1.5;

    color: #dddddd;
}


/* =========================
   GENERAL SECTIONS
========================= */

.ppi-section {
    padding: 90px 0;
}

.ppi-section h2,
.ppi-report-section h2,
.ppi-why-section h2,
.ppi-cta h2 {
    max-width: 800px;

    margin-top: 10px;

    font-size: clamp(32px, 5vw, 52px);

    line-height: 1.1;
}


/* =========================
   CHECK LIST
========================= */

.ppi-check-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px 50px;

    margin-top: 40px;

    font-size: 18px;
}

.ppi-check-grid div {
    padding-bottom: 15px;

    border-bottom: 1px solid #dddddd;
}


/* =========================
   REPORT SECTION
========================= */

.ppi-report-section {
    padding: 100px 0;

    background-color: #f5f5f5;
}

.ppi-intro {
    max-width: 700px;

    margin: 20px auto 45px;

    font-size: 18px;

    line-height: 1.7;

    color: #555555;
}


/* =========================
   REPORT PREVIEW
========================= */

.ppi-report-preview {
    max-width: 850px;

    margin: 0 auto;

    cursor: pointer;
}

.ppi-report-preview-inner {
    position: relative;

    padding: 35px;

    background-color: #ffffff;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ppi-report-preview:hover
.ppi-report-preview-inner {
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.2);
}


/* =========================
   REPORT HEADER
========================= */

.ppi-report-header {
    display: grid;

    grid-template-columns:
        1fr 180px 1fr;

    align-items: center;

    gap: 20px;
}

.ppi-shop-info {
    display: flex;

    flex-direction: column;

    gap: 3px;

    font-size: 11px;

    line-height: 1.4;
}

.ppi-shop-info strong {
    margin-bottom: 4px;

    font-size: 14px;
}

.ppi-logo-area {
    text-align: center;
}

.ppi-logo-area img {
    width: 100px;

    height: auto;
}

.ppi-report-title {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    text-align: right;
}

.ppi-report-title span {
    font-size: 10px;

    letter-spacing: 1px;
}

.ppi-report-title strong {
    font-size: 20px;

    letter-spacing: 1px;
}

.ppi-report-title small {
    font-size: 10px;

    letter-spacing: 2px;
}


/* =========================
   REPORT CONTENT
========================= */

.ppi-report-line {
    height: 2px;

    margin: 25px 0;

    background-color: #111111;
}

.ppi-preview-info {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px 30px;

    margin-bottom: 25px;
}

.ppi-preview-info div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.ppi-preview-info span {
    font-size: 9px;

    font-weight: bold;

    letter-spacing: 1px;

    color: #777777;
}

.ppi-preview-info strong {
    font-size: 13px;
}

.ppi-preview-vin {
    grid-column: 1 / -1;
}


/* =========================
   REPORT CATEGORIES
========================= */

.ppi-preview-category {
    margin-top: 18px;

    border: 1px solid #dddddd;
}

.ppi-preview-category > strong {
    display: block;

    padding: 9px 12px;

    background-color: #111111;

    color: #ffffff;

    font-size: 11px;

    letter-spacing: 1px;
}

.ppi-preview-category div {
    display: flex;

    justify-content: space-between;

    padding: 8px 12px;

    border-top: 1px solid #eeeeee;

    font-size: 11px;
}


/* =========================
   PREVIEW OVERLAY
========================= */

.ppi-preview-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background-color: rgba(0, 0, 0, 0);

    transition:
        background-color 0.25s ease;
}

.ppi-preview-overlay span {
    padding: 14px 22px;

    background-color: #0066cc;

    color: #ffffff;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1px;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.ppi-report-preview:hover
.ppi-preview-overlay {
    background-color: rgba(0, 0, 0, 0.35);
}

.ppi-report-preview:hover
.ppi-preview-overlay span {
    opacity: 1;

    transform: translateY(0);
}

.ppi-preview-caption {
    margin-top: 20px;

    text-align: center;

    color: #666666;

    font-size: 14px;
}


/* =========================
   TWO COLUMN
========================= */

.ppi-two-column {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: start;
}

.ppi-large-text {
    font-size: 24px;

    line-height: 1.5;
}


/* =========================
   WHY SECTION
========================= */

.ppi-why-section {
    padding: 100px 0;

    background-color: #111111;

    color: #ffffff;
}


/* =========================
   CTA
========================= */

.ppi-cta {
    padding: 100px 0;

    text-align: center;
}

.ppi-cta h2 {
    margin-left: auto;

    margin-right: auto;

    margin-bottom: 30px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .ppi-hero {
        min-height: 450px;
    }

    .ppi-check-grid {
        grid-template-columns: 1fr;
    }

    .ppi-report-header {
        grid-template-columns:
            1fr 1fr;
    }

    .ppi-logo-area {
        display: none;
    }

    .ppi-report-title {
        align-items: flex-end;
    }

    .ppi-two-column {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .ppi-report-preview-inner {
        padding: 20px;
    }

    .ppi-preview-info {
        grid-template-columns: 1fr;
    }

    .ppi-preview-vin {
        grid-column: auto;
    }

}


.ppi-free-report-text {
    margin-top: 18px;

    color: #cccccc;

    font-size: 14px;

    letter-spacing: 0.3px;
}


/* =========================
   PPI BUTTON
========================= */

.ppi-call-button {
    display: inline-block;

    padding: 14px 25px;

    background-color: #0066CC;

    color: #ffffff;

    font-weight: bold;

    text-decoration: none;

    transition: background-color 0.2s ease;
}

.ppi-call-button:hover {
    background-color: #0052A3;
}


/* =========================
   RESOURCES PAGE
========================= */

.resources-page-section {
    background-color: #F5F5F5;
}

.resources-page-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.resource-page-card {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding: 35px;

    background-color: #ffffff;

    border: 1px solid #dddddd;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.resource-page-card:hover {
    transform: translateY(-4px);

    border-color: #0066CC;
}

.resource-page-icon {
    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    background-color: #0066CC;

    color: #ffffff;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1px;
}

.resource-page-card h2 {
    margin-bottom: 15px;

    font-size: 26px;

    line-height: 1.2;
}

.resource-page-card p {
    margin-bottom: 25px;

    color: #666666;
}

.resource-page-card .button {
    margin-top: auto;
}

.resource-coming-soon {
    opacity: 0.8;
}

.resource-coming-soon-label {
    display: inline-block;

    margin-top: auto;

    padding: 8px 12px;

    background-color: #EAF3FF;

    color: #0066CC;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================
   RESOURCES PAGE INFO
========================= */

.resources-page-info {
    background-color: #ffffff;
}


/* =========================
   RESOURCES PAGE MOBILE
========================= */

@media (max-width: 900px) {

    .resources-page-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 600px) {

    .resources-page-grid {
        grid-template-columns: 1fr;
    }

    .resource-page-card {
        padding: 30px;
    }

}


/* =========================
   ARTICLES PAGE
========================= */

.articles-page-section {
    background-color: #F5F5F5;
}

.articles-page-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}


/* =========================
   ARTICLE CARD
========================= */

.article-card {
    display: flex;

    flex-direction: column;

    background-color: #ffffff;

    border: 1px solid #dddddd;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.article-card:hover {
    transform: translateY(-4px);

    border-color: #0066CC;
}

.article-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-image-feature {
    width: 100%;
    height: 440px;
    overflow: hidden;
}

.article-image-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.article-card-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 30px;
}

.article-category {
    margin-bottom: 10px;

    color: #0066CC;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1.5px;
}

.article-card h2 {
    margin-bottom: 15px;

    font-size: 27px;

    line-height: 1.2;
}

.article-card p:not(.article-category) {
    margin-bottom: 25px;

    color: #666666;
}

.article-card a {
    margin-top: auto;

    color: #0066CC;

    font-weight: bold;
}

.article-card a:hover {
    color: #0052A3;
}

@media (max-width: 768px) {

    .article-image-feature {
        height: 280px;
    }

    .article-image {
        height: 200px;
    }

}

/* =========================
   FEATURED ARTICLE
========================= */

.article-featured {
    grid-column: 1 / -1;

    display: grid;

    grid-template-columns: 1fr 1fr;
}

.article-featured .article-image-placeholder {
    height: 100%;

    min-height: 300px;
}

.article-featured .article-card-content {
    justify-content: center;

    padding: 45px;
}

.article-featured h2 {
    font-size: 36px;
}


/* =========================
   ARTICLES CTA
========================= */

.articles-cta {
    background-color: #ffffff;
}

.articles-cta .button {
    margin-top: 25px;
}


/* =========================
   ARTICLES MOBILE
========================= */

@media (max-width: 700px) {

    .articles-page-grid {
        grid-template-columns: 1fr;
    }

    .article-featured {
        grid-column: auto;

        grid-template-columns: 1fr;
    }

    .article-featured .article-image-placeholder {
        min-height: 220px;
    }

    .article-featured .article-card-content {
        padding: 30px;
    }

    .article-featured h2 {
        font-size: 30px;
    }

}

.article-card,
.resource-page-card {
    color: inherit;

    text-decoration: none;
}

.article-card-link,
.resource-page-link {
    margin-top: auto;

    color: #0066CC;

    font-weight: bold;
}

.article-card:hover .article-card-link,
.resource-page-card:hover .resource-page-link {
    color: #0052A3;
}


/* =========================
   SERVICES PAGE
========================= */

.services-page-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.service-page-card {
    display: flex;

    flex-direction: column;

    min-height: 320px;

    padding: 35px;

    background-color: #ffffff;

    border: 1px solid #dddddd;

    color: #111111;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.service-page-card:hover {
    transform: translateY(-4px);

    border-color: #0066CC;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
}

/* =========================
   SERVICE CARD IMAGES
========================== */

.service-page-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================
   SERVICE CARD CONTENT
========================== */

.service-page-content {
    padding: 28px;
}

.service-page-category {
    margin-bottom: 8px;

    color: #0066CC;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1.5px;
}

.service-page-content h2 {
    margin-bottom: 15px;

    font-size: 28px;

    line-height: 1.15;
}

.service-page-content > p {
    max-width: 500px;

    color: #666666;

    font-size: 16px;
}

.service-page-link {
    margin-top: auto;

    padding-top: 25px;

    color: #0066CC;

    font-weight: bold;
}

.service-page-card:hover .service-page-link {
    color: #0052A3;
}


/* =========================
   SERVICES CTA
========================= */

.services-cta {
    background-color: #F5F5F5;
}


/* =========================
   SERVICES MOBILE
========================= */

@media (max-width: 700px) {

    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .service-page-card {
        min-height: 280px;

        padding: 30px;
    }

}


/* =========================
   ABOUT PAGE
========================= */

.about-page-section {
    background-color: #ffffff;
}

.about-page-container {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 80px;

    align-items: center;
}

.about-page-content h2 {
    max-width: 650px;

    margin: 10px 0 25px;

    font-size: 42px;

    line-height: 1.15;
}

.about-page-content p:not(.section-label) {
    max-width: 650px;

    margin-bottom: 18px;

    color: #666666;

    font-size: 17px;
}


/* =========================
   ABOUT HIGHLIGHTS
========================= */

.about-page-highlights {
    border-left: 3px solid #0066CC;
}

.about-page-highlight {
    padding: 25px;

    border-bottom: 1px solid #dddddd;
}

.about-page-highlight:last-child {
    border-bottom: none;
}

.about-page-highlight strong {
    display: block;

    margin-bottom: 7px;

    font-size: 19px;
}

.about-page-highlight span {
    color: #666666;

    font-size: 15px;
}


/* =========================
   ABOUT APPROACH
========================= */

.about-approach-section {
    background-color: #F5F5F5;
}

.about-approach-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.about-approach-card {
    padding: 35px;

    background-color: #ffffff;

    border: 1px solid #dddddd;
}

.about-approach-number {
    margin-bottom: 25px;

    color: #0066CC;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 2px;
}

.about-approach-card h3 {
    margin-bottom: 12px;

    font-size: 24px;
}

.about-approach-card p {
    color: #666666;
}


/* =========================
   ABOUT CTA
========================= */

.about-cta {
    text-align: center;
}


/* =========================
   ABOUT MOBILE
========================= */

@media (max-width: 700px) {

    .about-page-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-page-content h2 {
        font-size: 32px;
    }

    .about-approach-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================
   CONTACT PAGE
========================= */

.contact-page-section {
    background-color: #F5F5F5;
}

.contact-page-container {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: stretch;
}

.contact-page-content {
    display: flex;

    flex-direction: column;

    justify-content: center;
}

.contact-page-content h2 {
    margin: 10px 0 20px;

    font-size: 42px;

    line-height: 1.15;
}

.contact-page-intro {
    max-width: 550px;

    margin-bottom: 35px;

    color: #666666;

    font-size: 17px;
}


/* =========================
   CONTACT DETAILS
========================= */

.contact-page-details {
    display: grid;

    gap: 25px;

    margin-bottom: 35px;
}

.contact-page-detail span {
    display: block;

    margin-bottom: 5px;

    color: #0066CC;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1.5px;
}

.contact-page-detail p,
.contact-page-detail a {
    font-size: 17px;
}

.contact-page-detail a {
    color: #111111;

    font-weight: bold;
}

.contact-page-detail a:hover {
    color: #0066CC;
}


/* =========================
   CONTACT BUTTONS
========================= */

.contact-page-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


/* =========================
   CONTACT MAP
========================= */

.contact-page-map {
    min-height: 500px;
}

.contact-page-map .map-placeholder {
    height: 100%;

    min-height: 500px;
}


/* =========================
   CONTACT CTA
========================= */

.contact-page-cta {
    text-align: center;
}


/* =========================
   CONTACT MOBILE
========================= */

@media (max-width: 700px) {

    .contact-page-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contact-page-content h2 {
        font-size: 32px;
    }

    .contact-page-map,
    .contact-page-map .map-placeholder {
        min-height: 300px;
    }

}


/* =========================================================
   VEHICLE INSPECTION REPORT
========================================================= */


/* =========================
   REPORT PAGE
========================= */

.inspection-report-page {
    background: #f1f1f1;

    margin: 0;

    padding: 30px;

    font-family: Arial, Helvetica, sans-serif;

    color: #111;
}


/* =========================
   REPORT SHEET
========================= */

.inspection-report {
    position: relative;

    width: 8.5in;

    min-height: 11in;

    margin: 0 auto;

    padding: 0.4in;

    box-sizing: border-box;

    background: #fff;

    overflow: hidden;
}


/* =========================================================
   WATERMARK
========================================================= */

.inspection-watermark {
    position: absolute;

    top: 43%;

    left: 50%;

    transform:
        translate(-50%, -50%)
        rotate(-35deg);

    font-size: 95px;

    font-weight: 800;

    letter-spacing: 8px;

    color: rgba(0, 102, 204, 0.09);

    white-space: nowrap;

    pointer-events: none;

    user-select: none;

    z-index: 0;
}

.inspection-report > *:not(.inspection-watermark) {
    position: relative;

    z-index: 1;
}


/* =========================================================
   HEADER
========================================================= */

.inspection-report-header {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;
}

.inspection-shop-info {
    display: flex;

    flex-direction: column;

    gap: 3px;

    font-size: 9px;

    line-height: 1.25;
}

.inspection-shop-info strong {
    font-size: 12px;

    margin-bottom: 3px;
}

.inspection-logo img {
    display: block;

    width: 75px;

    height: 75px;

    object-fit: contain;
}

.inspection-title {
    display: flex;

    flex-direction: column;

    text-align: right;

    line-height: 1;
}

.inspection-title span {
    font-size: 10px;

    letter-spacing: 2px;
}

.inspection-title strong {
    font-size: 17px;

    letter-spacing: 1px;
}

.inspection-divider {
    height: 2px;

    background: #0066cc;

    margin: 12px 0 14px;
}


/* =========================================================
   VEHICLE INFORMATION
========================================================= */

.inspection-info {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 10px;

    margin-bottom: 14px;
}

.inspection-field {
    display: flex;

    flex-direction: row;

    align-items: center;

    gap: 10px;
}

.inspection-field label {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

    white-space: nowrap;
}

.inspection-field input {
    width: 100%;

    height: 26px;

    padding: 4px 7px;

    border: 1px solid #aaa;

    border-radius: 2px;

    background: #fff;

    box-sizing: border-box;

    font-family: inherit;

    font-size: 11px;
}


/* =========================================================
   STATUS LEGEND
========================================================= */

.inspection-status-legend {
    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 22px;

    margin-bottom: 8px;

    font-size: 9px;

    font-weight: 600;

    text-transform: uppercase;
}

.inspection-status-legend strong {
    font-size: 11px;
}


/* =========================================================
   INSPECTION TABLE HEADER
========================================================= */

.inspection-table-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        32px
        32px
        32px
        minmax(0, 1fr)
        32px
        32px
        32px;

    border: 1px solid #222;

    font-size: 9px;

    font-weight: 700;

    text-align: center;
}

.inspection-table-header > div {
    min-height: 27px;

    padding: 5px 3px;

    box-sizing: border-box;

    border-right: 1px solid #222;

    display: flex;

    align-items: center;

    justify-content: center;
}

.inspection-table-header > div:last-child {
    border-right: none;
}


/* =========================================================
   STATUS COLORS
========================================================= */

.status-pass {
    background: #d9f0dc;
}

.status-attention {
    background: #fff1b8;
}

.status-fail {
    background: #f3cccc;
}


/* =========================================================
   TWO INSPECTION COLUMNS
========================================================= */

.inspection-two-column {
    display: grid;

    grid-template-columns: 1fr 1fr;

    border-left: 1px solid #222;

    border-right: 1px solid #222;

    border-bottom: 1px solid #222;
}

.inspection-item-column {
    min-width: 0;
}

.inspection-item-column + .inspection-item-column {
    border-left: 1px solid #222;
}


/* =========================================================
   INSPECTION ROW
========================================================= */

.inspection-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        32px
        32px
        32px;

    min-height: 26px;

    border-bottom: 1px solid #ddd;

    font-size: 9px;
}

.inspection-row:last-child {
    border-bottom: none;
}

.inspection-row > span {
    display: flex;

    align-items: center;

    padding: 3px 7px;

    line-height: 1.2;
}


/* =========================================================
   P / A / F CELLS
========================================================= */

.inspection-row > label {
    display: flex;

    align-items: center;

    justify-content: center;

    border-left: 1px solid #ddd;

    cursor: pointer;
}

.inspection-row > label:nth-child(2) {
    background: #d9f0dc;
}

.inspection-row > label:nth-child(3) {
    background: #fff1b8;
}

.inspection-row > label:nth-child(4) {
    background: #f3cccc;
}


/* =========================================================
   RADIO BUTTONS
========================================================= */

.inspection-row input[type="radio"] {
    appearance: none;

    -webkit-appearance: none;

    width: 13px;

    height: 13px;

    margin: 0;

    border: 1.5px solid #555;

    border-radius: 50%;

    background: #fff;

    cursor: pointer;
}

.inspection-row input[type="radio"][value="pass"]:checked {
    border-width: 4px;

    border-color: #2e7d32;
}

.inspection-row input[type="radio"][value="attention"]:checked {
    border-width: 4px;

    border-color: #d49b00;
}

.inspection-row input[type="radio"][value="fail"]:checked {
    border-width: 4px;

    border-color: #c62828;
}


/* =========================================================
   ADDITIONAL NOTES
========================================================= */

.inspection-notes {
    margin-top: 12px;
}

.inspection-notes h2 {
    margin: 0 0 5px;

    font-size: 9px;

    letter-spacing: 0.8px;
}

.inspection-notes textarea {
    display: block;

    width: 100%;

    min-height: 78px;

    resize: none;

    box-sizing: border-box;

    border: 1px solid #999;

    padding: 6px 7px;

    font-family: inherit;

    font-size: 9px;

    line-height: 20px;

    background:
        repeating-linear-gradient(
            to bottom,
            #fff 0,
            #fff 19px,
            #ddd 20px
        );
}


/* =========================================================
   DISCLAIMER
========================================================= */

.inspection-disclaimer {
    margin-top: 10px;

    padding-top: 7px;

    border-top: 1px solid #aaa;

    font-size: 7px;

    line-height: 1.35;

    color: #444;
}

.inspection-disclaimer strong {
    display: block;

    margin-bottom: 3px;

    font-size: 8px;

    color: #111;
}

.inspection-disclaimer p {
    margin: 3px 0;
}


/* =========================================================
   PRINT BUTTONS
========================================================= */

.inspection-actions {
    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 18px;
}

.inspection-actions button {
    padding: 10px 18px;

    border: none;

    border-radius: 3px;

    background: #0066cc;

    color: #fff;

    font-family: inherit;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;
}

.inspection-actions button:hover {
    opacity: 0.9;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .inspection-report-page {
        padding: 10px;
    }

    .inspection-report {
        width: 100%;

        min-height: auto;

        padding: 20px;
    }

    .inspection-report-header {
        grid-template-columns: 1fr auto;

        gap: 12px;
    }

    .inspection-logo {
        display: none;
    }

    .inspection-title {
        text-align: right;
    }

    .inspection-title strong {
        font-size: 14px;
    }

    .inspection-info {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .inspection-status-legend {
        justify-content: flex-start;

        flex-wrap: wrap;

        gap: 0 10px;

        font-size: 9px;
    }

    .inspection-table-header {
        grid-template-columns:
            minmax(0, 1fr)
            28px
            28px
            28px
            minmax(0, 1fr)
            28px
            28px
            28px;
    }

    .inspection-table-header > div {
        min-height: 26px;
    }

    .inspection-two-column {
        grid-template-columns: 1fr;
    }

    .inspection-item-column + .inspection-item-column {
        border-left: none;

        border-top: 1px solid #222;
    }

    .inspection-row {
        grid-template-columns:
            minmax(0, 1fr)
            28px
            28px
            28px;

        min-height: 31px;
    }

    .inspection-row > span {
        font-size: 9px;

        padding: 5px 6px;
    }

    .inspection-watermark {
        font-size: 60px;
    }

    .inspection-notes textarea {
        min-height: 100px;
    }

}


/* =========================================================
   PRINT / PDF
========================================================= */

@media print {

    @page {
        size: Letter;

        margin: 0;
    }

    html,
    body {
        margin: 0;

        padding: 0;

        background: #fff;
    }

    body.inspection-report-page {
        background: #fff;

        padding: 0;
    }

    .inspection-report {
        width: 8.5in;

        min-height: 11in;

        margin: 0;

        padding: 0.4in;

        box-sizing: border-box;

        box-shadow: none;

        overflow: hidden;
    }

    .inspection-two-column {
        grid-template-columns: 1fr 1fr;
    }

    .inspection-item-column + .inspection-item-column {
        border-left: 1px solid #222;

        border-top: none;
    }

    .inspection-table-header {
        grid-template-columns:
            minmax(0, 1fr)
            32px
            32px
            32px
            minmax(0, 1fr)
            32px
            32px
            32px;
    }

    .inspection-row {
        grid-template-columns:
            minmax(0, 1fr)
            32px
            32px
            32px;
    }

    .inspection-actions {
        display: none;
    }

    body.printing-empty-report
    .inspection-row
    input[type="radio"] {
        display: none;
    }

    .inspection-table-header .status-pass,
    .inspection-table-header .status-attention,
    .inspection-table-header .status-fail,
    .inspection-row > label:nth-child(2),
    .inspection-row > label:nth-child(3),
    .inspection-row > label:nth-child(4) {
        -webkit-print-color-adjust: exact;

        print-color-adjust: exact;
    }

    .inspection-watermark {
        -webkit-print-color-adjust: exact;

        print-color-adjust: exact;
    }

    .inspection-row input[type="radio"]:checked {
        -webkit-print-color-adjust: exact;

        print-color-adjust: exact;
    }

    .inspection-notes,
    .inspection-disclaimer {
        break-inside: avoid;

        page-break-inside: avoid;
    }

    /* =========================================================
       EMPTY REPORT - CLEAR FIELD CONTENT FOR PRINT
    ========================================================= */

    body.printing-empty-report .inspection-info input {
        color: transparent !important;

        text-shadow: none !important;
    }

    body.printing-empty-report .inspection-notes textarea {
        color: transparent !important;

        text-shadow: none !important;
    }

}


/* =========================================================
   BILL OF SALE
========================================================= */


/* =========================
   BC TRANSFER NOTICE
========================= */

.bill-sale-transfer-notice {
    max-width: 800px;

    margin: 25px auto 30px;

    padding: 16px 20px;

    border-left: 4px solid #0066cc;

    background: #f4f8fc;

    text-align: left;
}

.bill-sale-transfer-notice strong {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    color: #0066cc;
}

.bill-sale-transfer-notice p {
    margin: 0;

    font-size: 14px;

    line-height: 1.6;

    color: #333;
}


/* =========================
   BILL OF SALE PREVIEW IMAGE
========================= */

.bill-sale-preview-image {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .bill-sale-transfer-notice {
        margin: 20px auto 25px;

        padding: 14px 16px;
    }

    .bill-sale-transfer-notice strong {
        font-size: 13px;
    }

    .bill-sale-transfer-notice p {
        font-size: 13px;

        line-height: 1.5;
    }

}


/* =========================================================
   BILL OF SALE PDF MODAL
========================================================= */

.bill-sale-modal {
    position: fixed;

    inset: 0;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    background: rgba(0, 0, 0, 0.75);

    z-index: 9999;
}

.bill-sale-modal.active {
    display: flex;
}

.bill-sale-modal-content {
    position: relative;

    width: min(1000px, 95vw);

    height: 90vh;

    background: #fff;

    box-shadow:
        0 5px 30px
        rgba(0, 0, 0, 0.35);
}

.bill-sale-modal-content iframe {
    display: block;

    width: 100%;

    height: 100%;

    border: none;
}

.bill-sale-modal-close {
    position: absolute;

    top: -42px;

    right: 0;

    width: 34px;

    height: 34px;

    border: none;

    background: transparent;

    color: #fff;

    font-size: 32px;

    line-height: 1;

    cursor: pointer;

    z-index: 2;
}

.bill-sale-modal-close:hover {
    opacity: 0.75;
}

@media (max-width: 700px) {

    .bill-sale-modal {
        padding: 10px;
    }

    .bill-sale-modal-content {
        width: 100%;

        height: 90vh;
    }

    .bill-sale-modal-close {
        top: -40px;

        font-size: 30px;
    }

}


/* =========================================================
   BILL OF SALE CTA
========================================================= */

.bill-sale-cta {
    background: #f5f5f5;
}


/* =========================
   HOMEPAGE SERVICE LINKS
========================= */

.services-link {
    margin-top: 35px;

    text-align: center;
}

.services-link a {
    color: #0066CC;

    font-weight: bold;

    text-decoration: none;
}

.services-link a:hover {
    text-decoration: underline;
}


/* =========================
   HOMEPAGE SERVICE CARD HEADINGS
========================= */

.service-card h3 {
    color: #0066CC;
}


@media (max-width: 700px) {

    .map-container iframe {
        height: 400px;
    }

}


/* =========================
   FOOTER
========================= */

.site-footer {
    background-color: #111111;
    color: #ffffff;
    padding: 65px 20px 0;
}


/* =========================
   FOOTER CONTAINER
========================= */

.footer-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1.3fr
        1fr;

    gap: 50px;

    padding-bottom: 55px;
}


/* =========================
   FOOTER COLUMNS
========================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/* =========================
   FOOTER BRAND
========================= */

.footer-logo {
    display: inline-block;

    margin-bottom: 15px;

    font-size: 28px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #ffffff;
}

.footer-logo span {
    color: #0066CC;
}

.footer-brand p {
    margin-bottom: 20px;

    color: #aaaaaa;

    line-height: 1.6;
}


/* =========================
   FOOTER HEADINGS
========================= */

.footer-column h3 {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 15px;

    font-weight: bold;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================
   FOOTER LINKS
========================= */

.footer-column > a {
    margin-bottom: 10px;

    color: #aaaaaa;

    font-size: 15px;

    transition:
        color 0.2s ease;
}

.footer-column > a:hover {
    color: #4DA3FF;
}


/* =========================
   FOOTER TEXT
========================= */

.footer-column p {
    margin-bottom: 12px;

    color: #aaaaaa;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================
   FOOTER CALL BUTTON
========================= */

.footer-call {
    display: inline-block;

    margin-top: 5px;

    padding: 10px 18px;

    background-color: #0066CC;

    color: #ffffff !important;

    font-size: 14px !important;

    font-weight: bold;

    transition:
        background-color 0.2s ease;
}

.footer-call:hover {
    background-color: #0052A3;

    color: #ffffff !important;
}


/* =========================
   FOOTER CONTACT LINK
========================= */

.footer-contact-link {
    margin-top: 5px;

    color: #4DA3FF !important;

    font-weight: bold;
}

.footer-contact-link:hover {
    color: #ffffff !important;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    max-width: 1200px;

    margin: 0 auto;

    padding: 15px 0 8px;

    border-top: 1px solid #333333;

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    color: #777777;

    font-size: 13px;
}


/* =========================
   FOOTER MOBILE
========================= */

@media (max-width: 900px) {

    .site-footer {
        padding-top: 50px;
    }

    .footer-container {
        grid-template-columns:
            1fr 1fr;

        gap: 40px;
    }

}


/* =========================
   FOOTER SMALL MOBILE
========================= */

@media (max-width: 600px) {

    .site-footer {
        padding: 15px 40px 8px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;
    }

    .footer-column h3 {
        margin-bottom: 15px;
    }

    .footer-bottom {
        padding: 18px 0;
    }

}

/* =========================
   FOOTER SOCIAL MEDIA
========================= */

.footer-social {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 20px;
}


.footer-social-link {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #aaaaaa;

    font-size: 14px;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.footer-social-link img {
    display: block;

    width: 24px;

    height: 24px;

    object-fit: contain;
}


.footer-social-link:hover {
    color: #ffffff;

    transform: translateX(3px);
}


/* =========================
   FOOTER SOCIAL MOBILE
========================= */

@media (max-width: 600px) {

    .footer-social {
        margin-top: 18px;

        gap: 12px;
    }


    .footer-social-link {
        font-size: 14px;
    }


    .footer-social-link img {
        width: 26px;

        height: 26px;
    }

}


/* =========================
   SOCIAL MEDIA SECTION
========================= */

.social-section {
    background-color: #f4f6f8;

    text-align: center;

    padding-top: 70px;
    padding-bottom: 70px;
}


/* =========================
   SOCIAL HEADING
========================= */

.social-section .section-heading {
    max-width: 700px;

    margin: 0 auto;
}


.social-section .section-heading p:not(.section-label) {
    max-width: 600px;

    margin-left: auto;
    margin-right: auto;
}


/* =========================
   SOCIAL MEDIA SECTION
========================= */

.social-section {
    background-color: #eaf3ff;


    text-align: center;

    padding-top: 70px;

    padding-bottom: 70px;
}


.social-section .section-heading {
    max-width: 700px;

    margin: 0 auto;
}


.social-section .section-heading > p:not(.section-label) {
    max-width: 600px;

    margin-left: auto;

    margin-right: auto;
}


/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

    margin-top: 30px;
}


.social-icon {
    display: flex;

    justify-content: center;

    align-items: center;

    width: 55px;

    height: 55px;

    transition:
        transform 0.2s ease;
}


.social-icon img {
    display: block;

    width: 42px;

    height: 42px;

    object-fit: contain;
}


/* =========================
   SOCIAL HOVER
========================= */

.social-icon:hover {
    transform: translateY(-3px);
}


.social-icon:hover img {
    opacity: 0.8;
}


/* =========================
   SOCIAL MOBILE
========================= */

@media (max-width: 600px) {

    .social-section {
        padding-top: 55px;

        padding-bottom: 55px;
    }


    .social-icons {
        gap: 15px;

        margin-top: 25px;
    }


    .social-icon {
        width: 50px;

        height: 50px;
    }


    .social-icon img {
        width: 38px;

        height: 38px;
    }

}

/* =========================
   CONTACT SOCIAL SECTION
========================= */

.contact-social-section {
    background-color: #eaf3ff;

    text-align: center;
}


.contact-social-section .section-heading {
    max-width: 700px;

    margin: 0 auto;
}


.contact-social-links {
    display: flex;

    justify-content: center;

    gap: 30px;

    margin-top: 40px;
}


.contact-social-card {
    display: flex;

    align-items: center;

    gap: 15px;

    width: 230px;

    padding: 20px 25px;

    background-color: #ffffff;

    border: 1px solid #d7e5f5;

    color: #222222;

    text-align: left;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.contact-social-card:hover {
    transform: translateY(-3px);

    border-color: #0066CC;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


.contact-social-card img {
    width: 42px;

    height: 42px;

    object-fit: contain;

    flex-shrink: 0;
}


.contact-social-card div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.contact-social-card strong {
    font-size: 15px;

    color: #222222;
}


.contact-social-card span {
    font-size: 14px;

    color: #666666;
}


/* =========================
   CONTACT SOCIAL MOBILE
========================= */

@media (max-width: 600px) {

    .contact-social-links {
        flex-direction: column;

        align-items: center;

        gap: 15px;

        margin-top: 30px;
    }


    .contact-social-card {
        width: 100%;

        max-width: 280px;
    }

}

/* =========================
   INSPECTION REPORT IMAGE
========================== */

.ppi-report-image-link {
    position: relative;
    display: block;
    max-width: 900px;
    margin: 40px auto 20px;
    text-decoration: none;
    overflow: hidden;
}

.ppi-report-image {
    display: block;
    width: 100%;
    height: auto;
}

.ppi-report-image-button {
    display: block;
    width: fit-content;
    margin: 25px auto 0;
    padding: 14px 24px;
    background: #0066cc;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}

.ppi-preview-caption {
    text-align: center;
    margin-top: 20px;
}