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

html,
body {
    height: 100%;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
        sans-serif;
    background: #050505;
    color: #f5f5f5;
    line-height: 1.6;
}

/* ---------- UTILITIES ---------- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-inverse {
    background: #0b0b0b;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-header p {
    color: #bbbbbb;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    color: #dddddd;
}

/* ---------- HEADER & NAV ---------- */
header {
    background: #050505;
    border-bottom: 1px solid #151515;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.96);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.75);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo img {
    height: 75px;
    display: block;
}

/* NAV MENU */
nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

nav a {
    font-size: 15px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s, color 0.25s;
}

nav a:hover,
nav a.active {
    border-color: #ffffff;
}

/* MOBILE MENU BUTTON */
.menu-btn {
    display: none;
    font-size: 28px;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    justify-self: flex-end;
}

/* ---------- HERO (HOME) ---------- */
.hero {
    padding: 120px 0 90px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    margin-bottom: 16px;
}

.hero-subtitle {
    color: #b5b5b5;
    max-width: 520px;
}

.hero-cta {
    margin-top: 28px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-highlights {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

.hero-highlights span {
    border: 1px solid #262626;
    padding: 6px 12px;
    border-radius: 999px;
    color: #cccccc;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #222;
    object-fit: cover;
    max-height: 380px;
}

/* ---------- PAGE HERO (INNER PAGES) ---------- */
.page-hero {
    padding: 40px 0 40px;
    border-bottom: 1px solid #151515;
}

.page-hero h1 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 10px;
}

.page-hero-subtitle {
    color: #b5b5b5;
    max-width: 620px;
}

/* ---------- BUTTONS ---------- */
.btn,
.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.btn:hover {
    background: #dcdcdc;
    border-color: #dcdcdc;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #666666;
}

.btn-outline:hover {
    border-color: #ffffff;
}

/* ---------- SERVICE CARDS / GRIDS ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: #0c0c0c;
    border-radius: 10px;
    padding: 22px 22px 24px;
    border: 1px solid #202020;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #3a3a3a;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.service-card h3 {
    font-size: 18px;
}

.service-card p {
    color: #c3c3c3;
    font-size: 14px;
}

.service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
    border: 1px solid #222;
}

.service-list {
    list-style: none;
    font-size: 13px;
    color: #b8b8b8;
    margin-bottom: 6px;
}

.service-list li::before {
    content: "• ";
    color: #ffffff;
}

.price-tag {
    margin-top: auto;
    font-size: 14px;
    color: #a5a5a5;
}

.price-tag span {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.pricing-note {
    font-size: 13px;
    color: #999999;
    margin-top: 30px;
}

/* ---------- TICK LIST ---------- */
.tick-list {
    list-style: none;
    margin-top: 14px;
    font-size: 14px;
    color: #c0c0c0;
}

.tick-list li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 20px;
}

.tick-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffffff;
}

/* ---------- STATS ---------- */
.trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

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

.stat-card {
    background: #111;
    border-radius: 12px;
    padding: 18px 16px;
    border: 1px solid #252525;
    text-align: center;
}

.stat-value {
    font-size: 22px;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #a0a0a0;
    margin-top: 4px;
}

/* ---------- ABOUT LAYOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
}

.about-grid h2 {
    margin-bottom: 10px;
}

.about-extra {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #222;
    object-fit: cover;
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
    background: #0b0b0b;
    padding: 26px 24px;
    border-radius: 12px;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
}

/* FORM */
.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #dcdcdc;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #313131;
    background: #0d0d0d;
    color: #ffffff;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 1px #ffffff;
}

/* CONTACT DETAILS */
.contact-details h2 {
    margin-bottom: 10px;
}

.contact-list {
    list-style: none;
    margin: 14px 0 18px;
    font-size: 14px;
    color: #cccccc;
}

.contact-list li {
    margin-bottom: 10px;
}

.contact-list a {
    text-decoration: underline;
}

.contact-cta {
    margin-bottom: 20px;
}

/* MAP */
.map-wrapper iframe {
    width: 100%;
    min-height: 220px;
    border: 0;
    border-radius: 10px;
    border: 1px solid #222;
}

/* ---------- CTA CENTER ---------- */
.cta-center {
    text-align: center;
    margin: 60px 0 40px;
}

@media (max-width: 600px) {
    .cta-center a {
        display: block;
        margin: 10px auto;
        width: 80%;
        text-align: center;
    }
}

/* ---------- FOOTER ---------- */
/* Top bar */
.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.footer-bar p {
    margin: 0;
    color: #ccc;
}

/* Footer columns */
.footer-links-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    transition: 0.25s;
}

.footer-links a:hover {
    color: #fff;
}

/* Social Icons */
.social-icons a {
    font-size: 20px;
    color: #fff;
    margin-right: 12px;
    transition: 0.25s;
}

.social-icons a:hover {
    color: #ccc;
}

.me-2 {
    margin-right: 10px;
}

.muted {
    color: #777;
    font-size: 13px;
}

/* ---------- GOOGLE FORM EMBED ---------- */
.form-iframe-wrapper {
    background: #0b0b0b;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #222;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.55);
}

.form-iframe-wrapper iframe {
    width: 100%;
    height: 900px;
    border: none;
}

#quote-form-section {
    padding: 80px 0;
}

#quote-form-section .section-header h2 {
    color: #fff;
}

#quote-form-section .section-header p {
    color: #bbb;
}

/* ---------- VINYL / PPF EXTRAS ---------- */
.finish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.finish-card {
    background: #0c0c0c;
    border: 1px solid #202020;
    border-radius: 12px;
    padding: 16px;
}

.finish-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #222;
    margin-bottom: 12px;
}

.finish-card h3 {
    margin-bottom: 6px;
}

.finish-card p {
    color: #c3c3c3;
    font-size: 14px;
}

.swatch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 20px 0 26px;
}

.swatch {
    border: 1px solid #262626;
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
    color: #dcdcdc;
    background: var(--swatch, #0b0b0b);
    font-size: 14px;
}

.car-color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.car-color-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #222;
}

.mini-link {
    margin-top: 10px;
}

.text-link {
    color: #eeba2b;
    text-decoration: none;
    font-size: 14px;
}

.text-link:hover {
    text-decoration: underline;
}

/* ---------- COMING SOON ---------- */
.coming-soon-hero {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
}

.coming-soon-wrap {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-card {
    margin-top: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #222;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.55);
    text-align: left;
}

.coming-soon-card h3 {
    margin: 0;
}

/* ---------- VINYL PRICING BLOCK ---------- */
.vinyl-pricing {
    margin: 50px 0 30px;
    padding: 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #222;
    border-radius: 14px;
}

.vinyl-pricing h3 {
    margin-bottom: 8px;
}

.vinyl-price {
    font-size: 20px;
    margin-bottom: 6px;
}

.vinyl-price strong {
    color: #eeba2b;
}

.vinyl-pricing .pricing-note {
    font-size: 13px;
    color: #9a9a9a;
    margin-top: 10px;
}

/* ---------- FORM ALERTS ---------- */
.form-alert {
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 14px;
    border: 1px solid #222;
    background: rgba(255, 255, 255, 0.04);
}

.form-alert.success {
    border-color: rgba(46, 204, 113, 0.35);
}

.form-alert.error {
    border-color: rgba(231, 76, 60, 0.35);
}

/* Honeypot hidden */
.honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    overflow: hidden;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
    .hero-inner,
    .trust-grid,
    .about-grid,
    .about-extra,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-image {
        order: -1;
    }

    .cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: #050505;
        border-top: 1px solid #151515;
        padding: 12px 0 16px;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        padding: 8px 0;
        text-align: center;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        padding-top: 90px;
    }

    .page-hero {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Mobile footer */
@media (max-width: 768px) {
    .footer-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-links-row {
        text-align: center;
    }
}
