/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #000000;
    --blue: #1a7fe8;
    --accent: #4db8ff;
    --white: #f0f6ff;
    --grey: #8aa4c0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #000;
    color: var(--white);
    min-height: 100vh;
}

/* ── Header ── */
header {
    background: #000;
    border-bottom: 1px solid rgba(26, 127, 232, 0.28);
    padding: 1.5rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    justify-content: center;
}

.logo {
    width: min(94vw, 384px);
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    letter-spacing: 0.03em;
    box-shadow: 0 0 18px rgba(26, 127, 232, 0.5);
    transition:
        background 0.2s,
        box-shadow 0.2s,
        transform 0.1s;
    white-space: nowrap;
    margin-top: 0;
}

.call-btn:hover,
.call-btn:focus {
    background: #1568c2;
    box-shadow: 0 0 28px rgba(26, 127, 232, 0.75);
    transform: scale(1.03);
}

.call-btn:active {
    transform: scale(0.97);
}

.phone-icon {
    font-size: 1.1rem;
}

/* ── Hero ── */
.hero {
    text-align: center;
    padding: 0.2rem 1.5rem 1.2rem;
    background: #000;
}

.hero h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--grey);
    text-transform: none;
    letter-spacing: 0.03em;
}

.hero p {
    margin-top: 0.6rem;
    color: var(--grey);
    font-size: 0.95rem;
}

/* ── Section Heading ── */
.section-heading {
    text-align: center;
    padding: 2rem 1rem 1rem;
}

.section-heading h2 {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 3px;
    background: var(--blue);
    margin: 0.4rem auto 0;
    border-radius: 2px;
}

/* ── Gallery Grid ── */
.gallery {
    padding: 0 1rem 2rem;
    margin-top: 1.25rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    background: #0d1f35;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(26, 127, 232, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
}

.photo-wrap {
    position: relative;
    overflow: hidden;
}

.photo-wrap img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.photo-wrap:hover img {
    transform: scale(1.04);
}

.badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0;
}

.badge.before {
    background: rgba(180, 30, 30, 0.82);
    color: #fff;
}

.badge.after {
    background: rgba(14, 140, 60, 0.82);
    color: #fff;
}

/* divider line between before/after */
.pair::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--blue);
    opacity: 0.5;
    pointer-events: none;
}

/* ── Call to Action Banner ── */
.cta-banner {
    margin: 1rem 1rem 3rem;
    background: linear-gradient(135deg, #061120 0%, #0b2344 100%);
    border-radius: 16px;
    border: 1px solid var(--blue);
    box-shadow: 0 0 30px rgba(26, 127, 232, 0.25);
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner p {
    font-size: 1rem;
    color: var(--grey);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cta-banner .call-btn {
    font-size: 1.6rem;
    padding: 0.75rem 2rem;
}

/* ── Section Divider ── */
.section-divider {
    border: none;
    height: 1px;
    background: rgba(26, 127, 232, 0.25);
    max-width: 600px;
    margin: 1.5rem auto;
}

/* ── Pricing Section ── */
.pricing {
    max-width: 960px;
    margin: 2.5rem auto 2rem;
    padding: 0 1rem;
    text-align: center;
}

.pricing h2 {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.pricing h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--blue);
    margin: 0.4rem auto 0;
    border-radius: 2px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.price-card {
    background: #0a1626;
    border: 1px solid rgba(26, 127, 232, 0.2);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    text-align: left;
    position: relative;
}

.price-card.popular {
    border-color: var(--blue);
    box-shadow: 0 0 22px rgba(26, 127, 232, 0.25);
    padding-top: 2.25rem;
}

.popular-badge {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
}

.price-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.price-tag span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--grey);
}

.card-desc {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 0.75rem;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
}

.price-card ul li {
    font-size: 0.88rem;
    color: var(--white);
    padding: 0.25rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.price-card ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

/* ── Chukstar Difference Section ── */
.chukstar-difference {
    max-width: 760px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
    text-align: center;
}

.chukstar-difference h2 {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.chukstar-difference h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--blue);
    margin: 0.4rem auto 0.75rem;
    border-radius: 2px;
}

.chukstar-difference p {
    font-size: 0.97rem;
    color: var(--grey);
    line-height: 1.65;
}

/* ── Price List (vehicle tier rows) ── */
.price-list {
    margin: 0.75rem 0 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
    color: var(--white);
    gap: 0.5rem;
}

.price-row:last-of-type {
    border-bottom: none;
}

.vehicle-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--accent);
    white-space: nowrap;
}

.price-card h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey);
    margin: 0.75rem 0 0.4rem;
}

.exclusive-note {
    font-size: 0.78rem;
    color: var(--grey);
    font-style: italic;
    padding: 0.1rem 0 0.5rem;
    margin: 0;
}

.note {
    font-size: 0.8rem;
    color: var(--grey);
    font-style: italic;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-left: 2px solid rgba(26, 127, 232, 0.4);
}

.subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--grey);
}

/* Add-Ons */
.addons {
    background: #0a1626;
    border: 1px solid rgba(26, 127, 232, 0.15);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
}

.addons h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.35rem;
    text-align: center;
}

.addons-desc {
    font-size: 0.8rem;
    color: var(--grey);
    text-align: center;
    margin-bottom: 0.75rem;
}

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

.addons ul li {
    font-size: 0.88rem;
    color: var(--white);
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.addons ul li:last-child {
    border-bottom: none;
}

.addons ul li strong {
    color: var(--accent);
}

/* ── Testimonials ── */
.testimonials {
    max-width: 960px;
    margin: 2rem auto 2.5rem;
    padding: 0 1rem;
    text-align: center;
}

.testimonials h2 {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.testimonials h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--blue);
    margin: 0.4rem auto 0;
    border-radius: 2px;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.testimonial {
    background: #0a1626;
    border: 1px solid rgba(26, 127, 232, 0.15);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.testimonial .quote {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.55;
    margin-bottom: 0.6rem;
    font-style: italic;
}

.testimonial .author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
}

/* ── Footer ── */
footer {
    background: #000;
    border-top: 1px solid rgba(26, 127, 232, 0.2);
    text-align: center;
    padding: 1.25rem 1rem;
    font-size: 0.8rem;
    color: var(--grey);
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

/* ── Desktop Breakpoint ── */
/* ── Footer ── */
footer {
    background: #000;
    border-top: 1px solid rgba(26, 127, 232, 0.2);
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 2.5rem;
    font-size: 0.8rem;
    color: var(--grey);
}

footer p {
    margin: 0;
}

footer strong {
    color: var(--accent);
}

@media (min-width: 600px) {
    header {
        justify-content: center;
        padding: 2rem 2rem 1.25rem;
    }

    .logo {
        width: min(67vw, 480px);
    }

    .call-btn {
        font-size: 1.6rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .photo-wrap img {
        min-height: 260px;
    }

    .cta-banner .call-btn {
        font-size: 2rem;
    }

    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .addons {
        max-width: 100%;
    }
}

@media (min-width: 900px) {
    .gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 0 2rem 3rem;
    }
}