/* ==========================================================================
   1. VARIABLES, ROOT CONFIGURATION, & CORE BLUE THEME SYSTEM
   ========================================================================== */
:root {
    --tunas-blue: #00468c;          /* Biru Tunas Toyota Utama */
    --tunas-blue-hover: #003366;    /* Biru Gelap untuk Efek Hover Button */
    --tunas-blue-pekat: #002244;    /* Biru Navy Deep Khusus Footer Premium */
    --dark-neutral: #1a1d20;
    --dark-footer: #15171a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --whatsapp-green: #25D366;
    --phone-blue: #00468c;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 32px rgba(0,0,0,0.15);
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
}

/* Custom Premium Scrollbar System - Tema Biru */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 5px;
    border: 2px solid var(--light-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--tunas-blue);
}

/* ==========================================================================
   2. BOOTSTRAP OVERRIDES (OTOMATIS MENGUBAH MERAH MENJADI BIRU TANPA EDIT HTML)
   ========================================================================== */
.text-danger {
    color: var(--tunas-blue) !important;
}

.bg-danger {
    background-color: var(--tunas-blue) !important;
}

.border-danger {
    border-color: var(--tunas-blue) !important;
}

.btn-danger {
    background-color: var(--tunas-blue) !important;
    border-color: var(--tunas-blue) !important;
    color: var(--white) !important;
    transition: var(--transition-fast) !important;
}

.btn-danger:hover, .btn-danger:focus {
    background-color: var(--tunas-blue-hover) !important;
    border-color: var(--tunas-blue-hover) !important;
    color: var(--white) !important;
}

.btn-outline-danger {
    border-color: var(--tunas-blue) !important;
    color: var(--tunas-blue) !important;
    transition: var(--transition-fast) !important;
}

.btn-outline-danger:hover {
    background-color: var(--tunas-blue) !important;
    color: var(--white) !important;
    border-color: var(--tunas-blue) !important;
}

.badge.bg-danger {
    background-color: var(--tunas-blue) !important;
    color: var(--white) !important;
}

/* ==========================================================================
   3. BASE RESET & GLOBAL STYLES
   ========================================================================== */
html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

.fw-black {
    font-weight: 900 !important;
}

.text-xs {
    font-size: 11px !important;
}

.btn-xs {
    font-size: 10px !important;
    padding: 6px 4px !important;
}

/* Selection Text Highlight */
::selection {
    background-color: var(--tunas-blue);
    color: var(--white);
}

/* ==========================================================================
   4. INTERACTIVE HEADER & NAVBAR STYLING
   ========================================================================== */
.navbar {
    padding: 15px 0;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.navbar-brand {
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.nav-link {
    color: var(--text-dark) !important;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 16px !important;
    transition: var(--transition-smooth);
}

/* Animasi Garis Bawah Pas Menu Di-hover - Meluncur Biru */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--tunas-blue);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--tunas-blue) !important;
}

/* Search Bar Input Customization */
.navbar form .form-control {
    font-size: 13px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.navbar form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(0, 70, 140, 0.15);
    border-color: var(--tunas-blue);
    background-color: var(--white) !important;
}

/* ==========================================================================
   5. HERO SWIPER SLIDER SECTION
   ========================================================================== */
.heroSlider {
    width: 100%;
    height: 75vh;
    min-height: 480px;
    background-color: #000;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Efek Lapisan Gelap Gradasi Sinematik di Banner Atas */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.2));
    z-index: 1;
}

/* Animasi Entry Text Slide Ketika Aktif Bergeser */
.swiper-slide-active h1 {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.swiper-slide-active p {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s forwards;
}

/* Navigasi Tombol Slider Panah Kanan-Kiri */
.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 15px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--tunas-blue);
    border-color: var(--tunas-blue);
    transform: scale(1.05);
}

/* ==========================================================================
   6. WELCOME THREE BUTTONS SECTION (3 KOTAK CONTAINER UTAMA)
   ========================================================================== */
.btn-outline-dark {
    transition: var(--transition-smooth) !important;
}

section .btn-outline-dark:hover {
    background-color: var(--tunas-blue);
    border-color: var(--tunas-blue) !important;
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

section .btn-danger:hover {
    background-color: var(--tunas-blue-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 70, 140, 0.3);
}

/* ==========================================================================
   7. ABOUT US / SEKSYEN PROFIL CONSULTANT CARD
   ========================================================================== */
.about-card {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.about-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 70, 140, 0.85); 
    border-radius: inherit;
    z-index: 1;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.about-card a i {
    transition: var(--transition-smooth);
}

.about-card a:hover i {
    transform: translateY(-2px) scale(1.15);
}

/* ==========================================================================
   8. 100% EDGE-TO-EDGE FLUID HEADER BANNER MECHANISM (PENGUNCIAN RASIO 16:9 MUTLAK)
   ========================================================================== */
.brand-full-width-banner-block {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    aspect-ratio: 16 / 9 !important; 
    overflow: hidden;
    background-color: #000;
}

.master-banner-fluid-img {
    width: 100% !important;
    height: 100% !important; 
    object-fit: cover !important;
    object-position: center !important;
}

/* Sub-Header Backup Properties */
.sub-header-premium {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.07) !important;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.sub-header-car-assets {
    width: 100%;
    height: 140px;
    background-image: url('https://images.unsplash.com/photo-1617788138017-80ad40651399?q=80&w=600');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-sm);
    opacity: 0.95;
}

/* ==========================================================================
   9. SLANTED INFO STRIP BAR & BREADCRUMB COMPONENTS
   ========================================================================== */
.info-strip-bar {
    background: linear-gradient(115deg, var(--tunas-blue-pekat) 75%, #003366 100%);
    border-left: 5px solid var(--white);
    transition: var(--transition-smooth);
}

.info-strip-item {
    display: flex;
    align-items: center;
    color: var(--white) !important;
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 700;
    transition: var(--transition-fast);
}

.info-strip-item:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.strip-icon-circle {
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin-right: 10px;
}

.strip-icon-circle-wa {
    width: 28px;
    height: 28px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    margin-right: 10px;
}

.strip-logo-box {
    width: 18px;
    height: 18px;
    background-color: var(--white);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z'/%3E%3C/svg%3E") no-repeat center;
    opacity: 0.9;
}

.breadcrumb-container-box {
    border: 1px solid rgba(0,0,0,0.06) !important;
}

.breadcrumb-home-badge {
    width: 24px;
    height: 24px;
    background-color: var(--tunas-blue);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 11px;
}

/* ==========================================================================
   10. ULTIMATE KARTU KATALOG MOBIL (PLEK-KETIPLEK SESUAI REFERENSI)
   ========================================================================== */
.car-card {
    background-color: #ffffff !important;
    border: 1px solid #eef1f6 !important;
    border-radius: 16px !important;       /* Lekukan sudut kartu luar yang halus */
    padding: 20px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
    position: relative !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    transition: var(--transition-smooth) !important;
}

.car-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 70, 140, 0.08) !important;
}

/* Kapsul Biru TIPE di Kiri Atas */
.car-card > div.text-uppercase {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #ffffff !important;               /* Teks dalam kapsul jadi putih murni */
    background-color: var(--tunas-blue) !important; /* Warna kapsul mengikuti tema biru */
    padding: 5px 14px !important;
    border-radius: 30px !important;         /* Lonjong berbentuk kapsul bulat */
    width: fit-content !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 5px !important;
}

/* Mengubah Ikon Tag Menjadi Ikon Mobil fa-car Secara Otomatis */
.car-card > div.text-uppercase i {
    color: #ffffff !important;
}
.car-card > div.text-uppercase i::before {
    content: "\f1b9" !important;             /* Kode font-awesome murni untuk ikon Mobil */
}

/* Foto Element Mobil */
.car-card img {
    height: 115px !important;
    object-fit: contain !important;
    margin: 10px auto !important;
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Trik Pseudo-Element: Menggambar Box Abu-abu Latar Belakang Teks Deskripsi */
.car-card::before {
    content: '' !important;
    position: absolute !important;
    left: 15px !important;
    right: 15px !important;
    bottom: 75px !important;                 /* Mengambang pas di atas jajaran tombol */
    top: 180px !important;                   /* Dimulai tepat di bawah roda mobil */
    background-color: #f4f6f9 !important;    /* Warna kotak abu-abu soft sesuai foto */
    border-radius: 12px !important;          /* Lengkungan sudut box abu-abu */
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Mengunci Element Teks Agar Normal (Bukan Tombol) & Berada di Dalam Box Abu-abu */
.car-card h6.text-start, 
.car-card small.text-start, 
.car-card p.text-start {
    position: relative !important;
    z-index: 3 !important;
    background: transparent !important;       /* Menghilangkan background kapsul yang bikin jelek */
    border-radius: 0 !important;
    padding-left: 15px !important;           /* Menjaga space ketat dalam box abu-abu */
    padding-right: 15px !important;
    width: 100% !important;
    display: block !important;
}

/* Nama Unit Mobil (Contoh: Velos / New Calya) */
.car-card h6.text-start {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #212529 !important;
    margin-top: 25px !important;             /* Menyesuaikan teks biar turun ke dalam box abu-abu */
    margin-bottom: 2px !important;
}

/* Tulisan Tipe MPV / SUV (Menyala Sesuai Warna Tema Biru) */
.car-card small.text-start {
    font-size: 12px !important;
    color: var(--tunas-blue) !important;     /* Teks jenis mobil menyala warna biru corporate */
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    text-transform: uppercase !important;
}

/* Teks Nominal Harga */
.car-card p.text-start {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #495057 !important;               /* Abu-abu gelap sejuk */
    margin-bottom: 0 !important;
    padding-bottom: 25px !important;         /* Batas space aman di dasar box abu-abu */
}

/* Lencana Bulat Mini DP Floating di Kanan Atas Foto Mobil */
.car-card .badge-dp {
    position: absolute !important;
    top: 55px !important;                    /* Mengambang pas di bodi atas mobil */
    right: 15px !important;
    background-color: #00468c !important;    /* Bulatan warna biru pekat */
    color: #ffffff !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;           /* Lingkaran murni */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(0, 70, 140, 0.2) !important;
    z-index: 10 !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
    border: none !important;
}

/* Baris Wadah Tombol di Dasar Kartu */
.car-card .row.g-1,
.car-card .row.g-2 {
    margin-top: auto !important;
    position: relative !important;
    z-index: 5 !important;
    padding: 10px 5px 0 5px !important;
}

/* Mengubah Bentuk Jajaran Tombol Menjadi Oval Melengkung (Pill Shaped) */
.car-card .btn-outline-dark {
    border: 1px solid var(--tunas-blue) !important;
    color: var(--tunas-blue) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 8px 0 !important;
    border-radius: 50px !important;          /* Tombol lonjong/oval murni */
    letter-spacing: 0.5px !important;
    background-color: #ffffff !important;
}

.car-card .btn-outline-dark:hover {
    background-color: var(--tunas-blue) !important;
    color: #ffffff !important;
}

.car-card .btn-danger {
    background-color: var(--tunas-blue) !important;   /* Menjadi biru penuh seirama */
    border: 1px solid var(--tunas-blue) !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 8px 0 !important;
    border-radius: 50px !important;          /* Tombol lonjong/oval murni */
    letter-spacing: 0.5px !important;
}

.car-card .btn-danger:hover {
    background-color: var(--tunas-blue-hover) !important;
    border-color: var(--tunas-blue-hover) !important;
}
/* ==========================================================================
   11. GALERI TESTIMONI & YOUTUBE RATIO PLAYER
   ========================================================================== */
#testimoni .card {
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

#testimoni .card:hover {
    box-shadow: var(--shadow-md) !important;
}

.ratio-16x9 {
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.ratio-16x9:hover {
    box-shadow: var(--shadow-lg);
}

.gr-banner {
    transition: var(--transition-smooth);
}

.gr-banner:hover {
    transform: scale(1.01);
}


/* ==========================================================================
   13. ULTIMATE PREMIUM BLUE FOOTER SYSTEM (MATCHING THEME SINKRON)
   ========================================================================== */
.footer-premium {
    background-color: var(--tunas-blue-pekat) !important; 
    border-top: 5px solid rgba(255,255,255,0.1);
}

.footer-title {
    font-size: 16px;
    letter-spacing: 0.5px;
    color: var(--white);
    font-weight: 700;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    color: var(--white) !important;
    transition: var(--transition-smooth);
}

.icon-circle {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 15px;
    transition: var(--transition-smooth);
}

.contact-text {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.footer-contact-item:hover .icon-circle {
    background-color: var(--white);
    color: var(--tunas-blue-pekat);
    transform: scale(1.08);
}

.footer-contact-item:hover .contact-text {
    opacity: 1;
    transform: translateX(6px); 
}

.social-circle {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white) !important;
    font-size: 15px;
    text-decoration: none !important;
    transition: var(--transition-smooth);
}

.social-circle:hover {
    background-color: var(--white);
    color: var(--tunas-blue-pekat) !important;
    transform: translateY(-3px);
}

.footer-blog-item {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    color: var(--white) !important;
    transition: var(--transition-smooth);
}

.footer-blog-item img {
    width: 65px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.blog-title-text {
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.9;
}

.footer-blog-item:hover img {
    transform: scale(1.05);
    border-color: var(--white);
}

.footer-blog-item:hover .blog-title-text {
    opacity: 1;
    text-decoration: underline !important;
}

.back-to-top-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    color: var(--white) !important;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    z-index: 10;
}

.back-to-top-btn:hover {
    background-color: var(--white);
    color: var(--tunas-blue-pekat) !important;
    transform: translateY(-3px);
}

/* ==========================================================================
   13. FLOATING SIDE ACTION BUTTONS (WA & PHONE)
   ========================================================================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.btn-floating {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white) !important;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-floating:hover {
    transform: scale(1.1);
}

.btn-floating.whatsapp {
    background-color: var(--whatsapp-green);
    animation: pulse 2s infinite;
}

.btn-floating.phone {
    background-color: var(--phone-blue);
}

/* ==========================================================================
   14. ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   15. RESPONSIVE BREAKPOINTS (DETAILED DESIGN DEPLOYMENT)
   ========================================================================== */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 15px 0;
    }
    .footer-premium {
        text-align: left;
    }
    .social-wrapper {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .heroSlider {
        height: 55vh;
        min-height: 380px;
    }
    .swiper-slide h1 {
        font-size: 2.2rem !important;
    }
    .car-card img {
        height: 100px;
    }
    .badge-dp {
        width: 50px;
        height: 50px;
        font-size: 9px;
        top: -8px;
        right: -4px;
    }
    .floating-buttons {
        bottom: 20px;
        right: 15px;
    }
    .btn-floating {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
    }
}
/* ==========================================================================
   14. REVISI FINAL: CALL TO ACTION SYSTEM - TEMA BIRU TUNAS + KOTAK LEBIH TINGGI
   ========================================================================== */
.cta-premium-section {
    background-color: #17181c !important;   /* Latar belakang kotak abu-abu gelap sleek */
    padding-top: 5.2rem !important;          /* TINGGIIN KOTAK: Tambah space atas kotak hitam biar tinggi and lega */
    padding-bottom: 4rem !important;        /* TINGGIIN KOTAK: Tambah space bawah biar seimbang */
    position: relative !important;
    overflow: visible !important;            /* Tetap visible biar bendera biru lu bebas melayang naik */
}

/* KEDUDUKAN FILE GAMBAR BENDERA BIRU LU (NAIK DIKIT MEMOTONG GARIS ATAS) */
.cta-corner-banner {
    position: absolute !important;
    top: -35px !important;                   /* Tetap melayang naik sedikit memotong garis luar atas */
    right: 0 !important;                     
    width: auto !important;
    height: auto !important;
    z-index: 10 !important;                  
    pointer-events: none !important;
}

.cta-ribbon-img {
    height: 110px !important;                
    width: auto !important;
    display: block !important;
}

/* KONSEP WARNA BARU: SINKRON KEMBALI KE BIRU TUNAS TOYOTA */
.cta-brand-badge {
    background-color: var(--tunas-blue) !important; /* Kapsul berubah menjadi warna biru */
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 4px 12px !important;
    border-radius: 30px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
}

.cta-sub-title {
    color: var(--tunas-blue) !important;     /* Teks sub-judul berubah menjadi warna biru */
    font-size: 26px !important;
    font-weight: 700 !important;
    letter-spacing: -0.3px !important;
    margin-top: 8px !important;
}

.cta-main-title {
    color: #ffffff !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 20px !important;
}

/* Tombol Oval Premium dengan Panah Diagonal */
.btn-cta-premium-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background-color: rgba(255, 255, 255, 0.02) !important;
    padding: 5px 5px 5px 22px !important;
    border-radius: 50px !important;
    color: #a0a5b0 !important;               
    text-decoration: none !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: var(--transition-smooth) !important;
    min-width: 290px !important;
}

.btn-cta-premium-link:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.btn-cta-premium-circle-icon {
    width: 34px !important;
    height: 34px !important;
    background-color: var(--tunas-blue) !important; /* Lingkaran arrow berubah menjadi warna biru */
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
}

.btn-cta-premium-circle-icon i {
    transform: rotate(-45deg) !important;     
    display: inline-block !important;
}

/* PERBAIKAN UTAMA: TULISAN DESKRIPSI DI-TURUNIN AGAR TIDAK KETUTUPAN BENDERA */
.cta-body-description {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: #9095a0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 18px !important;
    margin-top: 35px !important;             /* TURUNIN TULISAN: Mendorong teks deskripsi ke bawah agar lolos dari himpitan bendera */
}

/* Ikon Dual Overlapping Bubbles Chat Sales */
.cta-chat-email-icon {
    color: var(--tunas-blue) !important;     /* Ikon chat sales berubah menjadi warna biru */
    font-size: 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.cta-chat-sales-label {
    font-size: 9.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #7a8296 !important;
}

.cta-email-anchor-link {
    color: #ffffff !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    letter-spacing: -0.3px !important;
}

.cta-email-anchor-link:hover {
    color: var(--tunas-blue) !important;     /* Hover text link berubah menjadi warna biru */
}
/* ==========================================================================
   17. PREMIUM PHOTO GALLERY TESTIMONIAL GRID CONTROL
   ========================================================================== */
.style-testi-card {
    transition: var(--transition-smooth) !important;
}

.style-testi-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 70, 140, 0.08) !important;
}

/* Mengunci ukuran box foto testimoni agar seragam & rapi edge-to-edge */
.master-testi-img {
    width: 100% !important;
    height: 220px !important; /* Tinggi pas untuk layout grid kotak portrait/landscape */
    object-fit: cover !important; /* Memotong gambar secara proporsional otomatis */
    transition: var(--transition-smooth) !important;
}

.style-testi-card:hover .master-testi-img {
    transform: scale(1.06) !important; /* Efek zoom-in halus pas kartu disorot */
}

@media (max-width: 767.98px) {
    .master-testi-img {
        height: 160px !important; /* Penyesuaian tinggi agar tidak kepanjangan di layar HP */
    }
}
/* ==========================================================================
   18. SECTION 4 KEUNGGULAN KAMI - CUSTOM BOX DESIGN SYSTEM (PLEK-KETIPLEK)
   ========================================================================== */
/* Mengubah Bentuk Wadah Ikon Menjadi Persegi Kotak Melengkung Sesuai Gambar */
.keunggulan-icon-square {
    width: 46px !important;
    height: 46px !important;
    background-color: var(--tunas-blue) !important; /* Warna biru pekat kokoh mengikuti tema */
    color: #ffffff !important;
    border-radius: 8px !important;                /* Membuat sudut siku kotak sedikit rounded */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 10px rgba(0, 70, 140, 0.15) !important;
}

.style-keunggulan-title {
    font-size: 16px !important;
    letter-spacing: -0.2px !important;
}

/* Penguncian Tinggi Gambar Banner Sisi Bawah Agar Proporsional */
.layout-keunggulan-img {
    height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
}

.keunggulan-banner-wrapper {
    padding-bottom: 20px !important; /* Memberi ruang napas agar label melayang tidak menabrak elemen bawah */
}

/* KAPSUL BADGE MELAYANG TEPAT DI TENGAH DASAR BORDER GAMBAR */
.cta-floating-badge-label {
    position: absolute !important;
    bottom: 0 !important;                        /* Mengunci posisi nempel di dasar container */
    left: 50% !important;
    transform: translateX(-50%) !important;       /* Trik melayang presisi di tengah layar */
    background-color: var(--tunas-blue) !important;/* Warna dasar biru bold menyala */
    color: #ffffff !important;
    padding: 10px 32px !important;
    border-radius: 8px !important;                /* Bentuk kotak rounded halus sesuai acuan */
    font-size: 13.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 6px 20px rgba(0, 70, 140, 0.3) !important;
    z-index: 10 !important;
    white-space: nowrap !important;               /* Mencegah tulisan patah baris di layar HP */
}

@media (max-width: 767.98px) {
    .layout-keunggulan-img {
        height: 180px !important;                 /* Penyesuaian tinggi di layar smartphone */
    }
    .cta-floating-badge-label {
        font-size: 11px !important;
        padding: 8px 20px !important;
    }
}
/* ==========================================================================
   19. WELCOME THREE SQUARE CARDS SYSTEM - BOOTSTRAP ICONS THEME SYSTEM
   ========================================================================== */
.welcome-cards-section {
    background-color: #f4f6f9 !important; 
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.dynamic-welcome-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    color: #1a1d20 !important;
}

.custom-domain-wrapper {
    margin-top: 12px !important;
}

.domain-globe-icon {
    width: 24px !important;
    height: 24px !important;
    background-color: #e9ecef !important;
    color: var(--tunas-blue) !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
}

.welcome-square-card {
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;         
    padding: 35px 10px !important;          
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04) !important; 
    transition: var(--transition-smooth) !important;
    height: 100% !important;
    min-height: 175px !important;
}

.welcome-square-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 40px rgba(0, 70, 140, 0.12) !important;
}

.welcome-square-card .welcome-card-icon {
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* SETTINGAN KHUSUS BIAR UKURAN BOOTSTRAP ICONS-NYA GEDE AND BERWARNA BIRU */
.welcome-square-card .welcome-card-icon i {
    font-size: 46px !important;             /* Ukuran pas proporsional box melayang */
    color: var(--tunas-blue) !important;    /* MENGUNCI WARNA BIRU CORPORATE TUNAS */
    display: inline-block !important;
    line-height: 1 !important;
    transition: var(--transition-fast) !important;
}

.welcome-square-card .welcome-card-text {
    font-size: 14.5px !important;
    font-weight: 700 !important;
    color: #1a1d20 !important;
    display: block !important;
}

/* KARTU TENGAH (PRICE LIST): BACKGROUND BIRU SOLID, IKON BI-TAG OTOMATIS JADI PUTIH */
.welcome-square-card.active-blue-card {
    background-color: var(--tunas-blue) !important; 
    box-shadow: 0 15px 35px rgba(0, 70, 140, 0.25) !important;
}

.welcome-square-card.active-blue-card .welcome-card-icon i {
    color: #ffffff !important;              /* Otomatis memutih bersih di dalam box biru solid */
}

.welcome-square-card.active-blue-card .welcome-card-text {
    color: #ffffff !important;              
}

/* Smartphone Responsive Breakpoints */
@media (max-width: 767.98px) {
    .welcome-square-card {
        min-height: 135px !important;
        padding: 22px 5px !important;
    }
    .welcome-square-card .welcome-card-icon i {
        font-size: 34px !important;         /* Pengecilan ukuran ikon di layar HP agar rapi */
    }
    .welcome-square-card .welcome-card-text {
        font-size: 11.5px !important;
    }
}
/* ==========================================================================
   20. SECTION 3 TIPE MOBIL: BLOCK HEADER BANNER & UNDERLINE TABS (REFERENSI ACC)
   ========================================================================== */
/* Membuat Kotak Blok Banner Raksasa Memanjang Sesuai Foto Referensi */
.section-type-banner-block {
    background: linear-gradient(135deg, var(--tunas-blue) 0%, var(--tunas-blue-hover) 100%) !important; /* Latar belakang solid biru corporate mewah */
    padding: 3.5rem 1rem !important;
    text-align: center !important;
    color: #ffffff !important;
    width: 100% !important;
    display: block !important;
}

/* Deretan Teks Logo and Embel-embel Dealer di Atas Judul */
.section-type-logo-row {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
    opacity: 0.85;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.section-type-logo-row i {
    font-size: 16px !important;
}

/* Judul Utama Banner Tengah */
.section-type-main-title {
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 6px !important;
}

/* Deskripsi Kecil Putih Lembut Bawah Judul Banner */
.section-type-sub-desc {
    font-size: 14px !important;
    opacity: 0.8 !important;
    margin-bottom: 0 !important;
}

/* WADAH BARISAN NAVIGASI MENU FLAT (SEJAJAR DI BAWAH KOTAK BANNER) */
.premium-tab-nav-bar-wrapper {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important; /* Garis pembatas horizontal tipis bawah menu */
    padding: 0 !important;
    margin-bottom: 40px !important;
    width: 100% !important;
}

.premium-flat-tab-nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 35px !important;                       /* Jarak renggang antar opsi menu flat */
}

/* Teks Opsi Menu Utama */
.premium-flat-tab-link {
    display: block !important;
    padding: 16px 12px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #718096 !important;                  /* Abu-abu sejuk soft kalem */
    text-transform: uppercase !important;
    text-decoration: none !important;
    position: relative !important;
    transition: var(--transition-fast) !important;
}

.premium-flat-tab-link:hover {
    color: var(--tunas-blue) !important;
}

/* STATUS AKTIF: MEMBUAT GARIS BAWAH TEBAL MENYALA WARNA BIRU CORPORATE */
.premium-flat-tab-link.active {
    color: var(--tunas-blue) !important;
    font-weight: 700 !important;
}

.premium-flat-tab-link.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -1px !important;                    /* Nempel pas di atas border-bottom pembatas */
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;                      /* Ketebalan garis aksen penanda menu sesuai foto */
    background-color: var(--tunas-blue) !important; /* Warna garis bawah mengikuti biru corporate */
    border-radius: 3px 3px 0 0 !important;
}

/* Pengaturan Responsif di Layar Kecil Smartphone/HP */
@media (max-width: 767.98px) {
    .premium-flat-tab-nav {
        gap: 15px !important;
        overflow-x: auto !important;             /* Di HP otomatis bisa di-slide geser kanan-kiri anti-pecah */
        justify-content: flex-start !important;
        padding: 0 15px !important;
        white-space: nowrap !important;
    }
    .premium-flat-tab-link {
        padding: 12px 6px !important;
        font-size: 12px !important;
    }
    .section-type-main-title {
        font-size: 24px !important;
    }
    .section-type-banner-block {
        padding: 2.5rem 1rem !important;
    }
}