:root {
    --red: #cc0000;
    --red-dark: #990000;
    --red-light: #ff1a1a;
    --dark: #0a0a0a;
    --dark2: #111;
    --dark3: #1a1a1a;
    --gray: #888;
    --gray-light: #eee;
    --gold: #d4a853;
    --wa: #25D366;
    --font: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; scroll-padding-top: 84px; }
body {
    font-family: var(--font);
    background: #f8f9fa;
    color: #222;
    line-height: 1.7;
    overflow-x: hidden;
    overflow-x: clip;
}
a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red-dark); }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.no-scroll { overflow: hidden; }

.js .animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger reveal anak grid saat section muncul.
   Dipicu transisi (fail-safe): konten selalu berakhir tampil,
   tak ada elemen yang tersangkut di opacity 0. */
.js .animate-on-scroll .products-grid > *,
.js .animate-on-scroll .why-grid > *,
.js .animate-on-scroll .testimonial-grid > *,
.js .animate-on-scroll .showcase-grid > * {
    opacity: 0;
    transform: translateY(24px);
}
.js .animate-on-scroll.animate-in .products-grid > *,
.js .animate-on-scroll.animate-in .why-grid > *,
.js .animate-on-scroll.animate-in .testimonial-grid > *,
.js .animate-on-scroll.animate-in .showcase-grid > * {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .animate-on-scroll.animate-in .products-grid > *:nth-child(1),
.js .animate-on-scroll.animate-in .why-grid > *:nth-child(1),
.js .animate-on-scroll.animate-in .testimonial-grid > *:nth-child(1),
.js .animate-on-scroll.animate-in .showcase-grid > *:nth-child(1) { transition-delay: 0.06s; }
.js .animate-on-scroll.animate-in .products-grid > *:nth-child(2),
.js .animate-on-scroll.animate-in .why-grid > *:nth-child(2),
.js .animate-on-scroll.animate-in .testimonial-grid > *:nth-child(2),
.js .animate-on-scroll.animate-in .showcase-grid > *:nth-child(2) { transition-delay: 0.14s; }
.js .animate-on-scroll.animate-in .products-grid > *:nth-child(3),
.js .animate-on-scroll.animate-in .why-grid > *:nth-child(3),
.js .animate-on-scroll.animate-in .testimonial-grid > *:nth-child(3),
.js .animate-on-scroll.animate-in .showcase-grid > *:nth-child(3) { transition-delay: 0.22s; }
.js .animate-on-scroll.animate-in .products-grid > *:nth-child(4),
.js .animate-on-scroll.animate-in .why-grid > *:nth-child(4),
.js .animate-on-scroll.animate-in .testimonial-grid > *:nth-child(4),
.js .animate-on-scroll.animate-in .showcase-grid > *:nth-child(4) { transition-delay: 0.3s; }

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.section-header h2 span { color: var(--red); }
.section-header p {
    color: var(--gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.7); }

/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-topbar {
    background: #f8f9fa;
    color: #666;
    font-size: 12px;
    padding: 8px 0;
    display: none;
    border-bottom: 1px solid #eee;
}
.header-topbar .container {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
}
.header-topbar span { display: flex; align-items: center; gap: 6px; }
.header-topbar a { color: #444; font-weight: 500; }
.header-topbar a:hover { color: var(--red); text-decoration: none; }
.header-topbar i { color: var(--red); font-size: 11px; }

.header-main {
    background: #ffffff;
    padding: 0;
    transition: var(--transition);
    border-bottom: 1px solid #eee;
}
.header-main.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-bottom-color: #e0e0e0;
}
.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 2px 10px rgba(204,0,0,0.3);
    transition: var(--transition);
}
.brand:hover .brand-icon {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(204,0,0,0.35);
}
.brand-text { display: flex; flex-direction: column; }
.brand-title {
    color: #111;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 1.5px;
    line-height: 1.25;
}
.brand-sub {
    color: #999;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 4px;
}
.nav-desktop > a,
.nav-dropdown-trigger {
    color: #444;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}
.nav-desktop > a::before,
.nav-dropdown-trigger::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: transform 0.3s ease;
}
.nav-desktop > a:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
    color: var(--red);
    background: #fff5f5;
}
.nav-desktop > a:hover::before,
.nav-dropdown:hover .nav-dropdown-trigger::before { transform: translateX(-50%) scaleX(1); }
.nav-desktop > a.active {
    color: var(--red);
    font-weight: 600;
    background: #fff5f5;
}
.nav-desktop > a.active::before { transform: translateX(-50%) scaleX(1); }

.nav-dropdown {
    position: relative;
}
.nav-dropdown-trigger i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover .nav-dropdown-trigger i { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(6px);
}
.nav-dropdown-menu a {
    display: block;
    color: #444;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.nav-dropdown-menu a:hover {
    color: var(--red);
    background: #fff5f5;
    border-left-color: var(--red);
    padding-left: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-call-header,
.btn-wa-header {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    border: 1.5px solid;
}
.btn-call-header {
    border-color: var(--red);
    color: var(--red);
    background: #fff;
}
.btn-call-header:hover {
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(204,0,0,0.3);
}
.btn-wa-header {
    border-color: var(--wa);
    color: var(--wa);
    background: #fff;
}
.btn-wa-header:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37,211,102,0.3);
}

.hamburger {
    width: 42px;
    height: 42px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px;
    border-radius: 10px;
    transition: var(--transition);
}
.hamburger:hover {
    background: #fff5f5;
    border-color: var(--red);
}
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === MOBILE MENU === */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    z-index: 2001;
    padding: 0;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 1px solid #eee;
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-brand {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1.5px;
    color: #111;
}
.mobile-close {
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.mobile-close:hover { background: #f5f5f5; color: var(--red); }
.mobile-menu nav { padding: 10px 0; }
.mobile-menu nav a {
    display: block;
    color: #444;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: var(--transition);
    position: relative;
}
.mobile-menu nav > a::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-right: 2px solid #ccc;
    border-top: 2px solid #ccc;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition);
}
.mobile-menu nav a:hover,
.mobile-has-sub:hover { /* also trigger on hover for parent */
    color: var(--red);
    background: #fff5f5;
    border-left-color: var(--red);
}
.mobile-menu nav > a:hover::after {
    border-color: var(--red);
    right: 16px;
}

.mobile-has-sub i { font-size: 11px; margin-left: 6px; transition: transform 0.3s ease; }
.mobile-has-sub.open i { transform: rotate(180deg); }
.mobile-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fafafa;
}
.mobile-sub.open { max-height: 500px; }
.mobile-sub a {
    padding: 11px 24px 11px 40px;
    font-size: 14px;
    border-left-color: transparent;
}
.mobile-sub a::after { display: none; }
.mobile-sub a:hover { border-left-color: var(--red); }
.sub-all {
    color: var(--red) !important;
    font-weight: 600 !important;
    border-top: 1px solid #f0f0f0;
    margin-top: 4px;
    padding-top: 12px !important;
}
.mobile-menu-contact {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
}
.mobile-contact-btn {
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.mobile-contact-btn.phone { background: var(--red); color: #fff; }
.mobile-contact-btn.wa { background: var(--wa); color: #fff; }

/* === HERO === */
.hero-section {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: var(--dark);
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(135deg, #1a0000 0%, #0a0a0a 60%, #3d0000 100%);
    opacity: 0;
    transition: opacity 0.9s ease, transform 8s ease;
    transform: scale(1);
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1.08);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(204,0,0,0.45);
    animation: fadeInUp 0.6s ease forwards;
}
.hero-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg);
    animation: badgeShine 3.6s ease-in-out infinite;
}
@keyframes badgeShine {
    0%, 55% { left: -60%; }
    100% { left: 170%; }
}
.hero-title {
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.45);
    animation: fadeInUp 0.6s ease 0.1s forwards;
}
.hero-desc {
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 550px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s forwards;
}
.hero-car-info {
    background: linear-gradient(135deg, rgba(18,18,18,0.88), rgba(8,8,8,0.72));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.14);
    border-left: 3px solid var(--red);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 22px;
    max-width: 440px;
    animation: fadeInUp 0.6s ease 0.25s forwards;
}
.hero-car-info-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}
.hero-car-info-head i {
    color: var(--red-light);
    font-size: 15px;
}
.hero-car-info-head span {
    color: #fff;
    font-weight: 700;
    flex: 1;
}
.hero-car-info-head b {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}
.hero-car-info-desc {
    color: rgba(255,255,255,0.65);
    font-size: 12.5px;
    line-height: 1.6;
    margin-top: 6px;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-primary::after, .btn-secondary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: translateX(-180%) skewX(-20deg);
    animation: autoShine 4.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes autoShine {
    0%   { transform: translateX(-180%) skewX(-20deg); }
    15%  { transform: translateX(360%) skewX(-20deg); }
    100% { transform: translateX(360%) skewX(-20deg); }
}
.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(204,0,0,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204,0,0,0.4);
    color: #fff;
}
.btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.hero-dot.active {
    background: var(--red);
    width: 30px;
    border-radius: 5px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
}
.hero-section:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover {
    background: var(--red);
    border-color: var(--red);
}
.hero-arrow-left { left: 20px; }
.hero-arrow-right { right: 20px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === HERO: aksen dekoratif === */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.55;
}
.hero-glow-a {
    width: 520px;
    height: 520px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(204,0,0,0.4), transparent 70%);
    animation: glowDrift 14s ease-in-out infinite alternate;
}
.hero-glow-b {
    width: 460px;
    height: 460px;
    bottom: -160px;
    left: 28%;
    background: radial-gradient(circle, rgba(212,168,83,0.16), transparent 70%);
    animation: glowDrift 18s ease-in-out infinite alternate-reverse;
}
@keyframes glowDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(46px, 34px) scale(1.18); }
}
.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.85) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-scroll {
    position: absolute;
    bottom: 42px;
    left: 8%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.65);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 18px 10px 14px;
    background: rgba(10,10,10,0.35);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}
.hero-scroll:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.hero-scroll-line {
    display: block;
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, var(--red-light), rgba(255,255,255,0.35));
    transition: width 0.4s ease;
}
.hero-scroll:hover .hero-scroll-line { width: 40px; }
.hero-scroll i {
    font-size: 12px;
    color: var(--red-light);
    animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(4px); opacity: 1; }
}

/* === STATS === */
.stats-section {
    background: var(--dark);
    padding: 50px 0;
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    position: relative;
}
.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.stat-plus, .stat-percent, .stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--red);
    margin-left: 2px;
}
.stat-label {
    display: block;
    color: var(--gray);
    font-size: 13px;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === ABOUT === */
.about-section {
    padding: 80px 0;
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}
.about-image-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 16px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}
.about-image-card i {
    font-size: 28px;
    color: var(--gold);
}
.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}
.about-text h2 span { color: var(--red); }
.about-text > p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.8;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}
.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.about-feature i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}
.about-feature h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.about-feature p {
    font-size: 13px;
    color: var(--gray);
}

.about-sales {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sales-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sales-profile img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--red);
}
.sales-profile strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
}
.sales-profile span {
    font-size: 12px;
    color: var(--gray);
}
.sales-contact {
    display: flex;
    gap: 10px;
}
.btn-phone-small, .btn-wa-small {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.btn-phone-small { background: var(--red); color: #fff; }
.btn-phone-small:hover { background: var(--red-dark); color: #fff; }
.btn-wa-small { background: var(--wa); color: #fff; }
.btn-wa-small:hover { background: #1da851; color: #fff; }

/* === PRODUCTS === */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: relative;
}
.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.product-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #f0f0f0;
}
.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image-wrap img {
    transform: scale(1.08);
}
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-view-btn {
    padding: 10px 24px;
    background: #fff;
    color: var(--dark);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transform: translateY(10px);
    transition: var(--transition);
}
.product-card:hover .product-view-btn { transform: translateY(0); }
.product-view-btn:hover { background: var(--red); color: #fff; }

.product-info {
    padding: 20px;
}
.product-info h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
}
.product-info h3 a { color: var(--dark); }
.product-info h3 a:hover { color: var(--red); }

.product-prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 4px 0;
    border-bottom: 1px dashed #eee;
}
.price-row span { color: var(--gray); }
.price-row strong {
    color: var(--red);
    font-weight: 700;
    font-size: 14px;
}

.wa-btn-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(37,211,102,0.1);
    color: var(--wa);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.wa-btn-card:hover {
    background: var(--wa);
    color: #fff;
}

/* === WHY US === */
.why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
    position: relative;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.why-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 30px 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: var(--red);
}
.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.why-card:hover .why-icon {
    transform: translateY(-4px) rotate(-6deg) scale(1.08);
    box-shadow: 0 10px 24px rgba(204,0,0,0.4);
}
.why-card h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.why-card p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.6;
}

/* === TESTIMONIAL === */
.testimonial-section {
    padding: 80px 0;
    background: #fff;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}
.testimonial-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #ededed;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}
.testi-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #f2f2f2, #e6e6e6);
}
.testi-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.testimonial-card:hover .testi-photo img {
    transform: scale(1.06);
}
.testi-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.10) 100%);
}
.testi-body {
    padding: 0 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.testi-stars {
    color: #f4b400;
    margin: -16px 0 12px;
    font-size: 15px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.35));
}
.testimonial-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 18px;
    font-style: italic;
    flex: 1;
}
.testi-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}
.testi-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.testi-user strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
}
.testi-user span {
    font-size: 12px;
    color: var(--gray);
}

/* === LOCATION === */
.location-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.location-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr;
}
.location-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.location-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.location-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}
.location-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.location-item p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}
.location-item a { color: var(--red); }

.location-cta {
    background: linear-gradient(135deg, var(--dark), var(--dark3));
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.location-cta h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}
.location-cta h3 span { color: var(--red); }
.location-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 8px;
}

/* === FLOATING CONTACT === */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: var(--transition);
    cursor: pointer;
}
.floating-btn:hover { transform: scale(1.1); color: #fff; }
.floating-btn.phone-btn { background: var(--red); }
.floating-btn.wa-btn { background: var(--wa); }
.floating-btn.phone-btn:hover { background: var(--red-dark); }
.floating-btn.wa-btn:hover { background: #1da851; }

/* === FOOTER === */
.site-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
    color: rgba(255,255,255,0.72);
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 80px;
    left: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(204,0,0,0.14), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.site-footer::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -140px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(212,168,83,0.07), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
/* --- main content --- */
.footer-content {
    position: relative;
    z-index: 1;
    padding: 56px 0 10px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    font-weight: 900;
    font-size: 22px;
    box-shadow: 0 8px 20px -8px rgba(204,0,0,0.6);
    flex: none;
}
.footer-logo-text strong {
    display: block;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
}
.footer-logo-text strong span { color: var(--red-light); }
.footer-logo-text small {
    color: rgba(255,255,255,0.5);
    font-size: 10.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-brand > p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 14px;
}
.footer-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 16px;
}
.footer-contact-mini i { color: var(--red-light); width: 16px; }

.footer-col h4 {
    position: relative;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 12px;
    margin-bottom: 18px;
}
.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
}
.footer-col h4.footer-h4-2 { margin-top: 26px; }
.footer-col p { font-size: 13px; line-height: 1.7; margin-bottom: 14px; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.62);
    font-size: 13.5px;
    transition: var(--transition);
}
.footer-links li a i {
    font-size: 8px;
    color: var(--red-light);
    transition: var(--transition);
}
.footer-links li a:hover {
    color: #fff;
    transform: translateX(4px);
}
.footer-links li a:hover i { transform: translateX(2px); }
.footer-link-all { color: var(--red-light) !important; font-weight: 600; }

.footer-badge {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-badge span {
    font-size: 12.5px;
    color: rgba(255,255,255,0.62);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-badge i { color: var(--gold); }

.footer-cards { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 11px 14px;
    transition: var(--transition);
}
.footer-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(204,0,0,0.4);
    transform: translateY(-2px);
}
.footer-card-icon {
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(204,0,0,0.22), rgba(204,0,0,0.08));
    border: 1px solid rgba(204,0,0,0.3);
    color: var(--red-light);
    font-size: 15px;
}
.footer-card small {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.footer-card strong, .footer-card a {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    word-break: break-word;
}
.footer-card a:hover { color: var(--red-light); }

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 6px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-color: var(--red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px -10px rgba(204,0,0,0.6);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 0;
    font-size: 12.5px;
    background: rgba(0,0,0,0.25);
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-bottom .footer-bottom-brand { color: rgba(255,255,255,0.5); }
.footer-bottom .footer-bottom-brand i { color: var(--red-light); }
.footer-totop {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    font-size: 15px;
    box-shadow: 0 10px 24px -10px rgba(204,0,0,0.7);
    transition: var(--transition);
}
.footer-totop:hover {
    color: #fff;
    transform: translateY(-4px);
}

/* === RESPONSIVE === */
@media (min-width: 576px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .header-topbar { display: block; }
    .nav-desktop { display: flex; }
    .hamburger { display: none; }
    .header-actions .btn-call-header,
    .header-actions .btn-wa-header { display: none; }
    .hero-arrow { display: flex; }
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr 1fr; }
    .location-card { grid-template-columns: 1fr 1fr; }
    .location-cta { justify-content: center; }
    .about-sales { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 992px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-content { padding: 0 10%; }
}

@media (max-width: 767px) {
    .hero-section { min-height: 620px; max-height: 800px; height: 86vh; }
    .hero-content { padding: 0 20px; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { width: 100%; justify-content: center; }
    .section-header h2 { font-size: 26px; }
    .about-text h2 { font-size: 26px; }
    .about-image-card { padding: 12px 16px; font-size: 11px; }
    .about-image-card i { font-size: 20px; }
    .sales-contact { flex-direction: column; }
    .floating-contact { bottom: 16px; right: 16px; }
    .floating-btn { width: 46px; height: 46px; font-size: 18px; }
    table { font-size: 12px; }
    table thead { display: none; }
    table tbody tr {
        display: block;
        padding: 12px;
        border-bottom: 2px solid #eee !important;
    }
    table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0 !important;
        border: none !important;
        background: transparent !important;
    }
    table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #666;
        font-size: 11px;
    }
}
@media (max-width: 575px) {
    .products-grid { grid-template-columns: minmax(0, 1fr); }
}

/* === CAR DETAIL PAGE === */
.cd-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a, #1a0a0a);
}
.cd-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    filter: blur(8px);
    transform: scale(1.15);
}
.cd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.72), rgba(10,10,10,0.5) 55%, #f8f9fa);
}
.cd-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
}
.cd-breadcrumb {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.6);
}
.cd-breadcrumb a { color: rgba(255,255,255,0.6); }
.cd-breadcrumb a:hover { color: #fff; }
.cd-breadcrumb i { font-size: 9px; align-self: center; }
.cd-hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    margin: 14px 0 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.cd-hero-sub {
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin: 0 auto;
    font-size: 15px;
}
.cd-hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.cd-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}
.cd-badge strong { color: #fff; font-size: 15px; }
.cd-badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: #fff;
    font-size: 13px;
}

.cd-body { padding: 60px 0 80px; background: #f8f9fa; }
.cd-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}
@media (max-width: 900px) {
    .cd-grid { grid-template-columns: minmax(0, 1fr); }
    .cd-hero { padding: 100px 0 60px; }
}

.cd-gallery {
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
    min-width: 0;
}
@media (max-width: 900px) { .cd-gallery { position: static; } }
.cd-gallery-main {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: zoom-in;
    background: #f2f2f2;
}
.cd-gallery-main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.cd-gallery-main:hover img { transform: scale(1.05); }
.cd-gallery-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 2;
}
.cd-gallery-zoom {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10,10,10,0.6);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.cd-gallery-zoom:hover { background: var(--red); }
.cd-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}
.cd-thumb {
    width: 88px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    background: #f0f0f0;
    transition: var(--transition);
    opacity: 0.55;
}
.cd-thumb:hover { opacity: 1; }
.cd-thumb.active {
    border-color: var(--red);
    opacity: 1;
    box-shadow: 0 4px 14px rgba(204,0,0,0.25);
}
.cd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cd-info-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin: 8px 0 6px;
    letter-spacing: -0.3px;
}
.cd-desc { color: #666; font-size: 14px; margin-bottom: 20px; }

.cd-price-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #fff, #fff5f5);
    border: 1px solid #ffe0e0;
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 22px;
}
.cd-price-label { font-size: 13px; color: var(--gray); }
.cd-price-value {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cd-price-value.cd-hub {
    -webkit-text-fill-color: var(--gray);
    background: none;
    color: var(--gray);
    font-weight: 600;
    font-size: 18px;
}

.cd-types { margin-bottom: 22px; }
.cd-types-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.cd-types-title i { color: var(--red); }
.cd-type-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    margin-bottom: 8px;
    transition: var(--transition);
}
.cd-type-card:hover {
    border-color: #ffcccc;
    box-shadow: 0 6px 20px rgba(204,0,0,0.08);
    transform: translateX(4px);
}
.cd-type-name { font-weight: 600; font-size: 14px; color: var(--dark); }
.cd-type-price { font-weight: 700; color: var(--red); font-size: 15px; white-space: nowrap; }
.cd-type-price .cd-hub { color: var(--gray); font-weight: 500; font-size: 13px; }
.cd-type-wa {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--wa);
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}
.cd-type-wa:hover { transform: scale(1.12); color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,0.4); }

.cd-promo {
    background: linear-gradient(135deg, #fff5f5, #fff);
    border: 1px dashed #ffb3b3;
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 22px;
}
.cd-promo-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.cd-promo-title i { font-size: 16px; }
.cd-promo-list { list-style: none; padding: 0; }
.cd-promo-list li {
    padding: 5px 0;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cd-promo-list li i { color: var(--red); font-size: 12px; }

.cd-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
}
.cd-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}
.cd-cta-phone {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    box-shadow: 0 6px 18px rgba(204,0,0,0.3);
}
.cd-cta-phone:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 10px 26px rgba(204,0,0,0.4); }
.cd-cta-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 6px 18px rgba(37,211,102,0.3);
}
.cd-cta-wa:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,0.4); }
@media (max-width: 480px) { .cd-cta { grid-template-columns: 1fr; } }

.cd-sales {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #fff, #f5f5f5);
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 16px;
}
.cd-sales img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--red);
    flex-shrink: 0;
}
.cd-sales-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.cd-sales-pos { font-size: 12px; color: var(--gray); }

.cd-features { padding: 0 0 70px; background: #f8f9fa; }
.cd-features .section-header { margin-bottom: 40px; }
.cd-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.cd-feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid transparent;
}
.cd-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 34px rgba(204,0,0,0.12);
    border-color: #ffd9d9;
}
.cd-feature-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(204,0,0,0.3);
}
.cd-feature-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.cd-feature-card p { font-size: 13px; color: var(--gray); }
@media (max-width: 900px) { .cd-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cd-feature-grid { grid-template-columns: 1fr; } }

/* === GALLERY LIGHTBOX === */
.gallery-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.94);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-overlay img {
    max-width: 90%;
    max-height: 82vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 10px 60px rgba(0,0,0,.6);
}
.g-overlay-close,
.g-overlay-prev,
.g-overlay-next {
    position: absolute;
    border: none;
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}
.g-overlay-close {
    top: 20px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 28px;
    background: none;
}
.g-overlay-close:hover { background: var(--red); }
.g-overlay-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 30px;
}
.g-overlay-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 30px;
}
.g-overlay-prev:hover,
.g-overlay-next:hover { background: var(--red); }
.g-overlay-counter {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.75);
    font-size: 14px;
    letter-spacing: 1px;
    background: rgba(0,0,0,.45);
    padding: 6px 18px;
    border-radius: 50px;
}
@media (max-width: 600px) {
    .g-overlay-prev { left: 10px; width: 44px; height: 44px; font-size: 24px; }
    .g-overlay-next { right: 10px; width: 44px; height: 44px; font-size: 24px; }
    .g-overlay-close { right: 14px; top: 14px; width: 40px; height: 40px; font-size: 24px; }
}

/* === SALES PROFILE SECTION === */
.sales-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1c0a0a 55%, #2a0d0d 100%);
    position: relative;
    overflow: hidden;
}
.sales-section::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -140px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204,0,0,.35), transparent 70%);
}
.sales-section::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -120px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,26,26,.18), transparent 70%);
}
.sales-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (max-width: 900px) {
    .sales-grid { grid-template-columns: 1fr; text-align: center; }
}

.sales-photo-wrap {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
}
.sales-photo-ring {
    position: relative;
    border-radius: 28px;
    padding: 10px;
    background: linear-gradient(135deg, var(--red), var(--red-dark), #3a0d0d);
    box-shadow: 0 20px 60px rgba(204,0,0,.35);
}
.sales-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    background: #1a1a1a;
}
.sales-online-dot {
    position: absolute;
    bottom: 26px;
    right: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--wa);
    border: 3px solid #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.sales-exp-badge {
    position: absolute;
    top: 26px;
    left: -18px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.sales-exp-num {
    font-size: 30px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}
.sales-exp-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .5px;
}
@media (max-width: 480px) {
    .sales-exp-badge { left: 6px; top: 14px; }
    .sales-photo-wrap { max-width: 300px; }
}

.sales-info .section-label { margin-bottom: 14px; }
.sales-info h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.sales-info h2 span { color: var(--red-light); }
.sales-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    color: rgba(255,255,255,.85);
    font-weight: 600;
    margin-bottom: 18px;
}
.sales-title-badge i { color: var(--red-light); }
.sales-about {
    color: rgba(255,255,255,.7);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 26px;
    max-width: 520px;
}
@media (max-width: 900px) {
    .sales-about { margin-left: auto; margin-right: auto; }
    .sales-title-badge { margin-left: auto; margin-right: auto; }
}
.sales-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 30px;
    max-width: 520px;
}
@media (max-width: 900px) {
    .sales-stats { margin-left: auto; margin-right: auto; }
}
.sales-stat {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    transition: var(--transition);
}
.sales-stat:hover {
    background: rgba(204,0,0,.15);
    border-color: rgba(255,77,77,.4);
    transform: translateY(-4px);
}
.sales-stat i {
    font-size: 18px;
    color: var(--red-light);
    margin-bottom: 8px;
    display: block;
}
.sales-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.sales-stat span { font-size: 12px; color: rgba(255,255,255,.6); }
.sales-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
@media (max-width: 900px) {
    .sales-cta { justify-content: center; }
}
.sales-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}
.btn-sales-phone {
    background: #fff;
    color: var(--dark);
}
.btn-sales-phone:hover {
    background: var(--red-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,26,26,.4);
}
.btn-sales-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-sales-wa:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 12px 32px rgba(37,211,102,.5);
}
@media (max-width: 600px) {
    .sales-cta { flex-direction: column; }
    .sales-cta a { justify-content: center; }
    .sales-stats { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
    .sales-info h2 { font-size: 30px; }
}

/* === FOOTER RESPONSIVE === */
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 577px) and (max-width: 767px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { justify-content: center; text-align: center; }
    .footer-bottom { padding-bottom: calc(18px + env(safe-area-inset-bottom)); }
}

/* === MOBILE UX POLISH === */
html { -webkit-text-size-adjust: 100%; }

/* --- Header: compact di HP --- */
@media (max-width: 767px) {
    .header-main .container { height: 58px; }
    .brand { gap: 9px; }
    .brand-icon { width: 36px; height: 36px; font-size: 18px; border-radius: 9px; }
    .brand-title { font-size: 13.5px; letter-spacing: 1px; }
    .brand-sub { font-size: 8.5px; letter-spacing: 0.4px; }
    .header-actions { gap: 8px; }
    .btn-call-header, .btn-wa-header { width: 36px; height: 36px; font-size: 14px; }
    .hamburger { width: 38px; height: 38px; gap: 4px; border-radius: 9px; }
    .hamburger span { width: 18px; }
    .mobile-menu { width: min(84vw, 320px); }
    .mobile-menu-header { padding: 18px 20px; }
    .mobile-menu nav a { padding: 15px 24px; }
    .mobile-sub a { padding: 11px 24px 11px 40px; }
    .mobile-menu-contact { padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); }
}
@media (max-width: 400px) {
    .btn-wa-header { display: none; }
    .brand-title { font-size: 12.5px; }
    .brand-sub { display: none; }
}

/* --- Hero di HP --- */
@media (max-width: 767px) {
    .hero-section { min-height: 620px; max-height: 800px; height: 86vh; }
    .hero-content { padding: 0 22px 200px; }
    .hero-badge { font-size: 10px; padding: 5px 14px; letter-spacing: 1.5px; margin-bottom: 14px; }
    .hero-title { font-size: clamp(26px, 8.5vw, 40px); line-height: 1.15; margin-bottom: 10px; }
    .hero-desc { font-size: 14px; margin-bottom: 20px; }
    .hero-car-info { display: none; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { padding: 13px 24px; font-size: 13.5px; }
    .hero-arrow { opacity: 1; top: auto; bottom: 16px; width: 38px; height: 38px; font-size: 13px; }
    .hero-arrow-left { left: 12px; }
    .hero-arrow-right { right: 12px; }
    .hero-nav { bottom: 20px; gap: 8px; }
    .hero-dot { width: 8px; height: 8px; }
    .hero-dot.active { width: 24px; }
    .hero-scroll { display: none; }
    .hero-glow { filter: blur(60px); opacity: 0.4; }
    .hero-glow-a { width: 300px; height: 300px; top: -80px; right: -60px; }
    .hero-glow-b { display: none; }
    .hero-fade-bottom { height: 110px; }
}
@media (max-width: 380px) {
    .hero-section { min-height: 640px; }
    .hero-desc { font-size: 13px; }
    .hero-title { font-size: clamp(24px, 8vw, 34px); }
    .hero-content { padding: 0 18px 200px; }
}

/* --- Spasi section & heading di HP --- */
@media (max-width: 767px) {
    .products-section, .why-section, .testimonial-section, .location-section, .about-section { padding: 50px 0; }
    .stats-section { padding: 36px 0; }
    .section-header { margin-bottom: 32px; }
    .section-header h2 { font-size: 24px; }
    .section-header p { font-size: 14px; }
    .about-text h2 { font-size: 24px; }
    .about-section { padding-top: 60px; }
}

/* --- Stats di HP (2x2 rapi) --- */
@media (max-width: 767px) {
    .stats-grid { gap: 20px 16px; }
    .stat-number { font-size: 30px; }
    .stat-plus, .stat-percent, .stat-suffix { font-size: 20px; }
    .stat-label { font-size: 11.5px; }
}

/* --- Kartu produk di HP --- */
@media (max-width: 575px) {
    .product-info { padding: 16px; }
    .product-info h3 { font-size: 15px; margin-bottom: 10px; }
    .product-prices { gap: 4px; margin-bottom: 12px; }
    .price-row span { font-size: 11px; }
    .price-row strong { font-size: 12.5px; }
    .wa-btn-card { padding: 10px 14px; font-size: 12.5px; }
}
/* Perangkat sentuh (tanpa hover): overlay "Lihat Detail" selalu tampil */
@media (hover: none) {
    .product-overlay {
        opacity: 1;
        background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.62) 100%);
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0 0 14px 14px;
    }
    .product-view-btn { transform: translateY(0); }
}

/* --- Why us di HP (2 kolom) --- */
@media (max-width: 767px) and (min-width: 480px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 479px) {
    .why-grid { grid-template-columns: 1fr; gap: 14px; }
    .why-card { padding: 22px 18px; }
}

/* --- Testimonial & lokasi di HP --- */
@media (max-width: 767px) {
    .testi-body { padding: 0 20px 22px; }
    .testi-avatar { width: 52px; height: 52px; font-size: 18px; }
    .location-info { padding: 22px; }
    .location-cta { padding: 28px 22px; }
}

/* --- Halaman inner (daftar harga, mobil baru, promo, video) di HP --- */
@media (max-width: 767px) {
    .page-hero-sm { padding: 54px 0 34px !important; }
    .page-hero-sm h1 { font-size: 26px !important; }
    .page-hero-sm p { font-size: 13px !important; }
    .dh-wrapper { padding: 40px 0 !important; }
}
/* Tabel daftar harga: kartu rapi di HP */
@media (max-width: 767px) {
    .dh-table table { display: block; padding: 0 0 12px; }
    .dh-table tbody { display: block; }
    .dh-table tbody tr {
        display: block;
        margin: 0 12px 12px;
        border: 1px solid #eee;
        border-radius: 12px;
        background: #fff !important;
        box-shadow: 0 1px 8px rgba(0,0,0,0.04);
        padding: 0;
        overflow: hidden;
    }
    .dh-table tbody tr:last-child { margin-bottom: 0; }
    .dh-table tbody td { padding: 9px 14px !important; }
    .dh-table tbody td[rowspan] {
        background: linear-gradient(135deg, var(--dark), var(--dark3));
        border-radius: 0;
        padding: 12px 14px !important;
        font-size: 14px;
    }
    .dh-table tbody td[rowspan] a { color: #fff !important; }
    .dh-table tbody td[rowspan]::before { color: rgba(255,255,255,0.55) !important; }
    .dh-table tbody td:last-child { padding-bottom: 12px !important; }
}

/* === BRAND LOGO HEADER === */
.brand-logo {
    height: 42px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    border-radius: 8px;
}
.mobile-brand-logo {
    height: 36px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    border-radius: 6px;
}
@media (max-width: 767px) {
    .brand-logo { height: 34px; }
}

/* === DESIGN UPGRADE: HERO FEATURE (produk unggulan) === */
.hero-feature {
    position: absolute;
    right: 6%;
    bottom: 12%;
    z-index: 3;
    width: 340px;
    pointer-events: none;
}
.hero-feature-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 60% 40%, rgba(204,0,0,0.45), rgba(204,0,0,0) 65%);
    filter: blur(30px);
    animation: featureGlow 4s ease-in-out infinite;
}
@keyframes featureGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.12); }
}
.hero-feature-car {
    position: relative;
    z-index: 1;
    transform: perspective(900px) rotateY(-8deg) rotateX(2deg);
    transition: transform 0.5s ease;
    filter: drop-shadow(0 25px 30px rgba(0,0,0,0.55));
    animation: heroFloat 6s ease-in-out infinite;
}
.hero-feature-car img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
}
@keyframes heroFloat {
    0%, 100% { transform: perspective(900px) rotateY(-8deg) rotateX(2deg) translateY(0); }
    50% { transform: perspective(900px) rotateY(-8deg) rotateX(2deg) translateY(-14px); }
}
.hero-feature:hover .hero-feature-car {
    animation-play-state: paused;
    transform: perspective(900px) rotateY(-4deg) rotateX(0deg) translateY(-6px);
}
.hero-feature-chip {
    position: relative;
    z-index: 2;
    margin-top: -34px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92), rgba(10,10,10,0.88));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.hero-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.hero-feature-tag i { font-size: 11px; }
.hero-feature-name {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}
.hero-feature-price {
    color: rgba(255,255,255,0.65);
    font-size: 12px;
}
.hero-feature-price b {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}
.hero-feature-desc {
    color: rgba(255,255,255,0.55);
    font-size: 11.5px;
    line-height: 1.5;
    margin-top: 4px;
}
.hero-feature-desc:empty { display: none; }
.hero-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red-light);
    font-size: 12.5px;
    font-weight: 700;
    margin-top: 6px;
    pointer-events: auto;
    transition: var(--transition);
}
.hero-feature-link:hover { color: #fff; gap: 10px; }

/* === DESIGN UPGRADE: PROMO MARQUEE === */
.promo-marquee {
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
    overflow: hidden;
    padding: 13px 0;
    position: relative;
    z-index: 2;
}
.promo-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.promo-marquee:hover .promo-marquee-track { animation-play-state: paused; }
.promo-marquee-group {
    display: flex;
    align-items: center;
    gap: 42px;
    padding-right: 42px;
    white-space: nowrap;
}
.promo-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.promo-marquee-item i { color: rgba(255,255,255,0.85); font-size: 13px; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* === DESIGN UPGRADE: SHOWCASE (Best Seller) === */
.showcase-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(204,0,0,0.06), transparent 40%),
        linear-gradient(180deg, #fff 0%, #fff8f6 100%);
    overflow: hidden;
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.showcase-media {
    position: relative;
}
.showcase-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), #e9c06b);
    color: #1a1a1a;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(212,168,83,0.4);
}
.showcase-image-wrap {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
    border: 6px solid #fff;
    transform: rotate(-1.2deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.showcase-media:hover .showcase-image-wrap {
    transform: rotate(0deg) scale(1.01);
    box-shadow: 0 40px 80px rgba(0,0,0,0.24);
}
.showcase-image-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.showcase-glow {
    position: absolute;
    inset: -15%;
    background: radial-gradient(circle, rgba(204,0,0,0.18), transparent 62%);
    z-index: 1;
    filter: blur(20px);
}
.showcase-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.showcase-content h2 span { color: var(--red); }
.showcase-sub {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
}
.showcase-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
}
.showcase-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}
.showcase-price span { color: var(--gray); font-size: 14px; }
.showcase-price strong {
    font-size: 30px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -0.5px;
}
.showcase-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.showcase-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 7px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: #444;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.showcase-meta span i { color: var(--red); }
.showcase-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Aksen garis merah di bawah heading section (premium) */
.section-header h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    margin: 14px auto 0;
}
.section-header.light h2::after {
    background: linear-gradient(90deg, var(--red), var(--gold));
}

/* === RESPONSIVE: fitur baru === */
@media (max-width: 1024px) {
    .hero-feature { right: 4%; width: 290px; }
    .showcase-grid { gap: 40px; }
}
@media (max-width: 767px) {
    .hero-feature {
        display: flex;
        align-items: stretch;
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 56px;
        width: auto;
        max-width: 460px;
        margin: 0 auto;
        pointer-events: auto;
    }
    .hero-feature-glow { opacity: 0.5; inset: -30%; }
    .hero-feature-car {
        transform: none;
        animation: none;
        filter: none;
        width: 40%;
        flex-shrink: 0;
        border-radius: 14px 0 0 14px;
        overflow: hidden;
    }
    .hero-feature-car img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        border: none;
        display: block;
    }
    .hero-feature:hover .hero-feature-car { transform: none; animation: none; }
    .hero-feature-chip {
        margin-top: 0;
        border-radius: 0 14px 14px 0;
        padding: 12px 14px;
        flex: 1;
        justify-content: center;
        box-shadow: 0 12px 30px rgba(0,0,0,0.45);
    }
    .hero-feature-name { font-size: 14px; }
    .hero-feature-price { font-size: 11px; }
    .hero-feature-price b { font-size: 13px; }
    .hero-feature-desc {
        font-size: 11px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .promo-marquee { padding: 11px 0; }
    .promo-marquee-item { font-size: 12px; gap: 7px; }
    .promo-marquee-group { gap: 28px; padding-right: 28px; }
    .showcase-section { padding: 60px 0; }
    .showcase-grid { grid-template-columns: 1fr; gap: 34px; }
    .showcase-content h2 { font-size: 26px; }
    .showcase-name { font-size: 22px; }
    .showcase-price strong { font-size: 26px; }
    .showcase-meta { gap: 8px; margin-bottom: 22px; }
    .showcase-actions .btn-primary, .showcase-actions .btn-secondary { padding: 12px 22px; font-size: 13px; }
}

/* === CAR DETAIL PAGE - MOBILE RESPONSIVE === */
.cd-others { padding: 60px 0 90px; background: #fff; }
@media (max-width: 767px) {
    .cd-hero { padding: 96px 0 44px; }
    .cd-hero-content { padding: 0 16px; }
    .cd-breadcrumb { font-size: 11px; gap: 5px; margin-bottom: 14px; }
    .cd-hero h1 { font-size: clamp(26px, 6.5vw, 34px); margin: 12px 0 8px; }
    .cd-hero-sub { font-size: 13px; line-height: 1.6; padding: 0 4px; }
    .cd-hero-badges { gap: 8px; margin-top: 22px; }
    .cd-badge { padding: 7px 13px; font-size: 11px; gap: 7px; border-radius: 40px; }
    .cd-badge strong { font-size: 13px; }
    .cd-badge-icon { width: 26px; height: 26px; font-size: 11px; }

    .cd-body { padding: 32px 0 48px; }
    .cd-grid { gap: 26px; }
    .cd-gallery { padding: 10px; border-radius: 18px; }
    .cd-gallery-main { border-radius: 14px; }
    .cd-gallery-badge { top: 10px; left: 10px; padding: 5px 12px; font-size: 10px; }
    .cd-gallery-zoom { right: 10px; bottom: 10px; width: 36px; height: 36px; font-size: 13px; }
    .cd-gallery-thumbs { gap: 8px; margin-top: 10px; padding-bottom: 6px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
    .cd-thumb { width: 74px; height: 58px; border-radius: 10px; scroll-snap-align: start; }

    .cd-info-title { font-size: 22px; }
    .cd-desc { font-size: 13px; line-height: 1.6; }
    .cd-price-card { padding: 15px 16px; border-radius: 14px; }
    .cd-price-value { font-size: 21px; }
    .cd-price-value.cd-hub { font-size: 16px; }

    .cd-type-card { padding: 11px 12px; border-radius: 12px; gap: 8px; }
    .cd-type-name { font-size: 13px; }
    .cd-type-price { font-size: 13px; }
    .cd-type-wa { width: 32px; height: 32px; font-size: 13px; }

    .cd-promo { padding: 15px 16px; border-radius: 14px; }
    .cd-promo-list li { font-size: 12px; padding: 4px 0; }

    .cd-cta a { padding: 13px 10px; font-size: 13px; border-radius: 12px; }

    .cd-sales { padding: 14px; gap: 12px; border-radius: 14px; }
    .cd-sales img { width: 52px; height: 52px; }
    .cd-sales-name { font-size: 14px; }

    .cd-features { padding: 0 0 48px; }
    .cd-features .section-header { margin-bottom: 26px; }
    .cd-feature-grid { gap: 12px; }
    .cd-feature-card { padding: 20px 14px; border-radius: 14px; }
    .cd-feature-icon { width: 48px; height: 48px; font-size: 18px; margin-bottom: 10px; }
    .cd-feature-card h4 { font-size: 13px; }
    .cd-feature-card p { font-size: 11px; line-height: 1.5; }

    .cd-others { padding: 40px 0 56px !important; }
}

/* Layar sempit: harga tipe diletakkan di baris sendiri agar tidak terpotong */
@media (max-width: 479px) {
    .cd-type-card { grid-template-columns: minmax(0, 1fr) auto; }
    .cd-type-name { grid-column: 1; grid-row: 1; }
    .cd-type-price { grid-column: 1 / -1; grid-row: 2; white-space: normal; }
    .cd-type-wa { grid-column: 2; grid-row: 1; }
}

/* === KILAUAN OTOMATIS - ELEMEN PENTING === */
.wa-btn-card,
.btn-sales-wa,
.cd-cta-wa,
.cd-cta-phone {
    position: relative;
    overflow: hidden;
}
.wa-btn-card::after,
.btn-sales-wa::after,
.cd-cta-wa::after,
.cd-cta-phone::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: translateX(-180%) skewX(-20deg);
    animation: autoShine 5.2s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Tombol WhatsApp melayang - denyut cincin hijau */
.floating-btn.wa-btn {
    animation: waRipple 2.6s ease-out infinite;
}
@keyframes waRipple {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5), 0 8px 22px rgba(0,0,0,0.25); }
    70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 8px 22px rgba(0,0,0,0.25); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 8px 22px rgba(0,0,0,0.25); }
}

/* Kilauan emas pada lencana unggulan */
.hero-feature-tag {
    animation: goldText 2.8s ease-in-out infinite;
}
.showcase-badge {
    animation: goldBadge 2.8s ease-in-out infinite;
}
@keyframes goldText {
    0%, 100% { text-shadow: 0 0 4px rgba(255,215,0,0.25); }
    50%      { text-shadow: 0 0 14px rgba(255,215,0,0.8); }
}
@keyframes goldBadge {
    0%, 100% { box-shadow: 0 0 8px rgba(255,215,0,0.25); }
    50%      { box-shadow: 0 0 22px rgba(255,215,0,0.7); }
}

/* Hormati pengguna yang meminta pengurangan gerakan */
@media (prefers-reduced-motion: reduce) {
    .btn-primary::after, .btn-secondary::after,
    .wa-btn-card::after, .btn-sales-wa::after,
    .cd-cta-wa::after, .cd-cta-phone::after,
    .floating-btn.wa-btn,
    .hero-feature-tag,
    .showcase-badge {
        animation: none;
    }
}

/* === HERO POLISH: komposisi desktop === */
.hero-overlay {
    background: linear-gradient(105deg, rgba(4,4,4,0.94) 0%, rgba(4,4,4,0.62) 42%, rgba(4,4,4,0.20) 70%, rgba(4,4,4,0.45) 100%);
}
.hero-content {
    max-width: 760px;
}
.hero-car-info {
    background: linear-gradient(135deg, rgba(14,14,14,0.9), rgba(6,6,6,0.74));
}
.hero-car-info-head b { color: var(--gold); }
.hero-feature {
    right: 5.5%;
    bottom: 13%;
}
.hero-feature-chip {
    border-top: 2px solid rgba(212,168,83,0.35);
    padding: 15px 18px 16px;
}
.hero-feature-link {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    padding: 7px 15px;
    border-radius: 30px;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(204,0,0,0.35);
}
.hero-feature-link:hover {
    color: #fff;
    gap: 7px;
    box-shadow: 0 6px 16px rgba(204,0,0,0.45);
}
@media (max-width: 1200px) {
    .hero-content { max-width: 680px; }
    .hero-feature { width: 300px; right: 3%; }
}
@media (max-width: 1024px) {
    .hero-content { max-width: 560px; }
    .hero-feature { width: 260px; right: 2%; bottom: 10%; }
}

/* === HERO MOBILE: keseimbangan layout, crop gambar, & anti-tumpang-tindih === */
@media (max-width: 767px) {
    .hero-section { min-height: 640px; max-height: 820px; height: 88vh; }
    .hero-slide { background-position: center 62%; }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(4,4,4,0.62) 0%, rgba(4,4,4,0.18) 30%, rgba(4,4,4,0.38) 64%, rgba(4,4,4,0.92) 100%);
    }
    .hero-content {
        justify-content: flex-start;
        padding: 20vh 22px 0;
    }
    .hero-badge { margin-bottom: 12px; }
    .hero-title {
        font-size: clamp(27px, 8.6vw, 38px);
        line-height: 1.12;
        margin-bottom: 12px;
    }
    .hero-desc {
        font-size: 14.5px;
        line-height: 1.55;
        margin-bottom: 22px;
    }
    .hero-actions { gap: 10px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        min-height: 50px;
        padding: 14px 24px;
        font-size: 14px;
    }
    .hero-feature {
        left: 14px;
        right: 14px;
        bottom: 150px;
        width: auto;
        max-width: 460px;
        margin: 0 auto;
        max-height: 150px;
    }
    .hero-feature-chip { padding: 12px 14px; }
    .hero-feature-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-feature-link { display: none; }
    .hero-nav { bottom: 26px; }
    .hero-arrow { display: none; }
    .hero-scroll { display: none; }
    .hero-fade-bottom { height: 130px; }
}

/* Tablet potret: sembunyikan kartu unggulan agar tidak menutupi tombol CTA */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-feature { display: none; }
}

/* HP kecil: kartu unggulan lebih ringkas & tidak menabrak tombol melayang */
@media (max-width: 380px) {
    .hero-feature { bottom: 172px; max-height: 120px; }
    .hero-feature-chip { padding: 10px 12px; gap: 3px; }
    .hero-feature-tag { font-size: 9px; }
    .hero-feature-name { font-size: 13px; }
    .hero-feature-price { font-size: 10.5px; }
    .hero-feature-price b { font-size: 12px; }
    .hero-feature-desc { display: none; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { min-height: 48px; }
}

/* Layar sangat kecil: kartu unggulan disembunyikan agar tidak menabrak tombol melayang */
@media (max-width: 350px) {
    .hero-feature { display: none; }
}

