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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #171717 0%, #2a2a2a 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #e8eaf6;
}

/* NAVBAR */
.navbar {
    background: linear-gradient(135deg, #202020 0%, #2d2d2d 100%);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid rgba(255,255,255,0.16);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

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

.logo-title {
    font-size: 26px;
    font-weight: 700;
    color: #f5f5dc;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-subtitle {
    font-size: 12px;
    color: #d4d4c8;
    letter-spacing: 1px;
}

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

.nav-link {
    color: #f5f5dc;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

/* HEADER */
header {
    background: linear-gradient(135deg, #121212 0%, #2b2b2b 100%);
    color: #f5f5dc;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid rgba(255,255,255,0.18);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

header h1 {
    font-size: 42px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

header p {
    font-size: 18px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    color: #d4d4c8;
}

/* SECTIONS */
.section {
    display: none;
    max-width: 1400px;
    margin: 0 auto 50px;
    width: 100%;
    padding: 0 40px;
}

.section.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

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

.section-title {
    font-size: 32px;
    color: #f5f5dc;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.9) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(255,255,255,0.12);
}

.hero-home {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    background: linear-gradient(135deg, #262626 0%, #343434 100%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

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

.hero-tag {
    display: inline-block;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #f5f5dc;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-copy h3 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.2;
    color: #f5f5dc;
    margin-bottom: 16px;
}

.hero-copy p {
    color: #d4d4c8;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.hero-btn {
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #d62828 0%, #b91c1c 100%);
    color: #fff;
}

.hero-btn.secondary {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.14);
    color: #f5f5dc;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

.stat-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.stat-box strong {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 8px;
}

.stat-box span {
    color: #d4d4c8;
    font-size: 14px;
}

/* PRODUCT GRID */
.mobil-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 10px 0;
    justify-items: center;
}

.mobil-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #373737 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
    max-width: 360px;
}

.mobil-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(34, 88, 187, 0.35);
    border-color: rgba(255, 214, 88, 0.45);
}

.mobil-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 35%), radial-gradient(circle at bottom right, rgba(255, 214, 88, 0.12), transparent 30%);
    pointer-events: none;
}

.mobil-info {
    width: 100%;
    height: 220px;
    background: linear-gradient(180deg, rgba(11, 33, 76, 0.95) 0%, rgba(15, 43, 95, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 60px;
    overflow: hidden;
    position: relative;
}

/* Overlay gelap saat hover */
.mobil-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobil-card:hover .mobil-info::before {
    opacity: 1;
}

/* Styling gambar */
.mobil-info img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-gallery {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-gallery .gallery-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery .gallery-image.active {
    display: block;
}

.product-gallery .gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(6, 21, 48, 0.85);
    color: #fff;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.product-gallery .gallery-prev { left: 12px; }
.product-gallery .gallery-next { right: 12px; }
.mobil-card:hover .product-gallery.has-multiple .gallery-arrow {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.product-gallery .gallery-dots {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.product-gallery .gallery-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
}

.product-gallery .gallery-dot.active { background: #ffd658; }

/* Detail Mobil */
.mobil-detail {
    padding: 18px 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.detail-row:nth-child(odd) {
    background: rgba(255, 214, 88, 0.06);
}

.detail-row:nth-child(even) {
    background: rgba(59, 130, 246, 0.06);
}

.detail-row:last-of-type {
    border-bottom: none;
}

.detail-row:last-of-type {
    border-bottom: none;
}

.detail-label {
    color: #999999;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    color: #e8e8d8;
    font-weight: 500;
    text-align: right;
}

.harga {
    font-size: 24px;
    font-weight: bold;
    color: #f5f5dc;
    text-align: right;
    margin: 15px 0 10px;
}

/* Tombol Aksi */
.mobil-action {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px 18px;
}

.mobil-action button {
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-detail {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #f8fafc;
    border: 2px solid rgba(96, 165, 250, 0.3);
    order: 1;
}

.btn-detail:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.btn-beli {
    background: linear-gradient(135deg, #facc15 0%, #fde047 100%);
    color: #0f172a;
    border: 2px solid rgba(251, 191, 36, 0.35);
    order: 2;
    font-size: 14px;
    padding: 13px 18px;
}

.btn-beli:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #fde68a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(250, 204, 21, 0.25);
}

/* ABOUT SECTION */
.about-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, 
        rgba(220, 80, 80, 0.6) 0%, 
        rgba(255, 165, 80, 0.6) 16.6%, 
        rgba(255, 215, 80, 0.6) 33.2%, 
        rgba(80, 220, 80, 0.6) 49.8%, 
        rgba(80, 180, 255, 0.6) 66.4%, 
        rgba(180, 80, 255, 0.6) 83%, 
        rgba(255, 80, 180, 0.6) 100%) 1;
}

.about-text h3 {
    font-size: 26px;
    color: #f5f5dc;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    font-size: 16px;
    color: #d4d4c8;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.feature-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    padding: 16px 20px;
    border-radius: 12px;
    color: #f5f5dc;
    font-weight: 600;
    font-size: 14px;
    border-left: 4px solid #666666;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 16px rgba(245, 245, 220, 0.15);
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
    border-left-color: #999999;
}

/* CONTACT SECTION */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.contact-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

/* Rainbow border pada setiap contact item */
.contact-item:nth-child(1) {
    border-left-color: rgba(220, 80, 80, 0.8);
}

.contact-item:nth-child(2) {
    border-left-color: rgba(80, 220, 80, 0.8);
}

.contact-item:nth-child(3) {
    border-left-color: rgba(80, 180, 255, 0.8);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 245, 220, 0.15);
}

.contact-item h4 {
    font-size: 18px;
    color: #f5f5dc;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-item p {
    color: #d4d4c8;
    font-size: 15px;
    line-height: 1.7;
}

/* MODAL */
.modal {
    display: none !important;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.modal.show {
    display: flex !important;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
    border: 2px solid #333333;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close,
.close-detail {
    color: #999999;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 20px;
}

.close:hover,
.close-detail:hover {
    color: #f5f5dc;
    transform: rotate(90deg);
}

.modal-content h2 {
    color: #f5f5dc;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
}

.modal-content p {
    color: #d4d4c8;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

/* FORM */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #f5f5dc;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #333333;
    border-radius: 10px;
    font-size: 15px;
    background-color: #0a0a0a;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #e8e8d8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666666;
    background-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    justify-content: flex-end;
}

.btn-submit,
.btn-cancel {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-submit {
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e8d8 100%);
    color: #0a0a0a;
    flex: 1;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 245, 220, 0.4);
}

.btn-cancel {
    background-color: #3a3a3a;
    color: #f5f5dc;
}

.btn-cancel:hover {
    background-color: #4a4a4a;
}

#cancelBtn {
    background-color: #3a3a3a;
    color: #f5f5dc;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}

#cancelBtn:hover {
    background-color: #4a4a4a;
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #d4d4c8;
    padding: 50px 40px 25px;
    margin-top: 80px;
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, 
        rgba(220, 80, 80, 0.8) 0%, 
        rgba(255, 165, 80, 0.8) 16.6%, 
        rgba(255, 215, 80, 0.8) 33.2%, 
        rgba(80, 220, 80, 0.8) 49.8%, 
        rgba(80, 180, 255, 0.8) 66.4%, 
        rgba(180, 80, 255, 0.8) 83%, 
        rgba(255, 80, 180, 0.8) 100%) 1;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #f5f5dc;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.footer-section h3 {
    font-size: 22px;
}

.footer-section h4 {
    font-size: 16px;
}

.footer-section p,
.footer-section ul li {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #d4d4c8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #d4d4c8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f5f5dc;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(245, 245, 220, 0.1);
    color: #f5f5dc;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background-color: rgba(245, 245, 220, 0.2);
    color: #f5f5dc;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(245, 245, 220, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333333;
    font-size: 13px;
    color: #b8b8a8;
}

/* ADMIN PANEL */
.admin-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(8px);
}

.admin-panel.hidden {
    display: none !important;
}

.admin-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 35px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    border: 2px solid #333333;
}

.admin-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999999;
    transition: all 0.3s ease;
}

.admin-close:hover {
    color: #f5f5dc;
    transform: rotate(90deg);
}

.admin-content h2 {
    color: #f5f5dc;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
}

.admin-info {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 5px solid #666666;
}

.admin-info p {
    margin-bottom: 12px;
    font-size: 15px;
    color: #d4d4c8;
    line-height: 1.6;
}

.admin-btn {
    width: 100%;
    padding: 14px 25px;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e8d8 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 245, 220, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .section {
        padding: 0 20px;
    }

    .mobil-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mobil-info {
        height: 200px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

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

    .admin-content {
        padding: 25px 20px;
    }

    header h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .mobil-info {
        height: 180px;
    }

    .mobil-detail {
        padding: 15px 18px;
    }

    .mobil-action {
        padding: 0 18px 15px;
    }
    
    .haha {
        display: flex;
      }
      
      .hah {
        background-color: black;
        border-radius: 34px;
        height: 34px;
        width: 200px;
        z-index: 6;
        position: absolute;
        top: 310px;
        left: 100px;
        animation: gas 3s infinite;
      }
      
      @keyframes gas {
        0% {
          transform: translatex(0%);
          opacity: 0;
        }
      
        20% {
          opacity: 1;
        }
      
        100% {
          transform: translatex(500%);
          opacity: 0;
        }
      }
      
      .anime {
        margin-top: 305px;
        display: flex;
        inset: 0;
        justify-content: space-between;
      }
      
      .anim {
        background-color: aqua;
        width: 14px;
        height: 160px;
        z-index: 1;
        border-radius: 23px;
        animation: fall 5s infinite ;
      }
      
      .anim:nth-child(1)  { animation-delay: 0.1s; animation-duration: 4s; }
      .anim:nth-child(2)  { animation-delay: 0.2s; animation-duration: 4s; }
      .anim:nth-child(3)  { animation-delay: 0.3s; animation-duration: 4s; }
      .anim:nth-child(4)  { animation-delay: 0.4s; animation-duration: 4s; }
      .anim:nth-child(5)  { animation-delay: 0.5s; animation-duration: 4s; }
      .anim:nth-child(6)  { animation-delay: 0.6s; animation-duration: 4s; }
      .anim:nth-child(7)  { animation-delay: 0.7s; animation-duration: 4s; }
      .anim:nth-child(8)  { animation-delay: 0.8s; animation-duration: 4s; }
      .anim:nth-child(9)  { animation-delay: 0.9s; animation-duration: 4s; }
      .anim:nth-child(10) { animation-delay: 1.0s; animation-duration: 4s; }
      .anim:nth-child(11) { animation-delay: 1.1s; animation-duration: 4s; }
      .anim:nth-child(12) { animation-delay: 1.2s; animation-duration: 4s; }
      .anim:nth-child(13) { animation-delay: 1.3s; animation-duration: 4s; }
      .anim:nth-child(14) { animation-delay: 1.4s; animation-duration: 4s; }
      .anim:nth-child(15) { animation-delay: 1.5s; animation-duration: 4s; }
      .anim:nth-child(16) { animation-delay: 1.6s; animation-duration: 4s; }
      .anim:nth-child(17) { animation-delay: 1.7s; animation-duration: 4s; }
      .anim:nth-child(18) { animation-delay: 1.8s; animation-duration: 4s; }
      .anim:nth-child(19) { animation-delay: 1.9s; animation-duration: 4s; }
      .anim:nth-child(20) { animation-delay: 2.0s; animation-duration: 4s; }
      .anim:nth-child(21) { animation-delay: 2.1s; animation-duration: 4s; }
      .anim:nth-child(22) { animation-delay: 2.2s; animation-duration: 4s; }
      .anim:nth-child(23) { animation-delay: 2.3s; animation-duration: 4s; }
      .anim:nth-child(24) { animation-delay: 2.4s; animation-duration: 4s; }
      
      @keyframes fall {
        50%{
          transform: translatey(-100%);
        }
        100%{
          transform: translateY(0%);
        }
      }
      
      .animel {
        display: flex;
        justify-content: space-between;
      }
      
      .anima {
        background-color: aqua;
        width: 14px;
        height: 160px;
        z-index: 1;
        border-radius: 34px;
        animation: zi 5s infinite ;
      }
      
      .anima:nth-child(1)  { animation-delay: 0.1s; animation-duration: 4s; }
      .anima:nth-child(2)  { animation-delay: 0.2s; animation-duration: 4s; }
      .anima:nth-child(3)  { animation-delay: 0.3s; animation-duration: 4s; }
      .anima:nth-child(4)  { animation-delay: 0.4s; animation-duration: 4s; }
      .anima:nth-child(5)  { animation-delay: 0.5s; animation-duration: 4s; }
      .anima:nth-child(6)  { animation-delay: 0.6s; animation-duration: 4s; }
      .anima:nth-child(7)  { animation-delay: 0.7s; animation-duration: 4s; }
      .anima:nth-child(8)  { animation-delay: 0.8s; animation-duration: 4s; }
      .anima:nth-child(9)  { animation-delay: 0.9s; animation-duration: 4s; }
      .anima:nth-child(10) { animation-delay: 1.0s; animation-duration: 4s; }
      .anima:nth-child(11) { animation-delay: 1.1s; animation-duration: 4s; }
      .anima:nth-child(12) { animation-delay: 1.2s; animation-duration: 4s; }
      .anima:nth-child(13) { animation-delay: 1.3s; animation-duration: 4s; }
      .anima:nth-child(14) { animation-delay: 1.4s; animation-duration: 4s; }
      .anima:nth-child(15) { animation-delay: 1.5s; animation-duration: 4s; }
      .anima:nth-child(16) { animation-delay: 1.6s; animation-duration: 4s; }
      .anima:nth-child(17) { animation-delay: 1.7s; animation-duration: 4s; }
      .anima:nth-child(18) { animation-delay: 1.8s; animation-duration: 4s; }
      .anima:nth-child(19) { animation-delay: 1.9s; animation-duration: 4s; }
      .anima:nth-child(20) { animation-delay: 2.0s; animation-duration: 4s; }
      .anima:nth-child(21) { animation-delay: 2.1s; animation-duration: 4s; }
      .anima:nth-child(22) { animation-delay: 2.2s; animation-duration: 4s; }
      .anima:nth-child(23) { animation-delay: 2.3s; animation-duration: 4s; }
      .anima:nth-child(24) { animation-delay: 2.4s; animation-duration: 4s; }
      
      @keyframes zi {
        50%{
          transform: translatey(100%);
        }
        100%{
          transform: translateY(-0%);
        }
      }
      
      
}

/* GY-Techautocar light theme */
body {
    background: #ffffff !important;
    color: #24120f !important;
}

.container {
    background: #ffffff;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(91, 34, 20, 0.12);
    border-bottom: 3px solid #f97316;
    border-image: linear-gradient(90deg, #b42318, #f97316) 1;
}

.logo-title,
.nav-link {
    color: #8f1d14;
    text-shadow: none;
}

.logo-subtitle,
header p {
    color: #7c5b52;
}

.nav-link:hover {
    background: #fff1eb;
    color: #c2410c;
    box-shadow: none;
}

header {
    background: #ffffff !important;
    color: #64140e;
    border-bottom: 3px solid #f97316;
    border-image: linear-gradient(90deg, #b42318, #f97316) 1;
}

header h1,
.section-title {
    color: #8f1d14;
    text-shadow: none;
}

.section-title::after {
    background: linear-gradient(90deg, #b42318, #f97316);
    box-shadow: 0 2px 12px rgba(249, 115, 22, 0.25);
}

.mobil-card {
    background: #ffffff !important;
    border: 1px solid #f1c8bb;
    box-shadow: 0 14px 34px rgba(91, 34, 20, 0.12);
}

.mobil-card:hover {
    box-shadow: 0 18px 38px rgba(180, 35, 24, 0.18);
    border-color: #f97316;
}

.mobil-card::before {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), transparent 55%);
}

.mobil-info {
    background: #fff4ef;
}

.detail-row:nth-child(odd) {
    background: #fff8f5;
}

.detail-row:nth-child(even) {
    background: #fff1eb;
}

.detail-label {
    color: #9a6255;
}

.detail-value,
.harga {
    color: #3f1d17;
}

.btn-detail {
    background: #8f1d14;
    color: #ffffff;
    border-color: #8f1d14;
}

.btn-detail:hover {
    background: #b42318;
    box-shadow: 0 4px 16px rgba(180, 35, 24, 0.22);
}

.btn-beli {
    background: #f97316;
    color: #ffffff;
    border-color: #ea580c;
}

.btn-beli:hover {
    background: #ea580c;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.about-content,
.contact-item {
    background: #fff8f5 !important;
    border-color: #f1c8bb;
    box-shadow: 0 10px 28px rgba(91, 34, 20, 0.1);
}

.about-text h3,
.contact-item h4 {
    color: #8f1d14;
}

.about-text p,
.contact-item p {
    color: #68463e;
}

.feature-item {
    background: #ffffff;
    color: #4a241c;
    border-left-color: #f97316;
    box-shadow: 0 4px 12px rgba(91, 34, 20, 0.08);
}

.feature-item:hover {
    background: #fff1eb;
    border-left-color: #b42318;
    box-shadow: 0 6px 16px rgba(180, 35, 24, 0.12);
}

.contact-item:nth-child(1),
.contact-item:nth-child(2),
.contact-item:nth-child(3) {
    border-left-color: #f97316;
}

.modal {
    background-color: rgba(63, 29, 23, 0.58);
}

.modal-content,
.admin-content {
    background: #ffffff !important;
    border-color: #f1c8bb;
}

.modal-content h2,
.modal-content p,
.form-group label,
.close,
.close-detail {
    color: #8f1d14;
}

.form-group input,
.form-group textarea {
    background: #fffaf8;
    border-color: #e8b9aa;
    color: #3f1d17;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f97316;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16);
}

.btn-submit {
    background: #f97316;
    color: #ffffff;
}

.btn-cancel,
#cancelBtn {
    background: #8f1d14;
    color: #ffffff;
}

.btn-cancel:hover,
#cancelBtn:hover {
    background: #b42318;
}

.footer {
    background: #8f1d14;
    color: #fff8f5;
    border-top: 4px solid #f97316;
    border-image: linear-gradient(90deg, #b42318, #f97316) 1;
    box-shadow: 0 -4px 20px rgba(91, 34, 20, 0.16);
}

.footer-section h3,
.footer-section h4,
.footer-section p,
.footer-section ul li,
.footer-section ul li a,
.social-icon,
.footer-bottom {
    color: #ffffff;
    text-shadow: none;
}

.social-icon {
    background: rgba(255, 255, 255, 0.16);
}

.social-icon:hover {
    background: #f97316;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.28);
}

/* Restore original dark storefront theme */
body { background: linear-gradient(135deg, #1b1b1b 0%, #2b2b2b 100%) !important; color: #e8eaf6 !important; }
.container { background: transparent !important; }
.navbar { background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%); border-image: linear-gradient(90deg, #ffffff, #ffffff) 1; }
.logo-title, .nav-link { color: #f5f5dc; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.logo-subtitle, header p { color: #d4d4c8; }
.nav-link:hover { background-color: rgba(255, 255, 255, 0.1); color: #f5f5dc; box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1); }
header { background: linear-gradient(rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54)), url('/images/gy-banner.jpg.png') center/cover no-repeat !important; color: #f5f5dc; border-image: linear-gradient(90deg, #ffffff, #ffffff) 1; }
header h1, .section-title { color: #f5f5dc; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.section-title::after { background: #ffffff !important; }
.mobil-card { background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%) !important; border-color: rgba(255, 255, 255, 0.12); box-shadow: 0 18px 45px rgba(0, 0, 0, 0.30); }
.mobil-card:hover { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38); border-color: rgba(255, 255, 255, 0.18); }
.mobil-card::before { background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 35%), radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 30%); }
.mobil-info { background: linear-gradient(180deg, rgba(48, 48, 48, 0.95) 0%, rgba(56, 56, 56, 0.95) 100%); }
.detail-row:nth-child(odd) { background: rgba(255, 255, 255, 0.04); }
.detail-row:nth-child(even) { background: rgba(255, 255, 255, 0.02); }
.detail-label { color: #bbbbbb; }
.detail-value, .harga { color: #f0f0f0; }
.btn-detail { background: linear-gradient(135deg, #3a3a3a 0%, #505050 100%); color: #f8fafc; border-color: rgba(255,255,255,0.12); }
.btn-beli { background: linear-gradient(135deg, #d62828 0%, #b91c1c 100%); color: #ffffff; border-color: rgba(255,255,255,0.18); }
.btn-detail:hover { background: linear-gradient(135deg, #545454 0%, #666666 100%); }
.btn-beli:hover { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.about-content, .contact-item { background: linear-gradient(135deg, #2a2a2a 0%, #303030 100%) !important; border-color: transparent; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); }
.about-text h3, .contact-item h4 { color: #f5f5dc; }
.about-text p, .contact-item p { color: #d4d4c8; }
.feature-item { background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%); color: #f5f5dc; border-left-color: #888888; }
.modal { background-color: rgba(0, 0, 0, 0.85); }
.modal-content, .admin-content { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important; border-color: #333333; }
.modal-content h2, .modal-content p, .form-group label, .close, .close-detail { color: #f5f5dc; }
.form-group input, .form-group textarea { background-color: #0a0a0a; border-color: #333333; color: #e8e8d8; }
.form-group input:focus, .form-group textarea:focus { border-color: #666666; background-color: #1a1a1a; }
.btn-submit { background: linear-gradient(135deg, #f5f5dc 0%, #e8e8d8 100%); color: #0a0a0a; }
.btn-cancel, #cancelBtn { background-color: #3a3a3a; color: #f5f5dc; }
.footer { background: linear-gradient(135deg, #111111 0%, #1f1f1f 100%); color: #d4d4c8; border-image: linear-gradient(90deg, #ffffff, #ffffff) 1; }
.footer-section h3, .footer-section h4, .footer-section p, .footer-section ul li, .footer-section ul li a, .social-icon, .footer-bottom { color: #f5f5dc; }
.social-icon { background-color: rgba(245, 245, 220, 0.08); }