:root {
    --asphalt: #1c1b19;
    --asphalt-2: #262420;
    --paper: #ece7dd;
    --paper-dim: #d9d2c2;
    --honda-red: #e10a17;
    --honda-red-dim: #a8060f;
    --amber: #ffb81c;
    --steel: #8a8d8f;
    --ink: #1c1b19;
    --good: #2f7d4f;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--asphalt) !important;
    color: var(--paper) !important;
    font-family: 'IBM Plex Sans', sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
    overflow-x: hidden !important;
}

h1,
h2,
h3,
.display {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

a {
    color: inherit;
    text-decoration: none !important;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- top utility strip ---------- */
.utility-strip {
    background: var(--asphalt-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--steel);
}

.utility-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 24px;
}

.utility-inner span {
    color: var(--amber);
}
@media (max-width: 860px) { 
    .utility-inner span:last-child {
        display: none !important;
    }
 
    .utility-inner {
        justify-content: center;
        text-align: center;
        font-size: 11px;
        padding: 5px 12px;
    }
}

/* ---------- header ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(28, 27, 25, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 0.03em;
}

.logo .wing {
    width: 34px;
    height: 34px;
    background: var(--honda-red);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.logo .sub {
    display: block;
    font-size: 10px;
    color: var(--steel);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 28px;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links a {
    color: var(--paper-dim);
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--amber);
}

.nav-cta {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    border: none;
    transition: transform .15s ease, box-shadow .15s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--honda-red);
    color: #fff;
}

.btn-primary:hover {
    box-shadow: 0 6px 18px rgba(225, 10, 23, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.btn-wa {
    background: #1f3d2c;
    color: #8de3a8;
    border: 1px solid #2f5d3e;
}

@media (max-width:860px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 860px) {

    .nav-links,
    .nav-cta .btn-primary {
        display: none !important;
    }

    .nav {
        padding: 10px 16px;
    }

    .logo {
        font-size: 15px;
    }

    .logo .wing {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .btn-wa {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* ---------- hero ---------- */
.hero {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 24px 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.badge {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 2px;
    font-weight: 600;
}

.badge-flag {
    background: var(--honda-red);
    color: #fff;
}

.badge-rating {
    background: var(--amber);
    color: var(--asphalt);
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero h1 {
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.04;
    margin-bottom: 18px;
}

.hero h1 .accent {
    color: var(--honda-red);
}

.hero p.sub {
    color: var(--paper-dim);
    font-size: 16px;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 30px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* odometer price plate — signature element */
.plate-wrap {
    position: relative;
    justify-self: end;
}

.reg-plate {
    background: var(--paper);
    color: var(--ink);
    border-radius: 4px;
    padding: 26px 28px 22px;
    width: 340px;
    position: relative;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 6px rgba(255, 255, 255, 0.04);
    transform: rotate(-1.2deg);
}

.reg-plate::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 24px;
    right: 24px;
    height: 10px;
    background: repeating-linear-gradient(90deg, transparent 0 6px, var(--asphalt) 6px 7px);
    opacity: 0.5;
}

.reg-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 6px;
    font-weight: 600;
}

.reg-model {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: 'Oswald', sans-serif;
}

.reg-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--honda-red-dim);
    line-height: 1;
}

.reg-price sup {
    font-size: 18px;
    font-weight: 600;
    margin-right: 2px;
}

.reg-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed rgba(28, 27, 25, 0.25);
    font-size: 11px;
    color: var(--steel);
    letter-spacing: 0.03em;
}

.reg-meta b {
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
}

.plate-tag {
    position: absolute;
    top: -14px;
    right: 18px;
    background: var(--good);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 2px;
    transform: rotate(3deg);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

@media (max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    .plate-wrap {
        justify-self: start;
    }

    .reg-plate {
        width: 100%;
        max-width: 340px;
    }
}

/* ---------- section shell ---------- */
section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 24px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 34px;
    flex-wrap: wrap;
    gap: 14px;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.section-head h2 {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.1;
}

.section-head p {
    color: var(--steel);
    font-size: 14px;
    max-width: 380px;
}

/* ---------- model ticket cards ---------- */
.ticket-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width:980px) {
    .ticket-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .ticket-row {
        grid-template-columns: 1fr;
    }
}

.ticket {
    background: var(--paper);
    color: var(--ink);
    border-radius: 3px;
    position: relative;
    padding: 22px 20px 20px;
    transition: transform .2s ease;
}

.ticket:hover {
    transform: translateY(-5px);
}

.ticket::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 62px;
    border-bottom: 1px dashed rgba(28, 27, 25, 0.3);
}

.ticket .tnum {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--steel);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.ticket h3 {
    font-size: 19px;
    margin-bottom: 4px;
    font-family: 'Oswald', sans-serif;
}

.ticket .seg {
    font-size: 11px;
    color: var(--honda-red-dim);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ticket .price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 2px;
}

.ticket .price-label {
    font-size: 10px;
    color: var(--steel);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.ticket .emi {
    font-size: 12px;
    color: var(--good);
    font-weight: 600;
    margin-bottom: 18px;
}

.ticket-btn {
    display: block;
    text-align: center;
    background: var(--asphalt);
    color: var(--paper);
    padding: 10px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background .2s;
    margin-bottom: 10px;
}

.ticket-btn:hover {
    background: var(--honda-red);
}

/* ---------- trust strip ---------- */
.trust {
    background: var(--asphalt-2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width:860px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.trust-item {
    text-align: left;
}

.trust-item .num {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
}

.trust-item .lbl {
    font-size: 13px;
    color: var(--steel);
    margin-top: 8px;
    letter-spacing: 0.02em;
}

/* ---------- branches ---------- */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width:760px) {
    .branch-grid {
        grid-template-columns: 1fr;
    }
}

.branch-card {
    background: var(--asphalt-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.branch-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
}

.branch-card p {
    font-size: 13px;
    color: var(--steel);
    line-height: 1.5;
    margin-bottom: 10px;
}

.branch-card p .phone {
    background: #dd0a17;
    padding: 5px;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
}

.branch-card a.call {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--honda-red);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* ---------- reviews ---------- */
.review-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width:860px) {
    .review-row {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background: var(--asphalt-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    padding: 22px;
}

.stars {
    color: var(--amber);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--paper-dim);
    margin-bottom: 14px;
}

.review-card .who {
    font-size: 12px;
    color: var(--steel);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.gbp-summary {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--paper);
    color: var(--ink);
    border-radius: 3px;
    padding: 18px 22px;
    margin-bottom: 30px;
}

.gbp-score {
    font-family: 'JetBrains Mono', monospace;
    font-size: 34px;
    font-weight: 700;
    color: var(--honda-red-dim);
}

.gbp-summary .meta {
    font-size: 12px;
    color: var(--steel);
    line-height: 1.5;
}

.gbp-summary .meta b {
    color: var(--ink);
    display: block;
    font-size: 14px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.02em;
}

/* ---------- footer ---------- */
footer {
    background: var(--asphalt-2);
    padding: 50px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width:860px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-grid h5 {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
}

.footer-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-grid ul a {
    font-size: 13px;
    color: var(--paper-dim);
}

.footer-grid ul a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1180px;
    margin: 18px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--steel);
    flex-wrap: wrap;
    gap: 10px;
}

/* sticky WA button mobile */
.sticky-wa {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 60;
    background: #1f3d2c;
    color: #8de3a8;
    border: 1px solid #2f5d3e;
    padding: 13px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.note-strip {
    background: var(--honda-red-dim);
    color: #ffe1e1;
    font-size: 12px;
    text-align: center;
    padding: 8px 16px;
    letter-spacing: 0.02em;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}


.social-sidebar {
    position: fixed;
    top: 40%;
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

.social-link {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.social-link .text {
    position: absolute;
    right: 50px;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
}

.social-link:hover {
    width: 148px;
    justify-content: flex-start;
    padding-left: 21px;
    border-radius: 0 10px 10px 0 !important;
    color: #ffffff;
    text-decoration: none;
}

.social-link:hover .text {
    right: 15px;
    opacity: 1;
}

.social-link.email {
    background: #e10a17;
    border-radius: 0 10px 0 0;

}

.social-link.whatsapp {
    background: #11a65f;
}

.social-link.facebook {
    background: #1877F2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #fd1d1d, #e1306c, #c13584, #833ab4, #5851db);

}

.social-link.gmb {
    background: #4285F4;
    border-radius: 0 0 10px 0;

}


@media (max-width: 768px) {
    .social-sidebar {
        top: auto;
        bottom: 50px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    .social-link i {
        font-size: 16px;
        padding: 0 10px;
    }

    .social-link .text {
        font-size: 12px;
        padding: 8px 12px;
    }
}

.contact-section {
    padding: 60px 20px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.contact-row {
    display: flex;
    gap: 30px;
}

.contact-col {
    flex: 1;
}

.contact-box {
    background: #262420;
    border: 1px solid #373531;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .12);
    height: 100%;
}

.contact-box h2 {
    margin-bottom: 25px;
    font-size: 30px;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 18px;
    border: 1px solid #373531;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    background: #262420;
    color: #fff;
}

.contact-box input:focus,
.contact-box textarea:focus {
    border-color: #e10a17;
}

.contact-box button {
    width: 100%;
    padding: 15px;
    border: none;
    background: #e10a17;
    color: #fff;
    font-size: 17px;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.contact-box button:hover {
    background: #97000a;
}

.map-wrapper {
    height: 100%;
    min-height: 550px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .12);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}




.products-section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    border: 1px solid #ddd;
    background: #ece7dd;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #d40000;
    color: #ece7dd;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #ece7dd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-img {
    height: 200px;
    background: #ece7dd;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* padding: 12px; */
}

.product-body {
    padding: 12px;
}

.badge {
    display: inline-block;
    background: #d40000;
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 12px;
}

.product-body h3 {
    font-size: 19px;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    color: #ae060f;
}

.btn-group {
    display: flex;
    gap: 10px;
}

.call-btn,
.wa-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 2px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.call-btn {
    background: #ae060f;
}

.call-btn:hover {
    background: #8a0209;
}

.wa-btn {
    background: #25D366;
}

.wa-btn:hover {
    background: #019738;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    background: #f3f3f3;
    color: #333;
}

.pagination a.active {
    background: #d40000;
    color: #fff;
}

@media(max-width:991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .btn-group {
        flex-direction: column;
    }

}

@media(max-width:600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-img {
        height: 120px;
    }

    .product-body h3 {
        font-size: 13px;
    }

    .ticket-btn {
        font-size: 10px;
        padding: 6px;
        display: block;
        text-align: center;
        margin-bottom: 8px;
    }

    .btn-group {
        display: flex;
        flex-direction: row;
        gap: 5px;
    }

    .call-btn,
    .wa-btn {
        font-size: 10px;
        padding: 6px 2px;
    }
}

@media(max-width:768px) {
    .contact-box {
        padding: 15px;
    }

    .contact-row {
        flex-direction: column;
    }

    .map-wrapper {
        min-height: auto;
    }

    section {
        max-width: 1180px;
        margin: 0 auto;
        padding: 45px 24px !important;
    }

    .contact-section {
        padding: 44px 0px !important;
    }

    .hero h1 {
        font-size: clamp(25px, 3.4vw, 54px);
        line-height: 1.04;
        margin-bottom: 18px;
    }

    .product-tabs {
        display: flex;
        justify-content: center;
        gap: 5px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 7px 11px;
        border: 1px solid #ddd;
        background: #ece7dd;
        cursor: pointer;
        border-radius: 50px;
        font-weight: 600;
        transition: .3s;
    }
}