/* --- CORE VARIABLES --- */
:root {
    --bg-color: #030305; 
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --primary-gradient: linear-gradient(135deg, #00f2ea 0%, #00c2ff 100%);
    --neon-cyan: #00f2ea; 
    --neon-pink: #ff0050; 
    --neon-gold: #ffb700;
    --text-main: #e6f1ff;
    --text-muted: #94a3b8;
    --radius-std: 16px; 
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body { 
    background-color: var(--bg-color); 
    color: var(--text-main); 
    overflow-x: hidden; 
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 242, 234, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(112, 0, 255, 0.1), transparent 40%);
    background-attachment: fixed;
    display: flex; flex-direction: column; min-height: 100vh;
}
html { scroll-behavior: smooth; }

/* Responsive Images */
img { max-width: 100%; height: auto; display: block; }

/* --- UTILITIES --- */
.highlight { color: var(--neon-cyan); text-shadow: 0 0 12px rgba(0, 242, 234, 0.6); }
.gradient-text { 
    background: linear-gradient(90deg, #fff 0%, var(--neon-cyan) 50%, var(--neon-pink) 100%);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-weight: 800;
}

/* --- HEADER --- */
header { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 20px 5%; position: fixed; width: 100%; z-index: 1000; 
    background: rgba(8, 8, 10, 0.85); 
    backdrop-filter: blur(20px); 
    border-bottom: var(--glass-border); 
    transition: all 0.3s ease;
}
.logo { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; color: white; white-space: nowrap; }
.logo-img { height: 40px; width: auto; }

.nav-link { margin-right: 30px; color: var(--text-muted); font-weight: 500; text-decoration: none; transition: 0.3s; white-space: nowrap; }
.nav-link:hover { color: var(--neon-cyan); text-shadow: 0 0 8px var(--neon-cyan); }

.nav-btn { 
    padding: 10px 25px; background: rgba(255,255,255,0.05); border: var(--glass-border); color: white; 
    border-radius: 50px; transition: 0.3s; font-weight: 600; text-decoration: none; white-space: nowrap;
}
.nav-btn:hover { background: var(--neon-cyan); color: black; border-color: var(--neon-cyan); box-shadow: 0 0 15px rgba(0, 242, 234, 0.4); }

/* --- HERO --- */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; padding: 160px 20px 100px 20px; }

.badge { 
    background: rgba(0, 242, 234, 0.1); color: var(--neon-cyan); padding: 8px 20px; 
    border-radius: 50px; font-size: 0.8rem; margin-bottom: 30px; display: inline-block; 
    border: 1px solid rgba(0, 242, 234, 0.2); font-weight: 600; 
}

.hero h1 { 
    /* FLUID TYPOGRAPHY FOR MOBILE */
    font-size: clamp(2.5rem, 8vw, 4rem); 
    line-height: 1.1; margin-bottom: 25px; font-weight: 800; color: white; text-shadow: 0 0 20px rgba(255,255,255,0.1); 
}
.hero p { 
    font-size: clamp(1rem, 4vw, 1.2rem); 
    color: var(--text-muted); max-width: 600px; margin-bottom: 50px; margin-left: auto; margin-right: auto; 
}

.hero-btn { 
    padding: 16px 45px; background: var(--primary-gradient); border: none; 
    border-radius: 50px; font-size: 1.1rem; font-weight: bold; color: black; 
    cursor: pointer; box-shadow: 0 10px 30px rgba(0, 242, 234, 0.25); transition: 0.3s; 
}
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 242, 234, 0.4); }

.blob { position: absolute; width: 800px; height: 800px; background: radial-gradient(circle, rgba(0,242,234,0.05) 0%, rgba(0,0,0,0) 65%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1; animation: pulse 8s infinite alternate ease-in-out; pointer-events: none; }
@keyframes pulse { from { opacity: 0.5; transform: translate(-50%, -50%) scale(1); } to { opacity: 1; transform: translate(-50%, -50%) scale(1.1); } }

/* --- STATS BAR --- */
.stats-bar { display: flex; justify-content: center; gap: 60px; padding: 50px 5%; background: var(--glass-bg); border-top: var(--glass-border); border-bottom: var(--glass-border); margin: 40px 0; flex-wrap: wrap; backdrop-filter: blur(10px); }
.stat-item { flex: 1; min-width: 150px; text-align: center; } /* Improved flexibility */
.stat-num { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: white; text-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }
.stat-label { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* --- PARTNERS --- */
.partners-section { padding: 80px 5%; text-align: center; }
.partners-subtitle { color: var(--text-muted); margin-top: 10px; margin-bottom: 50px; }

.partners-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: 1300px; margin: 0 auto; }
.partner-card { 
    background: var(--glass-bg); border: var(--glass-border); padding: 30px 15px; 
    border-radius: var(--radius-std); display: flex; flex-direction: column; 
    align-items: center; justify-content: center; text-decoration: none; 
    transition: 0.4s; min-height: 180px; 
}
.partner-card:hover { transform: translateY(-8px); border-color: var(--neon-cyan); background: rgba(255,255,255,0.05); box-shadow: 0 0 15px rgba(0, 242, 234, 0.1); }
.partner-card img { width: 70px; height: 70px; border-radius: 50%; margin-bottom: 15px; border: 2px solid rgba(255,255,255,0.1); object-fit: cover; }
.partner-name { color: white; font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; text-align: center; }
.partner-followers { color: var(--text-muted); font-size: 0.85rem; display: flex; gap: 6px; align-items: center; justify-content: center; }
.live-indicator { width: 6px; height: 6px; background: #ff0050; border-radius: 50%; box-shadow: 0 0 5px #ff0050; animation: pulseLive 1s infinite; }
@keyframes pulseLive { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* --- PACKAGES --- */
.packages-section { padding: 100px 5%; }
.section-title { text-align: center; font-size: clamp(2rem, 5vw, 2.5rem); margin-bottom: 60px; font-weight: 800; color: white; text-shadow: 0 0 20px rgba(255,255,255,0.1); }
.cards-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; max-width: 1300px; margin: 0 auto; }

.card { 
    flex: 1 1 300px; max-width: 380px; width: 100%; background: #0e0e10; 
    border: var(--glass-border); padding: 40px 30px; border-radius: 24px; 
    position: relative; transition: 0.4s; overflow: hidden; 
}
.card:hover { transform: translateY(-10px); border-color: var(--neon-cyan); box-shadow: 0 0 25px rgba(0, 242, 234, 0.15); }
.card h3 { font-size: 1.5rem; margin-bottom: 5px; font-weight: 800; color: white; }
.price { font-size: 2rem; font-weight: 900; color: var(--neon-cyan); margin-bottom: 20px; text-shadow: 0 0 10px rgba(0, 242, 234, 0.4); }
.features { list-style: none; margin-bottom: 30px; }
.features li { margin-bottom: 15px; color: #ccc; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.features li i { color: var(--neon-cyan); text-shadow: 0 0 5px var(--neon-cyan); }

.card-btn { width: 100%; padding: 15px; background: rgba(255,255,255,0.05); border: var(--glass-border); color: white; border-radius: 12px; cursor: pointer; transition: 0.3s; font-weight: 700; }
.card-btn:hover { background: white; color: black; }
.card.featured { border: 1px solid var(--neon-cyan); background: rgba(0, 242, 234, 0.02); transform: scale(1.05); z-index: 2; box-shadow: 0 0 20px rgba(0, 242, 234, 0.1); }
.card.featured .card-btn { background: var(--neon-cyan); color: black; border: none; }
.popular-tag { position: absolute; top: 15px; right: -30px; background: var(--neon-cyan); color: black; font-weight: bold; padding: 5px 40px; transform: rotate(45deg); font-size: 0.8rem; }

/* --- CONTACT FORM (MODERN CREATIVE) --- */
.contact-section { padding: 0 5% 100px 5%; }
.contact-wrapper { 
    max-width: 850px; margin: 0 auto; 
    background: rgba(15, 15, 20, 0.6); 
    border: var(--glass-border); padding: 50px; border-radius: 30px; 
    box-shadow: 0 40px 80px rgba(0,0,0,0.5); 
    position: relative; overflow: hidden; backdrop-filter: blur(20px);
}
.contact-wrapper::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink)); }

.contact-header { text-align: center; margin-bottom: 40px; }
.contact-subtitle { color: var(--text-muted); margin-top: 10px; }

.contact-form { display: flex; flex-direction: column; gap: 25px; }
.form-row { display: flex; gap: 20px; flex-wrap: wrap; }
.form-group { flex: 1; display: flex; flex-direction: column; min-width: 250px; }
.form-group.full-width { width: 100%; }

.form-group label { 
    margin-bottom: 8px; color: #eee; font-size: 0.9rem; 
    font-weight: 600; letter-spacing: 0.3px; text-align: left; 
}

input[type="text"], input[type="tel"], textarea, select { 
    width: 100%; padding: 14px 18px; 
    background: rgba(0, 0, 0, 0.3); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 12px; color: var(--neon-cyan); 
    font-weight: 500; font-size: 1rem; transition: all 0.3s ease; 
    outline: none; text-align: left; 
}
textarea { border-radius: 16px; }
::placeholder { color: #666; opacity: 1; }
input:focus, textarea:focus, select:focus { 
    border-color: var(--neon-cyan); background: rgba(0, 242, 234, 0.03); 
    box-shadow: 0 0 10px rgba(0, 242, 234, 0.1); color: white; 
}

/* --- PACKAGE SELECTION --- */
.group-label { text-align: center; display: block; margin-bottom: 20px !important; color: white !important; font-size: 1rem !important; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }

.custom-checkbox { 
    position: relative; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; background: rgba(255, 255, 255, 0.02); 
    border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; 
    cursor: pointer; transition: all 0.2s ease; 
}
.custom-checkbox:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.2); }
.custom-checkbox:has(input:checked) {
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.08), transparent);
    border-color: var(--neon-cyan); box-shadow: 0 0 15px rgba(0, 242, 234, 0.15);
}
.custom-checkbox input { display: none; }
.chk-content { display: flex; flex-direction: column; gap: 2px; }
.chk-title { font-weight: 600; color: #eee; font-size: 0.95rem; }
.chk-price { font-size: 1rem; font-weight: 700; color: var(--neon-cyan); text-shadow: 0 0 5px rgba(0, 242, 234, 0.4); }
.checkmark { width: 22px; height: 22px; border: 2px solid #555; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.2s; flex-shrink: 0; margin-right: 10px; }
.custom-checkbox input:checked + .checkmark { background: var(--neon-cyan); border-color: var(--neon-cyan); box-shadow: 0 0 8px var(--neon-cyan); }
.custom-checkbox input:checked + .checkmark::after { content: '✓'; color: black; font-weight: bold; font-size: 13px; }

/* --- PREMIUM VIDEO EDITING SECTION --- */
.video-edit-section { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; margin-top: 20px; }

/* Main "Add Services" Toggle */
.video-main-chk { 
    width: 100%; margin-bottom: 20px; 
    flex-direction: row; align-items: center; justify-content: center; gap: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}
.video-main-chk:hover { background: rgba(255,255,255,0.03); border-color: var(--neon-cyan); }
.video-main-chk .checkmark { margin-bottom: 0; margin-right: 0; }

/* Sub-Options Container */
#videoSubOptions { 
    background: rgba(0,0,0,0.3); 
    padding: 20px; 
    border-radius: 24px; 
    border: 1px solid rgba(255,255,255,0.05); 
    display: flex; flex-direction: column; gap: 12px;
}

/* Service Strips */
.video-row { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 15px 20px; 
    background: rgba(255,255,255,0.03); 
    border-radius: 16px; 
    border: 1px solid transparent;
    transition: 0.3s ease;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 10px;
}

/* Hover Glow */
.video-row:hover { 
    background: rgba(255,255,255,0.06); 
    border-color: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

/* Selected Active State */
.video-row:has(input:checked) { 
    border-color: var(--neon-cyan); 
    background: linear-gradient(90deg, rgba(0,242,234,0.08), transparent); 
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.05);
}

.video-row .custom-checkbox.small { padding: 0; background: transparent; border: none; flex-direction: row; gap: 15px; min-height: auto; box-shadow: none; flex: 1; min-width: 200px; }
.video-row .chk-label { font-size: 0.95rem; color: #ccc; font-weight: 500; }
.video-row:has(input:checked) .chk-label { color: white; text-shadow: 0 0 8px rgba(255,255,255,0.5); }
.video-row .checkmark { position: static; margin: 0; width: 22px; height: 22px; border-color: #666; margin-right: 10px; }

.qty-wrapper { 
    display: flex; align-items: center; gap: 10px; 
    background: rgba(0,0,0,0.5); padding: 5px 10px; 
    border-radius: 30px; border: 1px solid rgba(255,255,255,0.1); 
    opacity: 0.5; transition: 0.3s;
}
.video-row:has(input:checked) .qty-wrapper { opacity: 1; border-color: #666; }

.qty-btn { width: 26px; height: 26px; background: #333; border: none; color: white; border-radius: 50%; cursor: pointer; font-weight: bold; transition: 0.2s; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.qty-btn:hover { background: var(--neon-cyan); color: black; }
.vid-qty-input { width: 35px !important; padding: 0 !important; border: none !important; background: transparent !important; text-align: center; font-weight: bold; height: auto; color: white; }

/* Form Footer */
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.total-price-display { display: flex; flex-direction: column; }
.total-price-display span:first-child { font-size: 0.9rem; color: var(--text-muted); }
#totalDisplay { font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: 800; display: inline-block; line-height: 1; color: white; margin-top: 5px; text-shadow: 0 0 15px rgba(255,255,255,0.4); }

.submit-btn { padding: 16px 45px; background: var(--neon-cyan); color: black; border-radius: 50px; border: none; font-size: 1.05rem; font-weight: 800; cursor: pointer; transition: 0.3s; box-shadow: 0 5px 20px rgba(0, 242, 234, 0.3); }
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,242,234,0.5); }
.payment-methods { display: flex; justify-content: center; gap: 15px; margin-top: 20px; color: #666; font-size: 1.2rem; align-items: center; }

/* --- FUTURISTIC CREATIVE FOOTER --- */
footer { margin-top: auto; padding: 80px 5% 50px; background: #030305; position: relative; border-top: 1px solid rgba(0, 242, 234, 0.1); overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent); box-shadow: 0 0 20px var(--neon-cyan); animation: scanline 6s linear infinite; opacity: 0.8; }
@keyframes scanline { 0% { transform: translateX(-100%); } 50% { transform: translateX(100%); } 100% { transform: translateX(100%); } }
footer::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; z-index: 0; }
.footer-container { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.footer-brand { flex: 1; min-width: 300px; }
.footer-text { color: #888; line-height: 1.7; margin-top: 20px; font-size: 0.9rem; max-width: 350px; }
.copyright-text { margin-top: 30px; font-size: 0.8rem; color: #555; font-family: 'Courier New', monospace; letter-spacing: 1px; }
.terms-link { color: var(--text-muted); font-size: 0.8rem; text-decoration: none; margin-top: 8px; display: inline-block; transition: 0.3s; border-bottom: 1px dotted #444; }
.terms-link:hover { color: var(--neon-cyan); border-color: var(--neon-cyan); text-shadow: 0 0 8px var(--neon-cyan); }
.footer-contact { flex: 1; min-width: 300px; display: flex; flex-direction: column; align-items: flex-end; }
.footer-contact h3 { font-size: 1.4rem; color: white; margin-bottom: 25px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; position: relative; display: inline-block; }
.footer-contact h3::after { content: ''; position: absolute; bottom: -5px; right: 0; width: 40px; height: 3px; background: var(--neon-pink); box-shadow: 0 0 10px var(--neon-pink); transition: 0.3s; }
.footer-contact:hover h3::after { width: 100%; }
.contact-row { display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.02); padding: 12px 25px; border-radius: 0px 20px 0px 20px; margin-bottom: 15px; transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.05); width: 100%; max-width: 380px; justify-content: flex-end; cursor: pointer; position: relative; overflow: hidden; }
.contact-row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--neon-cyan); transform: scaleY(0); transition: 0.3s; }
.contact-row:hover { background: rgba(0, 242, 234, 0.05); border-color: rgba(0, 242, 234, 0.3); padding-right: 35px; transform: translateX(-5px); }
.contact-row:hover::before { transform: scaleY(1); }
.contact-row i { font-size: 1.1rem; color: var(--neon-cyan); width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(0, 242, 234, 0.1); box-shadow: 0 0 10px rgba(0, 242, 234, 0.2); transition: 0.3s; }
.contact-row:hover i { background: var(--neon-cyan); color: black; box-shadow: 0 0 15px var(--neon-cyan); }
.contact-details a { color: #ccc; text-decoration: none; font-size: 0.95rem; font-weight: 500; display: block; transition: 0.2s; }
.contact-details a:hover { color: white; text-shadow: 0 0 5px white; }
.developer-credit { margin-top: 25px; padding-top: 15px; border-top: 1px dashed #333; font-size: 0.8rem; color: #666; font-family: 'Courier New', monospace; display: inline-flex; align-items: center; gap: 5px; }
.dev-link { color: #888; text-decoration: none; transition: 0.3s; }
.dev-link:hover { color: var(--neon-cyan); text-shadow: 0 0 10px var(--neon-cyan); }
.code-font { font-weight: bold; color: var(--neon-cyan); }

/* ... [MODAL STYLES (CHECKOUT) - UPDATED FOR MOBILE] ... */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); backdrop-filter: blur(10px); padding: 20px; overflow-y: auto; }

/* Default size for other modals (Terms) */
.modal-content, .terms-wrapper { margin: 5% auto; max-width: 700px; width: 100%; position: relative; }

/* CHECKOUT SPECIFIC SIZE */
.checkout-terminal { 
    margin: 2% auto; 
    max-width: 1100px; 
    width: 95%; 
    position: relative; 
    background: #0a0a0c; 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 50px 100px rgba(0,0,0,0.8); 
    animation: fadeUp 0.4s ease; 
    display: flex;
    flex-direction: column;
}

.koko-badge { background: white; color: #E91E63; font-size: 0.7rem; padding: 2px 6px; border-radius: 4px; margin-left: 5px; font-weight: 800; }
.hidden-option { display: none !important; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.terminal-header { background: rgba(255,255,255,0.03); padding: 20px 30px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.term-title { color: #fff; font-weight: 600; font-size: 1rem; letter-spacing: 1px; }
.close-modal { color: #888; cursor: pointer; font-size: 1.5rem; transition: 0.3s; line-height: 1; }
.close-modal:hover { color: white; }

.terminal-body { 
    display: flex; 
    flex-direction: row; /* Default to row for desktop */
    min-height: 600px; 
}

.holo-invoice-section { flex: 1; background: #080808; padding: 40px; border-right: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; }
.holo-header h3 { color: white; margin-bottom: 5px; font-size: 1.2rem; text-shadow: 0 0 10px rgba(255,255,255,0.1); }
.invoice-hash { color: #666; font-size: 0.8rem; margin-bottom: 30px; }
.holo-client-data { background: rgba(255,255,255,0.03); padding: 20px; border-radius: 12px; margin-bottom: 30px; }
.holo-client-data p { margin: 5px 0; color: #aaa; font-size: 0.9rem; }
.holo-table { width: 100%; margin-bottom: auto; border-collapse: collapse; }
.holo-table th { text-align: left; color: #666; padding: 10px 0; font-size: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.holo-table td { padding: 15px 0; color: white; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.text-right { text-align: right; }

.holo-total { 
    margin-top: 30px; 
    padding-top: 20px; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.holo-total span:first-child { font-size: 0.9rem; color: #aaa; letter-spacing: 1px; font-weight: 600; text-transform: uppercase; }
.mega-total { text-align: right; display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; }

.command-center-section { flex: 1.2; background: #0c0c0e; padding: 40px; display: flex; flex-direction: column; }
.cmd-title { color: #888; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; text-transform: uppercase; }
.payment-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.cmd-option input { display: none; }
.cmd-card { display: flex; align-items: center; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 20px; border-radius: 12px; cursor: pointer; transition: 0.3s; }
.cmd-card:hover { background: rgba(255,255,255,0.05); border-color: var(--neon-cyan); box-shadow: 0 0 10px rgba(0, 242, 234, 0.1); }
.cmd-icon { font-size: 1.5rem; margin-right: 20px; color: #666; }
.cmd-info { flex: 1; }
.cmd-name { display: block; color: white; font-weight: 600; font-size: 1rem; }
.cmd-sub { display: block; color: #666; font-size: 0.8rem; margin-top: 2px; }
.cmd-check { width: 20px; height: 20px; border: 2px solid #444; border-radius: 50%; margin-left: auto; position: relative; }
.cmd-option input:checked + .cmd-card { border-color: var(--neon-cyan); background: rgba(0, 242, 234, 0.05); }
.cmd-option input:checked + .cmd-card .cmd-icon { color: var(--neon-cyan); text-shadow: 0 0 5px var(--neon-cyan); }
.cmd-option input:checked + .cmd-card .cmd-check { border-color: var(--neon-cyan); background: var(--neon-cyan); box-shadow: 0 0 8px var(--neon-cyan); }

/* Koko & Reserve Special Colors */
.koko-card:hover { border-color: #E91E63; }
.cmd-option input:checked + .koko-card { border-color: #E91E63; background: rgba(233, 30, 99, 0.05); }
.cmd-option input:checked + .koko-card .cmd-icon { color: #E91E63; text-shadow: 0 0 5px #E91E63; }
.cmd-option input:checked + .koko-card .cmd-check { border-color: #E91E63; background: #E91E63; box-shadow: 0 0 8px #E91E63; }

.reserve-card:hover { border-color: var(--neon-gold); }
.cmd-option input:checked + .reserve-card { border-color: var(--neon-gold); background: rgba(255, 183, 0, 0.05); }
.cmd-option input:checked + .reserve-card .cmd-icon { color: var(--neon-gold); text-shadow: 0 0 5px var(--neon-gold); }
.cmd-option input:checked + .reserve-card .cmd-check { border-color: var(--neon-gold); background: var(--neon-gold); box-shadow: 0 0 8px var(--neon-gold); }
.reserve-screen p { color: var(--neon-gold); }
.reserve-btn { background: var(--neon-gold); color: black; }
.reserve-btn:hover { box-shadow: 0 10px 30px rgba(255, 183, 0, 0.3); transform: translateY(-2px); }

/* PayHere Glow */
.payhere-card:hover { border-color: #2979FF; }
.cmd-option input:checked + .payhere-card { border-color: #2979FF; background: rgba(41, 121, 255, 0.05); }
.cmd-option input:checked + .payhere-card .cmd-icon { color: #2979FF; text-shadow: 0 0 8px #2979FF; }
.cmd-option input:checked + .payhere-card .cmd-check { border-color: #2979FF; background: #2979FF; box-shadow: 0 0 10px #2979FF; }
.bank-card:hover { border-color: #25D366; }
.cmd-option input:checked + .bank-card { border-color: #25D366; background: rgba(37, 211, 102, 0.05); }
.cmd-option input:checked + .bank-card .cmd-icon { color: #25D366; text-shadow: 0 0 8px #25D366; }
.cmd-option input:checked + .bank-card .cmd-check { border-color: #25D366; background: #25D366; box-shadow: 0 0 10px #25D366; }

.action-console { margin-top: auto; }
.pay-section { display: none; animation: fadeIn 0.3s; }
.pay-section.active { display: block; }
.console-screen { background: rgba(0,0,0,0.3); padding: 15px; border-radius: 10px; font-size: 0.85rem; color: #aaa; margin-bottom: 15px; text-align: center; }
.console-screen p { margin: 3px 0; }
.glitch-btn { width: 100%; padding: 18px; background: white; color: black; border: none; border-radius: 50px; font-weight: 800; font-size: 1rem; cursor: pointer; transition: 0.3s; }
.glitch-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.2); }
.whatsapp-btn { background: #25D366; color: white; }
.whatsapp-btn:hover { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
.koko-btn { background: #E91E63; color: white; }
.koko-btn:hover { box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3); }

/* Terms Modal Styles */
.terms-wrapper { background: #0a0a0c; border-radius: 20px; overflow: hidden; }
.terms-header { padding: 30px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.terms-header h2 { font-size: 1.8rem; color: white; text-shadow: 0 0 10px rgba(255,255,255,0.1); }
.terms-body { padding: 40px; }
.term-block { display: flex; gap: 20px; margin-bottom: 30px; }
.t-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.05); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--neon-cyan); font-size: 1.2rem; flex-shrink: 0; box-shadow: 0 0 10px rgba(0,242,234,0.1); }
.t-text h3 { color: white; font-size: 1.1rem; margin-bottom: 5px; }
.t-text p { color: #aaa; font-size: 0.9rem; line-height: 1.6; }
.terms-agree-box { padding: 20px; text-align: center; background: rgba(0,242,234,0.05); border-top: 1px solid rgba(255,255,255,0.05); color: var(--neon-cyan); font-weight: 600; }
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #111; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: var(--neon-cyan); }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) { 
    .partners-grid { grid-template-columns: repeat(3, 1fr); } 
    .partner-card { min-height: 160px; } 
}

@media (max-width: 768px) {
    /* Header */
    header { flex-direction: column; gap: 15px; padding: 15px; }
    .nav-link { margin-right: 15px; font-size: 0.9rem; }
    
    /* Hero */
    .hero { padding: 140px 20px 60px; }
    .hero-btn { width: 100%; max-width: 300px; }

    /* Stats */
    .stats-bar { gap: 30px; padding: 30px 15px; }
    .stat-item { min-width: 45%; }
    
    /* Partners */
    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .partner-card { min-height: 150px; padding: 15px; }
    
    /* Contact Form */
    .contact-wrapper { padding: 30px 20px; }
    .checkbox-grid { grid-template-columns: 1fr; }
    .form-footer { flex-direction: column; text-align: center; }
    .submit-btn { width: 100%; }
    .video-row { flex-direction: column; align-items: flex-start; gap: 15px; }
    .video-row .custom-checkbox.small { width: 100%; justify-content: flex-start; }
    .qty-wrapper { margin-left: auto; width: 100%; justify-content: center; padding: 10px; }

    /* Footer */
    .footer-container { flex-direction: column; text-align: center; gap: 50px; }
    .footer-brand { text-align: center; align-items: center; display: flex; flex-direction: column; min-width: 100%; }
    .logo { justify-content: center; }
    .footer-text { margin-left: auto; margin-right: auto; }
    .footer-contact { align-items: center; min-width: 100%; margin-top: 40px; }
    .footer-contact h3::after { right: auto; left: 50%; transform: translateX(-50%); }
    .contact-row { justify-content: center; flex-direction: row-reverse; border-radius: 20px; width: 100%; }
    .contact-row:hover { transform: translateY(-3px); padding-right: 25px; }
    .contact-details { text-align: left; }

    /* Checkout Modal Mobile */
    .checkout-terminal { margin: 10px auto; width: 95%; max-height: 90vh; overflow-y: scroll; display: block; /* Allow block for scrolling */ }
    .terminal-body { flex-direction: column; min-height: auto; } 
    .holo-invoice-section { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 25px; }
    .command-center-section { padding: 25px; }
    .holo-total { flex-direction: row; align-items: center; }
    .mega-total div:nth-child(2) { font-size: 2rem !important; }
}

@media (max-width: 480px) { 
    .partners-grid { grid-template-columns: 1fr; } /* 1 column on very small screens */
    footer { padding: 50px 20px 30px; } 
    .hero h1 { font-size: 2.2rem; }
}
