@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #002c5f;
    --secondary-color: #ffffff;
    --accent-blue: #007fa8;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --nav-height: 80px;
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    padding-top: 80px !important; /* Force content to start below 80px header */
    margin: 0;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px !important; /* Fixed height */
    z-index: 9999; /* Ensure it's on very top */
    background: #000 !important; /* Always solid black */
}

.navbar {
    max-width: 100%;
    margin: 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 18px;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    height: 100%;
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff !important;
    /* Ensure text is always white on dark header */
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-item:hover::after,
.nav-item:active::after {
    transform: scaleX(1);
}

/* Maintain underline when mega menu is visible */
.nav-item:hover::after {
    transform: scaleX(1);
}

.header.scrolled .logo img {
    filter: brightness(0) invert(1);
}

.header.scrolled .nav-right a {
    color: #fff;
}

/* Specific underline for active/hover states as per screenshot */

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-right a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: #fff;
    padding: 60px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

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

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.model-grid-menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 20px;
    padding: 20px 0;
}

.model-card-menu {
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.model-card-menu h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 25px;
    order: -1;
    letter-spacing: 1px;
    color: #000;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.model-card-menu h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.model-card-menu:hover h4::after {
    transform: scaleX(1);
}

.model-card-menu img {
    width: 150px;
    /* Scaling 600px to fit menu */
    height: 75px;
    /* Scaling 300px to fit menu */
    object-fit: contain;
    /* Ensures the whole car is seen within the 600x300 ratio box */
    transition: var(--transition);
}

.model-card-menu:hover img {
    transform: scale(1.05);
}

/* Aftersales Mega Menu Specifics */
.aftersales-menu {
    display: flex;
    padding: 30px 0 60px 140px;
    /* Reduced top gap and aligned after logo as in reference */
    align-items: flex-start;
}

.aftersales-left {
    flex: 0 0 200px;
    /* Brining links closer to heading as in reference */
}

.aftersales-left h2 {
    font-size: 18px;
    font-weight: 700;
    /* Slightly less heavy to match reference */
    color: #000;
    text-transform: capitalize;
}

.aftersales-right ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Tighter gap as seen in screenshot */
}

.aftersales-right a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: none;
    position: relative;
    padding-bottom: 2px;
}

.aftersales-right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.aftersales-right a:hover::after {
    transform: scaleX(1);
}

.aftersales-right a:hover {
    color: #000;
}

/* Series Tabs */
.series-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.series-tab {
    font-size: 15px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    padding-bottom: 10px;
}

.series-tab.active {
    color: #000;
    font-weight: 700;
}

.series-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000;
}

/* Responsive Header */
@media (max-width: 992px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        /* Already handled by sidebar logic usually */
    }

    .logo img {
        height: 14px;
    }

    .nav-right span {
        display: none;
    }

    .nav-right {
        gap: 15px;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Official Brand KV Banner Structure */
.hero-banner-container {
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 0 !important; /* Ensure no negative margin */
}

.hero-slider.swiper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {
    .hero-slider.swiper {
        aspect-ratio: 16 / 9; /* Forced landscape for mobile as requested */
    }
}

.background-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.background-slide {
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Styles */

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.5;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* Hero Buttons (Rectangular as per screenshot) */
.btn-pill {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 2px;
    /* Rectangular with slight radius */
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-white {
    background: #fff;
    color: #000;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Showcase Section */
.section-showcase {
    padding: 100px 0;
    background: #fff;
}

.container-wide {
    max-width: 1600px;
    /* Increased for a fuller feel */
    margin: 0 auto;
    padding: 0 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    font-size: 32px;
    font-weight: 700;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    /* Increased gap for better premium feel */
}

.card-model {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.card-model img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.card-model:hover img {
    transform: scale(1.05);
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-info h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.btn-outline.dark {
    color: #000;
    border-color: #000;
}

.btn-outline.dark:hover {
    background: #000;
    color: #fff;
}

/* Innovation Section */
.section-innovation {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.innovation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.innovation-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.innovation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    z-index: 2;
}

.innovation-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    color: #fff;
}

.innovation-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

.innovation-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.innovation-image {
    flex: 1.2;
    overflow: hidden;
    /* Ensure rounded corners work on images */
}

.innovation-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.innovation-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .innovation-flex {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .innovation-content h2 {
        font-size: 32px;
    }
}

/* Innovation Full Section */
.section-innovation-full {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #000;
}

.innovation-bg-full {
    width: 100%;
    height: auto;
}

.innovation-bg-full img {
    width: 100%;
    height: auto;
    display: block;
}

.innovation-content-full {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
}

.innovation-content-full h2 {
    color: #fff;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Split Links Section (Lokasi & Dealer) */
.section-split-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 60vh;
}

@media (max-width: 992px) {
    .section-split-links {
        grid-template-columns: 1fr;
        height: auto;
    }
}

.split-link-item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.split-link-item:last-child {
    border-right: none;
}

.split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.split-bg img,
.split-bg iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: var(--transition);
}

.split-link-item:hover .split-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.split-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.split-content h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* ============================================
   FOOTER — Premium Redesign
   ============================================ */

/* Accent top line */
.footer-accent-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #002c5f 0%, #007fa8 50%, #002c5f 100%);
    background-size: 200% 100%;
    animation: footerAccentShift 4s ease-in-out infinite;
}

@keyframes footerAccentShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer {
    background: #0d0d0d;
    color: #fff;
    padding: 0;
    position: relative;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 60px 0;
}

/* Grid layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

/* --- Brand Column --- */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 22px;
    filter: brightness(0) invert(1);
    margin-bottom: 28px;
    width: fit-content;
}

.footer-desc {
    color: #6a6a6a;
    font-size: 14px;
    line-height: 1.8;
    max-width: 340px;
}

.footer-desc em {
    color: #9a9a9a;
    font-style: italic;
}

/* Social buttons */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 50px;
    border: 1px solid #2a2a2a;
    background: #1a1a1a;
    color: #888;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.social-btn i {
    font-size: 15px;
    line-height: 1;
}

.social-btn span {
    font-size: 12.5px;
    font-weight: 600;
}

/* Instagram */
.social-btn--instagram:hover {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(253, 29, 29, 0.35);
}

/* WhatsApp */
.social-btn--whatsapp:hover {
    background: #25d366;
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* TikTok */
.social-btn--tiktok:hover {
    background: linear-gradient(135deg, #010101 0%, #69c9d0 50%, #ee1d52 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(238, 29, 82, 0.3);
}

/* --- Nav Columns --- */
.footer-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-heading-accent {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #007fa8;
    flex-shrink: 0;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 2-column car list */
.footer-links--2col {
    columns: 2;
    column-gap: 24px;
}

.footer-links--2col li {
    break-inside: avoid;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links li a {
    color: #6a6a6a;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 7px 0;
    transition: color 0.3s ease, gap 0.3s ease;
    position: relative;
}

.footer-links li a::before {
    content: '→';
    opacity: 0;
    font-size: 12px;
    margin-right: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #007fa8;
}

.footer-links li a:hover {
    color: #ffffff;
}

.footer-links li a:hover::before {
    opacity: 1;
    width: 18px;
    margin-right: 6px;
}

/* --- Contact list --- */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: #6a6a6a;
    font-size: 13.5px;
    line-height: 1.5;
}

.footer-contact-list li i {
    color: #007fa8;
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-contact-list li a {
    color: #6a6a6a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: #fff;
}

/* --- Divider --- */
.footer-divider {
    padding: 0;
    margin-bottom: 0;
}

.footer-divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #2a2a2a 20%, #2a2a2a 80%, transparent 100%);
}

/* --- Bottom Bar --- */
.footer-bottom {
    max-width: 100%;
    margin: 0;
    padding: 24px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 12.5px;
    color: #444;
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-dev-credit {
    font-size: 12px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.footer-dev-credit span {
    color: #555;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-dev-credit:hover {
    color: #888;
}

.footer-dev-credit:hover span {
    color: #007fa8;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    z-index: 9998;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: #1a1a1a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1a1a1a;
}

/* --- Footer Responsive --- */
@media (max-width: 1024px) {
    .footer-inner {
        padding: 60px 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-inner {
        padding: 50px 24px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links--2col {
        columns: 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 20px 0 24px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Sidebar / Mobile Menu */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background: #fff;
    z-index: 1600;
    transition: var(--transition);
    padding: 20px 40px;
    /* Reduced from 40px to push content up */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    /* Ensure it scrolls if content is long */
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    /* Reduced from 40px to push content up */
}

.close-sidebar {
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    color: #000;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Reduced gap for a tighter, cleaner look */
}

.sidebar-accordion {
    display: flex;
    flex-direction: column;
}

.accordion-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    display: flex;
    flex-direction: column;
}

.accordion-toggle.active+.accordion-content {
    opacity: 1;
}

.accordion-content .sidebar-link {
    padding-left: 20px;
    /* Indent sub-items */
}

.sidebar-label {
    color: #999;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    margin-top: 5px;
}

.sidebar-label:first-child {
    margin-top: 0;
}

.sidebar-link {
    font-size: clamp(12px, 3.5vw, 14px);
    /* Responsive font size */
    font-weight: 600;
    color: #111;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 10px 12px;
    display: block;
    border-radius: 6px;
    margin: 2px 0;
}

.sidebar-link:hover,
.sidebar-link:active {
    color: #000;
    background-color: #f0f0f0;
    /* Visible hover background */
    transform: translateX(6px);
    /* Smooth movement instead of padding change */
}

.sidebar-divider {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    /* Visible but subtle divider on white bg */
    margin: 5px 0;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE BREAKPOINTS --- */

@media (max-width: 1200px) {
    .navbar {
        padding: 0 40px;
    }

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

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hide-mobile {
        display: none;
    }

    .hero-content h1 {
        font-size: 60px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .navbar {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-pill {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .section-header h3 {
        font-size: 24px;
    }

    .card-info {
        padding: 20px;
    }

    .card-info h4 {
        font-size: 18px;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128c7e;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}

/* Cookie Settings Icon */
.cookie-settings {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-settings:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Global Container Utility */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Brand World Section (Grid Left, Text Right) */
.section-brand-world {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

.world-flex {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.world-grid-left {
    flex: 1.3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.world-card {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

.world-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.world-card:hover img {
    transform: scale(1.1);
}

/* Global Container & Layout Fixes */
html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Brand World Section */
.section-brand-world {
    background: #000;
    color: #fff;
    padding: 100px 0;
    width: 100%;
}

.world-flex {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.world-grid-left {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.world-card {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
}

.world-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    opacity: 0.8;
}

.world-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.world-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 2;
}

.world-card-overlay h4 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.world-card .btn-detail {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 8px 20px;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.world-card:hover .btn-detail {
    opacity: 1;
    transform: translateY(0);
}

.world-content-right {
    flex: 0.8;
}

/* Clean Professional Sales Card */
.sales-consultant-card {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    color: #000;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.consultant-header {
    margin-bottom: 20px;
}

.consultant-title-group h2 {
    font-size: 32px !important;
    font-weight: 800;
    color: #000 !important;
    margin: 0 0 5px 0 !important;
}

.consultant-badge {
    font-size: 11px;
    font-weight: 700;
    color: #3a7ec4;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.consultant-intro-text {
    margin: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.consultant-intro-text p {
    font-size: 14px !important;
    line-height: 1.8;
    color: #444 !important;
    text-align: justify !important;
    margin: 0 !important;
}

.consultant-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.photo-wrapper {
    width: 140px;
    height: 160px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-block label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-block p {
    font-size: 13px !important;
    color: #1a1a1a !important;
    margin: 0 0 15px 0 !important;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    margin-bottom: 8px;
}

.contact-item i {
    width: 16px;
    color: #3a7ec4;
}

.btn-wa-premium {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-wa-premium:hover {
    background: #333;
    transform: translateY(-5px);
}

/* Responsive Alignment */
@media (max-width: 1200px) {
    .world-flex {
        flex-direction: column;
        gap: 40px;
    }

    .world-grid-left,
    .world-content-right {
        width: 100%;
    }

    .sales-consultant-card {
        padding: 40px;
    }
}

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

    .consultant-body {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 20px;
    }

    .info-block p,
    .contact-item {
        justify-content: center;
        text-align: center !important;
    }

    .consultant-title-group h2 {
        font-size: 24px !important;
    }
}

/* Gallery Slider Responsive Fix */
.section-gallery {
    padding: clamp(60px, 8vw, 100px) 0;
    background: #fff;
    overflow: hidden;
}

.gallery-slider {
    padding-bottom: 60px !important;
    cursor: grab;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 3 / 4;
    /* Portrait orientation as requested */
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 640px) {
    .gallery-item img {
        aspect-ratio: 3 / 4;
        /* Maintain portrait on mobile */
    }
}

.gallery-pagination {
    bottom: 10px !important;
}

.gallery-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #000;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.gallery-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    opacity: 1;
    background: #000;
}

/* About Page Styles */
.about-hero {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

/* Service Maintenance Page Styles */
.service-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen height */
    overflow: hidden;
    background: #000;
}

#service-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the screen completely without cropping */
    background: #000;
}

.video-container {
    width: 100%;
    height: 100%;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Show the full video without cropping */
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.about-hero-content {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    max-width: 600px;
}

.about-hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.about-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.section-about-intro {
    position: relative;
    width: 100%;
    height: auto;
    /* Height now follows image aspect ratio */
    display: block;
    /* Content will be positioned absolutely over image */
    overflow: hidden;
    color: #252728;
    text-align: center;
}

.intro-bg {
    position: relative;
    width: 100%;
    z-index: 1;
}

.intro-bg img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Ensures whole image is visible */
}

.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.intro-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 1500px;
    /* Wide enough to follow manual <br> breaks */
    max-width: 95%;
    margin-top: 6.25vw;
    padding: 0;
}

.intro-content h2 {
    font-size: 40px;
    /* Precise size from inspect screenshot */
    font-weight: 500;
    /* Medium weight for cleaner look */
    margin-bottom: 20px;
    /* Precise margin from inspect screenshot */
    letter-spacing: -1px;
    color: #252728;
}

.intro-content p {
    font-size: 16px;
    font-weight: 300;
    /* Light weight for more elegance */
    line-height: 1.7;
    /* Balanced for 16px font */
    color: #252728;
    max-width: 100%;
    margin: 0 auto;
    letter-spacing: 0.01em;
}

.intro-content p strong {
    color: #000;
    font-weight: 600;
    /* Medium-bold instead of extra-bold */
}

@media (max-width: 1024px) {
    .intro-content h2 {
        font-size: 42px;
    }

    .intro-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .section-about-intro {
        height: auto;
        min-height: 80vh;
        padding: 80px 0;
        align-items: center;
        /* Center vertically on mobile */
    }

    .intro-content {
        margin-top: 0;
    }

    .intro-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .intro-content p {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .intro-content h2 {
        font-size: 28px;
    }

    .intro-content p {
        font-size: 14px;
    }
}

.section-tech-about {
    padding: 100px 0;
    background: #f9f9f9;
}

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

.tech-card-about {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.tech-card-about img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tech-info-about {
    padding: 30px;
}

.tech-info-about h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
}

.tech-info-about p {
    color: #666;
    line-height: 1.6;
}

.section-map {
    padding: 120px 0;
    background: #fff;
    text-align: center;
}

.map-text {
    max-width: 800px;
    margin: 0 auto 60px;
}

.map-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #000;
}

.map-image img {
    width: 100%;
}

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

    .tech-grid-about {
        grid-template-columns: 1fr;
    }

    .about-hero-content h1 {
        font-size: 48px;
    }
}

/* ================================
   GLOBALISASI SECTION
================================ */
.section-globalization {
    background: linear-gradient(180deg, #0e2d5e 0%, #1e5096 40%, #3a7ec4 80%, #4a90d4 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.map-wrapper {
    position: relative;
    width: 100%;
}

.global-header {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    pointer-events: none;
}

.global-header h2 {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.global-stats {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
}

.global-stats strong {
    font-weight: 700;
    color: #fff;
}

.world-map {
    position: relative;
    width: 100%;
}

.map-bg-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
    /* Make the dotted map much clearer */
}

/* Map Pin Points */
.map-point {
    position: absolute;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transform: translate(-50%, -50%);
}

/* Amerika Utara */
.point-na {
    left: 16%;
    top: 39%;
}

/* Eropa */
.point-eu {
    left: 40%;
    top: 40%;
}

/* Asia Pasifik */
.point-ap {
    left: 51.5%;
    top: 56%;
}

/* Timur Tengah & Afrika */
.point-me {
    left: 38%;
    top: 58%;
}

/* Amerika Latin */
.point-sa {
    left: 24%;
    top: 70%;
}


/* === PULSE RINGS (vw-based, matching BYD visual) === */
.pulse-ring {
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    pointer-events: none;
    transition: all 0.8s ease;
}

/* Ring 1 - inner static base */
.pulse-ring:nth-child(1) {
    width: 6vw;
    height: 6vw;
    background: rgba(255, 255, 255, 0.1);
    border: none;
}

/* Ring 2 & 3 - expansive filled ripples */
.pulse-ring:nth-child(2),
.pulse-ring:nth-child(3) {
    width: 6vw;
    height: 6vw;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    animation: ripple-fill 4s linear infinite;
}

.pulse-ring:nth-child(3) {
    animation-delay: 2s;
}

@keyframes ripple-fill {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
}

/* Active state (when hovered/clicked) */
.map-point.active .pulse-ring:nth-child(1) {
    background: rgba(255, 255, 255, 0.18);
    transform: translate(-50%, -50%) scale(1.3);
}

.map-point.active .pulse-ring:nth-child(2),
.map-point.active .pulse-ring:nth-child(3) {
    background: rgba(255, 255, 255, 0.1);
}

/* === PIN ICON === */
.pin-dot {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.map-point.active .pin-dot,
.map-point:hover .pin-dot {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.5));
}

/* Region Label */
.region-label {
    position: absolute;
    left: 34px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1.5px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.map-point.active .region-label,
.map-point:hover .region-label {
    opacity: 1;
}

/* Glassmorphism Info Card */
.region-info-card {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 280px;
    background: rgba(20, 50, 110, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 24px 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    z-index: 20;
}

.region-info-card.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.region-info-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 12px;
}

.country-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}

.country-grid span {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

/* === Otomotif Section === */
.section-otomotif {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: 100vh;
    max-height: 900px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 120px;
    overflow: hidden;
}

.otomotif-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.otomotif-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.otomotif-content h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.otomotif-content p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* === Technology Feature Sections (Blade Battery) === */
.section-tech-feature {
    position: relative;
    width: 100%;
    min-height: 700px;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.tech-feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.tech-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.tech-feature-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tech-feature-title {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

.tech-feature-list {
    margin-top: auto;
    margin-bottom: auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tech-feature-item {
    border-left: 2px solid #fff;
    padding-left: 24px;
    color: #fff;
}

.tech-feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.tech-feature-item p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* === DM-i Feature Section === */
.section-dmi-feature {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
}

.dmi-feature-bg {
    display: block;
    width: 100%;
    height: auto;
}

.dmi-feature-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dmi-feature-title {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

.dmi-feature-grid {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
}

.dmi-feature-item {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 0 10px;
}

/* Vertical lines that start exactly at the top of the heading and go down */
.dmi-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: 130px;
    background-color: #fff;
}

.dmi-feature-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0px;
}

.dmi-feature-item p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    max-width: 200px;
    margin: 0 auto;
}

/* === DM-p Feature Section === */
.section-dmp-feature {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
}

.dmp-feature-bg {
    display: block;
    width: 100%;
    height: auto;
}

.dmp-feature-content {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    z-index: 1;
    text-align: center;
}

.dmp-feature-title {
    color: #fff;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.dmp-feature-subtitle {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* === e-Platform 3.0 Feature Section === */
.section-eplatform-feature {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
}

.eplatform-feature-bg {
    display: block;
    width: 100%;
    height: auto;
}

.eplatform-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.eplatform-feature-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.eplatform-header {
    text-align: center;
    width: 100%;
    margin-top: 8%;
}

.eplatform-feature-title {
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.eplatform-feature-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.eplatform-feature-list {
    position: absolute;
    top: 55%;
    left: 8%;
    /* Adjust to match the screenshot padding */
    transform: translateY(-50%);
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.eplatform-feature-item {
    border-left: 2px solid #fff;
    padding-left: 24px;
    color: #fff;
}

.eplatform-feature-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.eplatform-feature-item p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* === Intelligent Cockpit Feature Section === */
.section-cockpit-feature {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
}

.cockpit-feature-bg {
    display: block;
    width: 100%;
    height: auto;
}

.cockpit-feature-content {
    position: absolute;
    top: 13%;
    left: 0;
    width: 100%;
    z-index: 1;
    text-align: center;
}

.cockpit-feature-title {
    color: #fff;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.cockpit-feature-subtitle {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* === Interactive Tech Tabs Section === */
.section-tech-tabs {
    width: 100%;
    padding: 60px 40px;
    background-color: #fff;
}

.tech-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.tech-tab-content {
    display: none;
    width: 100%;
    background-color: #f8f8f8;
}

.tech-tab-content.active {
    display: flex;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-tab-image {
    width: 55%;
    display: flex;
}

.tech-tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tech-tab-text {
    width: 45%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-tab-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.4;
}

.tech-tab-text p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.tech-tab-text p:last-child {
    margin-bottom: 0;
}

.tech-tabs-nav {
    display: flex;
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid #ddd;
}

.tech-tab-btn {
    flex: 1;
    text-align: center;
    padding: 20px 10px;
    font-size: 15px;
    font-weight: 400;
    color: #999;
    cursor: pointer;
    position: relative;
    top: -1px;
    border-top: 2px solid transparent;
    transition: all 0.3s ease;
}

.tech-tab-btn.active {
    color: #111;
    border-top: 2px solid #111;
    font-weight: 600;
}

.tech-tab-btn:hover {
    color: #111;
}

/* === Vehicle Safety Section === */
.section-safety-feature {
    width: 100%;
    background-color: #fff;
    padding-bottom: 80px;
}

.safety-hero {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
}

.safety-bg {
    display: block;
    width: 100%;
    height: auto;
}

.safety-hero-content {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    z-index: 1;
    text-align: center;
}

.safety-title {
    color: #333;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.safety-subtitle {
    color: #555;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.safety-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: -150px;
    /* Overlaps the bottom of the image */
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.safety-card {
    background-color: #f7f7f7;
    border-radius: 12px;
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    /* Very subtle shadow for separation */
}

.safety-card-logo {
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.safety-card-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.safety-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.safety-card p {
    font-size: 13px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
}

/* === Reusable Hero Feature Section === */
.section-hero-feature {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
}

.hero-feature-bg {
    display: block;
    width: 100%;
    height: auto;
}

.hero-feature-content {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    /* Increased to prevent unwanted line breaks */
    padding: 0 20px;
    z-index: 1;
    text-align: center;
}

.hero-feature-title {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* ==========================================================================
   SERVICE & MAINTENANCE PAGE STYLES
   ========================================================================== */

/* === Service Benefits Section === */
.service-benefits {
    padding: 80px 0;
    background: #fff;
}

.service-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.service-header p {
    font-size: 15px;
    color: #666;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Extremely tight gap like screenshot */
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-row {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.benefit-card {
    background: linear-gradient(to bottom, #00adef 0%, #15459b 100%);
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    width: 380px;
    /* Force consistent width */
    flex: 0 0 auto;
    /* Prevent stretching */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 25px;
}

.benefit-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.benefit-card p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* === Service Timeline Section === */
.service-timeline {
    padding: 80px 0;
    background: #fff;
}

.timeline-table-wrapper {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.timeline-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #eaeaea;
}

.timeline-table th {
    background: #f1f1f1;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    border: 1px solid #eaeaea;
    text-align: center;
}

.timeline-table td {
    padding: 20px;
    font-size: 13px;
    color: #444;
    border: 1px solid #eaeaea;
    text-align: center;
}

.timeline-nodes-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 250px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #dcdcdc;
    z-index: 1;
    transform: translateY(-50%);
}

.timeline-node {
    position: relative;
    z-index: 2;
    width: 150px;
    height: 100%;
    display: flex;
    justify-content: center;
}

.node-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #fff;
    border: 3px solid #c83232;
    border-radius: 50%;
}

.node-box {
    position: absolute;
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.node-up .node-box {
    bottom: 55%;
}

.node-down .node-box {
    top: 55%;
}

.node-box strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.node-box p {
    font-size: 11px;
    color: #777;
    line-height: 1.4;
}

.timeline-asterisk {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    color: #666;
}

/* === Genuine Parts Section === */
.service-parts {
    padding: 80px 0;
    background: #fafafa;
}

.parts-split {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.parts-img {
    flex: 1;
}

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

.parts-content {
    flex: 1.2;
}

.parts-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.4;
}

.parts-list {
    list-style: none;
    padding: 0;
}

.parts-list li {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.parts-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #111;
    font-weight: bold;
}

.parts-list li strong {
    color: #111;
}

/* === Service CTA Section === */
.service-cta {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.cta-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.btn-black {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   WARRANTY PAGE STYLES
   ========================================================================== */

.warranty-hero {
    padding: 15px 15px 5px 15px;
    background: #fff;
    width: 100%;
}

.warranty-hero-bg {
    width: 100%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.warranty-hero-bg img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.warranty-cards-section {
    padding: 5px 15px 40px 15px;
    background: #fff;
}

.warranty-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1600px;
    margin: 0 auto;
}

.warranty-card {
    background: linear-gradient(180deg, #8cb5e0 0%, #3e78b1 100%);
    border-radius: 25px;
    padding: 50px 25px;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(62, 120, 177, 0.2);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
}

.warranty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(62, 120, 177, 0.3);
}

.warranty-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 1.2px;
    font-style: italic;
    text-transform: uppercase;
}

.card-img-wrapper {
    width: 100%;
    margin-bottom: 35px;
    padding: 0 10px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-wrapper img {
    width: 90%;
    height: auto;
    border-radius: 18px;
    display: block;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-desc p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

.warranty-details-section {
    padding: 60px 0 100px;
    background: #fff;
}

.warranty-details-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.details-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
    text-align: left;
}

.warranty-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    width: 100%;
}

.tab-btn {
    flex: 1;
    padding: 14px 10px;
    background: #fff;
    border: 1px solid #000;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: capitalize;
    margin: 0 2px;
    /* Small gap as per screenshot */
}

.tab-btn.active {
    background: #000;
    color: #fff;
}

.tab-content-wrapper {
    margin-bottom: 80px;
    text-align: center;
    width: 100%;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
    text-align: left;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.warranty-accordion-section {
    width: 100%;
    margin-bottom: 50px;
}

.warranty-accordion-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 22px 30px;
    background: #f2f2f2;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #e8e8e8;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
}

.accordion-item.active .accordion-content {
    border-bottom: 1px solid #f2f2f2;
}

.accordion-content p {
    padding: 25px 30px;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.accordion-body {
    padding: 30px;
}

.accordion-body p {
    padding: 0;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.accordion-body li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.accordion-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
}

.details-footer {
    margin-top: 50px;
    text-align: left;
}

.details-footer p {
    font-size: 13px;
    color: #888;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   ROADSIDE EMERGENCY PAGE STYLES
   ========================================================================== */

.roadside-hero {
    width: 100%;
    margin: 0;
    padding: 0;
}

.roadside-hero-bg {
    width: 100%;
    height: auto;
}

.roadside-hero-bg img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title-centered {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.cs-section {
    padding: 60px 0;
    background: #fff;
}

.cs-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.cs-image {
    flex: 1;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cs-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cs-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #3e78b1;
    /* Solid blue from target */
    color: #fff;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
}

.cs-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs-info-item i {
    font-size: 18px;
}

.cs-content {
    flex: 1;
}

.cs-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    text-align: justify;
}

.access-info p {
    font-size: 15px;
    color: #000;
}

.roadside-assistance-section {
    padding: 40px 0 100px;
    background: #fff;
}

@media (max-width: 992px) {
    .cs-flex {
        flex-direction: column;
        gap: 30px;
    }

    .roadside-hero,
    .warranty-hero,
    .warranty-cards-section {
        padding: 15px;
    }
}

/* ==========================================================================
   BYD APPS PAGE STYLES
   ========================================================================== */

.apps-hero {
    width: 100%;
    height: auto;
    background: #000;
    overflow: hidden;
    position: relative;
}

.apps-hero .video-container {
    width: 100%;
    height: auto;
}

.apps-hero video {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
}

.apps-banner-section {
    width: 100%;
    background: #fff;
    padding: 0;
}

.apps-banner-full {
    width: 100%;
}

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

.apps-features-section {
    padding: 80px 0;
    background: #fff;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.apps-download-section {
    padding: 80px 0 120px;
    background: #fff;
}

.apps-download-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.apps-download-section p {
    font-size: 16px;
    color: #444;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.store-link img {
    height: 50px;
    transition: transform 0.3s ease;
}

.store-link:hover img {
    transform: scale(1.05);
}

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

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

    .apps-hero {
        height: 60vh;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* BYD APPS DETAIL MODAL */
.app-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.app-details-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: modalScaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #000;
    color: #fff;
    transform: rotate(90deg);
}

.detail-slide-inner {
    display: flex;
    align-items: center;
    padding: 80px 100px;
    gap: 60px;
    min-height: 500px;
}

.detail-slide-inner.reverse {
    flex-direction: row-reverse;
}

.detail-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.detail-text {
    flex: 1.2;
}

.detail-text h3 {
    font-size: 14px;
    font-weight: 700;
    color: #3a7ec4;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.detail-text h4 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 25px;
}

.detail-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.app-details-slider {
    padding-bottom: 50px !important;
}

.app-details-slider .swiper-button-next,
.app-details-slider .swiper-button-prev {
    color: #000;
    width: 50px;
    height: 50px;
    background: #f8f8f8;
    border-radius: 50%;
}

.app-details-slider .swiper-button-next:after,
.app-details-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
}

.app-details-slider .swiper-pagination-bullet-active {
    background: #000;
}

@media (max-width: 992px) {
    .detail-slide-inner {
        flex-direction: column !important;
        padding: 60px 40px;
        text-align: center;
        gap: 40px;
    }

    .detail-text h4 {
        font-size: 24px;
    }
}

/* ==========================================================================
   PRICELIST PAGE STYLES
   ========================================================================== */

.pricelist-section {
    padding: 140px 0 100px;
    background: #fff;
}

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

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

.car-price-card {
    text-align: center;
    padding: 20px;
}

.car-price-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    transition: var(--transition);
}

.car-price-card:hover .car-price-image {
    transform: translateY(-10px);
}

.car-price-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.car-price-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #000;
    text-transform: uppercase;
}

.variant-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.variant-btn {
    padding: 15px 20px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
    border-radius: 4px;
}

.variant-btn.active {
    border-color: #005ce6;
    background: #fff;
    box-shadow: 0 0 0 1px #005ce6;
}

.variant-btn h5 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.variant-btn span {
    font-size: 11px;
    color: #666;
    display: block;
    margin-bottom: 3px;
}

.variant-btn .start-at {
    font-size: 10px;
    color: #999;
}

.price-display {
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    display: inline-block;
    width: 100%;
    max-width: 450px;
}

.price-display h3 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}

.price-display p {
    font-size: 11px;
    color: #888;
    line-height: 1.4;
}

.specs-grid-price {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
}

.spec-item-price {
    text-align: center;
}

.spec-item-price h4 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
}

.spec-item-price p {
    font-size: 11px;
    color: #888;
    text-transform: capitalize;
}


/* Unused BYD Seal / Santa Fe page styles removed to optimize CSS payload */



/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* Language Toggle Styling */
.language-toggle {
    font-size: 18px !important;
}

/* Navbar adjustment */
.navbar {
    padding: 0 40px;
}

.nav-links {
    gap: 30px;
}

.nav-item {
    padding: 0 10px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }


}

/* --- Index.php & Global Mobile Responsiveness Overrides --- */
@media (max-width: 768px) {

    /* Global Overflow Fix */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }

    .container-wide {
        padding: 0 15px !important;
    }

    img,
    video,
    iframe {
        max-width: 100% !important;
        height: auto;
    }

    /* Header Fixes */
    .header {
        height: 60px !important;
    }

    .navbar {
        padding: 0 15px !important;
        height: 60px !important;
    }

    .logo img {
        height: 14px !important;
    }

    /* Footer Fixes */
    .footer {
        padding: 40px 20px 20px !important;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 20px !important;
        text-align: left !important;
        margin-bottom: 40px !important;
    }

    .footer-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .footer-col:first-child,
    .footer-col:last-child {
        grid-column: span 2 !important;
    }

    .footer-col h6 {
        margin-bottom: 15px !important;
        font-size: 15px !important;
    }

    .footer-col ul {
        padding: 0 !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
        padding-top: 25px !important;
    }

    .footer-bottom div {
        justify-content: center !important;
        gap: 20px !important;
    }

    /* Index Content: Brand World Section */
    .section-brand-world {
        padding: 40px 0 !important;
    }

    .world-flex {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .world-grid-left {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .world-card {
        aspect-ratio: 16 / 9 !important;
    }

    .sales-consultant-card {
        padding: 25px !important;
        width: 100% !important;
    }

    .consultant-body {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .consultant-photo-side {
        margin: 0 auto !important;
    }

    .consultant-info-side {
        text-align: center !important;
    }

    .contact-item {
        justify-content: center !important;
    }

    .info-block p {
        text-align: center !important;
    }

    /* Index Content: Gallery */
    .section-gallery {
        padding: 50px 0 !important;
    }

    .section-header h3 {
        font-size: 24px !important;
    }

    /* Index Content: Split Links */
    .section-split-links {
        height: auto !important;
        grid-template-columns: 1fr !important;
    }

    .split-link-item {
        height: 300px !important;
    }

    .split-content h3 {
        font-size: 28px !important;
    }

    /* Innovation Section */
    .innovation-content-full h2 {
        font-size: 24px !important;
    }
}

/* ================================================
   SERVICE PAGE — MOBILE OVERRIDES (max-width: 768px)
   ================================================ */
@media (max-width: 768px) {

    /* ---- 1. VIDEO HERO ---- */
    .service-hero {
        padding: 0 !important;
        margin: 0 !important;
        background: #000 !important;
        height: auto !important;
        /* Pastikan tinggi otomatis */
        min-height: 0 !important;
        /* Hapus batas minimal */
    }

    .service-hero .video-container {
        width: 100% !important;
        height: auto !important;
        /* Biarkan mengikuti rasio video */
        aspect-ratio: 16 / 9 !important;
        overflow: hidden !important;
        background: #000 !important;
        display: block !important;
    }

    .service-hero video {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        /* Pastikan utuh tanpa zoom */
        display: block !important;
    }

    /* ---- 2. BENEFITS SECTION ---- */
    .service-benefits {
        overflow-x: hidden !important;
        padding: 40px 0 !important;
    }

    .service-header {
        padding: 0 20px !important;
        margin-bottom: 30px !important;
    }

    .service-header h2 {
        font-size: clamp(20px, 6vw, 24px) !important;
    }

    /* 1 Kolom Rapi */
    .benefits-grid,
    .benefits-row.top-row,
    .benefits-row.bottom-row {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    .benefit-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 30px 20px !important;
        box-sizing: border-box !important;
    }

    /* ---- TABLE FIX ---- */
    .timeline-table-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 0 !important;
        padding: 0 10px !important;
    }

    .timeline-table {
        min-width: 320px !important;
        /* Pastikan tidak terlalu lebar */
        border-collapse: collapse !important;
    }

    .timeline-table th {
        font-size: 11px !important;
        /* Perkecil font header */
        padding: 10px 5px !important;
        line-height: 1.3 !important;
    }

    .timeline-table td {
        font-size: 10px !important;
        /* Perkecil font isi */
        padding: 10px 5px !important;
        line-height: 1.4 !important;
    }

    /* ---- 3. TIMELINE ---- */
    .timeline-nodes-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 40px 10px !important;
        /* Kurangi padding samping */
        gap: 0 !important;
    }

    .timeline-node {
        min-width: 140px !important;
        /* Perkecil lebar tiap node */
    }

    .node-box {
        padding: 10px 8px !important;
        /* Perkecil padding kotak */
        min-height: 100px !important;
    }

    .node-box strong {
        font-size: 11px !important;
        /* Perkecil font judul */
        line-height: 1.2 !important;
    }

    .node-box p {
        font-size: 9px !important;
        /* Perkecil font deskripsi */
        line-height: 1.3 !important;
    }

    .node-circle {
        width: 12px !important;
        /* Perkecil lingkaran merah */
        height: 12px !important;
    }

    /* ---- 4. PARTS SECTION (Foto Kedua) ---- */
    .parts-split {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .parts-img {
        width: 100% !important;
        height: auto !important;
        /* Otomatis sesuai rasio foto */
        max-height: none !important;
    }

    .parts-img img {
        width: 100% !important;
        height: auto !important;
        /* Full landscape otomatis */
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    .parts-content {
        padding: 0 20px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-header h2 {
        font-size: 18px !important;
    }

    .benefit-card {
        padding: 25px 15px !important;
    }
}

/* ========================================
   WARRANTY PAGE — DESKTOP STYLES
   ======================================== */
.warranty-hero-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.warranty-details-section {
    padding: 80px 0;
    background: #fff;
}

.details-header {
    margin-bottom: 50px;
    text-align: center;
}

.details-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

/* Tabbed Menu */
.warranty-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 15px 30px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.tab-btn.active {
    background: #000;
    color: #fff;
}

.tab-btn:hover:not(.active) {
    background: #f1f1f1;
    color: #000;
}

/* Tab Content */
.tab-content-wrapper {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-pane p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

/* Accordion Section */
.warranty-accordion-section {
    max-width: 1000px;
    margin: 0 auto;
}

.warranty-accordion-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: #f9f9f9;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f1f1f1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background: #fff;
    opacity: 0;
    visibility: hidden;
}

/* Tampilkan isi jika item di halaman (Warranty, Apps, Roadside) sedang aktif */
.accordion-item.active .accordion-content {
    opacity: 1;
    visibility: visible;
}

/* Tampilkan isi jika tombol di Sidebar sedang aktif */
.accordion-toggle.active+.accordion-content {
    opacity: 1;
    visibility: visible;
}

.accordion-content p {
    padding: 20px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.details-footer {
    margin-top: 50px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================
   WARRANTY PAGE — MOBILE OVERRIDES (max-width: 768px)
   ================================================ */
@media (max-width: 768px) {
    .warranty-hero-bg img {
        height: auto !important;
        min-height: 180px !important;
        object-fit: cover !important;
    }

    .warranty-details-section {
        padding: 40px 0 !important;
    }

    .details-header h2 {
        font-size: clamp(18px, 5.5vw, 22px) !important;
        margin-bottom: 20px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    /* Tabs: Layout Button */
    .warranty-tabs {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        justify-content: center !important;
        margin-bottom: 25px !important;
        padding: 0 10px !important;
    }

    .tab-btn {
        padding: 10px 8px !important;
        font-size: 11px !important;
        flex: 1 1 30% !important;
        min-width: 90px !important;
        text-align: center !important;
        height: auto !important;
        line-height: 1.2 !important;
    }

    .tab-pane p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        padding: 0 15px !important;
        text-align: center !important;
    }

    .warranty-accordion-section {
        margin-top: 35px !important;
        padding: 0 15px !important;
    }

    .warranty-accordion-section h2 {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }

    .accordion-header {
        padding: 12px 15px !important;
        font-size: 13px !important;
    }

    .accordion-content p {
        font-size: 12px !important;
        padding: 12px 15px !important;
    }

    .details-footer p {
        font-size: 10px !important;
        padding: 0 15px !important;
        margin-top: 25px !important;
        line-height: 1.4 !important;
    }
}

/* ================================================
   BYD APPS PAGE — MOBILE OVERRIDES (max-width: 768px)
   ================================================ */
@media (max-width: 768px) {

    /* ---- 1. APPS HERO (Video) ---- */
    .apps-hero {
        padding: 0 !important;
        margin: 0 !important;
        background: #000 !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .apps-hero .video-container {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        overflow: hidden !important;
        background: #000 !important;
        display: block !important;
    }

    .apps-hero video {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        display: block !important;
    }

    /* ---- 2. APPS BANNER ---- */
    .apps-banner-section {
        margin-top: 0 !important;
        padding: 0 !important;
    }

    .apps-banner-full img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* ---- 3. FAQ SECTION (Apps) ---- */
    .apps-faq-section {
        padding: 40px 15px !important;
    }

    .apps-faq-section h2 {
        font-size: 18px !important;
        margin-bottom: 25px !important;
    }
}



/* ================================================
   CONTACT PAGE — MOBILE OVERRIDES (max-width: 992px)
   ================================================ */
@media (max-width: 992px) {
    .contact-section {
        padding: 40px 0 20px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .contact-visual {
        height: 550px !important;
        /* Tinggi ditambah agar terlihat full body */
        order: -1 !important;
        margin-bottom: 25px !important;
    }

    .contact-visual .image-wrapper img {
        object-position: center 15% !important;
        /* Fokus ke area atas agar kaki terlihat lebih banyak */
    }

    .contact-title-area {
        text-align: center !important;
        margin-bottom: 30px !important;
        padding: 0 15px !important;
    }

    .contact-title-area h1 {
        font-size: 28px !important;
        margin-bottom: 10px !important;
    }

    .contact-title-area p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    .contact-details {
        gap: 25px !important;
        padding: 0 15px !important;
    }

    .consultant-card {
        padding: 25px 20px !important;
        margin-bottom: 40px !important;
    }

    .btn-test-drive {
        width: 100% !important;
        text-align: center !important;
        padding: 16px 20px !important;
    }

    .map-section {
        height: 600px !important;
        /* Peta diperluas untuk mengisi ruang hitam */
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
    }

    .map-section iframe {
        display: block !important;
        height: 100% !important;
    }
}

/* ================================================
   ABOUT BYD PAGE — MOBILE OVERRIDES (max-width: 768px)
   ================================================ */
@media (max-width: 768px) {

    /* ---- GLOBAL RESET FOR ABOUT PAGE ---- */
    .section-about-intro,
    .section-globalization,
    .section-otomotif,
    .section-tech-feature,
    .section-dmi-feature,
    .section-dmp-feature,
    .section-eplatform-feature,
    .section-cockpit-feature,
    .section-hero-feature,
    .section-safety-feature {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #000 !important;
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
        overflow: visible !important;
    }

    /* Hide desktop line breaks */
    .section-about-intro br,
    .section-otomotif br,
    .section-tech-feature br,
    .section-dmi-feature br,
    .section-eplatform-feature br,
    .section-hero-feature br,
    .section-cockpit-feature br,
    .section-safety-feature br {
        display: none !important;
    }

    /* ---- 1. VIDEO SECTION (RESTORE FULL LANDSCAPE) ---- */
    .about-hero {
        width: 100vw !important;
        position: relative !important;
        left: 50% !important;
        margin-left: -50vw !important;
        padding: 0 !important;
        background: #000 !important;
        line-height: 0 !important;
        overflow: hidden !important;
        display: block !important;
        margin-top: 0 !important;
        top: 0 !important;
    }

    .about-hero .video-container {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important; /* Ensure landscape on mobile */
        margin: 0 !important;
        padding: 0 !important;
    }

    .about-hero video {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        object-fit: cover !important;
        /* BACK TO COVER */
    }

    /* ---- 2. INTRO SECTION (FIX VISIBILITY) ---- */
    .intro-bg {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        order: 1 !important;
    }

    .intro-bg img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .intro-content {
        position: relative !important;
        padding: 50px 25px !important;
        background: #000 !important;
        text-align: center !important;
        order: 2 !important;
        transform: none !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }

    .intro-content h2 {
        font-size: 28px !important;
        color: #fff !important;
        margin-bottom: 25px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .intro-content p {
        font-size: 14px !important;
        line-height: 1.8 !important;
        color: #fff !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .intro-content strong {
        color: #3a7ec4 !important;
        font-weight: 700 !important;
    }

    /* ---- 3. CONTENT CONTAINERS (FIX OVERLAP & TEXT) ---- */
    .otomotif-content,
    .tech-feature-content,
    .dmi-feature-content,
    .dmp-feature-content,
    .eplatform-feature-content,
    .cockpit-feature-content,
    .hero-feature-content,
    .safety-hero-content {
        position: relative !important;
        width: 100% !important;
        padding: 50px 25px !important;
        background: #000 !important;
        text-align: center !important;
        order: 2 !important;
        transform: none !important;
        top: 0 !important;
        left: 0 !important;
        height: auto !important;
    }

    .hero-feature-subtitle,
    .hero-feature-content p,
    .dmi-feature-item p,
    .tech-feature-item p,
    .eplatform-feature-item p {
        color: #fff !important;
        /* Make ALL subtitles white */
        font-size: 14px !important;
        line-height: 1.7 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Titles inside content */
    .tech-feature-title,
    .dmi-feature-title,
    .dmp-feature-title,
    .eplatform-feature-title,
    .cockpit-feature-title,
    .otomotif-content h2,
    .hero-feature-title,
    .safety-title {
        position: relative !important;
        font-size: 26px !important;
        color: #fff !important;
        margin-bottom: 30px !important;
        width: 100% !important;
        display: block !important;
    }

    /* Special Fix for DMI Grid */
    .dmi-feature-grid {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        bottom: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
    }

    .dmi-feature-item::after {
        display: none !important;
    }

    /* Hide desktop lines */

    /* Special Fix for E-Platform List */
    .eplatform-feature-list {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .eplatform-header {
        margin: 0 0 30px 0 !important;
    }

    /* ---- 4. GLOBALIZATION MAP ---- */
    .section-globalization {
        background: #fff !important;
        padding: 50px 0 !important;
    }

    .global-header {
        position: relative !important;
        transform: none !important;
        top: 0 !important;
        left: 0 !important;
        padding: 0 25px 30px !important;
    }

    .global-header h2 {
        font-size: 26px !important;
        color: #000 !important;
        margin-bottom: 12px !important;
    }

    .global-stats {
        font-size: 14px !important;
        color: #555 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px 20px !important;
        line-height: 1.4 !important;
    }

    .map-wrapper {
        background: #fff !important;
        min-height: 0 !important;
        margin-top: 10px !important;
    }

    .world-map {
        transform: scale(1.2) !important;
        margin: 0 auto !important;
    }

    /* ---- 5. TECH TABS & SAFETY ---- */
    .section-tech-tabs {
        background: #fff !important;
        padding: 50px 20px !important;
    }

    .tech-tabs-container {
        width: 100% !important;
        max-width: none !important;
    }

    .tech-tab-content.active {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        align-items: flex-start !important;
    }

    .tech-tab-image {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin-bottom: 20px !important;
    }

    .tech-tab-image img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .tech-tab-text {
        width: 100% !important;
        padding: 0 !important;
        text-align: left !important;
        flex: none !important;
    }

    .tech-tab-text h2 {
        font-size: 22px !important;
        color: #000 !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .tech-tab-text p {
        font-size: 14px !important;
        color: #444 !important;
        line-height: 1.6 !important;
        margin-bottom: 12px !important;
    }

    .tech-tabs-nav {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        margin-top: 30px !important;
        width: 100% !important;
    }

    .tech-tab-btn {
        font-size: 13px !important;
        padding: 15px !important;
        text-align: center !important;
        width: 100% !important;
        border: 1px solid #eee !important;
    }

    .safety-cards-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        background: #fff !important;
        padding: 0 !important;
    }

    .safety-card {
        background: #f8f8f8 !important;
        padding: 30px 20px !important;
        min-height: 0 !important;
    }
}

.about-hero, .apps-hero {
    width: 100%;
    height: calc(100vh - 80px); /* Mengisi sisa tinggi layar setelah header */
    background: #000;
    overflow: hidden;
    position: relative;
}

.about-hero .video-container, .apps-hero .video-container {
    width: 100%;
    height: 100%;
}

.about-hero video, .apps-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Video akan memenuhi area tanpa celah */
}

@media (max-width: 768px) {
    .about-hero, .apps-hero {
        height: auto; /* Di mobile mengikuti aspect ratio landscape */
    }
    
    .about-hero .video-container, .apps-hero .video-container {
        aspect-ratio: 16 / 9;
    }
}

/* Model Section Styles */
.section-model-slider {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
    position: relative;
}

.model-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

.model-category-tabs {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #707070;
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.category-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #00aad2;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-tab:hover { color: #00aad2; }

.category-tab.active {
    color: #000000;
    font-weight: 700;
}

.category-tab.active::after { transform: scaleX(1); }

/* ── Slider layout ─────────────────────────────────────── */
.model-slider-container {
    position: relative;
    /* room for the < > buttons on each side */
    padding: 0 70px;
    max-width: 1400px;
    margin: 0 auto;
}

.model-swiper {
    overflow: hidden;   /* required by Swiper */
    /* extra room at bottom for the pagination row */
    padding-bottom: 70px !important;
}

/* ── Card ─────────────────────────────────────────────── */
.model-car-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.model-car-info { margin-bottom: 0; }

.model-car-year {
    font-size: 13px;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 4px;
}

.model-car-name {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.25;
    /* fixed height so all cards line up even when name wraps */
    min-height: 62px;
    margin: 0 0 6px;
}

.model-car-price-row {
    font-size: 14px;
    color: #707070;
    font-family: 'Montserrat', sans-serif;
    min-height: 22px;    /* same reason — keep cards the same height */
}

.model-car-price-label { font-weight: 400; }

.model-car-price-value {
    font-weight: 700;
    color: #000;
}

/* ── Car image ───────────────────────────────────────── */
.model-car-image-container {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px 0 24px;
}

.model-car-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.model-car-card:hover .model-car-image { transform: scale(1.04); }

/* ── Buttons ─────────────────────────────────────────── */
.model-car-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.model-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    transition: all 0.25s ease;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

.model-btn:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

/* ── Custom < > navigation arrows ───────────────────── */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    position: absolute;
    top: 40%;               /* centred in the car-image area */
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    font-size: 34px;
    font-weight: 300;
    color: #000;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, opacity 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    opacity: 1;
}

.swiper-button-prev-custom { left: 10px; }
.swiper-button-next-custom { right: 10px; }

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover { color: #555; }

.swiper-button-prev-custom.swiper-button-disabled,
.swiper-button-next-custom.swiper-button-disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}

/* ── Pagination row ─────────────────────────────────── */
.model-pagination-container {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.model-swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.model-swiper-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: transparent;
    border: 1px solid #bbb;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 !important;
}

.model-swiper-pagination .swiper-pagination-bullet-active {
    background: #00aad2;
    border-color: #00aad2;
}

.model-swiper-autoplay-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    color: #888;
    padding: 0 4px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.model-swiper-autoplay-toggle:hover { color: #00aad2; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .model-slider-container { padding: 0 55px; }
    .swiper-button-prev-custom { left: 5px; }
    .swiper-button-next-custom { right: 5px; }
}

@media (max-width: 768px) {
    .model-section-title { font-size: 30px; margin-bottom: 20px; }
    .model-category-tabs { gap: 15px; margin-bottom: 30px; overflow-x: auto; justify-content: flex-start; padding: 0 20px; }
    .category-tab { font-size: 13px; white-space: nowrap; }
    .model-slider-container { padding: 0 40px; }
    .swiper-button-prev-custom,
    .swiper-button-next-custom { font-size: 26px; width: 32px; height: 32px; }
    .model-car-name { font-size: 18px; min-height: auto; }
    .model-car-image-container { height: 140px; margin: 18px 0 16px; }
    .model-swiper { padding-bottom: 55px !important; }
}

/* ==========================================================================
   STARGAZER CARTENZ X PAGE STYLES
   ========================================================================== */
.cartenz-page {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    background-color: #fff;
    overflow-x: hidden;
}

/* Hero KV Section */
.cartenz-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    background: #000;
    overflow: hidden;
}

.cartenz-hero img.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

.cartenz-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 8% 30px 8%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    /* Create a sharp horizontal line: transparent top, semi-transparent black bottom (120px tall) */
    background: linear-gradient(to bottom, transparent 0%, transparent calc(100% - 120px), rgba(0, 0, 0, 0.7) calc(100% - 120px), rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-text-top {
    margin-top: 100px; /* Offset for fixed navbar */
}

.hero-text-top h1 {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-text-top p {
    font-size: clamp(16px, 2.2vw, 24px);
    color: #fff;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-text-bottom {
    margin-bottom: 0;
}

.hero-text-bottom p {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px 0;
    letter-spacing: 0;
    text-transform: none;
}

.hero-text-bottom h3 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1;
}

/* Sub-header Bar - normal flow by default, fixed by JS saat scroll melewati hero */
.cartenz-sub-header-v2 {
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
    position: relative; /* Normal flow saat di atas hero */
    z-index: 1000; /* Di bawah sidebar-overlay (1500) dan sidebar (1600) */
    padding: 12px 8%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* State fixed: diaktifkan JS saat user scroll melewati sub-header */
.cartenz-sub-header-v2.is-fixed {
    position: fixed;
    top: 80px; /* Tepat di bawah main header */
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: subHeaderSlideDown 0.25s ease;
}

/* Sembunyikan sub-header saat sidebar mobile aktif */
body.sidebar-open .cartenz-sub-header-v2 {
    opacity: 0;
    visibility: hidden;
}

@keyframes subHeaderSlideDown {
    from { transform: translateY(-100%); opacity: 0.5; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* Spacer: hidden by default, tampil hanya saat is-fixed aktif */
.sub-header-spacer {
    display: none;
}

.sub-header-spacer.visible {
    display: block;
    /* Tinggi diset oleh JS sesuai tinggi aktual sub-header */
}

.sub-header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.sub-header-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
}

.sub-header-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.btn-simulasi-kredit {
    background-color: #002c5f; /* Hyundai Navy blue */
    color: #ffffff;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-simulasi-kredit:hover {
    background-color: #001e42;
    color: #ffffff;
    transform: translateY(-1px);
}

.sub-header-tabs {
    display: flex;
    gap: 25px;
}

.sub-tab-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    padding: 6px 0;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.sub-tab-btn:hover {
    color: #002c5f;
}

.sub-tab-btn.active {
    color: #002c5f;
    font-weight: 700;
}

.sub-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -11px; /* aligns perfectly on the bottom border of the row */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #002c5f;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sub-tab-btn.active::after {
    transform: scaleX(1);
}

.link-ebrosur-v2 {
    color: #002c5f;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.link-ebrosur-v2:hover {
    color: #007fa8;
}

/* Tab Content toggler */
.cartenz-tab-content {
    display: none;
}

.cartenz-tab-content.active {
    display: block;
}

/* Center Intro Text Section */
.cartenz-intro-section {
    padding: 90px 8% 50px 8%;
    text-align: center;
    margin: 0 auto;
}

.cartenz-intro-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #000;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
}

.cartenz-intro-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* 3-Column Features Grid */
.features-grid-section {
    padding: 0 8% 90px 8%;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 35px;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.feature-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1.5;
    background-color: #f7fafc;
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-image-wrapper img {
    transform: scale(1.05);
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-top: 18px;
    text-align: left;
}

.section-disclaimer {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 100%;
}

/* Interior Intro Section & Dashboard */
.interior-intro-section {
    padding: 90px 8% 60px 8%;
    background-color: #f8f9fa;
}

.interior-intro-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 45px;
}

.interior-intro-grid h2 {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 700;
    line-height: 1.35;
    color: #000;
    margin: 0;
    letter-spacing: -0.5px;
}

.interior-intro-grid p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

.interior-dashboard-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.interior-dashboard-image img {
    width: 100%;
    display: block;
    height: auto;
}

/* Slider Section */
.slider-section {
    padding: 60px 8% 100px 8%;
    background-color: #f8f9fa;
}

/* Wrapper provides relative positioning context for nav arrows */
.slider-wrapper {
    position: relative;
}

.swiper-container-interior {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 60px;
}

.slider-card {
    background: transparent;
    display: flex;
    flex-direction: column;
}

.slider-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1.5;
    background-color: #f7fafc;
}

.slider-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-card:hover .slider-image-wrapper img {
    transform: scale(1.03);
}

.slider-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-top: 18px;
    line-height: 1.5;
}

/* Navigation arrows sit OUTSIDE the swiper, in the section side-padding space.
   They are anchored to .slider-wrapper (position: relative).
   Vertical top is calculated so the arrow centers on the image portion of the card.
   The image takes aspect-ratio:1.5 of a 2-col grid. The title ~60px is below.
   We use a fixed px offset approach via transform instead. */
.slider-wrapper .swiper-button-prev-custom,
.slider-wrapper .swiper-button-next-custom {
    position: absolute;
    top: 0;
    height: calc(100% - 90px); /* Exclude title text height below images */
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.slider-wrapper .swiper-button-prev-custom:hover,
.slider-wrapper .swiper-button-next-custom:hover {
    color: #000;
}

.slider-wrapper .swiper-button-prev-custom {
    left: -55px; /* sits in the section's left padding gap */
}

.slider-wrapper .swiper-button-next-custom {
    right: -55px; /* sits in the section's right padding gap */
}

.slider-wrapper .swiper-button-disabled {
    opacity: 0.25 !important;
    cursor: not-allowed;
}

/* Custom pagination dots placement */
.swiper-pagination-custom {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.swiper-pagination-custom .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    opacity: 1;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
    background: #007fa8;
    transform: scale(1.2);
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    .cartenz-sub-header-v2 {
        padding: 10px 5%;
    }
    .cartenz-intro-section {
        padding: 70px 5% 45px 5%;
    }
    .features-grid-section {
        padding: 0 5% 70px 5%;
    }
    .interior-intro-section {
        padding: 70px 5% 45px 5%;
    }
    .slider-section {
        padding: 40px 5% 80px 5%;
    }
    .features-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .cartenz-hero {
        height: 65vh;
        min-height: 400px;
    }
    
    .hero-text-top {
        margin-top: 50px;
    }
    
    .cartenz-sub-header-v2 {
        padding: 10px 20px;
        /* position dikendalikan JS via .is-fixed */
    }

    /* Saat is-fixed aktif di mobile */
    .cartenz-sub-header-v2.is-fixed {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
    }

    /* Spacer di mobile: tinggi diset JS, display dikendalikan .visible */
    .sub-header-spacer.visible {
        display: block;
    }
    
    .sub-header-top-row {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .sub-header-bottom-row {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .sub-header-tabs {
        gap: 15px;
    }
    
    .sub-tab-btn {
        font-size: 13px;
    }
    
    .btn-simulasi-kredit {
        padding: 9px 16px;
        font-size: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .interior-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .slider-title {
        margin-top: 12px;
    }

    /* On mobile, section padding shrinks — bring arrows closer so they still sit outside cards */
    .slider-section {
        padding-left: 12%;
        padding-right: 12%;
    }

    .slider-wrapper .swiper-button-prev-custom {
        left: -42px;
    }

    .slider-wrapper .swiper-button-next-custom {
        right: -42px;
    }
}

/* ==========================================================================
   MYHYUNDAI CARE SECTION STYLES
   ========================================================================== */
.care-section {
    padding: 90px 8%;
    background-color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
}

.care-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.care-logo-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.care-logo-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
}

.care-subtitle {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.6;
    color: #000000;
    max-width: 820px;
    margin: 0 auto 30px auto;
    font-weight: 500;
}

.care-action {
    margin-bottom: 50px;
}

.btn-care-more {
    display: inline-block;
    background-color: #002c5f;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 45px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-care-more:hover {
    background-color: #001e42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 44, 95, 0.15);
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    text-align: left;
}

.care-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.care-card-img {
    width: 100%;
    aspect-ratio: 1.65;
    border-radius: 20px;
    overflow: hidden;
    background-color: #ffffff;
    margin-bottom: 22px;
}

.care-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.care-card:hover .care-card-img img {
    transform: scale(1.04);
}

.care-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.care-card-content p {
    font-size: 13.5px;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

.care-card-content p strong {
    color: #000000;
}

/* Responsive styles for myHyundaiCare */
@media (max-width: 1024px) {
    .care-section {
        padding: 70px 5%;
    }
    .care-grid {
        gap: 25px;
    }
    .care-card-img {
        border-radius: 16px;
        margin-bottom: 16px;
    }
    .care-card-content h3 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .care-section {
        padding: 60px 20px;
    }
    .care-action {
        margin-bottom: 40px;
    }
    .care-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .care-card-img {
        aspect-ratio: 1.6;
        border-radius: 16px;
    }
    .care-card-content h3 {
        font-size: 18px;
    }
}

/* ==========================================================================
   HYUNDAI SMARTSENSE SECTION STYLES
   ========================================================================== */
.smartsense-section {
    padding: 80px 8%;
    background-color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
}

.smartsense-container {
    max-width: 1000px;
    margin: 0 auto;
}

.smartsense-heading {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-top: 0;
    margin-bottom: 45px;
    letter-spacing: -0.5px;
}

.smartsense-heading span {
    font-weight: 400;
}

.smartsense-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.swiper-container-smartsense {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* Space for pagination dots below */
}

.smartsense-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.smartsense-img-wrapper {
    width: 100%;
    aspect-ratio: 1.85; /* landscape layout as in the screenshots */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    background-color: #f7fafc;
}

.smartsense-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.smartsense-content {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 10px;
}

.smartsense-content h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.smartsense-content p {
    font-size: clamp(13px, 1.8vw, 14px);
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

/* Semi-transparent navigation buttons placed over the image area */
.smartsense-prev,
.smartsense-next {
    position: absolute;
    top: calc(50% - 60px); /* Centered relative to the image wrapper height (excluding text below) */
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.smartsense-prev:hover,
.smartsense-next:hover {
    background-color: rgba(0, 0, 0, 0.85);
}

.smartsense-prev:active,
.smartsense-next:active {
    transform: translateY(-50%) scale(0.95);
}

.smartsense-prev {
    left: 20px;
}

.smartsense-next {
    right: 20px;
}

/* Swiper Pagination custom style for SmartSense */
.smartsense-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 40px;
}

.smartsense-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #cbd5e0;
    opacity: 1;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.smartsense-pagination .swiper-pagination-bullet-active {
    background-color: #007fa8;
    transform: scale(1.25);
}

/* Disclaimer styling */
.smartsense-disclaimer {
    font-size: 12px;
    color: #777777;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding: 0 10px;
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
}

.smartsense-disclaimer i {
    margin-top: 3px;
    font-size: 11px;
}

/* Responsive styles for SmartSense */
@media (max-width: 1024px) {
    .smartsense-section {
        padding: 60px 5%;
    }
    .smartsense-img-wrapper {
        border-radius: 16px;
    }
    .smartsense-prev,
    .smartsense-next {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .smartsense-section {
        padding: 50px 20px;
    }
    .smartsense-img-wrapper {
        aspect-ratio: 1.6;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    .smartsense-prev,
    .smartsense-next {
        top: calc(50% - 75px);
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .smartsense-prev {
        left: 10px;
    }
    .smartsense-next {
        right: 10px;
    }
    .smartsense-disclaimer {
        padding-top: 20px;
    }
}

/* ==========================================================================
   VIDEO PLAYER SECTION STYLES — FULL SCREEN
   ========================================================================== */
.video-player-section {
    padding: 0;
    background-color: #000;
    line-height: 0; /* Remove phantom gap below iframe */
}

/* Full-width wrapper — fills the viewport width 100% */
.video-wrapper-fullscreen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    overflow: hidden;
    cursor: pointer;
}

/* Stretch iframe to fill wrapper */
#youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Let overlay capture clicks */
}

/* Overlay: transparent by default, shows control bar on hover */
.video-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Stick control bar to bottom */
    pointer-events: none; /* Pass clicks through except for children */
}

/* Control bar at the bottom */
.video-control-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: all;
}

/* Show control bar on hover */
.video-wrapper-fullscreen:hover .video-control-bar,
.video-player-overlay.controls-visible .video-control-bar {
    opacity: 1;
    transform: translateY(0);
}

/* Always show control bar when paused (overlay not playing) */
.video-player-overlay:not(.video-playing) .video-control-bar {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 100%);
}

.vcb-left,
.vcb-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Base control button style */
.vid-control-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background-color 0.25s, color 0.25s, transform 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.vid-control-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: scale(1.06);
}

/* Play/Pause button - circular */
.vid-control-btn.play-pause {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 16px;
    color: #ffffff;
    justify-content: center;
    padding: 0;
}

.vid-control-btn.play-pause:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Mute button with label */
.vid-control-btn.mute-btn {
    font-size: 15px;
    background-color: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 16px;
    border-radius: 25px;
}

.vid-control-btn.mute-btn:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.7);
}

.mute-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* When video is playing and NOT hovered — overlay is fully transparent */
.video-player-overlay.video-playing {
    background-color: transparent;
}

/* Responsive styles for Video Player */
@media (max-width: 1024px) {
    .video-control-bar {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .video-wrapper-fullscreen {
        aspect-ratio: 9 / 7; /* Slightly taller on mobile */
    }
    .video-control-bar {
        padding: 10px 14px;
    }
    .vid-control-btn.play-pause {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .mute-label {
        display: none; /* Hide text label on small screens */
    }
    .vid-control-btn.mute-btn {
        padding: 8px 12px;
    }
}

/* ==========================================================================
   PERFORMANCE TAB SECTION STYLES
   ========================================================================== */
.performance-section {
    padding: 70px 0 0 0;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.performance-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Header Section — full width padded */
.performance-header-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8%;
    margin-bottom: 60px;
    padding: 0 9.5%;
    width: 100%;
    box-sizing: border-box;
}

.performance-main-title {
    width: 38%;
    flex-shrink: 0;
    font-size: clamp(28px, 2.8vw, 38px);
    font-weight: 700;
    color: #000000;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.5px;
    text-align: left;
}

.performance-main-desc {
    flex: 1;
    font-size: clamp(13px, 1.1vw, 14px);
    line-height: 1.65;
    color: #000000;
    margin: 4px 0 0 0;
    text-align: left;
    font-weight: 400;
    max-width: 480px;
    box-sizing: border-box;
}

/* Bottom Split Layout — full-screen background image with absolute specs */
.performance-content-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #ffffff;
}

.performance-image-col {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.performance-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
}

.performance-specs-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 9.5%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.performance-specs-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin-top: 40px;
    align-self: center;
    box-sizing: border-box;
    width: 38%;
    max-width: 440px;
    flex-shrink: 0;
}

.performance-engine-title {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    color: #000000;
    margin: 0 0 35px 0;
    letter-spacing: -0.2px;
}

/* Stats Display */
.performance-stats-row {
    display: flex;
    gap: 75px;
    align-items: flex-start;
}

.perf-stat-item {
    display: flex;
    flex-direction: column;
}

.perf-stat-label {
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    letter-spacing: 0.1px;
}

.perf-stat-value-block {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.perf-stat-number {
    font-size: clamp(52px, 5.5vw, 65px);
    font-weight: 700;
    color: #000000;
    line-height: 0.85;
    letter-spacing: -1.5px;
}

.perf-stat-unit-stack {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    line-height: 1.1;
    margin-top: 3px;
}

.perf-stat-unit {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
}

.perf-stat-rpm {
    font-size: 11px;
    color: #555555;
    font-weight: 500;
    white-space: nowrap;
}

/* Disclaimer */
.performance-disclaimer {
    font-size: 9.5px;
    color: #999999;
    margin: 35px 0 0 0;
    line-height: 1.4;
    max-width: 320px;
}

/* Responsive styles for Performance */
@media (max-width: 1100px) {
    .performance-specs-col {
        max-width: 55%;
    }
}

@media (max-width: 860px) {
    .performance-section {
        padding: 50px 0 0 0;
    }
    .performance-header-wrapper {
        padding: 0 40px;
        margin-bottom: 40px;
        gap: 20px;
    }
    .performance-main-title {
        width: calc(50% - 10px);
    }
    .performance-main-desc {
        width: calc(50% - 10px);
    }
    .performance-specs-col {
        width: calc(50% - 10px);
        max-width: 60%;
        padding-bottom: 6%;
    }
}

@media (max-width: 768px) {
    .performance-section {
        padding: 40px 0 0 0;
    }
    .performance-header-wrapper {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    .performance-main-title {
        width: 100%;
    }
    .performance-main-desc {
        width: 100%;
        max-width: 100%;
    }
    .performance-content-wrapper {
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: auto;
    }
    .performance-image-col {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        order: 1;
    }
    .performance-image-col img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .performance-specs-container {
        position: relative;
        width: 100%;
        height: auto;
        padding: 30px 20px;
        order: 2;
        display: block;
    }
    .performance-specs-col {
        max-width: 100%;
        padding: 0;
        align-self: auto;
    }
    .performance-disclaimer {
        margin-top: 20px;
    }
}

/* ==========================================================================
   SPECIFICATIONS TAB SECTION STYLES
   ========================================================================== */
.specs-section {
    padding: 90px 8%;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.specs-container {
    max-width: 900px;
    margin: 0 auto;
}

.specs-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #000000;
    margin: 0 0 40px 0;
    letter-spacing: -0.5px;
    text-align: center;
}

/* Trim Filter / Dropdown styling */
.specs-filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 60px;
    padding-left: 20px;
}

.specs-filter-label {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.specs-select-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
}

.specs-select {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    background-color: #f3f4f6;
    border: none;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.specs-select:hover {
    background-color: #e5e7eb;
}

.specs-select:focus {
    outline: none;
}

/* Custom arrow down for select using pseudo-element */
.specs-select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #333333;
    pointer-events: none;
}

/* Specs group sections */
.specs-group-section {
    margin-bottom: 70px;
}

.specs-group-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.specs-group-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 35px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.specs-table tbody tr {
    border-bottom: 1px solid #edf2f7;
    transition: background-color 0.2s ease;
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.specs-table tbody tr:hover {
    background-color: #f8fafc;
}

.specs-table tbody td {
    padding: 14px 24px;
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

.specs-table tbody td:first-child {
    font-weight: 600;
    color: #555555;
    width: 40%;
    background-color: #fcfbfa;
}

/* Table Section Header */
.specs-table tbody tr.table-section-header {
    background-color: #002c5f !important;
}

.specs-table tbody tr.table-section-header:hover {
    background-color: #002c5f !important;
}

.specs-table tbody tr.table-section-header td,
.specs-table tbody tr.table-section-header td:first-child {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    padding: 16px 24px;
    background-color: #002c5f !important;
    width: auto;
}

/* Responsive styles for Specifications */
@media (max-width: 1024px) {
    .specs-section {
        padding: 70px 5%;
    }
}

@media (max-width: 768px) {
    .specs-section {
        padding: 60px 20px;
    }
    .specs-filter-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding-left: 0;
        margin-bottom: 40px;
    }
    .specs-filter-label {
        text-align: center;
    }
    .specs-select-wrapper {
        width: 100%;
    }
    .specs-group-section {
        margin-bottom: 50px;
    }
    .specs-group-title {
        font-size: 26px;
    }
    .specs-group-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .specs-table tbody td {
        padding: 12px 16px;
        font-size: 13px;
    }
    .specs-table tbody td:first-child {
        width: 45%;
    }
}

/* ==========================================================================
   IONIQ 6 SPECIFIC STYLES
   ========================================================================== */

/* AWAKEN YOUR WORLD */
.ioniq6-awaken-section {
    background: #fff;
    padding-bottom: 60px;
    padding-top: 60px;
}
.ioniq6-full-img-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.ioniq6-full-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
.ioniq6-text-image-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
    gap: 40px;
}
.ioniq6-text-col {
    flex: 1;
    min-width: 300px;
}
.ioniq6-side-img-col {
    flex: 1;
    min-width: 300px;
    text-align: right;
}
.ioniq6-side-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.ioniq6-section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}
.ioniq6-section-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* MY HYUNDAI CARE */
.ioniq6-care-section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}
.ioniq6-care-container {
    max-width: 1000px;
    margin: 0 auto;
}
.ioniq6-care-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}
.ioniq6-care-my { color: #002c5f; font-weight: 800; }
.ioniq6-care-hyundai { color: #002c5f; font-weight: 400; }
.ioniq6-care-care { color: #00aad2; font-weight: 800; }
.ioniq6-care-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.ioniq6-warranty-img-wrap {
    max-width: 800px;
    margin: 0 auto;
}

/* CHARGING FLEXIBLY */
.ioniq6-charging-section {
    background: #fff;
    color: #000;
    padding: 80px 20px;
}
.ioniq6-charging-container {
    max-width: 1200px;
    margin: 0 auto;
}
.ioniq6-charging-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}
.ioniq6-charging-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
    color: #444;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.ioniq6-charging-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.ioniq6-charging-specs {
    flex: 1;
    min-width: 300px;
}
.ioniq6-spec-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.ioniq6-spec-item {
    flex: 1;
}
.ioniq6-spec-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}
.ioniq6-spec-subtitle {
    font-size: 14px;
    color: #666;
}
.ioniq6-spec-divider {
    height: 1px;
    background: #eee;
    margin: 30px 0;
}
.ioniq6-charging-img-col {
    flex: 1.2;
    min-width: 300px;
}
.ioniq6-charging-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}
.ioniq6-charging-img-caption {
    margin-top: 15px;
    text-align: left;
}
.ioniq6-charging-img-caption strong {
    display: block;
    font-size: 18px;
    color: #000;
}
.ioniq6-charging-img-caption p {
    font-size: 14px;
    color: #555;
    margin: 5px 0 0;
}

/* V2L SECTION */
.ioniq6-v2l-section {
    background: #fff;
    padding: 0 0 80px 0;
}
.ioniq6-v2l-fullimg-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.ioniq6-v2l-fullimg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
.ioniq6-v2l-header {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    padding: 0 20px;
}
.ioniq6-v2l-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}
.ioniq6-v2l-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
.ioniq6-v2l-features-split {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
    gap: 40px;
    align-items: center;
}
.ioniq6-v2l-features-list {
    flex: 1;
    min-width: 300px;
}
.ioniq6-v2l-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.ioniq6-v2l-icon {
    font-size: 32px;
    color: #000;
    min-width: 50px;
}
.ioniq6-v2l-feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}
.ioniq6-v2l-feature-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.ioniq6-v2l-interior-img-col {
    flex: 1;
    min-width: 300px;
}
.ioniq6-v2l-interior-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.ioniq6-v2l-disclaimer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
    font-size: 12px;
    color: #999;
}

/* GALLERY / TABS CONTENT (Eksterior, Interior, Keamanan, Kenyamanan) */
.ioniq6-gallery-section {
    background: #fff;
    padding: 80px 20px;
}
.ioniq6-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}
.ioniq6-gallery-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
}
.ioniq6-gallery-desc {
    font-size: 16px;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}
.ioniq6-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.ioniq6-gallery-item {
    border-radius: 8px;
    overflow: hidden;
}
.ioniq6-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.ioniq6-gallery-item:hover img {
    transform: scale(1.05);
}
.ioniq6-gallery-wide {
    grid-column: span 2;
}
.ioniq6-safety-features,
.ioniq6-comfort-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.ioniq6-safety-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}
.ioniq6-safety-icon {
    font-size: 40px;
    color: #00aad2;
    margin-bottom: 20px;
}
.ioniq6-safety-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}
.ioniq6-safety-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.ioniq6-comfort-item {
    text-align: center;
}
.ioniq6-comfort-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}
.ioniq6-comfort-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}
.ioniq6-comfort-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE OVERRIDES FOR IONIQ 6 */
@media (max-width: 768px) {
    .ioniq6-text-image-row,
    .ioniq6-charging-split,
    .ioniq6-v2l-features-split {
        flex-direction: column;
    }
    .ioniq6-side-img-col {
        text-align: center;
    }
    .ioniq6-gallery-grid {
        grid-template-columns: 1fr;
    }
    .ioniq6-gallery-wide {
        grid-column: span 1;
    }
    .ioniq6-spec-row {
        flex-direction: column;
    }
    .ioniq6-care-title {
        font-size: 36px;
    }
}

/* ==========================================================================
   IONIQ 5 HIGHLIGHTS TAB STYLES
   ========================================================================== */

/* Welcome Section */
.ioniq5-welcome-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 40px;
}
.ioniq5-welcome-text {
    flex: 1;
    min-width: 300px;
}
.ioniq5-welcome-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #000;
}
.ioniq5-welcome-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
}
.ioniq5-welcome-img {
    flex: 1;
    min-width: 300px;
}
.ioniq5-welcome-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* myHyundaiCare Section */
.care-section {
    background-color: #fff;
    padding: 60px 0;
}
.care-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.care-logo-wrapper {
    margin-bottom: 20px;
}
.care-logo-img {
    max-width: 300px;
    height: auto;
}
.care-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto 30px;
}
.care-action {
    margin-bottom: 40px;
}
.btn-care-more {
    display: inline-block;
    padding: 15px 40px;
    background-color: #002c5f;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
}
.btn-care-more:hover {
    background-color: #001a3a;
    color: #fff;
}
.care-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.care-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #fff;
    text-align: left;
}
.care-card-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}
.care-card-content {
    padding: 20px 0;
}
.care-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    line-height: 1.4;
}
.care-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* Digital Journey Accordion */
.digital-journey-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}
.digital-journey-header {
    margin-bottom: 40px;
}
.digital-journey-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}
.digital-journey-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}
.digital-journey-header p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}
.digital-journey-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.digital-journey-img-wrapper {
    flex: 1;
    min-width: 300px;
}
.digital-journey-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
.digital-journey-accordion {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}
.accordion-item {
    border-bottom: 1px solid #e5e5e5;
}
.accordion-item:last-child {
    border-bottom: none;
}
.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}
.accordion-header.active {
    color: #002c5f;
}
.accordion-header .icon {
    font-size: 24px;
    font-weight: 300;
    color: #999;
}
.accordion-header.active .icon {
    color: #002c5f;
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.accordion-body.open {
    padding-bottom: 30px;
    opacity: 1;
    visibility: visible;
}
.accordion-body p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}
/* ==========================================================================
   IONIQ 5 GALERI SECTION
   ========================================================================== */

.ioniq5-galeri-section {
    padding: 60px 0 80px;
    background: #fff;
}

.ioniq5-galeri-container {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.ioniq5-galeri-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    letter-spacing: -0.5px;
    padding: 0 20px;
}

/* Layout: flush full-width, big image left, thumbs right */
.ioniq5-galeri-layout {
    display: flex;
    gap: 8px;
    align-items: stretch;
    width: 100%;
}

/* Left: main image */
.ioniq5-galeri-main-wrap {
    flex: 0 0 60%;
    max-width: 60%;
    overflow: hidden;
    position: relative;
}

.ioniq5-galeri-main-swiper {
    width: 100%;
}

.ioniq5-galeri-main-swiper .swiper-slide img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

/* Right column: thumbs + controls centered vertically */
.ioniq5-galeri-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
}

/* 2 thumbnails horizontal */
.ioniq5-galeri-thumbs-row {
    display: flex;
    gap: 8px;
    width: 100%;
}

.ioniq5-thumb-item {
    flex: 1;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.ioniq5-thumb-item:hover {
    opacity: 1;
}

.ioniq5-thumb-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

/* Bottom controls */
.ioniq5-galeri-bottom {
    margin-top: 12px;
}

.ioniq5-galeri-progress-wrap {
    margin-bottom: 10px;
}

.ioniq5-galeri-progress-bar {
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.ioniq5-galeri-progress-fill {
    height: 100%;
    background: #00aad2;
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 14.28%;
}

.ioniq5-galeri-fraction-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ioniq5-galeri-prev,
.ioniq5-galeri-next {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 0 4px;
    line-height: 1;
}

.ioniq5-galeri-prev:hover,
.ioniq5-galeri-next:hover {
    color: #002c5f;
}

.ioniq5-galeri-fraction {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    min-width: 40px;
    text-align: center;
}

.ioniq5-galeri-download {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.ioniq5-galeri-download i {
    font-size: 14px;
}

.ioniq5-galeri-download:hover {
    color: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    .ioniq5-galeri-layout {
        flex-direction: column;
    }
    .ioniq5-galeri-main-wrap,
    .ioniq5-galeri-thumbs-wrap {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .ioniq5-thumb-slide img {
        height: 100px;
    }
}

/* =========================================
   IONIQ 5 PERFORMA STYLES
   ========================================= */
.ioniq5-performa-section {
    padding: 80px 0;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}

.ioniq5-performa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ioniq5-performa-header {
    text-align: center;
    margin-bottom: 60px;
}

.ioniq5-performa-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.ioniq5-performa-header p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.ioniq5-performa-range-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.range-row {
    display: flex;
}

.range-left {
    flex: 0 0 50%;
}

.range-right {
    flex: 0 0 50%;
}

.range-left h3 {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.range-right h4 {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin: 0 0 10px 0;
}

.range-right p {
    font-size: 13px;
    color: #333;
    margin: 0 0 5px 0;
}

.ioniq5-performa-main-img {
    margin-bottom: 80px;
    width: 100%;
}

.ioniq5-performa-main-img img {
    width: 100%;
    height: auto;
    display: block;
}

.ioniq5-performa-egmp {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.egmp-img {
    flex: 1;
}

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

.egmp-text {
    flex: 1;
}

.egmp-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.egmp-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.ioniq5-performa-features {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.feature-item {
    flex: 1;
}

.feature-item img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    display: block;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .range-row {
        flex-direction: column;
        gap: 15px;
    }
    .range-left, .range-right {
        flex: 0 0 100%;
    }
    .ioniq5-performa-egmp, .ioniq5-performa-features {
        flex-direction: column;
        gap: 30px;
    }
}

/* =========================================
   PALISADE STYLES
   ========================================= */
.palisade-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}
.palisade-hero-subtitle {
    font-size: 24px;
    font-weight: 700;
}
.palisade-hero-price-label {
    font-size: 14px;
    margin-bottom: 5px;
}
.palisade-hero-price {
    font-size: 32px;
    font-weight: 800;
}
.palisade-section-centered {
    text-align: center;
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}
.palisade-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}
.palisade-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
.palisade-full-img {
    width: 100%;
    display: block;
}
.palisade-care-section {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}
.palisade-care-logo {
    max-width: 300px;
    margin-bottom: 20px;
}
.palisade-care-desc {
    font-size: 16px;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #000;
}
.palisade-care-img {
    max-width: 1000px;
    width: 100%;
}
.palisade-checkerboard-section {
    background-color: #f6f6f6;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}
.palisade-checkerboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.palisade-checkerboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}
.palisade-checkerboard-header .palisade-title {
    flex: 1;
    margin: 0;
}
.palisade-checkerboard-header .palisade-desc {
    flex: 1;
    margin: 0;
}
.palisade-checkerboard-wrap {
    display: flex;
    flex-wrap: wrap;
}
.palisade-checkerboard-text {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    box-sizing: border-box;
}
.palisade-checkerboard-text.white-bg {
    background-color: #fff;
}
.palisade-checkerboard-img-wrap {
    flex: 0 0 50%;
}
.palisade-checkerboard-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.palisade-checkerboard-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
}
.palisade-worry-free-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}
.palisade-checkerboard-note {
    font-size: 12px;
    color: #666;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.palisade-worry-free-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}
.palisade-worry-free-section .palisade-title {
    text-align: center;
    margin-bottom: 60px;
}
.palisade-btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-top: 30px;
    align-self: flex-start;
    transition: all 0.3s ease;
}
.palisade-btn-outline:hover {
    background-color: #000;
    color: #fff;
}
@media (max-width: 768px) {
    .palisade-checkerboard-header {
        flex-direction: column;
        gap: 20px;
    }
    .palisade-checkerboard-text,
    .palisade-checkerboard-img-wrap {
        flex: 0 0 100%;
    }
    .palisade-checkerboard-text {
        padding: 40px 20px;
    }
}

/* PALISADE PERFORMA STYLES */
.palisade-performa-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}
.palisade-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.palisade-performa-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.palisade-performa-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
}
.palisade-performa-hero-stats {
    max-width: 600px;
}
.palisade-performa-hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}
.palisade-performa-hero-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}
.palisade-performa-stat {
    display: flex;
    flex-direction: column;
}
.palisade-performa-stat .stat-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.palisade-performa-stat .stat-value {
    font-size: 48px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}
.palisade-performa-stat .stat-unit {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}
.palisade-performa-hero-notes {
    font-size: 10px;
    color: #aaa;
}
.palisade-performa-hero-notes p {
    margin: 0 0 5px 0;
}
@media (max-width: 768px) {
    .palisade-performa-hero-title {
        font-size: 36px;
    }
    .palisade-performa-hero-stats-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* ============================================================
   NEW SANTA FE PAGE STYLES
   ============================================================ */

/* --- Hero Promo Banner --- */
.santafe-hero-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}
.santafe-hero-wrap img.santafe-hero-img {
    width: 100%;
    height: auto;
    display: block;
}
.santafe-hero-gradient {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.50) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
.santafe-hero-title {
    position: absolute;
    top: 8%; left: 6%;
    z-index: 2;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.santafe-hero-title h1 {
    font-size: clamp(22px, 3vw, 50px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
    line-height: 1.1;
}
.santafe-hero-title p {
    font-size: clamp(12px, 1.1vw, 18px);
    font-weight: 400;
    color: #fff;
    margin: 0;
}
.santafe-hero-bottom-left {
    position: absolute;
    bottom: 5%; left: 3%;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
}
.santafe-triple-box {
    background: rgba(0, 44, 95, 0.93);
    padding: clamp(10px, 1.5vw, 20px) clamp(14px, 2vw, 28px);
    display: inline-block;
    margin-bottom: 10px;
}
.santafe-triple-box-title {
    font-size: clamp(9px, 0.9vw, 13px);
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}
.santafe-triple-items {
    display: flex;
    align-items: flex-end;
    gap: 0;
}
.santafe-triple-item {
    text-align: center;
    padding: 0 clamp(10px, 1.5vw, 22px);
    border-right: 1px solid rgba(255,255,255,0.35);
    color: #fff;
}
.santafe-triple-item:first-child { padding-left: 0; }
.santafe-triple-item:last-child  { border-right: none; }
.santafe-triple-item .t-val {
    font-size: clamp(28px, 4vw, 58px);
    font-weight: 800;
    line-height: 1;
    display: block;
}
.santafe-triple-item .t-val sup {
    font-size: clamp(12px, 1.5vw, 22px);
    font-weight: 700;
    vertical-align: super;
}
.santafe-triple-item .t-lbl {
    font-size: clamp(8px, 0.75vw, 12px);
    color: rgba(255,255,255,0.8);
    margin-top: 3px;
    display: block;
}
.santafe-hero-price {
    color: #fff;
    margin-top: 2px;
}
.santafe-hero-price .price-from {
    font-size: clamp(9px, 0.8vw, 12px);
    color: rgba(255,255,255,0.75);
    margin-bottom: 2px;
}
.santafe-hero-price .price-val {
    font-size: clamp(18px, 2vw, 32px);
    font-weight: 800;
}
.santafe-hero-logos {
    position: absolute;
    bottom: 7%; right: 5%;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Montserrat', sans-serif;
}
.santafe-hero-hyundai {
    text-align: center;
    color: #fff;
}
.santafe-hero-hyundai img {
    height: clamp(26px, 2.8vw, 46px);
    filter: brightness(0) invert(1);
    display: block;
    margin: 0 auto 4px;
}
.santafe-hero-hyundai span {
    font-size: clamp(7px, 0.65vw, 11px);
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
    display: block;
}
.santafe-hero-divider {
    width: 1px;
    height: clamp(42px, 5vw, 66px);
    background: rgba(255,255,255,0.4);
}
.santafe-hero-fifa {
    text-align: center;
    color: #fff;
}
.santafe-hero-fifa .fifa-t { font-size: clamp(15px, 1.7vw, 28px); font-weight: 800; line-height: 1.1; }
.santafe-hero-fifa .fifa-s { font-size: clamp(7px, 0.65vw, 10px); font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,0.9); }
.santafe-hero-fifa .fifa-y { font-size: clamp(12px, 1.2vw, 20px); font-weight: 800; }

/* --- Swiper --- */
.santafe-interior-slider .swiper-pagination-bullet {
    width: 10px !important; height: 10px !important;
    background: #fff !important; opacity: 0.8 !important;
    border-radius: 50% !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.santafe-interior-slider .swiper-pagination-bullet-active {
    background: #00aad2 !important; width: 10px !important;
}

/* --- Turbo Hybrid --- */
.santafe-turbo-section { background-color: #fff; padding: 60px 0 0; font-family: 'Montserrat', sans-serif; }
.santafe-turbo-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.santafe-turbo-header { display: flex; gap: 60px; align-items: flex-start; margin-bottom: 50px; }
.santafe-turbo-left { flex: 0 0 300px; }
.santafe-turbo-left h2 { font-size: 32px; font-weight: 800; color: #000; line-height: 1.2; margin: 0; }
.santafe-turbo-right { flex: 1; }
.santafe-turbo-right h3 { font-size: 20px; font-weight: 800; color: #000; margin: 0 0 8px 0; }
.santafe-turbo-right .turbo-subtitle { font-size: 13px; color: #007fa8; margin-bottom: 30px; font-weight: 500; }
.santafe-turbo-specs { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.santafe-turbo-spec-row { display: flex; align-items: baseline; gap: 30px; }
.santafe-turbo-spec-label { font-size: 15px; font-weight: 700; color: #000; min-width: 220px; }
.santafe-turbo-spec-value { font-size: 15px; font-weight: 500; color: #222; }
.santafe-turbo-note { font-size: 11px; color: #888; display: flex; align-items: center; gap: 5px; margin-top: 10px; }

/* --- Accessories --- */
.santafe-accessories-section { background-color: #fff; padding: 80px 0; font-family: 'Montserrat', sans-serif; }
.santafe-accessories-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.santafe-accessories-wrap { display: flex; gap: 60px; align-items: center; }
.santafe-accessories-text { flex: 0 0 350px; }
.santafe-accessories-text h2 { font-size: 26px; font-weight: 800; color: #000; margin-bottom: 10px; }
.santafe-accessories-text h3 { font-size: 15px; font-weight: 700; color: #000; margin-bottom: 12px; }
.santafe-accessories-text p { font-size: 13px; line-height: 1.6; color: #333; margin-bottom: 30px; }
.btn-accessories-more { display: inline-block; padding: 10px 28px; border: 1.5px solid #000; color: #000; font-size: 13px; font-weight: 600; text-decoration: none; background: transparent; transition: all 0.3s ease; }
.btn-accessories-more:hover { background: #000; color: #fff; }
.santafe-accessories-img { flex: 1; }
.santafe-accessories-img img { width: 100%; height: auto; display: block; border-radius: 4px; }

/* ============================================================
   NEW SANTA FE — Utility Classes (replacing inline styles)
   ============================================================ */

/* Hero Section */
.santafe-hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}
.santafe-hero-bg {
    width: 100%;
    height: auto;
    display: block;
}
.santafe-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.55) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
.santafe-hero-title-block {
    position: absolute;
    top: 15%;
    left: 10%;
    z-index: 2;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.santafe-hero-title-main {
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
}
.santafe-hero-subtitle {
    font-size: clamp(14px, 1.5vw, 24px);
    font-weight: 400;
}
.santafe-hero-price-block {
    position: absolute;
    bottom: 5%;
    left: 10%;
    z-index: 2;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.santafe-hero-price-from {
    font-size: clamp(9px, 0.8vw, 12px);
    color: rgba(255,255,255,0.75);
    margin-bottom: 3px;
}
.santafe-hero-price-value {
    font-size: clamp(18px, 2vw, 32px);
    font-weight: 800;
}

/* Section utilities */
.santafe-section-white { background-color: #fff; }
.santafe-section-no-pb { padding-bottom: 0; }
.santafe-section-pt { padding-top: 40px; }

/* Checkerboard overrides */
.santafe-checkerboard-center { align-items: center; }
.santafe-text-pr { padding-right: 40px; }
.santafe-title-left { text-align: left; font-size: 36px; margin-bottom: 20px; }
.santafe-desc-justify { text-align: justify; font-size: 14px; line-height: 1.6; }

/* Care section */
.santafe-care-padding { padding: 80px 20px 40px; }
.santafe-care-desc { font-size: 16px; margin-bottom: 40px; }
.santafe-warranty-img { max-width: 800px; margin: 0 auto; display: block; }

/* Checker header */
.santafe-checker-header {
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}
.santafe-title-30 { flex: 0 0 30%; margin: 0; font-size: 32px; }
.santafe-checker-right { flex: 1; }
.santafe-checker-h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.santafe-desc-sm { font-size: 14px; line-height: 1.6; }

/* Swiper slide image */
.santafe-slide-img { width: 100%; display: block; }

/* Swiper pagination bottom offset */
.santafe-pagination { bottom: 20px; }

/* Turbo section */
.santafe-info-icon { font-size: 12px; }
.santafe-full-img { display: block; width: 100%; }

/* Accessories link */
.santafe-link-blue {
    color: #007fa8;
    text-decoration: none;
    font-weight: 600;
}

/* ============================================================
   STARIA — Utility Classes
   ============================================================ */

/* Hero Section */
.staria-hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}
.staria-hero-bg {
    width: 100%;
    height: auto;
    display: block;
}
.staria-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.55) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
.staria-hero-title-block {
    position: absolute;
    top: 15%;
    left: 10%;
    z-index: 2;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.staria-hero-title-main {
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
}
.staria-hero-subtitle {
    font-size: clamp(14px, 1.5vw, 24px);
    font-weight: 400;
}
.staria-hero-price-block {
    position: absolute;
    bottom: 5%;
    left: 10%;
    z-index: 2;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.staria-hero-price-from {
    font-size: clamp(9px, 0.8vw, 12px);
    color: rgba(255,255,255,0.75);
    margin-bottom: 3px;
}
.staria-hero-price-value {
    font-size: clamp(18px, 2vw, 32px);
    font-weight: 800;
}

/* Section utilities */
.staria-section-white { background-color: #fff; }
.staria-section-no-pb { padding-bottom: 0; }
.staria-section-pt { padding-top: 40px; }

/* Checkerboard overrides */
.staria-checkerboard-center { align-items: center; }
.staria-text-pr { padding-right: 40px; }
.staria-title-left { text-align: left; font-size: 36px; margin-bottom: 20px; }
.staria-desc-justify { text-align: justify; font-size: 14px; line-height: 1.6; }

/* Care section */
.staria-care-padding { padding: 80px 20px 40px; }
.staria-care-desc { font-size: 16px; margin-bottom: 40px; }
.staria-warranty-container { display: flex; justify-content: center; max-width: 800px; margin: 0 auto; }
.staria-warranty-container img { width: 100%; }

/* --- Turbo & Performance --- */
.staria-turbo-section { background-color: #fff; padding: 60px 0 0; font-family: 'Montserrat', sans-serif; }
.staria-turbo-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.staria-turbo-header { display: flex; gap: 60px; align-items: flex-start; margin-bottom: 50px; }
.staria-turbo-left { flex: 0 0 300px; }
.staria-turbo-left h2 { font-size: 32px; font-weight: 800; color: #000; line-height: 1.2; margin: 0; }
.staria-turbo-right { flex: 1; }
.staria-turbo-right .staria-turbo-desc { font-size: 14px; line-height: 1.6; margin-bottom: 30px; color: #333; }
.staria-turbo-specs { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.staria-turbo-spec-row { display: flex; align-items: baseline; gap: 30px; }
.staria-turbo-spec-label { font-size: 15px; font-weight: 700; color: #000; min-width: 180px; }
.staria-turbo-spec-value { font-size: 15px; font-weight: 500; color: #222; }

/* --- Accessories / Hadir Untukmu --- */
.staria-accessories-section { background-color: #fff; padding: 80px 0; font-family: 'Montserrat', sans-serif; }
.staria-accessories-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.staria-accessories-wrap { display: flex; gap: 60px; align-items: center; }
.staria-accessories-text { flex: 0 0 350px; }
.staria-accessories-text h2 { font-size: 26px; font-weight: 800; color: #000; margin-bottom: 10px; }
.staria-accessories-text h3 { font-size: 15px; font-weight: 700; color: #000; margin-bottom: 12px; }
.staria-accessories-text p { font-size: 13px; line-height: 1.6; color: #333; margin-bottom: 30px; }
.staria-accessories-img { flex: 1; }
.staria-accessories-img img { width: 100%; height: auto; display: block; border-radius: 4px; }

/* Checker header */
.staria-checker-header {
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}
.staria-title-30 { flex: 0 0 30%; margin: 0; font-size: 32px; }
.staria-checker-right { flex: 1; }
.staria-checker-h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.staria-desc-sm { font-size: 14px; line-height: 1.6; }

/* Full img */
.staria-full-img { display: block; width: 100%; }

/* Modular Highlight Section */
.modular-highlight-section {
    text-align: center;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.modular-highlight-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.modular-highlight-title span {
    display: block;
}

.modular-highlight-desc {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.modular-highlight-img-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.modular-highlight-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Page Specific Styles for myHyundai */
.myhyundai-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-image: url('../public/aftersales/myhyundai-indonesia/myHyundai-d-Section-1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.myhyundai-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

.myhyundai-hero-text {
    max-width: 500px;
}

.myhyundai-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.myhyundai-hero p {
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 500;
}

.btn-download {
    display: inline-block;
    background-color: #002c5f;
    color: #fff;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background-color: #001a3a;
    color: #fff;
}

/* Common Section Styles */
.mh-section {
    padding: 100px 20px;
    text-align: center;
    background-color: #fff;
}

.mh-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.mh-section-subtitle {
    font-size: 15px;
    color: #333;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.mh-img-fluid {
    max-width: 100%;
    height: auto;
}

/* Image wrappers */
.mh-img-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Slider Section */
.mh-slider-section {
    width: 100%;
    overflow: hidden;
}

.mh-promo-swiper {
    width: 100%;
}

.mh-promo-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom Swiper Dots for Promo */
.mh-promo-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}
.mh-promo-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* Fitur Slider */
.mh-fitur-slider-wrapper {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
}

.mh-fitur-swiper {
    padding-bottom: 50px;
}

.mh-fitur-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Custom Swiper Dots for Fitur */
.mh-fitur-swiper .swiper-pagination-bullet {
    background: #00bcd4;
    opacity: 0.5;
}
.mh-fitur-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #00bcd4;
}

/* Custom Navigation for Fitur */
.mh-fitur-nav {
    position: absolute;
    top: 50%;
    left: -50px;
    right: -50px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

@media (max-width: 1250px) {
    .mh-fitur-nav {
        left: 10px;
        right: 10px;
    }
}

.mh-fitur-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(180, 180, 180, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.3s ease;
}

.mh-fitur-nav-btn:hover {
    background: rgba(0, 44, 95, 0.8);
}

/* Kepraktisan Slider */
.mh-kepraktisan-slider-wrapper {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
}

.mh-kepraktisan-swiper {
    padding-bottom: 50px;
}

.mh-kepraktisan-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Custom Swiper Dots for Kepraktisan */
.mh-kepraktisan-swiper .swiper-pagination-bullet {
    background: #00bcd4;
    opacity: 0.5;
}
.mh-kepraktisan-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #00bcd4;
}

@media (max-width: 768px) {
    .myhyundai-hero h1 {
        font-size: 32px;
    }
    .mh-section {
        padding: 60px 20px;
    }
    .mh-section-title {
        font-size: 28px;
    }
    .myhyundai-hero {
        align-items: flex-start;
        padding-top: 120px;
        background-position: center right;
    }
}

/* =========================================
   PAGE SPECIFIC STYLES: Bluelink
   ========================================= */

.bl-page {
    font-family: 'Hyundai Sans Text', sans-serif;
    color: #000;
    background-color: #fff;
    padding-bottom: 80px;
}

/* Hero */
.bl-hero {
    width: 100%;
    position: relative;
}
.bl-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero title overlay (reuse staria classes with Bluelink scope) */
.bl-hero .staria-hero-title-block {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 5;
    max-width: 45%;
}
.bl-hero .staria-hero-title-main {
    font-size: clamp(22px, 3vw, 48px);
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    margin-bottom: 10px;
}
.bl-hero .staria-hero-subtitle {
    font-size: clamp(12px, 1.4vw, 20px);
    color: #222;
    font-weight: 400;
}

@media (max-width: 768px) {
    .bl-hero .staria-hero-title-block {
        top: 35%;
        left: 5%;
        max-width: 55%;
    }
    .bl-hero .staria-hero-title-main {
        font-size: clamp(16px, 5vw, 28px);
    }
    .bl-hero .staria-hero-subtitle {
        font-size: clamp(11px, 2.5vw, 16px);
    }
}

/* Intro */
.bl-intro-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
}
.bl-logo {
    max-width: 250px;
    margin-bottom: 30px;
}
.bl-intro-text {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.bl-btn-manual {
    display: inline-block;
    background-color: #002c5f;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}
.bl-btn-manual:hover {
    background-color: #001a3a;
}

/* Main Container */
.bl-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bl-section {
    margin-bottom: 80px;
}

.bl-section-main-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.bl-section-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
}

.bl-disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    text-align: left;
}

/* Grid for Safety */
.bl-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}
.bl-card {
    overflow: hidden;
    border-radius: 0;
}
.bl-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Sliders */
.bl-slider-outer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}
.bl-slider-wrapper {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}
.bl-swiper {
    padding-bottom: 40px;
    overflow: visible;
}
/* Convenience: 3-up with uniform image height */
.bl-convenience-swiper .swiper-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}
/* Monitor/Security/EV: 1-up full width images */
.bl-monitor-swiper .swiper-slide img,
.bl-security-swiper .swiper-slide img,
.bl-ev-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}
.bl-swiper .swiper-pagination-bullet {
    background: #002c5f;
    opacity: 0.4;
    width: 10px;
    height: 10px;
}
.bl-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #00aad2;
    width: 24px;
    border-radius: 5px;
}

/* Nav Arrows — inline side buttons */
.bl-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(160, 160, 160, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    font-size: 14px;
}
.bl-nav:hover {
    background: rgba(0, 44, 95, 0.9);
}

/* Subscription */
.bl-subscription-section {
    text-align: center;
}
.bl-subscription-desc {
    font-size: 15px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
}
.bl-subscription-img-wrapper {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}
.bl-full-img {
    width: 100%;
    height: auto;
    display: block;
}
.bl-subscription-sub {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.bl-subscription-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    counter-reset: none;
}
.bl-subscription-list li {
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.6;
    padding-left: 5px;
}

/* Download App */
.bl-download-section {
    background-color: #e2ecf6;
    padding: 60px 20px;
    margin-bottom: 80px;
}
.bl-download-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.bl-ebrochure-wrapper {
    position: absolute;
    top: 65%;
    left: 40%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}
.bl-ebrochure-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}
.bl-btn-ebrochure {
    display: inline-block;
    background-color: #002c5f;
    color: #fff;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}
.bl-btn-ebrochure:hover {
    background-color: #001a3a;
}
@media (max-width: 768px) {
    .bl-ebrochure-wrapper {
        top: 60%;
        left: 35%;
    }
    .bl-ebrochure-title {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .bl-btn-ebrochure {
        padding: 6px 15px;
        font-size: 11px;
    }
}
/* FAQ */
.bl-faq-section {
    max-width: 800px;
    margin: 0 auto;
}
.bl-faq-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.bl-faq-tab {
    background: #002c5f;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.bl-faq-tab:hover, .bl-faq-tab.active { background: #001a3a; color: #fff; }
.bl-faq-toggle-all {
    text-align: right;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
}
.bl-accordion-item {
    border-bottom: 2px solid #fff;
}
.bl-accordion-header {
    background: #002c5f;
    color: #fff;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    list-style: none; /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    transition: background 0.3s, color 0.3s;
}
.bl-accordion-header i {
    transition: transform 0.3s ease;
}
.bl-accordion-item[open] .bl-accordion-header {
    background: #f4f4f4;
    color: #000;
}
.bl-accordion-item[open] .bl-accordion-header i {
    transform: rotate(180deg);
}
.bl-accordion-header::-webkit-details-marker {
    display: none;
}
.bl-accordion-body {
    padding: 0 30px 30px 30px;
    background: #f4f4f4;
    font-size: 14px;
    color: #000;
    line-height: 1.6;
}
.bl-faq-q {
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 8px;
    color: #000;
}
.bl-faq-a {
    margin-bottom: 15px;
    margin-top: 0;
}
.bl-faq-list {
    margin-top: 0;
    margin-bottom: 15px;
    padding-left: 20px;
}
.bl-faq-list li {
    margin-bottom: 8px;
}
.bl-faq-sublist {
    margin-top: 5px;
    padding-left: 20px;
    list-style-type: disc;
}
.bl-faq-sublist li {
    margin-bottom: 4px;
}
.bl-link {
    color: #007bff;
    text-decoration: none;
}
.bl-link:hover {
    text-decoration: underline;
}

/* Perawatan Page */
.perawatan-page {
    font-family: 'Hyundai Sans Head', 'Hyundai Sans Text', sans-serif;
    color: #000;
    padding-bottom: 80px;
}
.perawatan-header-section {
    text-align: center;
    padding: 60px 20px 40px;
}
.perawatan-main-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}
.perawatan-subtitle {
    font-size: 16px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}
.perawatan-image-section {
    text-align: center;
    padding: 0 20px 60px;
}
.perawatan-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}
.perawatan-image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 16px;
}
.perawatan-info-section {
    padding: 0 20px;
}
.perawatan-info-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}
.perawatan-info-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}
.perawatan-info-text {
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 40px;
}
.perawatan-tnc-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}
.perawatan-tnc-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}
.perawatan-tnc-list li {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}
.perawatan-link {
    color: #007bff;
    text-decoration: none;
}
.perawatan-link:hover {
    text-decoration: underline;
}

/* Genuine Parts Page */
.genuine-page {
    font-family: 'Hyundai Sans Head', 'Hyundai Sans Text', sans-serif;
    color: #000;
    padding-bottom: 80px;
}
.genuine-header-section {
    text-align: center;
    padding: 60px 20px 40px;
}
.genuine-main-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}
.genuine-subtitle {
    font-size: 15px;
    color: #004f9f;
    max-width: 700px;
    margin: 0 auto;
}
.genuine-image-section {
    text-align: center;
    padding: 0 20px 60px;
}
.genuine-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}
.genuine-video-link {
    display: block;
    border-radius: 16px;
    overflow: hidden;
}
.genuine-image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 16px;
    transition: opacity 0.3s ease;
}
.genuine-video-link:hover img {
    opacity: 0.9;
}
.genuine-video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    border-radius: 16px;
    overflow: hidden;
}
.genuine-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}
.genuine-info-section {
    padding: 0 20px;
}
.genuine-info-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}
.genuine-info-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}
.genuine-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.genuine-info-list li {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
}
.genuine-info-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #333;
    font-size: 20px;
    line-height: 1.2;
}
.genuine-text-blue {
    color: #004f9f !important;
}

/* Responsive */
@media (max-width: 768px) {
    .bl-grid-3 {
        grid-template-columns: 1fr;
    }
    .bl-card img {
        height: 200px;
    }
    .bl-section-main-title {
        font-size: 24px;
    }
    .bl-section-title {
        font-size: 18px;
    }
    .bl-convenience-swiper .swiper-slide img {
        height: 180px;
    }
    .bl-subscription-img-wrapper {
        padding: 20px;
    }
    .bl-nav {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
    .perawatan-main-title {
        font-size: 32px;
    }
    .perawatan-info-title {
        font-size: 24px;
    }
    .perawatan-header-section {
        padding: 40px 20px 30px;
    }
    .genuine-main-title {
        font-size: 28px;
    }
    .genuine-info-title {
        font-size: 18px;
    }
    .genuine-header-section {
        padding: 40px 20px 30px;
    }
}


/* ============================
   Layanan Darurat Page
   ============================ */
.ld-page {
    font-family: 'Hyundai Sans Head', 'Hyundai Sans Text', sans-serif;
    color: #000;
    padding-bottom: 80px;
    box-sizing: border-box;
    width: 100%;
}

/* --- Header --- */
.ld-header-section {
    text-align: center;
    padding: clamp(30px, 5vw, 70px) clamp(16px, 5vw, 60px) clamp(25px, 4vw, 50px);
}
.ld-main-title {
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
    line-height: 1.2;
}
.ld-subtitle {
    font-size: clamp(13px, 1.5vw, 16px);
    color: #004f9f;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Service Cards --- */
.ld-cards-section {
    padding: 0 clamp(16px, 5vw, 80px) clamp(30px, 5vw, 70px);
    box-sizing: border-box;
}
.ld-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 36px);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.ld-card {
    display: flex;
    flex-direction: column;
}
.ld-card img {
    width: 100%;
    border-radius: 12px;
    display: block;
    margin-bottom: 14px;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
.ld-card-title {
    font-size: clamp(15px, 1.6vw, 20px);
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}
.ld-card-desc {
    font-size: clamp(12px, 1.2vw, 15px);
    color: #333;
    line-height: 1.6;
}

/* --- Shared link --- */
.ld-link {
    color: #004f9f;
    text-decoration: none;
}
.ld-link:hover {
    text-decoration: underline;
}

/* --- Table Sections --- */
.ld-table-section {
    padding: 0 clamp(16px, 5vw, 80px) clamp(30px, 4vw, 60px);
    box-sizing: border-box;
}
.ld-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    overflow-x: auto;
}
.ld-section-title {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

/* Coverage Table */
.ld-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: clamp(12px, 1.2vw, 14px);
}
.ld-table thead tr {
    background: #002c5f;
    color: #fff;
}
.ld-table thead th {
    padding: 16px 24px;
    text-align: center;
    font-weight: 600;
    font-size: clamp(11px, 1.1vw, 13px);
}
.ld-table thead th:nth-child(1) { width: 22%; }
.ld-table thead th:nth-child(2) { width: 38%; }
.ld-table thead th:nth-child(3) { width: 40%; }
.ld-table tbody tr {
    border-bottom: 1px solid #ddd;
}
.ld-table tbody td {
    padding: 20px 24px;
    vertical-align: top;
    color: #333;
    line-height: 1.6;
    border-right: 1px solid #ddd;
}
.ld-td-service {
    font-size: clamp(11px, 1.1vw, 13px);
    white-space: nowrap;
    color: #004f9f;
}
.ld-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ld-bullet-list li {
    padding-left: 14px;
    position: relative;
    margin-bottom: 5px;
}
.ld-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
}

/* Area Table */
.ld-area-table {
    width: 100%;
    border-collapse: collapse;
    font-size: clamp(12px, 1.2vw, 14px);
    border: 1px solid #ccc;
}
.ld-area-table tbody tr {
    border-bottom: 1px solid #ddd;
}
.ld-area-region {
    background: #f0ede8;
    font-weight: 600;
    padding: 18px 24px;
    color: #333;
    width: 25%;
    border-right: 1px solid #ccc;
}
.ld-area-cities {
    padding: 18px 24px;
    color: #333;
}

/* T&C */
.ld-tnc-section {
    padding: 0 clamp(16px, 5vw, 80px) clamp(30px, 4vw, 60px);
    box-sizing: border-box;
}
.ld-tnc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.ld-tnc-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
.ld-tnc-list li {
    font-size: clamp(12px, 1.2vw, 15px);
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
}

/* --- Responsive Breakpoints --- */
/* Tablet */
@media (max-width: 1024px) {
    .ld-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ld-area-table {
        width: 80%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ld-page {
        padding-bottom: 50px;
    }
    .ld-cards-grid {
        grid-template-columns: 1fr;
    }
    .ld-area-table {
        width: 100%;
    }
    .ld-area-region {
        padding: 10px 14px;
    }
    .ld-area-cities {
        padding: 10px 14px;
    }
    .ld-table tbody td,
    .ld-table thead th {
        padding: 10px 12px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .ld-header-section {
        padding: 24px 16px 20px;
    }
    .ld-cards-section,
    .ld-table-section,
    .ld-tnc-section {
        padding-left: 14px;
        padding-right: 14px;
    }
    .ld-card img {
        border-radius: 8px;
    }
    .ld-td-service {
        white-space: normal;
    }
}

/* ============================
   Garansi Page
   ============================ */
.garansi-page {
    font-family: 'Hyundai Sans Head', 'Hyundai Sans Text', sans-serif;
    color: #000;
    padding-bottom: 80px;
    box-sizing: border-box;
    width: 100%;
}

.garansi-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 40px);
    box-sizing: border-box;
}

.garansi-header-section {
    text-align: center;
    padding-top: clamp(40px, 6vw, 80px);
    padding-bottom: 40px;
}

.garansi-main-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
    line-height: 1.2;
}

.garansi-subtitle {
    font-size: clamp(14px, 1.5vw, 15px);
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.garansi-badges-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.garansi-badge-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.garansi-numbered-list {
    text-align: left;
    margin: 0 auto 40px;
    padding-left: 20px;
    max-width: 1200px;
    font-size: clamp(12px, 1.2vw, 14px);
    line-height: 1.8;
    color: #000;
}
.garansi-numbered-list li {
    margin-bottom: 12px;
}

.garansi-bullet-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 8px;
    margin-bottom: 16px;
}
.garansi-bullet-list li {
    margin-bottom: 6px;
}

.garansi-section-title {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.garansi-text {
    font-size: clamp(12px, 1.2vw, 14px);
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
}

.garansi-ext-section {
    margin-top: 60px;
}

.garansi-banner {
    width: 100%;
    margin-bottom: 40px;
}
.garansi-banner img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.garansi-sub-title {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.garansi-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 40px;
}

.garansi-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    font-size: clamp(12px, 1.2vw, 13px);
}

.garansi-table thead th {
    background: #002c5f;
    color: #fff;
    padding: 16px 20px;
    text-align: center;
    font-weight: 600;
}

.garansi-table tbody tr {
    border-bottom: 1px solid #ddd;
}

.garansi-table tbody td {
    padding: 16px 20px;
    vertical-align: top;
    color: #333;
    line-height: 1.6;
    border-right: 1px solid #ddd;
}
.garansi-table tbody td:first-child {
    border-left: 1px solid #ddd;
}

.garansi-notice-box {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.garansi-notice-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(11px, 1vw, 12px);
    color: #666;
}
.garansi-notice-item.align-start {
    align-items: flex-start;
}

.garansi-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 50%;
    font-size: 10px;
    color: #666;
    flex-shrink: 0;
}

.garansi-benefit-list {
    margin: 0;
    padding-left: 20px;
    font-size: clamp(12px, 1.2vw, 14px);
    line-height: 1.6;
    color: #000;
}

.garansi-benefit-list li {
    margin-bottom: 24px;
}

.garansi-benefit-list strong {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.garansi-benefit-list p {
    margin: 0;
    color: #333;
    line-height: 1.7;
}

.garansi-link {
    color: #00addc;
    text-decoration: none;
    font-weight: 600;
}
.garansi-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .garansi-table tbody td, .garansi-table thead th {
        padding: 12px 14px;
    }
}


