/* CSS Reset & Variables */
:root {
    --primary-red: #e61d2b;
    --primary-red-hover: #b8131e;
    --dark-bg: #0f1012;
    --dark-card: #17191d;
    --light-bg: #f8f9fa;
    --light-card: #ffffff;
    --text-white: #ffffff;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --text-light-muted: #adb5bd;
    --wa-green: #25d366;
    --wa-green-hover: #1ebd56;
    --accent-gold: #ffc107;
    --border-color: #dee2e6;
    --border-dark: #2c3036;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 15px rgba(230, 29, 43, 0.4);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography helper classes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Sticky Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 16, 18, 0.95);
    border-bottom: 1px solid var(--border-dark);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    padding: 10px 0;
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toyota-logo {
    width: 48px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(230, 29, 43, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 2px;
    line-height: 1.1;
}

.logo-subtitle {
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-tagline {
    color: var(--text-light-muted);
    font-size: 0.55rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 1px;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--text-light-muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 8px 4px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-whatsapp-header {
    background-color: var(--primary-red);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
}

.btn-whatsapp-header:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 29, 43, 0.4);
}

.icon-phone {
    width: 20px;
    height: 20px;
}

.header-phone-text {
    display: flex;
    flex-direction: column;
}

.phone-num {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.1;
}

.phone-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

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

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

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(22, 24, 27, 0.95);
    border-top: 1px solid var(--border-dark);
    backdrop-filter: blur(10px);
    display: none; /* Hidden on desktop */
    grid-template-columns: 1fr 1fr;
    padding: 10px 15px;
    gap: 12px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.sticky-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.sticky-bar-btn svg {
    width: 18px;
    height: 18px;
}

.sticky-bar-btn.btn-wa {
    background-color: var(--wa-green);
}

.sticky-bar-btn.btn-wa:hover {
    background-color: var(--wa-green-hover);
}

.sticky-bar-btn.btn-phone {
    background-color: var(--primary-red);
}

.sticky-bar-btn.btn-phone:hover {
    background-color: var(--primary-red-hover);
}

/* Mobile Nav Overlay (dark backdrop behind menu) */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.nav-overlay.active {
    opacity: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #090a0c 0%, #16181c 100%);
    padding-top: 130px;
    padding-bottom: 70px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(230, 29, 43, 0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-tag {
    color: var(--primary-red);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero-title {
    color: var(--text-white);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #fff 0%, #adb5bd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sales-badge {
    background-color: rgba(230, 29, 43, 0.1);
    border-left: 4px solid var(--primary-red);
    padding: 10px 20px;
    margin-bottom: 25px;
    display: inline-flex;
    flex-direction: column;
    max-width: max-content;
    border-radius: 0 8px 8px 0;
}

.sales-name {
    color: var(--text-white);
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.2;
}

.sales-title {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-desc {
    color: var(--text-light-muted);
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 520px;
}

/* DP Badge Accent */
.dp-badge {
    background: linear-gradient(135deg, #17191d 0%, #2b1114 100%);
    border: 1px solid rgba(230, 29, 43, 0.3);
    padding: 12px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    width: max-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.dp-badge-label {
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    max-width: 80px;
    line-height: 1.3;
}

.dp-badge-value {
    color: var(--primary-red);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
}

.dp-badge-unit {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 800;
    margin-left: 5px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 32px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--wa-green);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--wa-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

.btn-primary-red:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary-wa {
    background-color: var(--wa-green);
    color: var(--text-white);
}

.btn-secondary-wa:hover {
    background-color: var(--wa-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background-color: var(--primary-red);
    color: var(--text-white);
}

.btn-outline:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-icon-arrow {
    width: 18px;
    height: 18px;
    transition: var(--transition-smooth);
}

.btn-outline:hover .btn-icon-arrow {
    transform: translateX(5px);
}

/* Hero Portrait Area */
.hero-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 520px;
}

.hero-image-bg {
    position: absolute;
    bottom: 0;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(230, 29, 43, 0.15) 0%, rgba(230,29,43,0.02) 70%);
    border-radius: 50%;
    z-index: 1;
}

.sales-portrait {
    z-index: 2;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* Trust Cards Stack overlay */
.trust-cards {
    position: absolute;
    right: -20px;
    top: 50px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-card {
    background-color: rgba(23, 25, 29, 0.85);
    border: 1px solid var(--border-dark);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateX(-10px);
    border-color: rgba(230, 29, 43, 0.4);
    box-shadow: 0 5px 15px rgba(230, 29, 43, 0.15);
}

.trust-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(230, 29, 43, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
}

.trust-icon {
    width: 22px;
    height: 22px;
}

.trust-info h4 {
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.trust-info p {
    color: var(--text-light-muted);
    font-size: 0.7rem;
    font-weight: 500;
}

/* Section Common Styles */
.section-subtitle {
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Avanza Section */
.section-avanza {
    padding: 90px 0;
    background-color: var(--light-bg);
}

.avanza-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 65px;
    align-items: center;
}

.avanza-details {
    display: flex;
    flex-direction: column;
}

.price-start {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.price-highlight {
    color: var(--primary-red);
    font-size: 1.8rem;
    font-weight: 800;
}

.feature-list {
    margin-bottom: 35px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.icon-check {
    width: 22px;
    height: 22px;
    color: var(--primary-red);
    background-color: rgba(230, 29, 43, 0.08);
    border-radius: 50%;
    padding: 3px;
}

.car-illustration-card {
    background-color: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.car-illustration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 29, 43, 0.2);
}

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

.avanza-ctas {
    display: flex;
    gap: 15px;
}

.avanza-ctas .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.85rem;
}

.mini-wa-icon {
    width: 18px;
    height: 18px;
}

/* Price List Card */
.price-card {
    background-color: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-red);
}

.price-card-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 12px;
}

.price-table {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
    transition: var(--transition-smooth);
}

.price-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.price-row:hover {
    padding-left: 5px;
    border-bottom-color: var(--primary-red);
}

.car-type {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.car-price {
    font-weight: 800;
    color: var(--primary-red);
    font-size: 1.05rem;
}

.price-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 25px;
    font-style: italic;
}

/* Promo Banner Section */
.section-promo {
    background-color: var(--dark-bg);
    padding: 60px 0;
    position: relative;
}

.container-promo {
    background: linear-gradient(135deg, #a8121a 0%, #e61d2b 50%, #212529 100%);
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(230, 29, 43, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.promo-banner-content {
    display: flex;
    flex-direction: column;
}

.promo-subtitle {
    color: var(--accent-gold);
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 10px;
}

.promo-title {
    color: var(--text-white);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
}

.promo-big-dp {
    font-size: 4rem;
    color: var(--text-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    font-family: var(--font-heading);
}

.promo-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.p-badge {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: var(--transition-smooth);
}

.p-badge:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.p-badge-icon-box {
    width: 36px;
    height: 36px;
    background-color: var(--text-white);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-badge-icon-box svg {
    width: 18px;
    height: 18px;
}

.p-badge span {
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
}

.promo-cars-visual {
    display: flex;
    justify-content: center;
}

.promo-cars-svg {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.4));
}

/* Unit Terkirim / Testimonials Gallery */
.section-gallery {
    padding: 90px 0;
    background-color: #f1f3f5;
}

.section-header-center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.section-title-center {
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-center::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

.section-desc-center {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.gallery-card {
    background-color: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 29, 43, 0.15);
}

.gallery-card-visual {
    height: 130px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

/* Testimonial specific background gradients */
.bg-gradient-1 { background: linear-gradient(135deg, #17191d 0%, #c4121d 100%); }
.bg-gradient-2 { background: linear-gradient(135deg, #0d3b66 0%, #f4d35e 100%); }
.bg-gradient-3 { background: linear-gradient(135deg, #2b3a42 0%, #3f5866 100%); }
.bg-gradient-4 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.bg-gradient-5 { background: linear-gradient(135deg, #343a40 0%, #212529 100%); }

.customer-avatar-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.customer-avatar-box svg {
    width: 24px;
    height: 24px;
}

.delivery-status {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(37, 211, 102, 0.9);
    color: var(--text-white);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.gallery-info {
    padding: 15px;
}

.gallery-info h4 {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.customer-location {
    color: var(--primary-red);
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.customer-quote {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
    border-top: 1px solid #f1f3f5;
    padding-top: 8px;
}

/* Footer Section & Subcomponents */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--text-light-muted);
    padding-top: 80px;
    border-top: 3px solid var(--primary-red);
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.25fr 0.85fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col-title {
    color: var(--text-white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
    font-weight: 800;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--primary-red);
}

/* Footer Column 1: Profile & Stats */
.footer-profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    object-fit: cover;
}

.footer-profile-meta h4 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 800;
}

.footer-profile-meta p {
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-about-text {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 25px;
    color: var(--text-light-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}

.stat-item {
    background-color: var(--dark-card);
    border: 1px solid var(--border-dark);
    padding: 10px 5px;
    border-radius: 8px;
}

.stat-num {
    color: var(--primary-red);
    font-size: 1.15rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.6rem;
    color: var(--text-light-muted);
    font-weight: 600;
    margin-top: 3px;
    line-height: 1.2;
}

/* Footer Column 2: Credit Simulator */
.simulator-form {
    background-color: var(--dark-card);
    border: 1px solid var(--border-dark);
    padding: 25px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.form-group label {
    font-size: 0.75rem;
    color: var(--text-light-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.form-control {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-dark);
    color: var(--text-white);
    padding: 10px 12px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary-red);
}

.form-control[readonly] {
    cursor: not-allowed;
    background-color: rgba(15, 16, 18, 0.5);
}

.text-highlight-red {
    color: var(--primary-red);
    font-size: 0.95rem;
    font-weight: 800;
}

.tenor-display {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.tenor-header {
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-dark);
}

.tenor-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.tenor-row:last-child {
    border-bottom: none;
}

.tenor-term {
    display: flex;
    flex-direction: column;
}

.tenor-years {
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 700;
}

.tenor-months {
    color: var(--text-light-muted);
    font-size: 0.65rem;
}

.tenor-calc {
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

.simulator-disclaimer {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
    line-height: 1.4;
}

/* Footer Column 3: Contact & Messaging */
.contact-card-box {
    background: linear-gradient(135deg, #17191d 0%, #112b18 100%);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.phone-link-large {
    color: var(--wa-green);
    font-size: 1.55rem;
    font-family: var(--font-heading);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.phone-link-large svg {
    width: 24px;
    height: 24px;
    animation: phonePulse 1.5s infinite;
}

.contact-name {
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.btn-whatsapp-large {
    background-color: var(--wa-green);
    color: var(--text-white);
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-bottom: 20px;
}

.btn-whatsapp-large:hover {
    background-color: var(--wa-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-large svg {
    width: 18px;
    height: 18px;
}

.features-contact-badges {
    display: flex;
    gap: 10px;
}

.badge-contact-info {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--wa-green);
    background-color: rgba(37, 211, 102, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Sub-Footer */
.sub-footer {
    background-color: #090a0c;
    padding: 30px 0;
    border-top: 1px solid var(--border-dark);
}

.sub-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toyota-logo-small {
    width: 32px;
    height: auto;
}

.footer-copyright {
    font-size: 0.75rem;
    text-align: center;
    color: var(--text-muted);
}

.footer-copyright span {
    color: var(--text-white);
    font-weight: 600;
}

.footer-message {
    font-size: 0.75rem;
    color: var(--primary-red);
    font-weight: 700;
    font-style: italic;
}

/* Persistent Floating WhatsApp */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--wa-green);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-wa-btn:hover {
    background-color: var(--wa-green-hover);
    transform: scale(1.1) rotate(10deg);
}

.floating-wa-btn svg {
    width: 32px;
    height: 32px;
}

/* Keyframes */
@keyframes phonePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); text-shadow: 0 0 10px rgba(37, 211, 102, 0.5); }
    100% { transform: scale(1); }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    /* Keep header items spaced: logo left, toggle RIGHT */
    .header-container {
        justify-content: space-between;
    }

    /* Responsive Header Hamburger Menu */
    .menu-toggle {
        display: flex;
        margin-left: auto;
        order: 3; /* ensure always last/rightmost */
    }

    .nav-overlay {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: rgba(15, 16, 18, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        padding: 50px 0 40px;
        gap: 25px;
        transition: var(--transition-smooth);
        border-bottom: 2px solid var(--primary-red);
        z-index: 999;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.open {
        top: 70px;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-cta {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .footer-contact-col {
        grid-column: span 2;
        width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .sales-badge {
        align-self: center;
        border-radius: 8px;
        border-left: none;
        border-top: 4px solid var(--primary-red);
    }
    
    .hero-desc {
        margin: 0 auto 30px auto;
    }
    
    .dp-badge {
        margin: 0 auto 35px auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-area {
        height: 400px;
    }
    
    .sales-portrait {
        max-height: 360px;
    }
    
    .trust-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: relative;
        right: 0;
        top: 20px;
        width: 100%;
        gap: 10px;
    }
    
    .trust-card {
        min-width: unset;
    }
    
    .avanza-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .container-promo {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }
    
    .promo-big-dp {
        font-size: 3rem;
    }
    
    .promo-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-cars-visual {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .floating-wa-btn {
        display: flex;
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .floating-wa-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-contact-col {
        grid-column: span 1;
        width: 100%;
    }
    
    .sub-footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    /* Header Logo Scaling on Small Screens */
    .toyota-logo {
        width: 36px;
    }

    .logo-title {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }

    .logo-tagline {
        font-size: 0.45rem;
    }

    /* Hero Section Mobile Formatting */
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.0rem;
    }
    
    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .dp-badge {
        padding: 8px 16px;
        gap: 10px;
        margin-bottom: 25px;
    }

    .dp-badge-label {
        font-size: 0.65rem;
        max-width: 70px;
    }

    .dp-badge-value {
        font-size: 1.8rem;
    }

    .dp-badge-unit {
        font-size: 0.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .hero-image-area {
        height: 320px;
        margin-top: 20px;
    }

    .sales-portrait {
        max-height: 280px;
    }
    
    .trust-cards {
        grid-template-columns: 1fr;
        gap: 8px;
        top: 10px;
    }

    .trust-card {
        padding: 8px 15px;
    }

    /* Avanza Showcase Mobile Styling */
    .section-avanza {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .price-start {
        font-size: 0.95rem;
        flex-wrap: wrap;
        gap: 5px;
    }

    .price-highlight {
        font-size: 1.4rem;
    }

    .feature-list li {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .car-illustration-card {
        padding: 10px;
        margin-bottom: 25px;
    }
    
    .avanza-ctas {
        flex-direction: column;
        gap: 10px;
    }

    .avanza-ctas .btn {
        width: 100%;
    }

    /* Price Card Mobile Styling */
    .price-card {
        padding: 20px 15px;
    }

    .price-card-title {
        font-size: 1.15rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .price-table {
        gap: 12px;
    }

    .price-row {
        padding-bottom: 8px;
    }

    .car-type {
        font-size: 0.8rem;
    }

    .car-price {
        font-size: 0.85rem;
    }

    /* Promo Banner Mobile Layout */
    .container-promo {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .promo-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .promo-big-dp {
        font-size: 2.5rem;
    }

    .promo-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .p-badge {
        padding: 10px 5px;
        border-radius: 8px;
    }

    .p-badge-icon-box {
        width: 30px;
        height: 30px;
    }

    .p-badge-icon-box svg {
        width: 15px;
        height: 15px;
    }

    .p-badge span {
        font-size: 0.65rem;
    }

    .promo-cars-visual {
        max-width: 180px;
    }

    /* Unit Terkirim Section Mobile Layout */
    .section-gallery {
        padding: 50px 0;
    }

    .section-title-center {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-card-visual {
        height: 100px;
    }

    /* Footer & Simulator Form Mobile Layout */
    .main-footer {
        padding-top: 50px;
    }

    .footer-col-title {
        font-size: 1.05rem;
        margin-bottom: 15px;
        padding-bottom: 6px;
    }

    .simulator-form {
        padding: 15px;
        border-radius: 8px;
    }
    
    .form-row-half {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tenor-calc {
        font-size: 0.8rem;
    }

    .contact-card-box {
        padding: 15px;
    }

    .phone-link-large {
        font-size: 1.3rem;
    }

    .btn-whatsapp-large {
        padding: 12px 15px;
        font-size: 0.8rem;
    }

    .sub-footer {
        padding: 20px 0;
    }
}

/* Professional right-side hamburger drawer */
.header-container {
    gap: 18px;
}

.menu-toggle {
    display: flex;
    margin-left: 4px;
    order: 4;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    position: relative;
    z-index: 1002;
}

.menu-toggle:hover {
    border-color: var(--primary-red);
    background: rgba(230, 29, 43, 0.12);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -380px;
    width: min(360px, 86vw);
    height: 100vh;
    background: linear-gradient(180deg, rgba(15,16,18,0.99), rgba(24,26,30,0.98));
    border-left: 2px solid var(--primary-red);
    box-shadow: -18px 0 45px rgba(0,0,0,0.45);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 96px 26px 28px;
    transition: var(--transition-smooth);
    z-index: 1001;
}

.nav-menu.open {
    right: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 4px;
    font-size: 0.95rem;
    letter-spacing: .4px;
}

.nav-link::after {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
    padding-left: 10px;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(4px);
    z-index: 1000;
}

.nav-overlay.active {
    display: block;
}

.nav-cta {
    margin-left: auto;
    order: 3;
}

/* Contact address and embedded map */
.contact-address-box {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255,255,255,0.045);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
}

.address-label,
.section-eyebrow {
    display: inline-block;
    color: var(--primary-red);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: .8px;
    margin-bottom: 6px;
}

.contact-address-box strong {
    display: block;
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-address-box p {
    font-size: 0.82rem;
    margin-bottom: 10px;
}

.maps-link-inline {
    color: var(--text-white);
    font-size: 0.82rem;
    font-weight: 800;
    border-bottom: 1px solid var(--primary-red);
}

.location-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: stretch;
    padding-top: 20px;
    padding-bottom: 70px;
}

.location-info,
.maps-card {
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.location-info {
    padding: 30px;
}

.location-info h3 {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.location-info p {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-location-wa,
.btn-location-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 16px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.85rem;
}

.btn-location-wa {
    background: var(--wa-green);
    color: #fff;
}

.btn-location-wa:hover {
    background: var(--wa-green-hover);
    transform: translateY(-2px);
}

.btn-location-map {
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.18);
}

.btn-location-map:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.maps-card iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

@media (max-width: 1024px) {
    .nav-menu {
        top: 0;
        right: -380px;
        left: auto;
        width: min(360px, 86vw);
        height: 100vh;
        padding: 96px 26px 28px;
        align-items: stretch;
        border-bottom: 0;
        border-left: 2px solid var(--primary-red);
    }

    .nav-menu.open {
        top: 0;
        right: 0;
    }
}

@media (max-width: 768px) {
    .location-section {
        grid-template-columns: 1fr;
        padding-bottom: 50px;
    }

    .location-info h3 {
        font-size: 1.45rem;
    }
}

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

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .location-actions {
        flex-direction: column;
    }

    .btn-location-wa,
    .btn-location-map {
        width: 100%;
    }
}

/* Keep drawer button clickable above backdrop */
.header {
    z-index: 1002;
}

.nav-overlay {
    z-index: 999;
}
