:root {
    --ink: #0b0d12;
    --muted: #66717f;
    --line: #e5e8ee;
    --soft: #f5f7fa;
    --white: #ffffff;
    --red: #e1192b;
    --red-dark: #b91120;
    --charcoal: #121620;
    --charcoal-2: #1c2230;
    --gold: #c49a4a;
    --shadow: 0 24px 70px rgba(11, 13, 18, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Sora, Manrope, Arial, sans-serif;
    font-weight: 400;
    background: var(--white);
    line-height: 1.6;
    text-rendering: geometricPrecision;
}

body.mobile-menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1240px, calc(100% - 36px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(229, 232, 238, 0.78);
    backdrop-filter: blur(18px);
}

.navbar {
    position: relative;
}

.navbar__inner {
    min-height: 98px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand img {
    width: 188px;
    max-height: 62px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-left: auto;
    border: 1px solid rgba(229, 232, 238, 0.95);
    border-radius: 999px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 35px rgba(11, 13, 18, 0.08);
}

.nav-overlay {
    display: none;
}

.mobile-menu-head {
    display: none;
}

.nav-menu a {
    position: relative;
    border-radius: 999px;
    padding: 8px 16px;
    color: #303743;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.nav-item {
    display: flex;
}

.mobile-submenu-toggle {
    display: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    font-weight: 700;
    background: var(--ink);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(14px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 70px rgba(11, 13, 18, 0.14);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item--mega:hover .mega-menu,
.nav-item--mega:focus-within .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mega-menu__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 34px 0 38px;
}

.nav-menu .mega-car {
    display: grid;
    justify-items: center;
    min-height: 244px;
    border-radius: 0;
    padding: 16px 28px 28px;
    color: #303243;
    text-align: center;
    background: transparent;
    box-shadow: none;
    white-space: normal;
}

.nav-menu .mega-car:hover {
    color: var(--red);
    background: #fafbfc;
}

.nav-menu .mega-car--break {
    border-top: 1px solid var(--line);
}

.nav-menu .mega-car--break,
.nav-menu .mega-car--break~.mega-car {
    border-top: 1px solid var(--line);
    padding-top: 34px;
}

.nav-menu .mega-car img {
    width: min(250px, 100%);
    height: 116px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: drop-shadow(0 14px 14px rgba(11, 13, 18, 0.12));
}

.nav-menu .mega-car strong {
    color: #2d2e40;
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
}

.nav-menu .mega-car span {
    display: block;
    margin-top: 12px;
    color: #8a8d96;
    font-size: 15px;
    font-weight: 500;
}

.nav-menu .mega-car em {
    display: block;
    color: #2d2e40;
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    border-radius: 999px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    box-shadow: 0 12px 26px rgba(225, 25, 43, 0.2);
    white-space: nowrap;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta,
.btn-primary {
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.nav-cta::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--red-dark);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover::before,
.btn-primary:hover::before {
    opacity: 1;
}

.nav-cta:hover,
.btn-primary:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(225, 25, 43, 0.3);
}

.nav-cta:active,
.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    color: var(--ink);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(11, 13, 18, 0.08);
}

.btn-light {
    color: var(--red);
    background: var(--white);
}

.btn-outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border: 1px solid #d8dde6;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 250, 0.98));
    box-shadow: 0 10px 24px rgba(11, 13, 18, 0.08);
    cursor: pointer;
    padding: 0;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    margin: 4px auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ink), #495166);
    transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
    transform-origin: center;
}

.nav-toggle:hover span {
    background: linear-gradient(90deg, var(--red), var(--red-dark));
}

.nav-toggle[aria-expanded="true"] span:first-child {
    width: 22px;
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
    width: 22px;
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 66px;
    background:
        radial-gradient(circle at 82% 28%, rgba(225, 25, 43, 0.22), transparent 28%),
        radial-gradient(circle at 14% 88%, rgba(225, 25, 43, 0.18), transparent 26%),
        linear-gradient(135deg, #07080c 0%, #111722 50%, #1c2230 100%);
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 56vw;
    height: 8px;
    content: "";
    background: linear-gradient(90deg, rgba(225, 25, 43, 0), rgba(225, 25, 43, 0.95));
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
    align-items: center;
    gap: 58px;
}

.hero__content h1,
.page-hero h1 {
    margin: 10px 0 18px;
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: clamp(42px, 5.1vw, 70px);
    line-height: 1;
    letter-spacing: 0;
}

.hero__content h1,
.hero__content p {
    color: var(--white);
}

.hero__content p,
.page-hero p {
    max-width: 650px;
    margin: 0;
    font-size: 18px;
}

.hero__content p {
    color: #c5ccd7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
    max-width: 560px;
}

.hero__metrics div {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.hero__metrics strong {
    display: block;
    color: var(--white);
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
}

.hero__metrics span {
    display: block;
    margin-top: 7px;
    color: #aeb7c5;
    font-size: 12px;
    font-weight: 500;
}

.hero__media {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
}

.hero__media img {
    position: relative;
    z-index: 2;
    width: min(780px, 106%);
    filter: drop-shadow(0 36px 34px rgba(11, 13, 18, 0.34));
}

.hero__media::before {
    position: absolute;
    inset: 46px 0 34px;
    content: "";
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.35)),
        linear-gradient(135deg, rgba(225, 25, 43, 0.12), rgba(11, 13, 18, 0.04));
    box-shadow: var(--shadow);
}

.hero__badge {
    position: absolute;
    top: 68px;
    right: 12px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 50px rgba(11, 13, 18, 0.16);
}

.hero__badge span,
.hero__badge strong {
    display: block;
}

.hero__badge span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero__badge strong {
    color: var(--ink);
    font-size: 18px;
}

.eyebrow {
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #ffb8bf;
}

.section,
.page-hero {
    padding: 72px 0;
}

.page-hero {
    background:
        linear-gradient(135deg, rgba(11, 13, 18, 0.92), rgba(28, 34, 48, 0.92)),
        linear-gradient(135deg, #151922, #2b3342);
    color: var(--white);
}

.page-hero p {
    color: #cbd2dd;
}

.section-muted {
    background: var(--soft);
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading h2,
.service-band h2,
.split-layout h2 {
    margin: 8px 0 0;
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.car-row,
.car-grid,
.outlet-grid,
.feature-grid {
    display: grid;
    gap: 22px;
}

.car-row {
    grid-template-columns: repeat(4, 1fr);
}

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

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

.car-card,
.outlet-card,
.feature-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 38px rgba(11, 13, 18, 0.08);
    overflow: hidden;
}

.car-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.car-card:hover {
    border-color: rgba(225, 25, 43, 0.28);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.car-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    padding: 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(245, 247, 250, 0.9)),
        radial-gradient(circle at 70% 30%, rgba(225, 25, 43, 0.12), transparent 34%);
}

.car-card div,
.outlet-card,
.feature-grid article {
    padding: 22px;
}

.car-card span,
.outlet-card span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.car-card h3,
.car-card h2,
.outlet-card h2,
.feature-grid h2 {
    margin: 8px 0 8px;
    font-family: Sora, Manrope, Arial, sans-serif;
    line-height: 1.15;
    letter-spacing: 0;
}

.car-card p,
.outlet-card p,
.outlet-card address,
.feature-grid p,
.split-layout p,
.service-points p {
    color: var(--muted);
}

.car-card a {
    display: inline-flex;
    margin-top: 12px;
    color: var(--red);
    font-weight: 600;
}

.service-band,
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
}

.service-points {
    display: grid;
    gap: 12px;
}

.service-points p {
    margin: 0;
    border-left: 4px solid var(--red);
    padding: 14px 16px;
    background: var(--white);
    font-weight: 500;
}

.service-points--boxed {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: var(--soft);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.stat-grid div {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: var(--white);
}

.stat-grid strong {
    display: block;
    color: var(--red);
    font-size: 44px;
    line-height: 1;
}

.stat-grid span {
    color: var(--muted);
    font-weight: 500;
}

.outlet-card address {
    min-height: 98px;
    margin: 14px 0;
    font-style: normal;
}

.footer-cta {
    color: var(--white);
    background: #b2101e;
    background-image:
        linear-gradient(105deg, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.03) 55.1%, rgba(255, 255, 255, 0.03) 63%, rgba(255, 255, 255, 0) 63.1%),
        linear-gradient(105deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.05) 60.1%, rgba(255, 255, 255, 0.05) 68%, rgba(255, 255, 255, 0) 68.1%),
        linear-gradient(105deg, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0.12) 66.1%, rgba(0, 0, 0, 0.12) 78%, rgba(0, 0, 0, 0) 78.1%),
        linear-gradient(105deg, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.04) 72.1%, rgba(255, 255, 255, 0.04) 84%, rgba(255, 255, 255, 0) 84.1%),
        linear-gradient(135deg, #e3192b 0%, #7a0710 100%);
    position: relative;
    overflow: hidden;
}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 54px 0;
}

.footer-cta .eyebrow {
    color: #ffd9dc;
}

.footer-cta h2 {
    max-width: 760px;
    margin: 8px 0 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
    letter-spacing: 0;
}

.footer-cta__content {
    flex: 1;
    max-width: 760px;
}

.footer-cta__description {
    margin: 12px 0 0 0;
    font-size: clamp(14px, 1.6vw, 17px);
    color: #ffd9dc;
    line-height: 1.6;
    font-weight: 450;
    opacity: 0.95;
}

.footer-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-cta .btn-outline-light {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.25),
        0 8px 32px rgba(11, 13, 18, 0.15);
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        0 12px 38px rgba(11, 13, 18, 0.25);
    transform: translateY(-2px);
}

.footer-cta .btn-light {
    box-shadow: 0 8px 24px rgba(11, 13, 18, 0.12);
}

.footer-cta .btn-light:hover {
    background: #ffffff;
    color: var(--red-dark);
    box-shadow: 0 14px 36px rgba(11, 13, 18, 0.25);
    transform: translateY(-3px) scale(1.02);
}

.footer-cta .btn-light:active {
    transform: translateY(-1px) scale(0.98);
}

.footer-main {
    color: #d8dde6;
    background: #151922;
    padding: 54px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2.6fr;
    gap: 38px;
}

.footer-nav-col {
    display: none;
}

.footer-brand img {
    width: 180px;
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 6px;
    padding: 8px;
}

.footer-brand img.footer-logo-white {
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 12px;
}

.footer-gst {
    font-size: 13px;
    font-weight: 600;
    color: #ffb8bf;
    margin-bottom: 18px;
    display: inline-block;
    border: 1px solid rgba(225, 25, 43, 0.35);
    border-radius: 4px;
    padding: 3px 8px;
    background: rgba(225, 25, 43, 0.08);
}

.footer-main h3,
.footer-main h4 {
    color: var(--white);
    margin: 0 0 14px;
}

.footer-brand p,
.footer-outlet p {
    color: #b7becb;
}

.footer-social {
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: #b7becb;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--white);
}

.social-link svg {
    transition: transform 0.2s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}


.footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a:hover {
    color: var(--white);
}

.outlet-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.footer-outlet {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 14px;
}

.footer-outlet h4 {
    margin-bottom: 6px;
    font-size: 15px;
}

.footer-outlet p {
    margin: 5px 0;
    font-size: 13px;
}

.footer-outlet__map {
    margin: 8px 0 0 0 !important;
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    color: #ff4b5a;
    font-weight: 700;
    font-size: 13.5px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-map-link:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-map-link svg {
    margin-right: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    color: #b7becb;
    background: #10131a;
}

.footer-bottom__inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
}

.footer-bottom-links a {
    color: #b7becb;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
        position: relative;
        z-index: 1200;
    }

    body.mobile-menu-open .nav-toggle {
        opacity: 0;
        transform: scale(0.8);
        pointer-events: none;
        visibility: hidden;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-menu.is-open {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        display: grid;
        align-content: start;
        justify-content: stretch;
        justify-items: stretch;
        gap: 0;
        border-left: 0;
        border-radius: 0;
        padding: 0;
        background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
        box-shadow: -24px 0 60px rgba(11, 13, 18, 0.18);
        z-index: 1100;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform 220ms ease;
    }

    .nav-menu.is-open {
        transform: translateX(0);
    }

    .nav-menu.is-open .container {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        display: block;
        background: rgba(11, 13, 18, 0.44);
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease;
        z-index: 1005;
    }

    .nav-overlay.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-head {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 16px 16px 12px;
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(229, 232, 238, 0.6);
    }

    .mobile-menu-head img {
        width: 118px;
        max-height: 36px;
        object-fit: contain;
    }

    .nav-close {
        display: inline-flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: var(--white);
        box-shadow: 0 10px 20px rgba(11, 13, 18, 0.08);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-close:hover {
        background: var(--soft);
        border-color: var(--muted);
        transform: rotate(90deg);
    }

    .nav-close span {
        position: absolute;
        width: 16px;
        height: 2px;
        border-radius: 999px;
        background: var(--ink);
    }

    .nav-close span:first-child {
        transform: rotate(45deg);
    }

    .nav-close span:last-child {
        transform: rotate(-45deg);
    }

    .nav-menu.is-open>a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
        min-height: 52px;
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        background: transparent;
        color: #303743;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
    }

    .nav-menu.is-open .nav-item {
        display: grid;
        width: 100%;
        border-bottom: 1px solid var(--line);
    }

    .nav-menu.is-open .nav-item--mega>.nav-link {
        display: none;
    }

    .nav-menu.is-open .mobile-submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
        border: 0;
        min-height: 52px;
        padding: 12px 16px;
        color: #303743;
        font: inherit;
        font-size: 16px;
        font-weight: 500;
        background: transparent;
        cursor: pointer;
        text-align: left;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
    }

    .nav-menu.is-open>a:hover,
    .nav-menu.is-open>a.active,
    .nav-menu.is-open .mobile-submenu-toggle:hover,
    .nav-menu.is-open .mobile-submenu-toggle[aria-expanded="true"] {
        color: var(--red);
        background: rgba(225, 25, 43, 0.04);
        font-weight: 600;
        padding-left: 13px;
        border-left: 3px solid var(--red);
    }

    .mobile-submenu-toggle i {
        margin-left: auto;
        width: 9px;
        height: 9px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-2px);
        transition: transform 180ms ease;
    }

    .mobile-submenu-toggle[aria-expanded="true"] i {
        transform: rotate(-135deg) translateY(-1px);
    }

    .nav-menu.is-open .mega-menu {
        position: static;
        display: none;
        visibility: hidden;
        opacity: 0;
        transform: none;
        border: 0;
        margin-top: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-menu.is-open .nav-item--mega.is-submenu-open .mega-menu {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .nav-menu.is-open .mega-menu__inner {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .mega-car,
    .mega-car--break,
    .mega-car--break~.mega-car {
        display: block !important;
        min-height: 0 !important;
        border-top: 0 !important;
        border-radius: 0 !important;
        padding: 12px 16px !important;
        background: transparent !important;
        width: 100% !important;
        text-align: left !important;
        box-shadow: none !important;
        border-bottom: 1px solid var(--line) !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        color: #4a5464 !important;
        transition: all 0.2s ease !important;
        border-left: 3px solid transparent !important;
    }

    .mega-car:hover {
        color: var(--red) !important;
        background: rgba(225, 25, 43, 0.04) !important;
        font-weight: 600 !important;
        padding-left: 13px !important;
        border-left: 3px solid var(--red) !important;
    }

    .mega-car img {
        display: none !important;
    }

    .mega-car strong {
        display: block !important;
        font-size: 15px !important;
        line-height: 1.2 !important;
        color: inherit !important;
        text-align: left !important;
    }

    .mega-car span,
    .mega-car em {
        display: none !important;
    }

    .hero__grid,
    .service-band,
    .split-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
    }

    .footer-cta__actions {
        justify-content: center;
    }

    .footer-nav-col {
        display: block;
    }

    .outlet-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__grid {
        gap: 28px;
    }

    .hero {
        background:
            radial-gradient(circle at 85% 45%, rgba(225, 25, 43, 0.22), transparent 30%),
            radial-gradient(circle at 12% 78%, rgba(225, 25, 43, 0.18), transparent 32%),
            linear-gradient(180deg, #080a0f 0%, #151b27 100%);
    }

    .car-row,
    .car-grid,
    .outlet-grid,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .navbar__inner {
        min-height: 76px;
    }

    .nav-menu.is-open {
        width: 100%;
    }

    .brand img {
        width: 148px;
    }

    .hero,
    .section,
    .page-hero {
        padding: 48px 0;
    }

    .hero__content h1,
    .page-hero h1 {
        font-size: 40px;
    }

    .hero__media {
        min-height: 280px;
    }

    .hero__media::before {
        inset: 74px 0 18px;
    }

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

    .hero__badge {
        top: 26px;
        right: 0;
    }

    .car-row,
    .car-grid,
    .outlet-grid,
    .feature-grid,
    .stat-grid,
    .outlet-list {
        grid-template-columns: 1fr;
    }

    .footer-bottom__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* --- Hero Carousel --- */
.hero-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    max-height: 620px;
    overflow: hidden;
    background: #05070a;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide picture,
.carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide img {
    transform: scale(1.01);
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide.active img {
    transform: scale(1.05);
}

/* Explore CTA on Hero Banners */
.carousel-explore-btn {
    position: absolute;
    left: 100px;
    bottom: 100px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--red);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

/* Navigation Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: auto;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    outline: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin: 0;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s;
    pointer-events: none;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.carousel-btn.prev {
    left: 24px;
}

.carousel-btn.prev:hover {
    transform: translateY(-50%) translateX(-2px);
}

.carousel-btn.next {
    right: 24px;
}

.carousel-btn.next:hover {
    transform: translateY(-50%) translateX(2px);
}

/* Indicators */
.carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.carousel-dot.active {
    background: var(--red);
    width: 20px;
    border-radius: 4px;
}

.carousel-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .hero-carousel {
        aspect-ratio: 1562 / 2117;
        max-height: 70vh;
    }

    .carousel-explore-btn {
        left: 50%;
        bottom: 60px;
        transform: translateX(-50%);
    }

    .carousel-explore-btn:hover {
        transform: translateX(-50%) translateY(-2px);
    }
}

@media (max-width: 640px) {
    .carousel-btn {
        width: 38px;
        height: 38px;
    }

    .carousel-btn.prev {
        left: 12px;
    }

    .carousel-btn.next {
        right: 12px;
    }

    .carousel-dots {
        bottom: 16px;
        padding: 6px 12px;
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
    }

    .carousel-dot.active {
        width: 16px;
    }
}

/* --- The Lineup Section --- */
.section-lineup {
    background: var(--white);
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
}

.lineup-header {
    margin-bottom: 40px;
}

.lineup-title-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.lineup-title {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--ink);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.lineup-decorator {
    width: 64px;
    height: 20px;
    background: linear-gradient(90deg, var(--red) 0%, var(--red) 30%, rgba(225, 25, 43, 0) 100%);
    transform: skewX(-25deg);
    border-radius: 2px;
    margin-top: 4px;
}

.lineup-subtitle {
    font-family: Manrope, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--muted);
    margin: 8px 0 0 0;
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lineup-card-link {
    display: contents;
    text-decoration: none;
    color: inherit;
}

.lineup-card__main-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.lineup-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.5s,
        background-color 0.5s;
    box-shadow: 0 4px 20px rgba(11, 13, 18, 0.02);
    backdrop-filter: blur(4px);
}

.lineup-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--red) 0%, rgba(225, 25, 43, 0.4) 60%, transparent 80%);
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transform: scale(0.6);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.lineup-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(11, 13, 18, 0.12);
    border-color: rgba(225, 25, 43, 0.3);
}

.lineup-card:hover::before {
    opacity: 1;
    transform: scale(1.3) translate(-20px, 20px);
}

.lineup-card__image-container {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(245, 247, 250, 0.9)),
        radial-gradient(circle at 70% 30%, rgba(225, 25, 43, 0.05), transparent 45%);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.lineup-card__image-container img {
    max-width: 95%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 10px 10px rgba(11, 13, 18, 0.08));
}

.lineup-card:hover .lineup-card__image-container img {
    transform: scale(1.1) translateY(4px);
}

.lineup-card__content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.lineup-card__info {
    flex-grow: 1;
    min-width: 0;
}

.lineup-card__title {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.lineup-card__price {
    font-family: Manrope, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    margin: 0;
}

.lineup-card__price strong {
    font-weight: 800;
    color: var(--ink);
}

.lineup-card__download {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(11, 13, 18, 0.04);
    cursor: pointer;
    position: relative;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lineup-card__download:hover {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 25, 43, 0.25);
}

.lineup-card__download:active {
    transform: translateY(0);
}


/* Responsive lineup rules */
@media (max-width: 900px) {
    .lineup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-lineup {
        padding: 56px 0;
    }

    .lineup-card__content {
        padding: 20px;
    }

    .lineup-card__title {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .lineup-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* --- The Navigation Section --- */
.section-navigation {
    background: #fafafa;
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
}

.navigation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.navigation-card {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(11, 13, 18, 0.02);
    position: relative;
    overflow: hidden;
}

.navigation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(11, 13, 18, 0.06);
    border-color: rgba(225, 25, 43, 0.2);
}

.navigation-card__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: rgba(225, 25, 43, 0.03);
    border: 1.5px solid rgba(225, 25, 43, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navigation-card__icon svg {
    width: 24px;
    height: 24px;
}

.navigation-card:hover .navigation-card__icon {
    background: rgba(225, 25, 43, 0.08);
    transform: scale(1.05);
}

.navigation-card__details {
    flex-grow: 1;
    margin-left: 20px;
    margin-right: 20px;
    min-width: 0;
}

.navigation-card__title {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    margin: 0 0 4px 0;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.navigation-card:hover .navigation-card__title {
    color: var(--red);
}

.navigation-card__subtitle {
    font-family: Manrope, Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
    margin: 0;
    line-height: 1.45;
}

.navigation-card__arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #252830;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navigation-card:hover .navigation-card__arrow {
    background: var(--red);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(225, 25, 43, 0.3);
}

/* Responsive navigation styles */
@media (max-width: 768px) {
    .section-navigation {
        padding: 56px 0;
    }

    .navigation-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .navigation-card {
        padding: 20px;
    }

    .navigation-card__details {
        margin-left: 16px;
        margin-right: 12px;
    }
}

/* Outlets (Showroom) Section Styles */
.section-outlets {
    background: var(--white);
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
}

.showroom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.showroom-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.5s,
        background-color 0.5s;
    box-shadow: 0 4px 20px rgba(11, 13, 18, 0.02);
    backdrop-filter: blur(4px);
}

.showroom-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--red) 0%, rgba(225, 25, 43, 0.4) 60%, transparent 80%);
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transform: scale(0.6);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.showroom-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(11, 13, 18, 0.12);
    border-color: rgba(225, 25, 43, 0.3);
}

.showroom-card:hover::before {
    opacity: 1;
    transform: scale(1.3) translate(-20px, 20px);
}

.showroom-card__media-container {
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.showroom-map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.showroom-card:hover .showroom-map-iframe {
    opacity: 1;
}

.showroom-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    background: transparent;
    flex-grow: 1;
    z-index: 1;
}

.showroom-card__info {
    flex-grow: 1;
}

.showroom-badge {
    align-self: flex-start;
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: Manrope, Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(225, 25, 43, 0.06);
    color: var(--red);
    margin-bottom: 12px;
}

.showroom-card__name {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 12px 0;
    line-height: 1.25;
}

.showroom-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showroom-address {
    font-style: normal;
    font-family: Manrope, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.5;
}

.showroom-address span {
    display: block;
}

.showroom-contacts {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Manrope, Arial, sans-serif;
    font-size: 12.5px;
}

.showroom-contact-item {
    color: var(--ink);
}

.showroom-contact-item strong {
    color: var(--muted);
    font-weight: 600;
    margin-right: 6px;
}

.showroom-contact-item a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.showroom-contact-item a:hover {
    color: var(--red);
    text-decoration: underline;
}

.showroom-contact-item a:not(:last-child)::after {
    content: ", ";
    color: var(--muted);
}

.showroom-map-link-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(11, 13, 18, 0.85);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 6px;
    font-family: Manrope, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(11, 13, 18, 0.2);
}

.showroom-map-link-overlay:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(225, 25, 43, 0.4);
}

/* Responsive showroom styles */
@media (max-width: 992px) {
    .showroom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .section-outlets {
        padding: 56px 0;
    }

    .showroom-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .showroom-card__media-container {
        aspect-ratio: 16 / 8;
    }

    .showroom-card__content {
        padding: 20px;
    }
}

/* Customer Reviews Section Styles */
.section-reviews {
    background: var(--soft);
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
}

.reviews-carousel-wrapper {
    margin-top: 40px;
    position: relative;
}

.reviews-carousel {
    overflow: hidden;
    padding: 10px 0 24px 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(11, 13, 18, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(11, 13, 18, 0.06);
    border-color: rgba(225, 25, 43, 0.2);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.star-icon {
    width: 18px;
    height: 18px;
    color: #ffb100;
}

.quote-icon {
    width: 24px;
    height: 24px;
    color: var(--red);
    opacity: 0.15;
}

.review-text {
    font-family: Manrope, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 24px 0;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    font-style: normal;
    display: block;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.reviews-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: var(--white);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-btn:hover:not(:disabled) {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(225, 25, 43, 0.2);
}

.reviews-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.reviews-dots {
    display: flex;
    gap: 8px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-dot.active {
    background: var(--red);
    transform: scale(1.2);
    width: 18px;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc((100% - 30px) / 2);
        padding: 26px;
    }
}

@media (max-width: 768px) {
    .section-reviews {
        padding: 56px 0;
    }

    .review-card {
        flex: 0 0 100%;
        padding: 24px;
    }
}

/* --- Service Page Styles --- */
.section-service {
    background: #fdfdfd;
    padding: 80px 0;
    border-top: 1px solid var(--line);
}

.service-container {
    max-width: 1200px;
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.service-info {
    padding-top: 10px;
}

.service-title {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--ink);
    margin: 12px 0 20px 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.service-desc {
    font-family: Manrope, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 40px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(225, 25, 43, 0.05);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(225, 25, 43, 0.1);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-text h3 {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 6px 0;
}

.feature-text p {
    font-family: Manrope, Arial, sans-serif;
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.service-form-wrapper {
    display: flex;
    justify-content: flex-end;
}

.service-form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 16px 40px rgba(11, 13, 18, 0.04);
}

/* ==========================================================================
   UNIFIED FORM DESIGN SYSTEM
   ========================================================================== */

/* --- Uniform Form Containers --- */
.service-form-card,
.insurance-form-container,
.test-drive-form-container,
.at-form-centered-container {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(11, 13, 18, 0.04);
}

.service-form-card,
.insurance-form-container {
    max-width: 520px;
}

.test-drive-form-container,
.at-form-centered-container {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Form Layouts --- */
.service-booking-form,
.insurance-quote-form,
.test-drive-form,
.at-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Form Groups & Labels --- */
.service-booking-form .form-group,
.insurance-quote-form .form-group,
.test-drive-form .form-group,
.at-enquiry-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-booking-form label,
.insurance-quote-form label,
.test-drive-form label,
.at-enquiry-form label {
    font-family: Manrope, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

/* --- Input & Control Fields --- */
.service-booking-form input[type="text"],
.service-booking-form input[type="tel"],
.service-booking-form input[type="email"],
.service-booking-form input[type="date"],
.service-booking-form input[type="time"],
.insurance-quote-form input[type="text"],
.insurance-quote-form input[type="tel"],
.insurance-quote-form input[type="email"],
.insurance-quote-form select,
.insurance-quote-form textarea,
.test-drive-form input[type="text"],
.test-drive-form input[type="tel"],
.test-drive-form input[type="email"],
.test-drive-form input[type="date"],
.test-drive-form input[type="time"],
.test-drive-form select,
.test-drive-form textarea,
.at-enquiry-form input[type="text"],
.at-enquiry-form input[type="tel"],
.at-enquiry-form input[type="email"],
.at-enquiry-form input[type="number"],
.at-enquiry-form select,
.at-enquiry-form textarea {
    font-family: Manrope, Arial, sans-serif;
    font-size: 14.5px;
    padding: 13px 16px;
    border: 1px solid #cbd2dc;
    border-radius: 8px;
    outline: none;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

/* --- Placeholder --- */
.service-booking-form input::placeholder,
.insurance-quote-form input::placeholder,
.insurance-quote-form textarea::placeholder,
.test-drive-form input::placeholder,
.test-drive-form textarea::placeholder,
.at-enquiry-form input::placeholder,
.at-enquiry-form textarea::placeholder {
    color: #a0aec0;
}

/* --- Focus States --- */
.service-booking-form input:focus,
.insurance-quote-form input:focus,
.insurance-quote-form select:focus,
.insurance-quote-form textarea:focus,
.test-drive-form input:focus,
.test-drive-form select:focus,
.test-drive-form textarea:focus,
.at-enquiry-form input:focus,
.at-enquiry-form select:focus,
.at-enquiry-form textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(225, 25, 43, 0.08);
}

/* --- Select Controls --- */
.insurance-quote-form select,
.test-drive-form select,
.at-enquiry-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 40px;
    cursor: pointer;
}

/* --- Textarea Controls --- */
.insurance-quote-form textarea,
.test-drive-form textarea,
.at-enquiry-form textarea {
    min-height: 110px;
    resize: vertical;
    border-radius: 8px;
}

/* --- Checkbox Groups & Items --- */
.service-booking-form .form-checkbox-group,
.insurance-quote-form .form-checkbox-group,
.at-enquiry-form .form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.service-booking-form .checkbox-item,
.insurance-quote-form .checkbox-item,
.at-enquiry-form .checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-booking-form .checkbox-item input[type="checkbox"],
.insurance-quote-form .checkbox-item input[type="checkbox"],
.at-enquiry-form .checkbox-item input[type="checkbox"] {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    accent-color: var(--red);
    cursor: pointer;
    flex-shrink: 0;
}

.service-booking-form .checkbox-item label,
.insurance-quote-form .checkbox-item label,
.at-enquiry-form .checkbox-item label {
    font-family: Manrope, Arial, sans-serif;
    font-weight: 500;
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.4;
    cursor: pointer;
}

.service-booking-form .checkbox-item label a,
.insurance-quote-form .checkbox-item label a,
.at-enquiry-form .checkbox-item label a {
    color: var(--red);
    font-weight: 600;
    transition: color 0.2s ease;
}

.service-booking-form .checkbox-item label a:hover,
.insurance-quote-form .checkbox-item label a:hover,
.at-enquiry-form .checkbox-item label a:hover {
    text-decoration: underline;
    color: var(--red-dark);
}

/* --- Submit Buttons --- */
.service-booking-form .btn-submit,
.insurance-quote-form .btn-submit,
.test-drive-form .btn-submit,
.at-enquiry-form .btn-submit {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 15px 28px;
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    margin-top: 12px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(225, 25, 43, 0.2);
    letter-spacing: 0.01em;
}

.service-booking-form .btn-submit:hover,
.insurance-quote-form .btn-submit:hover,
.test-drive-form .btn-submit:hover,
.at-enquiry-form .btn-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(225, 25, 43, 0.32);
}

.service-booking-form .btn-submit:active,
.insurance-quote-form .btn-submit:active,
.test-drive-form .btn-submit:active,
.at-enquiry-form .btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(225, 25, 43, 0.2);
}

/* --- Success Cards & States --- */
.service-success-msg,
.insurance-success-card,
.test-drive-success-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: none;
}

.service-success-msg .success-icon,
.insurance-success-card .success-icon,
.test-drive-success-card .success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-success-msg h2,
.insurance-success-card h2,
.test-drive-success-card h2 {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 12px 0;
}

.service-success-msg p,
.insurance-success-card p,
.test-drive-success-card p {
    font-family: Manrope, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 28px 0;
}

/* --- Success Action Buttons Override --- */
.service-success-msg .btn-primary,
.insurance-success-card .btn-primary,
.test-drive-success-card .btn-primary {
    border-radius: 8px;
    padding: 15px 28px;
    height: auto;
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.01em;
    background: var(--red);
    box-shadow: 0 6px 16px rgba(225, 25, 43, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    margin-top: 12px;
}

.service-success-msg .btn-primary::before,
.insurance-success-card .btn-primary::before,
.test-drive-success-card .btn-primary::before {
    display: none;
}

.service-success-msg .btn-primary:hover,
.insurance-success-card .btn-primary:hover,
.test-drive-success-card .btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(225, 25, 43, 0.32);
}

.service-success-msg .btn-primary:active,
.insurance-success-card .btn-primary:active,
.test-drive-success-card .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(225, 25, 43, 0.2);
}

/* --- Form Layout Rows/Cols --- */
.service-booking-form .form-row {
    display: flex;
    gap: 16px;
}

.service-booking-form .form-col {
    flex: 1;
}

@media (max-width: 768px) {

    .service-form-card,
    .insurance-form-container,
    .test-drive-form-container,
    .at-form-centered-container {
        padding: 24px;
    }
}


/* Success State styling */
.service-success-msg {
    text-align: center;
    padding: 30px 10px;
}

.service-success-msg .success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-success-msg h2 {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 12px 0;
}

.service-success-msg p {
    font-family: Manrope, Arial, sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 24px 0;
}

/* Responsive Service Styles */
@media (max-width: 992px) {
    .service-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-info {
        max-width: 680px;
    }

    .service-form-wrapper {
        justify-content: start;
    }

    .service-form-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-service {
        padding: 56px 0;
    }

    .service-title {
        margin: 8px 0 16px 0;
    }

    .service-desc {
        margin-bottom: 30px;
    }

    .service-form-card {
        padding: 24px;
    }
}

/* --- Service Process Workflow Styles --- */
.section-process {
    background: #ffffff;
    padding: 90px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
    position: relative;
}

.process-step {
    position: relative;
}

.process-number {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 54px;
    font-weight: 800;
    color: rgba(11, 13, 18, 0.04);
    line-height: 1;
    position: absolute;
    top: -30px;
    left: 20px;
    z-index: 1;
    transition: color 0.3s;
}

.process-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 36px 28px;
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 25, 43, 0.2);
    box-shadow: 0 20px 48px rgba(11, 13, 18, 0.06);
}

.process-card:hover+.process-number,
.process-step:hover .process-number {
    color: rgba(225, 25, 43, 0.08);
}

.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: rgba(11, 13, 18, 0.03);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.process-card:hover .process-icon {
    background: var(--red);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(225, 25, 43, 0.25);
}

.process-card h3 {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 12px 0;
}

.process-card p {
    font-family: Manrope, Arial, sans-serif;
    font-size: 14.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Process Styles */
@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 600px) {
    .section-process {
        padding: 60px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-top: 40px;
    }

    .process-card {
        padding: 28px 20px;
    }

    .process-number {
        top: -24px;
        left: 12px;
        font-size: 44px;
    }
}

/* --- Page Header & Breadcrumbs --- */
.page-header {
    background: #b2101e;
    background-image:
        linear-gradient(105deg, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.03) 55.1%, rgba(255, 255, 255, 0.03) 63%, rgba(255, 255, 255, 0) 63.1%),
        linear-gradient(105deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.05) 60.1%, rgba(255, 255, 255, 0.05) 68%, rgba(255, 255, 255, 0) 68.1%),
        linear-gradient(105deg, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0.12) 66.1%, rgba(0, 0, 0, 0.12) 78%, rgba(0, 0, 0, 0) 78.1%),
        linear-gradient(105deg, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.04) 72.1%, rgba(255, 255, 255, 0.04) 84%, rgba(255, 255, 255, 0) 84.1%),
        linear-gradient(135deg, #e3192b 0%, #7a0710 100%);
    padding: 64px 0;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.page-header__title {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 10px 0;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Manrope, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.breadcrumb-item:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
    font-weight: 600;
    pointer-events: none;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    user-select: none;
}

/* --- Proactive Checks Section --- */
.section-checks {
    background: #ffffff;
    padding: 90px 0;
}

.checks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.check-item-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.check-item-card:hover {
    border-color: rgba(225, 25, 43, 0.2);
    background: rgba(225, 25, 43, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.check-icon {
    color: #10b981;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    flex-shrink: 0;
}

.check-text {
    font-family: Manrope, Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .section-checks {
        padding: 60px 0;
    }

    .checks-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 12px;
        margin-top: 32px;
    }

    .check-item-card {
        padding: 12px 14px;
    }
}

/* --- Insurance Page --- */
.insurance-section {
    padding: 80px 0;
    background: var(--white);
}

.insurance-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 991px) {
    .insurance-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.insurance-info-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.insurance-assure-card {
    background: linear-gradient(135deg, rgba(225, 25, 43, 0.03), rgba(225, 25, 43, 0.01));
    border-left: 5px solid var(--red);
    padding: 30px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 10px 30px rgba(11, 13, 18, 0.02);
}

.insurance-assure-card h3 {
    margin: 0 0 16px 0;
    color: var(--ink);
    font-size: 24px;
    font-family: Sora, Manrope, Arial, sans-serif;
}

.insurance-assure-card p {
    font-family: Manrope, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #3b4252;
    margin: 0;
}

.insurance-benefits {
    display: grid;
    gap: 20px;
    margin-top: 10px;
}

.insurance-benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.insurance-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(225, 25, 43, 0.08);
    color: var(--red);
    flex-shrink: 0;
}

.insurance-benefit-text h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: var(--ink);
}

.insurance-benefit-text p {
    margin: 0;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.5;
}

.insurance-form-column {
    display: flex;
    justify-content: flex-end;
}

/* Form Styles - Uniform with Service Page Card */
/* Insurance Form Layout Overrides */
@media (max-width: 991px) {
    .insurance-form-column {
        justify-content: start;
    }

    .insurance-form-container {
        max-width: 100%;
    }
}


/* --- About Us Page --- */
.section-about-company {
    padding: 80px 0;
    background: var(--white);
}

.about-company-flow {
    width: 100%;
}

.about-company-flow::after {
    content: "";
    display: table;
    clear: both;
}

.about-tagline {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--red);
    letter-spacing: 0.05em;
    margin-top: 8px;
}

.about-text {
    font-family: Manrope, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
}

.about-visual {
    float: right;
    width: 48%;
    /* Increased image size */
    margin-left: 50px;
    margin-bottom: 24px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(11, 13, 18, 0.08);
    background: #f1f5f9;
    padding: 8px;
    border: 1px solid var(--line);
    width: 100%;
}

.about-showcase-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-showcase-img {
    transform: scale(1.02);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--ink);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    border-left: 4px solid var(--red);
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.about-badge-years {
    font-family: Sora, Arial, sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    margin-bottom: 4px;
}

.about-badge-text {
    font-family: Manrope, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 25, 43, 0.7);
    text-align: center;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-visual {
        float: none;
        width: 100%;
        max-width: 600px;
        margin: 0 auto 40px auto;
    }
}

@media (max-width: 768px) {
    .section-about-company {
        padding: 56px 0;
    }
}

@media (max-width: 600px) {
    .about-experience-badge {
        bottom: -15px;
        left: 15px;
        padding: 14px 18px;
        min-width: 100px;
    }

    .about-badge-years {
        font-size: 26px;
    }
}

/* Stats Section (2nd Section) */
.section-about-stats {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(11, 13, 18, 0.02);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 25, 43, 0.2);
    box-shadow: 0 20px 40px rgba(11, 13, 18, 0.06);
}

.stat-icon-wrapper {
    width: 68px;
    height: 68px;
    background: rgba(225, 25, 43, 0.05);
    color: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(225, 25, 43, 0.1);
}

.stat-card:hover .stat-icon-wrapper {
    background: var(--red);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(225, 25, 43, 0.25);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-category {
    font-family: Manrope, Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--red);
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.stat-number {
    font-family: Sora, Arial, sans-serif;
    font-size: 40px;
    font-weight: 850;
    color: var(--ink);
    line-height: 1.1;
    margin: 0 0 6px 0;
    letter-spacing: -0.02em;
}

.stat-desc {
    font-family: Manrope, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    margin: 0;
}

@media (max-width: 768px) {
    .section-about-stats {
        padding: 56px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-card {
        padding: 30px 24px;
    }

    .stat-number {
        font-size: 34px;
    }
}

/* Director's Message Section (3rd Section) */
.section-about-director {
    padding: 80px 0;
    background: var(--white);
}

.director-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.director-profile-card {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(11, 13, 18, 0.02);
}

.director-avatar-wrapper {
    width: 100%;
    margin-bottom: 24px;
}

.director-avatar-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(11, 13, 18, 0.04);
    display: block;
}

.director-name {
    font-family: Sora, Arial, sans-serif;
    font-size: 20px;
    font-weight: 750;
    color: var(--ink);
    margin: 0 0 4px 0;
}

.director-title {
    font-family: Manrope, Arial, sans-serif;
    font-size: 13px;
    font-weight: 750;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.director-sign-decorator {
    width: 40px;
    height: 2px;
    background: var(--line);
    margin: 20px 0;
}

.director-quote-snippet {
    font-family: Manrope, Arial, sans-serif;
    font-size: 14px;
    font-style: italic;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.director-salutation {
    font-family: Sora, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
}

.director-text {
    font-family: Manrope, Arial, sans-serif;
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
}

.director-spectrum {
    margin: 32px 0;
}

.spectrum-title {
    font-family: Sora, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.spectrum-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spectrum-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.spectrum-number {
    color: var(--red);
    font-family: Sora, Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    margin-right: 4px;
    flex-shrink: 0;
}

.spectrum-info {
    font-family: Manrope, Arial, sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
}

.spectrum-info strong {
    color: var(--ink);
}

.director-closing {
    font-family: Sora, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
}

.director-signature {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    display: inline-block;
}

.sig-regards {
    font-family: Georgia, serif;
    font-size: 16px;
    font-style: italic;
    color: var(--muted);
    margin: 0 0 8px 0;
}

.sig-name {
    font-family: Sora, Arial, sans-serif;
    font-size: 16px;
    font-weight: 750;
    color: var(--ink);
    margin: 0 0 2px 0;
}

.sig-title {
    font-family: Manrope, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

@media (max-width: 992px) {
    .director-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .director-profile-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-about-director {
        padding: 56px 0;
    }
}

/* Awards Section (4th Section) */
.section-about-awards {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.awards-header {
    text-align: center;
    margin-bottom: 48px;
}



.awards-display-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(11, 13, 18, 0.02);
    transition: all 0.3s ease;
}

.awards-display-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 25, 43, 0.15);
    box-shadow: 0 20px 40px rgba(11, 13, 18, 0.05);
}

.awards-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.awards-showcase-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .section-about-awards {
        padding: 56px 0;
    }

    .awards-header {
        margin-bottom: 32px;
    }

    .awards-display-card {
        padding: 20px;
    }
}

/* About Honda Section (5th Section) */
.section-about-honda {
    padding: 80px 0;
    background: var(--white);
}

.honda-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.honda-subheading {
    font-family: Sora, Arial, sans-serif;
    font-size: 22px;
    font-weight: 750;
    color: var(--ink);
    margin-bottom: 24px;
}

.honda-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pillar-card {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 25, 43, 0.15);
    box-shadow: 0 10px 24px rgba(11, 13, 18, 0.04);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(225, 25, 43, 0.05);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid rgba(225, 25, 43, 0.1);
    transition: all 0.3s;
}

.pillar-card:hover .pillar-icon {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(225, 25, 43, 0.2);
}

.pillar-content h4 {
    font-family: Sora, Arial, sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 8px 0;
}

.pillar-content p {
    font-family: Manrope, Arial, sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

.honda-link-wrapper {
    margin-top: 56px;
    text-align: center;
}

.honda-official-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-family: Sora, Arial, sans-serif;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.honda-official-link:hover {
    color: var(--ink);
    border-color: var(--ink);
}

.honda-official-link svg {
    transition: transform 0.3s;
}

.honda-official-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .honda-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-about-honda {
        padding: 56px 0;
    }
}

@media (max-width: 600px) {
    .honda-pillars {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* --- New Honda City Color Switcher Styles --- */
.color-switcher-section {
    padding: 0px 0px 30px 0px;
    background: #ffffff;
    overflow: hidden;
}

.color-switcher-header {
    text-align: center;
    margin-bottom: 48px;
}

.color-switcher-header h2 {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 10px 0;
}

.color-switcher-header p {
    font-family: Manrope, Arial, sans-serif;
    font-size: 15px;
    color: var(--muted);
    margin: 0;
}

.car-showcase-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.car-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    /* Prevent layout shift during loading */
}

.car-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.color-selector-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -15px;
}

.color-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.color-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    outline: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.color-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.color-btn.active {
    transform: scale(1.15);
    outline: 2px solid var(--red);
    outline-offset: 4px;
    box-shadow: 0 0 0 6px rgba(225, 25, 43, 0.12);
}

.color-name-label {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 10px;
    text-transform: capitalize;
}

.brochure-download-wrapper {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-download-brochure {
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.btn-download-brochure:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .color-switcher-section {
        padding: 60px 0;
    }

    .color-switcher-section .container {
        width: 100%;
        max-width: 100%;
    }

    .color-switcher-header h2 {
        font-size: 26px;
    }

    .car-showcase-container {
        padding: 0;
        max-width: 100%;
    }

    .car-showcase {
        min-height: auto;
    }

    .car-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .color-selector-wrapper {
        margin-top: 0;
        padding: 0 18px;
    }

    .color-buttons-container {
        gap: 12px;
        padding: 6px 12px;
    }

    .color-btn {
        width: 28px;
        height: 28px;
    }

    .color-name-label {
        font-size: 16px;
    }
}

/* --- Car Specs Section Styles --- */
.car-specs-section {
    padding: 50px 0;
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: flex-start;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 0 30px;
}

.spec-item:first-child {
    padding-left: 0;
}

.spec-item:last-child {
    padding-right: 0;
    border-right: none;
}

.spec-item:not(:last-child) {
    border-right: 1px solid var(--line);
}

.spec-label {
    font-family: Manrope, Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.spec-value {
    font-family: Sora, Arial, sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.spec-sublabel {
    font-family: Manrope, Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
    margin-top: 2px;
}

@media (max-width: 992px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .spec-item {
        padding: 0 15px;
    }

    .spec-item:nth-child(2n) {
        border-right: none;
        padding-right: 0;
    }

    .spec-item:nth-child(2n-1) {
        padding-left: 0;
    }

    .spec-value {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .spec-item {
        padding: 0;
        border-right: none !important;
    }
}

/* --- e:HEV Drive Modes Section Styles --- */
.ehev-drive-modes-section {
    padding: 80px 0;
    background: var(--white);
}

.ehev-banner-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 50px;
}

.ehev-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.ehev-section-title {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.ehev-gif-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ehev-gif-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 13, 18, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}

.ehev-gif-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11, 13, 18, 0.08);
    border-color: rgba(225, 25, 43, 0.2);
}

.ehev-gif-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .ehev-drive-modes-section {
        padding: 60px 0;
    }

    .ehev-section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .ehev-gif-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .ehev-gif-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .ehev-banner-wrapper {
        margin-bottom: 30px;
        border-radius: 8px;
    }
}

/* --- Tabs & Carousel Section Styles --- */
.tabs-carousel-section {
    padding: 70px 0 90px 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.tabs-nav-wrapper {
    border-bottom: 1px solid var(--line);
    margin-bottom: 40px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -webkit-overflow-scrolling: touch;
}

.tabs-nav-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.tabs-nav {
    display: flex;
    gap: 40px;
    padding-bottom: 0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 14px 0;
    font-family: Manrope, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s, font-weight 0.3s;
    outline: none;
}

.tab-btn:hover {
    color: var(--ink);
}

.tab-btn.active {
    color: var(--ink);
    font-weight: 700;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--ink);
}

.tab-panels {
    position: relative;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tabs-carousel-section .carousel-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    z-index: auto;
}

.tabs-carousel-section .carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
}

.tabs-carousel-section .carousel-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.tabs-carousel-section .carousel-slide {
    position: static;
    flex: 0 0 calc(50% - 15px);
    /* 2 slides per row on desktop */
    width: auto;
    height: auto;
    opacity: 1;
    z-index: auto;
    pointer-events: auto;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: none;
}

.slide-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f1f5f9;
}

.slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tabs-carousel-section .carousel-slide:hover .slide-image-wrapper img {
    transform: scale(1.02);
}

.slide-caption {
    font-family: Sora, Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.45;
    margin: 0;
    text-align: left;
    letter-spacing: -0.01em;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    position: relative;
}

.carousel-progress-bar {
    position: relative;
    flex-grow: 1;
    height: 2px;
    background: var(--line);
    margin-right: 40px;
}

.carousel-progress-indicator {
    position: absolute;
    top: -1px;
    left: 0;
    height: 4px;
    background: var(--ink);
    width: 0%;
    transition: width 0.15s ease, left 0.15s ease;
}

.carousel-arrows {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--ink);
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.arrow-btn:hover {
    opacity: 1;
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.05);
}

.arrow-btn:active {
    transform: scale(0.9);
}

@media (max-width: 768px) {
    .tabs-carousel-section {
        padding: 50px 0 60px 0;
    }

    .tabs-nav {
        gap: 25px;
    }

    .tab-btn {
        font-size: 15px;
        padding: 10px 0;
    }

    .tabs-carousel-section .carousel-track {
        gap: 20px;
    }

    .tabs-carousel-section .carousel-slide {
        flex: 0 0 100%;
        /* 1 slide per row on mobile */
    }

    .slide-caption {
        font-size: 16px;
    }

    .carousel-controls {
        margin-top: 25px;
    }

    .carousel-progress-bar {
        margin-right: 25px;
    }
}

/* --- Cars Page Custom Styles --- */
.section-cars-list {
    background: var(--white);
    padding: 80px 0;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.car-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.5s;
    box-shadow: 0 4px 20px rgba(11, 13, 18, 0.02);
    backdrop-filter: blur(4px);
}

.car-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(11, 13, 18, 0.12);
    border-color: rgba(225, 25, 43, 0.3);
}

.car-card__image-container {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(245, 247, 250, 0.9)),
        radial-gradient(circle at 70% 30%, rgba(225, 25, 43, 0.05), transparent 45%);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.car-card__image-container img {
    max-width: 95%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 10px 10px rgba(11, 13, 18, 0.08));
}

.car-card:hover .car-card__image-container img {
    transform: scale(1.08) translateY(2px);
}

.car-card__content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.car-card__type {
    font-family: Manrope, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--red);
    letter-spacing: 0.08em;
}

.car-card__title {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 22px;
    font-weight: 750;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
}

.car-card__price {
    font-family: Sora, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.car-card__price span {
    font-family: Manrope, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    margin-right: 4px;
}

.car-card__summary {
    font-family: Manrope, Arial, sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
    margin: 4px 0 12px 0;
    flex-grow: 1;
}

.car-card__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.car-card__btn-primary {
    flex-grow: 1;
    height: 44px;
    font-size: 13.5px;
}

.car-card__btn-download {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(11, 13, 18, 0.04);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.car-card__btn-download:hover {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 25, 43, 0.25);
}

.car-card__btn-download:active {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-cars-list {
        padding: 56px 0;
    }
}

/* --- Test Drive Page Custom Styles --- */
.test-drive-section {
    background: var(--white);
    padding: 80px 0;
}

.test-drive-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Test Drive Custom Header Styles */
.test-drive-header {
    text-align: center;
    margin-bottom: 32px;
}

.test-drive-header h2 {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}

.test-drive-header h2 span {
    color: var(--red);
}


@media (max-width: 768px) {
    .test-drive-section {
        padding: 56px 0;
    }

    .test-drive-form-container {
        padding: 24px;
    }
}

/* --- Custom Widescreen Carousel Aspect Ratio --- */
.elevate-carousel-section .slide-image-wrapper,
.new-amaze-carousel-section .slide-image-wrapper,
.amaze-2nd-gen-carousel-section .slide-image-wrapper {
    aspect-ratio: 2880 / 940;
}

/* ============================================
   AUTO TERRACE PAGE STYLES
   ============================================ */

/* --- Welcome Section --- */
.at-welcome-section {
    padding: 80px 0 64px;
    background: var(--white);
}

.at-welcome-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.at-welcome-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(225, 25, 43, 0.07);
    color: var(--red);
    margin-bottom: 18px;
    border: 1px solid rgba(225, 25, 43, 0.12);
}

.at-welcome-title {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--ink);
    margin: 12px 0 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.at-welcome-desc {
    font-family: Manrope, Arial, sans-serif;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* --- Two Service Cards Grid --- */
.at-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

@media (max-width: 900px) {
    .at-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.at-service-card {
    border-radius: 16px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

.at-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(11, 13, 18, 0.1);
}

.at-card--preowned {
    background: linear-gradient(135deg, #fff8f8 0%, #fff0f1 100%);
    border: 1.5px solid rgba(225, 25, 43, 0.15);
}

.at-card--exchange {
    background: linear-gradient(135deg, #f5f7fa 0%, #edf0f5 100%);
    border: 1.5px solid var(--line);
}

.at-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.at-card--preowned .at-card-icon {
    background: rgba(225, 25, 43, 0.08);
    color: var(--red);
    border: 1px solid rgba(225, 25, 43, 0.15);
}

.at-card--exchange .at-card-icon {
    background: rgba(11, 13, 18, 0.06);
    color: var(--ink);
    border: 1px solid rgba(11, 13, 18, 0.1);
}

.at-service-card:hover .at-card--preowned .at-card-icon,
.at-card--preowned:hover .at-card-icon {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(225, 25, 43, 0.3);
}

.at-card--exchange:hover .at-card-icon {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(11, 13, 18, 0.25);
}

.at-card-tag {
    font-family: Manrope, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.at-card--preowned .at-card-tag {
    color: var(--red);
}

.at-card--exchange .at-card-tag {
    color: var(--muted);
}

.at-card-title {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 14px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.at-card-desc {
    font-family: Manrope, Arial, sans-serif;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0 0 22px;
}

.at-card-benefits {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.at-card-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Manrope, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.at-card--preowned .at-card-benefits li svg {
    color: var(--red);
    flex-shrink: 0;
}

.at-card--exchange .at-card-benefits li svg {
    color: #10b981;
    flex-shrink: 0;
}

.at-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 8px;
    font-family: Manrope, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    align-self: flex-start;
}

.at-cta--red {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(225, 25, 43, 0.25);
}

.at-cta--red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 25, 43, 0.35);
}

.at-cta--dark {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(11, 13, 18, 0.2);
}

.at-cta--dark:hover {
    background: #1a1d26;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 13, 18, 0.3);
}

/* --- Benefits Section --- */
.at-benefits-section {
    background: var(--soft);
    padding: 80px 0;
}

.at-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .at-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .at-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.at-benefit-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 30px 26px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.at-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 25, 43, 0.2);
    box-shadow: 0 18px 40px rgba(11, 13, 18, 0.06);
}

.at-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(225, 25, 43, 0.06);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(225, 25, 43, 0.1);
    transition: all 0.3s;
}

.at-benefit-card:hover .at-benefit-icon {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(225, 25, 43, 0.25);
}

.at-benefit-card h4 {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px;
}

.at-benefit-card p {
    font-family: Manrope, Arial, sans-serif;
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* --- Enquiry Form Section --- */
.at-form-section {
    padding: 90px 0;
    background: var(--white);
}


/* Contact Info Bar */
.at-contact-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

@media (max-width: 768px) {
    .at-contact-bar {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }
}

.at-contact-card {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.at-contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(225, 25, 43, 0.2);
    box-shadow: 0 10px 30px rgba(11, 13, 18, 0.05);
}

.at-contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(225, 25, 43, 0.06);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(225, 25, 43, 0.1);
}

.at-contact-card:hover .at-contact-icon {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(225, 25, 43, 0.25);
}

.at-contact-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Manrope, Arial, sans-serif;
}

.at-contact-details strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.at-contact-details span,
.at-contact-details a {
    font-size: 15px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.at-contact-details a:hover {
    color: var(--red);
}

/* Auto Terrace Custom Layout Elements */
.at-form-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.at-form-header h3 {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 6px;
}

.at-form-header p {
    font-family: Manrope, Arial, sans-serif;
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.at-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 580px) {
    .at-form-row {
        grid-template-columns: 1fr;
    }
}

.at-form-section-label {
    font-family: Manrope, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    padding: 4px 0;
    border-bottom: 1px solid rgba(225, 25, 43, 0.1);
}


@media (max-width: 768px) {
    .at-welcome-section {
        padding: 56px 0 48px;
    }

    .at-welcome-inner {
        margin-bottom: 40px;
    }

    .at-service-card {
        padding: 28px 24px;
    }

    .at-benefits-section {
        padding: 60px 0;
    }

    .at-form-section {
        padding: 60px 0;
    }
}

/* --- Auto Terrace Mission & Features Section --- */
.at-mission-section {
    background: var(--soft);
    padding: 80px 0;
}

/* Mission Description */
.at-mission-desc {
    font-family: Manrope, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    margin: 0 0 48px;
    max-width: 760px;
}

/* Feature Cards Grid */
.at-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .at-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .at-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .at-features-grid {
        grid-template-columns: 1fr;
    }
}

.at-feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.at-feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.at-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 25, 43, 0.2);
    box-shadow: 0 20px 44px rgba(11, 13, 18, 0.08);
}

.at-feature-card:hover::before {
    transform: scaleX(1);
}

.at-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(225, 25, 43, 0.06);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(225, 25, 43, 0.1);
    flex-shrink: 0;
    transition: all 0.3s;
}

.at-feature-card:hover .at-feature-icon {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(225, 25, 43, 0.28);
}

.at-feature-card h4 {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px;
    line-height: 1.3;
}

.at-feature-card p {
    font-family: Manrope, Arial, sans-serif;
    font-size: 13.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .at-mission-section {
        padding: 56px 0;
    }

    .at-mission-banner {
        margin-bottom: 36px;
    }
}

/* --- Legal Document Layout Styles --- */
.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    font-family: Manrope, Arial, sans-serif;
    color: var(--ink);
}

.legal-header {
    margin-bottom: 48px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 32px;
}

.legal-header h1 {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--ink);
}

.legal-meta {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-intro-box {
    background: var(--soft);
    border-left: 4px solid var(--red);
    border-radius: 4px 8px 8px 4px;
    padding: 24px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(11, 13, 18, 0.06);
}

.legal-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 16px;
}

.legal-section ul,
.legal-section ol {
    margin: 0 0 20px 24px;
    padding: 0;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 10px;
}

.legal-section strong {
    color: var(--ink);
}

.legal-highlight-box {
    background: rgba(225, 25, 43, 0.03);
    border: 1px dashed rgba(225, 25, 43, 0.25);
    border-radius: 12px;
    padding: 28px;
    margin-top: 32px;
}

.legal-highlight-box h3 {
    font-family: Sora, Manrope, Arial, sans-serif;
    font-size: 18px;
    color: var(--red);
    margin: 0 0 12px;
    font-weight: 700;
}

.legal-highlight-box p {
    margin-bottom: 12px;
}

.legal-highlight-box a {
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
}

.legal-highlight-box a:hover {
    color: var(--red-dark);
}

/* Floating Action Button (FAB) & Speed Dial Menu */
.floating-menu-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1001;
    /* Keep above header/footer */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
}

.floating-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 13, 18, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-menu-container.is-open .floating-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.floating-menu-items {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 16px;
    pointer-events: none;
}

.floating-menu-container.is-open .floating-menu-items {
    pointer-events: auto;
}

.floating-menu-item {
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(15px) scale(0.85);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    transition-delay: calc((5 - var(--i)) * 0.04s);
    pointer-events: none;
}

.floating-menu-container.is-open .floating-menu-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: calc(var(--i) * 0.04s);
    pointer-events: auto;
}

.floating-menu-label {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(229, 232, 238, 0.8);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: Sora, Manrope, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-right: 14px;
    box-shadow: 0 4px 14px rgba(11, 13, 18, 0.08);
    white-space: nowrap;
    transition: color 0.2s, transform 0.2s, background-color 0.2s, border-color 0.2s;
}

.floating-menu-item:hover .floating-menu-label {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
    transform: translateX(-4px);
}

.floating-menu-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(11, 13, 18, 0.12);
    transition: background-color 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}

.floating-menu-icon svg,
.floating-menu-icon i {
    width: 22px;
    height: 22px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.floating-menu-item:hover .floating-menu-icon {
    transform: scale(1.06);
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}



/* Toggle Button (FAB) */
.floating-action-btn {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border: none;
    box-shadow: 0 8px 24px rgba(225, 25, 43, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s ease;
    outline: none;
    pointer-events: auto;
}

.floating-action-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 32px rgba(225, 25, 43, 0.45);
}

.floating-action-btn:active {
    transform: translateY(0) scale(0.96);
}

.floating-action-btn svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-menu-container.is-open .floating-action-btn {
    background: var(--ink);
    box-shadow: 0 8px 24px rgba(11, 13, 18, 0.3);
}

.floating-menu-container.is-open .floating-action-btn svg {
    transform: rotate(135deg);
}

@media (max-width: 768px) {
    .floating-menu-container {
        bottom: 20px;
        right: 20px;
    }

    .floating-action-btn {
        width: 56px;
        height: 56px;
    }

    .floating-action-btn svg {
        width: 22px;
        height: 22px;
    }

    .floating-menu-items {
        gap: 12px;
        margin-bottom: 12px;
    }

    .floating-menu-icon {
        width: 46px;
        height: 46px;
    }

    .floating-menu-icon svg,
    .floating-menu-icon i {
        width: 20px;
        height: 20px;
        font-size: 20px;
    }

    .floating-menu-label {
        font-size: 13px;
        padding: 6px 12px;
        margin-right: 10px;
    }
}

/* --- Request a Callback Popup --- */
.callback-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 13, 18, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.callback-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.callback-popup-card {
    position: relative;
    width: min(460px, calc(100% - 32px));
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px 32px;
    box-shadow: 0 24px 60px rgba(11, 13, 18, 0.25);
    border: 1px solid rgba(229, 232, 238, 0.6);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.callback-popup-overlay.is-visible .callback-popup-card {
    transform: scale(1) translateY(0);
}

.callback-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--soft);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.callback-popup-close:hover {
    background: var(--line);
    color: var(--ink);
    transform: rotate(90deg);
}

.callback-popup-header {
    text-align: center;
    margin-bottom: 24px;
}

.callback-popup-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(225, 25, 43, 0.08);
    color: var(--red);
    margin-bottom: 16px;
}

.callback-popup-header h2 {
    font-family: Sora, Manrope, sans-serif;
    font-size: 24px;
    color: var(--ink);
    margin: 0 0 8px;
    font-weight: 700;
}

.callback-popup-header p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.callback-popup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.callback-popup-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.callback-popup-form label {
    font-family: Manrope, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.callback-popup-form input[type="text"],
.callback-popup-form input[type="tel"],
.callback-popup-form select {
    font-family: Manrope, sans-serif;
    font-size: 14px;
    padding: 12px 14px;
    border: 1px solid #cbd2dc;
    border-radius: 8px;
    outline: none;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.callback-popup-form input:focus,
.callback-popup-form select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(225, 25, 43, 0.08);
}

.callback-popup-form .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 999px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(225, 25, 43, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
}

.callback-popup-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(225, 25, 43, 0.3);
}

.callback-popup-form .btn-submit:active {
    transform: translateY(-1px);
}

.callback-popup-success {
    text-align: center;
    padding: 20px 0 10px;
}

.callback-popup-success .success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e6f6ec;
    color: #059669;
    margin-bottom: 20px;
}

.callback-popup-success h2 {
    font-family: Sora, Manrope, sans-serif;
    font-size: 24px;
    color: var(--ink);
    margin: 0 0 12px;
    font-weight: 700;
}

.callback-popup-success p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.callback-popup-success .callback-close-success {
    width: 100%;
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .callback-popup-card {
        padding: 32px 24px 24px;
        border-radius: 16px;
    }
    
    .callback-popup-header h2 {
        font-size: 22px;
    }
}