:root {
    --gold: #ffb703;
    --gold-hover: #e09f00;
    --dark: #060606;
    --card: #0d0d0d;
    --muted: #a0a0a0;
    --border: rgba(255, 255, 255, 0.09);
    --heading: "Outfit", sans-serif;
    --body: "Inter", sans-serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--dark);
    color: #fff;
    font-family: var(--body);
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading);
    font-weight: 700;
}
.text-warning {
    color: var(--gold) !important;
}
.navbar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 15px 0;
}
.navbar-brand {
    font-family: var(--heading);
    font-size: 1.6rem;
    font-weight: 900;
}
.navbar-nav .nav-link {
    font-family: var(--heading);
    font-size: 0.83rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff !important;
    letter-spacing: 0.9px;
    padding: 8px 14px !important;
    position: relative;
}
.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}
.navbar-nav .nav-link.active:after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 2px;
    background: var(--gold);
}
.page-hero {
    padding: 170px 0 90px;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(255, 183, 3, 0.16),
            transparent 32%
        ),
        linear-gradient(180deg, #0c0c0c, #060606);
    border-bottom: 1px solid var(--border);
}
.eyebrow {
    color: var(--gold);
    font-family: var(--heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.76rem;
    margin-bottom: 14px;
}
.page-title {
    font-size: clamp(2.7rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0 0 22px;
}
.page-title span,
.section-title span {
    color: var(--gold);
}
.page-lead {
    color: var(--muted);
    max-width: 650px;
    font-size: 1.02rem;
    line-height: 1.75;
}
.btn-gold,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 24px;
    border-radius: 5px;
    font-family: var(--heading);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: 0.25s;
}
.btn-gold {
    background: var(--gold);
    border: 2px solid var(--gold);
    color: #000;
}
.btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: #000;
    transform: translateY(-2px);
}
.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    cursor: pointer;
}
.btn-outline:hover {
    background: #fff;
    color: #000;
}
.content-section {
    padding: 90px 0;
}
.content-section.alt {
    background: #030303;
    border-block: 1px solid rgba(255, 255, 255, 0.05);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.section-copy {
    color: var(--muted);
    line-height: 1.75;
}
.product-card,
.info-card,
.policy-card {
    height: 100%;
    background: linear-gradient(145deg, #111, #090909);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px;
    transition: 0.3s;
}
.product-card:hover,
.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 183, 3, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.product-icon,
.info-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 183, 3, 0.09);
    border: 1px solid rgba(255, 183, 3, 0.25);
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 22px;
}
.product-card h3,
.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.product-card p,
.info-card p,
.policy-card p,
.policy-card li {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.spec {
    padding: 6px 10px;
    background: #171717;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: #ddd;
    font-size: 0.73rem;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.feature-list li {
    display: flex;
    gap: 12px;
    color: #c4c4c4;
    margin: 13px 0;
    line-height: 1.6;
}
.feature-list i {
    color: var(--gold);
}
.stats {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px;
}
.stat strong {
    display: block;
    color: var(--gold);
    font-family: var(--heading);
    font-size: 2rem;
}
.stat span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}
.accordion-item {
    background: #0d0d0d;
    border: 1px solid var(--border) !important;
    margin-bottom: 12px;
    border-radius: 8px !important;
    overflow: hidden;
}
.accordion-button {
    background: #0d0d0d;
    color: #fff;
    font-family: var(--heading);
    font-weight: 600;
    box-shadow: none !important;
    padding: 20px;
}
.accordion-button:not(.collapsed) {
    background: #121212;
    color: var(--gold);
}
.accordion-button:after {
    filter: invert(1);
}
.accordion-body {
    color: var(--muted);
    line-height: 1.7;
}
.contact-card {
    background: #0d0d0d;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 35px;
}
.form-control,
.form-select {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 13px 15px;
}
.form-control:focus,
.form-select:focus {
    background: #111;
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(255, 183, 3, 0.12);
}
.form-control::placeholder {
    color: #666;
}
.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ddd;
    text-decoration: none;
    margin: 18px 0;
}
.contact-link i {
    color: var(--gold);
    font-size: 1.25rem;
}
.cta {
    padding: 65px 0;
    background: linear-gradient(
        120deg,
        rgba(255, 183, 3, 0.14),
        rgba(255, 183, 3, 0.02)
    );
    border-block: 1px solid rgba(255, 183, 3, 0.18);
}
footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 65px 0 28px;
}
footer h3 {
    font-size: 1.8rem;
    font-weight: 900;
}
footer h5 {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
footer p {
    color: #e0e0e0 !important;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.87rem;
}
.footer-links a:hover {
    color: var(--gold);
}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #666;
    font-size: 0.78rem;
}
.timeline {
    border-left: 2px solid rgba(255, 183, 3, 0.35);
    margin-left: 12px;
    padding-left: 28px;
}
.timeline-step {
    position: relative;
    margin-bottom: 32px;
}
.timeline-step:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    left: -36px;
    top: 5px;
    box-shadow: 0 0 0 5px rgba(255, 183, 3, 0.12);
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
    flex-shrink: 0;
}
.social-btn:hover {
    background: var(--gold);
    color: #000;
}
.badge-type {
    background: rgba(255, 183, 3, 0.1);
    color: var(--gold);
    font-size: 0.72rem;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 183, 3, 0.25);
    white-space: nowrap;
}
@media (max-width: 991px) {
    .navbar-collapse {
        background: #080808;
        margin: 14px -12px -15px;
        padding: 16px;
        border-top: 1px solid var(--border);
    }
    .navbar-nav .nav-link.active:after {
        display: none;
    }
    .page-hero {
        padding: 135px 0 70px;
    }
    .page-title {
        letter-spacing: -1px;
    }
}
@media (max-width: 576px) {
    .content-section {
        padding: 65px 0;
    }
    .page-title {
        font-size: 2.55rem;
    }
    .contact-card,
    .product-card,
    .info-card,
    .policy-card {
        padding: 24px;
    }
}
/* Car oils hero */
.car-page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
    background: #070707;
}
.car-page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background: url("assets/images/car-hero-background.jpg") center 58% / cover
        no-repeat;
    opacity: 0.2;
    filter: saturate(0.7) contrast(1.08);
}
.car-page-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(3, 3, 3, 0.97) 0%,
            rgba(3, 3, 3, 0.85) 43%,
            rgba(3, 3, 3, 0.4) 75%,
            rgba(3, 3, 3, 0.7) 100%
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.25), #060606 100%);
}
.car-hero-content {
    position: relative;
    z-index: 2;
}
.car-hero-content .page-title {
    font-size: clamp(3.4rem, 7vw, 6.2rem);
    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}
.car-hero-content .page-lead {
    max-width: 570px;
    color: #c0c0c0;
}
.car-hero-visual {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.car-hero-glow {
    position: absolute;
    width: 74%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 183, 3, 0.28) 0%,
        rgba(255, 183, 3, 0.08) 42%,
        transparent 70%
    );
    filter: blur(12px);
}
.car-hero-image {
    position: relative;
    width: min(700px, 125%);
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.68));
    transform: translateX(4%);
    animation: carHeroFloat 5s ease-in-out infinite;
}
.car-hero-badge {
    position: absolute;
    right: 1%;
    bottom: 5%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 183, 3, 0.45);
    border-radius: 30px;
    background: rgba(7, 7, 7, 0.8);
    backdrop-filter: blur(10px);
    color: #f2f2f2;
    font-family: var(--heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.car-hero-badge i {
    color: var(--gold);
    font-size: 1rem;
}
@keyframes carHeroFloat {
    0%,
    100% {
        transform: translateX(4%) translateY(0);
    }
    50% {
        transform: translateX(4%) translateY(-9px);
    }
}
@media (max-width: 991px) {
    .car-page-hero {
        min-height: auto;
        padding: 135px 0 55px;
    }
    .car-page-hero:after {
        background: linear-gradient(
            180deg,
            rgba(3, 3, 3, 0.9),
            rgba(3, 3, 3, 0.65) 65%,
            #060606
        );
    }
    .car-hero-content {
        text-align: center;
    }
    .car-hero-content .page-lead {
        margin-inline: auto;
    }
    .car-hero-content .d-flex {
        justify-content: center;
    }
    .car-hero-visual {
        min-height: 320px;
    }
    .car-hero-image {
        width: min(680px, 105%);
        transform: none;
    }
    .car-hero-badge {
        right: 8%;
        bottom: 2%;
    }
    @keyframes carHeroFloat {
        0%,
        100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-8px);
        }
    }
}
@media (max-width: 576px) {
    .car-page-hero {
        padding-bottom: 35px;
    }
    .car-hero-content .page-title {
        font-size: 3.25rem;
    }
    .car-hero-visual {
        min-height: 250px;
    }
    .car-hero-image {
        width: 115%;
    }
    .car-hero-badge {
        right: 50%;
        bottom: 0;
        transform: translateX(50%);
        font-size: 0.63rem;
        white-space: nowrap;
    }
}
@media (prefers-reduced-motion: reduce) {
    .car-hero-image {
        animation: none;
    }
}
