/* ==== LOCATIONS ==== */
            .locations {
                text-align: center;
            }
            
            .location-cards {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
                margin-top: 50px;
            }
            
            .location-card {
                background: rgba(20, 20, 20, 0.8);
                padding: 30px;
                border-radius: 10px;
                transition: all 0.3s;
            }
            
            .location-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            }
            
            .location-card h3 {
                color: var(--primary);
                margin-bottom: 15px;
            }
            
            .location-address {
                margin-bottom: 15px;
                color: var(--secondary);
            }
            
            .location-link {
                color: var(--accent);
                text-decoration: none;
                font-weight: 600;
            }
            


            .location-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-btn {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #333;
    border-radius: 8px;
    text-decoration: none;
    font-weight: normal;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    font-size: 14px;
}

.location-btn i {
    margin-left: 6px;
    color: #ff3b30; /* Warna merah untuk ikon pin maps */
}

.location-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.location-btn:active {
    background: #eee;
}


    /* ===== Booking Form ===== */
    .cyber-form {
        background: rgba(10, 10, 18, 0.7);
        border: 1px solid var(--neon-blue);
        padding: 25px;
        box-shadow: 0 0 20px rgba(58, 168, 255, 0.1);
        position: relative;
    }
    
    .cyber-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    }
    
    .message-form {
        display: grid;
        gap: 20px;
    }
    
    .cyber-input {
        position: relative;
    }
    
    .cyber-input label {
        display: block;
        color: var(--neon-blue);
        margin-bottom: 8px;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .cyber-input input,
    .cyber-input select {
        width: 100%;
        padding: 12px 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid #334155;
        color: white;
        font-family: inherit;
        font-size: 1rem;
    }
    
    .cyber-input input:focus,
    .cyber-input select:focus {
        outline: none;
    }
    
    .cyber-underline {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--neon-blue);
        transition: width 0.3s;
    }
    
    .cyber-input input:focus ~ .cyber-underline,
    .cyber-input select:focus ~ .cyber-underline {
        width: 100%;
    }
    
    /* Time Selection */
    .time-options {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }
    
    .cyber-radio {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        position: relative;
    }
    
    .cyber-radio input {
        position: absolute;
        opacity: 0;
    }
    
    .cyber-radio-btn {
        width: 18px;
        height: 18px;
        border: 2px solid var(--neon-blue);
        position: relative;
    }
    
    .cyber-radio-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background: var(--neon-blue);
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .cyber-radio input:checked ~ .cyber-radio-btn::before {
        opacity: 1;
    }
    
    .cyber-radio-text {
        color: #94a3b8;
        transition: color 0.3s;
    }
    
    .cyber-radio input:checked ~ .cyber-radio-text {
        color: var(--neon-blue);
    }
    
        /* Footer Styles */
    .footer {
        background: #0a192f;
        color: #e6f1ff;
        padding: 60px 0 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .footer-title {
        font-size: 1.5rem;
        color: #64ffda;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background: #64ffda;
    }
    
    .footer-description {
        line-height: 1.6;
        margin-bottom: 20px;
        color: #ccd6f6;
    }
    
    .contact-item {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
        align-items: flex-start;
    }
    
    .contact-item i {
        color: #64ffda;
        font-size: 1.2rem;
        margin-top: 3px;
    }
    
    .contact-item h4 {
        margin-bottom: 5px;
        color: #e6f1ff;
    }
    
    .contact-item p {
        color: #8892b0;
        margin: 0;
    }
    
    .footer-links ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-links a {
        color: #ccd6f6;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .footer-links a:hover {
        color: #64ffda;
        transform: translateX(5px);
    }
    
    /* Contact Form */
    .message-form {
        display: grid;
        gap: 15px;
    }
    
    .message-form input,
    .message-form textarea {
        padding: 12px 15px;
        border-radius: 5px;
        border: 1px solid #233554;
        background: #112240;
        color: #e6f1ff;
        font-family: inherit;
        transition: all 0.3s ease;
    }
    
    .message-form input:focus,
    .message-form textarea:focus {
        outline: none;
        border-color: #64ffda;
        box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.2);
    }
    
    .submit-btn {
        background: #0a192f;
        color: #64ffda;
        border: 1px solid #64ffda;
        padding: 12px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .submit-btn:hover {
        background: rgba(100, 255, 218, 0.1);
        transform: translateY(-3px);
    }
    
    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #112240 0%, #0a192f 100%);
        border-radius: 10px;
        padding: 40px;
        text-align: center;
        margin-bottom: 40px;
        border: 1px solid #233554;
        position: relative;
        overflow: hidden;
    }
    
    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
        animation: rotate 15s linear infinite;
    }
    
    @keyframes rotate {
        100% {
            transform: rotate(360deg);
        }
    }
    
    .cta-content {
        position: relative;
        z-index: 1;
    }
    
    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: #e6f1ff;
    }
    
    .cta-section p {
        color: #8892b0;
        margin-bottom: 25px;
        font-size: 1.1rem;
    }
    
    .cta-button {
        background: #64ffda;
        color: #0a192f;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        margin-bottom: 25px;
        box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
    }
    
    .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
    }
    
    .cta-badge {
        position: absolute;
        top: -10px;
        right: -10px;
        background: #ff5555;
        color: white;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: bold;
    }
    
    /* Social Links */
    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
    }
    
    .whatsapp { background: #25D366; }
    .facebook { background: #1877F2; }
    .instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
    .tiktok { background: #000000; }
    
    .social-link:hover {
        transform: translateY(-5px) scale(1.1);
    }
    
    /* Copyright */
    .copyright {
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid #233554;
        color: #8892b0;
        font-size: 0.9rem;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
        
        .cta-section {
            padding: 30px 20px;
        }
        
        .cta-section h2 {
            font-size: 1.5rem;
        }
    }

    /* ===== Cyberpunk Base Styles ===== */
    :root {
        --neon-blue: #3aa8ff;
        --neon-pink: #ff2a6d;
        --neon-green: #05f0ff;
        --dark-bg: #0a0a12;
        --darker-bg: #06060a;
        --cyber-text: #e2e8f0;
        --cyber-accent: #00f7ff;
    }
    
    @font-face {
        font-family: 'Cyber';
        src: url('https://fonts.cdnfonts.com/css/cyberpunk-is-not-dead');
    }
    
    /* ===== Animation Keyframes ===== */
    @keyframes flicker {
        0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
        20%, 22%, 24%, 55% { opacity: 0.4; }
    }
    
    @keyframes fastFlicker {
        0%, 10%, 12%, 14%, 16%, 18%, 20%, 100% { opacity: 1; }
        11%, 13%, 15%, 17%, 19% { opacity: 0.3; }
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.6; }
    }
    
    @keyframes glitch {
        0% { text-shadow: 0.05em 0 0 var(--neon-blue), -0.05em -0.025em 0 var(--neon-pink); }
        14% { text-shadow: 0.05em 0 0 var(--neon-blue), -0.05em -0.025em 0 var(--neon-pink); }
        15% { text-shadow: -0.05em -0.025em 0 var(--neon-blue), 0.025em 0.025em 0 var(--neon-pink); }
        49% { text-shadow: -0.05em -0.025em 0 var(--neon-blue), 0.025em 0.025em 0 var(--neon-pink); }
        50% { text-shadow: 0.025em 0.05em 0 var(--neon-blue), 0.05em 0 0 var(--neon-pink); }
        99% { text-shadow: 0.025em 0.05em 0 var(--neon-blue), 0.05em 0 0 var(--neon-pink); }
        100% { text-shadow: -0.025em 0 0 var(--neon-blue), -0.025em -0.025em 0 var(--neon-pink); }
    }
    
    @keyframes scanline {
        0% { transform: translateY(0); }
        100% { transform: translateY(100%); }
    }   
    /* ===== Services Section ===== */
    .cyber-links {
        display: flex;
        flex-direction: column;
    }
    
    .cyber-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }
    
    .cyber-list li {
        margin-bottom: 15px;
        position: relative;
    }
    
    .cyber-list li::before {
        content: '>';
        color: var(--neon-blue);
        margin-right: 10px;
    }
    
    .link-hover {
        color: #94a3b8;
        position: relative;
        transition: color 0.3s;
    }
    
    .link-hover::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--neon-blue);
        transition: width 0.3s;
    }
    
    .cyber-list a:hover .link-hover {
        color: var(--neon-blue);
    }
    
    .cyber-list a:hover .link-hover::after {
        width: 100%;
    }
    
    /* Guarantee Notes */
    .cyber-notes {
        background: rgba(58, 168, 255, 0.05);
        border-left: 3px solid var(--neon-blue);
        padding: 15px;
        margin-top: 25px;
    }
    
    .cyber-notes p {
        color: #94a3b8;
        font-size: 0.85rem;
        margin-bottom: 10px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cyber-notes i {
        color: var(--neon-blue);
    }
    
    /* CTA Button */
    .cyber-cta {
        background: rgba(58, 168, 255, 0.1);
        color: var(--neon-blue);
        padding: 12px 20px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        position: relative;
        overflow: hidden;
        border: 1px solid var(--neon-blue);
        transition: all 0.3s;
    }
    
    .cyber-cta:hover {
        background: rgba(58, 168, 255, 0.2);
        box-shadow: 0 0 15px var(--neon-blue);
    }
    
    /* ===== Footer Bottom ===== */
    .cyber-footer {
        border-top: 1px solid var(--neon-blue);
        padding: 20px 0;
        position: relative;
        overflow: hidden;
    }
    
    .scanline {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
        animation: scanline 6s linear infinite;
    }
    
    .cyber-copyright {
        color: #64748b;
        font-size: 0.8rem;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* ===== Responsive Design ===== */
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .footer {
            padding: 40px 0 0;
        }
        
        .time-options {
            flex-direction: column;
        }
        
        .footer-title {
            font-size: 1.5rem;
        }
    }

            /* ==== GLOBAL VARIABLES ==== */
        :root {
            --primary: #0066ff;
            --primary-light: rgba(0, 102, 255, 0.1);
            --secondary: #e0e0e0;
            --dark: #0a0a0a;
            --darker: #050505;
            --accent: #00ffcc;
            --accent-dark: #00cca3;
            --text: #ffffff;
            --text-muted: #aaaaaa;
            --card-bg: rgba(30, 30, 30, 0.8);
            --whatsapp: #25D366;
            --facebook: #1877F2;
            --instagram: #E4405F;
            --tiktok: #000000;
        }

        /* ==== CONTACT SECTION ==== */
        .contact {
            padding: 6rem 0;
            text-align: center;
            background: linear-gradient(135deg, var(--darker), var(--dark));
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 20%, rgba(0,255,204,0.05) 0%, transparent 50%);
            z-index: 0;
        }

        .contact .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.2rem;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        .section-subtitle::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-card {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border: 1px solid rgba(0, 102, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(5px);
            position: relative;
            overflow: hidden;
        }

        .contact-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: all 0.3s;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
        }

        .contact-card:hover::after {
            height: 8px;
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: all 0.3s;
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.1) translateY(-5px);
        }

        .contact-card h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .contact-info {
            color: var(--secondary);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 1.8rem;
            color: white;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
            transform: translateY(-100%);
            transition: all 0.3s;
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        .social-link:hover::before {
            transform: translateY(0);
        }

        .whatsapp { background-color: var(--whatsapp); }
        .facebook { background-color: var(--facebook); }
        .instagram { 
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }
        .tiktok { background-color: var(--tiktok); }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(0,102,255,0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact {
                padding: 4rem 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }