:root {
    --primary-color: #007bff;
    --secondary-color: #1a1a1a;
    --accent-color: #00d2ff;
    --text-color: #333;
    --light-text: #f4f4f4;
    --dark-bg: #0f0f0f;
    --card-bg: #1e1e1e;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Prevent logo shrinking */
    margin-right: 1rem;
}

.logo img {
    height: 24px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    /* Reduced from 2.5rem */
    align-items: center;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 0.85rem;
    /* Reduced from 0.95rem */
    white-space: nowrap;
    /* Prevent text wrapping */
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hide old switcher inside nav-links */
.nav-links .lang-switcher {
    display: none;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary:hover {
    background: #00b8e6;
    transform: translateY(-2px);
}

/* New Nav Actions & Simple Lang Switcher */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    /* Prevent actions shrinking */
}

.lang-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-simple a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.lang-simple a:hover,
.lang-simple a.active {
    color: #fff;
    font-weight: 700;
}

.lang-simple .divider {
    font-size: 0.8rem;
    opacity: 0.5;
}

.hamburger {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(rgba(15, 15, 15, 0.5), rgba(15, 15, 15, 0.7)),
        url('../img/bannerweb.webp');
    background-size: cover;
    background-position: center;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Models Showcase */
.models-showcase {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-top: 2rem;
}

.model-tabs {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
    font-family: var(--font-main);
}

.tab-btn.active,
.tab-btn:hover {
    color: #000;
    font-weight: 700;
}

.model-display {
    display: none;
    text-align: center;
    position: relative;
    animation: fadeIn 0.5s ease;
}

.model-display.active {
    display: block;
}

.watermark {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
    pointer-events: none;
}

.car-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    z-index: 1;
}

.car-image {
    max-width: 80%;
    height: auto;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-arrow {
    background: none;
    border: none;
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    padding: 1rem;
    transition: 0.3s;
}

.nav-arrow:hover {
    color: #000;
}

.model-details h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #333;
}

.btn-outline-dark {
    border: 1px solid #333;
    color: #333;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
    transition: 0.3s;
}

.btn-outline-dark:hover {
    background: #000;
    color: #fff;
}

/* Color Selector */
.color-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.color-swatch.active {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.color-swatch::after {
    content: attr(title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.color-swatch:hover::after {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why Us */
.bg-dark {
    background: linear-gradient(rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.95)),
        url('../img/bannerweb.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
}

.bg-dark .section-title {
    color: #fff;
    text-align: left;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefits-list i {
    color: var(--accent-color);
    margin-top: 5px;
}

.image-content {
    position: relative;
}

.profile-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* NEW NAME TAG STYLE (Glassmorphism Overlay) */
.name-tag {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 220px;
    max-width: 85%;
    background: rgba(20, 20, 20, 0.6);
    /* Background lebih gelap agar teks putih terbaca */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.name-tag h4 {
    margin-bottom: 0.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.name-tag p {
    font-size: 0.95rem;
    opacity: 1;
    margin: 0;
    color: #f0f0f0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-img {
    height: 200px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col .footer-logo {
    width: 150px;
    margin-bottom: 1rem;
    display: block;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-col p {
    margin-bottom: 0.8rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--accent-color);
    color: #000;
}

.footer-bottom {
    background: #000;
    padding: 1.5rem 0;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .navbar .nav-links.active {
        display: flex;
        justify-content: center;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-content {
        margin-bottom: 2rem;
    }

    .watermark {
        font-size: 8rem;
    }

    .color-selector {
        gap: 0.5rem;
    }

    .color-swatch {
        width: 32px;
        height: 32px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Buttons & Highlight */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #00d2ff, #00a3cc);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.4);
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.5);
    background: linear-gradient(135deg, #00e5ff, #00b8e6);
}

.hero-buttons .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-3px);
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #00d2ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* Language Switcher */
/* Old switcher hidden */
.lang-switcher {
    display: none;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Calculator Section */
.calculator-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.calc-form-group {
    margin-bottom: 2rem;
}

.calc-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    margin-bottom: 1rem;
    cursor: pointer;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.calc-value-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Custom Range Slider */
.calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    margin: 1rem 0;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}

/* Tenor Buttons */
.tenor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
}

.tenor-btn {
    padding: 0.8rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 500;
    transition: all 0.3s ease;
}

.tenor-btn:hover {
    border-color: #000;
}

.tenor-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Results */
.calc-results {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.result-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
    color: #000;
}

.btn-calc-submit {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-calc-submit:hover {
    background: #333;
}

@media (max-width: 768px) {
    .tenor-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .calc-select {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}

/* Premium Why Us Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.benefit-icon {
    background: rgba(0, 210, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.benefit-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #fff;
    font-weight: 600;
}

.benefit-text p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 1.2rem;
    }
}

/* Resize Profile Image */
.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img {
    max-width: 350px;
    /* Batasi lebar maksimal */
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

@media (max-width: 768px) {
    .profile-img {
        max-width: 280px;
        /* Lebih kecil di mobile */
    }
}

@media (max-width: 768px) {
    .lang-switcher {
        width: 100%;
        margin: 1rem 0;
        flex-direction: column;
    }

    .lang-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .lang-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 1rem;
        display: none;
        width: 100%;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .lang-switcher:hover .lang-dropdown,
    .lang-switcher.active .lang-dropdown {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .lang-dropdown a {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        justify-content: center;
        padding: 0.8rem;
    }

    .lang-dropdown a:hover,
    .lang-dropdown a.active {
        background: var(--accent-color);
        color: #000;
        border-color: var(--accent-color);
    }

    /* Ensure Contact Button has spacing */
    .nav-links .btn-primary {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Mobile Hero Fix */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        height: 100dvh;
        /* Pastikan pakai dynamic viewport height */
        min-height: 100dvh;
        width: 100%;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    /* Video enabled on mobile & full cover */
    .hero-bg video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 0;
        left: 0;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 1.5rem;
        /* Padding kiri-kanan agar tidak mepet */
        text-align: left;
        margin-top: 3rem;
        /* Jarak dari navbar */
    }

    .hero h1 {
        font-size: 2rem;
        /* Ukuran font lebih proporsional */
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        opacity: 0.9;
    }
}

/* ===== EXCLUSIVE PREMIUM SERVICE SECTION ===== */
#premium-service {
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#premium-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 210, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 kolom di desktop */
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.premium-service-card {
    background: #fff;
    border-radius: 15px;
    /* Radius lebih kecil */
    padding: 1.5rem;
    /* Padding lebih kecil */
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 210, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    aspect-ratio: 1/1;
    /* Kotak */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d2ff, #00ff88);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.premium-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.15);
    border-color: rgba(0, 210, 255, 0.3);
}

.premium-service-card:hover::before {
    transform: scaleX(1);
}

.premium-icon {
    width: 50px;
    /* Ikon lebih kecil */
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(0, 255, 136, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.premium-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 210, 255, 0.2);
    animation: spin 20s linear infinite;
}

.premium-icon i {
    font-size: 1.5rem;
    /* Font ikon lebih kecil */
    background: linear-gradient(135deg, #00d2ff, #00a3cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-service-card h3 {
    font-size: 1.15rem;
    /* Ukuran font diperbesar */
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
}

.premium-service-card p {
    font-size: 0.95rem;
    /* Ukuran font diperbesar */
    color: #666;
    line-height: 1.5;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: -1.5rem auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

.bg-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.mt-4 {
    margin-top: 2rem;
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .premium-services-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 kolom di mobile agar kotak */
        gap: 1rem;
    }

    .premium-service-card {
        padding: 1rem;
        aspect-ratio: 1/1;
        /* Tetap kotak di mobile */
    }

    .premium-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .premium-icon i {
        font-size: 1.2rem;
    }

    .premium-service-card h3 {
        font-size: 0.9rem;
    }

    .premium-service-card p {
        font-size: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* Batasi teks di mobile agar tidak merusak kotak */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* Why Us Mobile Fixes */
@media (max-width: 768px) {
    #why-us .text-content {
        text-align: center;
    }

    #why-us .section-title {
        text-align: center;
    }

    #why-us .btn-primary {
        display: inline-block;
        margin: 2rem auto 0;
        width: auto;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* Grid 2 kolom di mobile */
        gap: 1rem;
        margin-top: 2rem;
    }

    .benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        height: 100%;
    }

    .benefit-icon {
        margin-bottom: 1rem;
        width: 60px;
        height: 60px;
        background: rgba(0, 210, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .benefit-icon i {
        font-size: 1.5rem;
        color: var(--accent-color);
    }

    .benefit-text h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-text p {
        font-size: 0.85rem;
        color: #ccc;
    }
}

/* Mobile Button Logic */
.mobile-btn-consult {
    display: none;
}

@media (max-width: 768px) {

    /* Hide original button in text content on mobile */
    #why-us .text-content .btn-primary {
        display: none;
    }

    /* Show new button below image on mobile */
    .mobile-btn-consult {
        display: inline-flex;
        margin: 2rem auto 0;
        width: auto;
        justify-content: center;
        position: relative;
        z-index: 20;
        box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
    }

    .image-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 1rem;
    }

    /* FIX: Move Name Tag & Button below image on mobile */
    .photo-wrapper {
        flex-direction: column;
        display: flex !important;
        align-items: center;
    }

    .name-tag {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: -15px;
        /* Sedikit overlap ke atas atau 0 jika ingin terpisah total */
        margin-bottom: 1rem;
        width: 100%;
        max-width: 90%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: #1a1a1a;
        /* Solid background agar kebaca */
    }

    .mobile-btn-consult {
        margin-top: 0.5rem;
        /* Adjust margin since name-tag is now in flow */
        width: 80%;
        /* Lebar tombol menyesuaikan */
    }
}

/* FORCE DISABLE AOS ANIMATION ON MOBILE */
@media (max-width: 768px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        visibility: visible !important;
        pointer-events: auto !important;
        animation: none !important;
    }
}


.footer-col p i {
    width: 25px;
    text-align: center;
    flex-shrink: 0;
}

.badge-main-dealer {
    background: var(--accent-color);
    color: #000;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Promo Highlight Cards */
.premium-service-card.promo-highlight {
    border: 2px solid #f59e0b;
    background: linear-gradient(145deg, #fffbeb, #fff7d6);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
    position: relative;
}

.premium-service-card.promo-highlight::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.premium-service-card.promo-highlight:hover {
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
    border-color: #ef4444;
}

.badge-kuota {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 0 13px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    line-height: 1.4;
}

/* Image Modal (Lightbox) */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 95%;
    }
}

/* Modal Navigation */
.modal-prev,
.modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 2002;
    text-decoration: none;
}

.modal-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.modal-prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}

#gallery .section-title {
    text-align: center !important;
}

#location .section-title {
    text-align: center !important;
}