/* CYBER ARCHITECTURE THEME - KINTO ROOT */
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Jura:wght@300;400;500;600;700&family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-base: #030712;
    --bg-surface: #111827;
    --gold: #d4af37;
    --gold-dim: rgba(212, 175, 55, 0.2);
    --gold-glow: rgba(212, 175, 55, 0.5);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent: #3b82f6; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg-base); color: var(--text-main); font-family: 'Jura', sans-serif; overflow-x: hidden; }

/* Glowing Cursor Follower */
#glow-cursor {
    position: fixed; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%); pointer-events: none; z-index: 1; mix-blend-mode: screen; opacity: 0.6; transition: 0.1s ease-out;
}

/* Utilities */
.container { width: 90%; max-width: 1300px; margin: 0 auto; position: relative; z-index: 10; }
.text-center { text-align: center; } .text-gold { color: var(--gold); }
.text-danger { color: #f43f5e; } .text-success { color: #10b981; } .text-muted { color: var(--text-muted); }
.bold { font-weight: 700; } .w-100 { width: 100%; }
.mt-20 { margin-top:20px; } .mt-40 { margin-top:40px; } .mt-50 { margin-top:50px; }
.pb-50 { padding-bottom:50px; } .pt-100 { padding-top:100px; } .pb-100 { padding-bottom:100px; }

h1,h2,h3,h4 { font-family: 'Syncopate', sans-serif; letter-spacing: 1px; }

/* Custom Badge */
.cyber-badge {
    display: inline-block; border: 1px solid var(--gold); color: var(--gold); padding: 5px 15px;
    font-size: 0.8rem; letter-spacing: 3px; font-weight: 700; border-radius: 2px;
    background: var(--gold-dim); box-shadow: 0 0 10px var(--gold-glow);
}

/* Buttons */
.btn-solid-gold {
    display: inline-block; padding: 15px 35px; background: var(--gold); color: #000;
    font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
    font-family: 'Outfit', sans-serif; border: 1px solid var(--gold); cursor: pointer;
    transition: 0.3s; position: relative; overflow: hidden; font-size: 1rem; text-decoration: none;
}
.btn-solid-gold:hover {
    background: transparent; color: var(--gold); box-shadow: 0 0 20px var(--gold-glow) inset, 0 0 20px var(--gold-glow);
}

.btn-small-glow {
    color: var(--gold); font-family: 'Outfit', sans-serif; font-weight: 600; text-transform: uppercase;
    font-size: 0.8rem; letter-spacing: 2px; display: inline-block; margin-top: 15px; border-bottom: 1px solid transparent; transition: 0.3s; text-decoration: none;
}
.btn-small-glow:hover { border-bottom: 1px solid var(--gold); text-shadow: 0 0 10px var(--gold); transform: translateX(5px); }

/* Header Elements */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 999; display: flex; justify-content: space-between;
    align-items: center; padding: 25px 5%; transition: 0.4s; border-bottom: 1px solid transparent;
}
header.scrolled {
    background: rgba(3, 7, 18, 0.85); backdrop-filter: blur(15px); padding: 15px 5%;
    border-bottom: 1px solid rgba(255,255,255,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.logo { display: flex; align-items: center; gap: 15px; text-decoration: none; font-size: 1.6rem; font-family: 'Syncopate', sans-serif; font-weight: 700; color: #fff; letter-spacing: 2px; }
.logo .dot { color: var(--gold); }
.logo-img { max-height: 50px; width: auto; transition: 0.3s; border-radius: 6px; }
header.scrolled .logo-img { max-height: 40px; }
header.scrolled .logo { font-size: 1.4rem; }
nav ul { display: flex; list-style: none; gap: 30px; }
nav a { color: var(--text-main); font-size: 0.85rem; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; transition: 0.3s; text-decoration: none;}
nav a:hover { color: var(--gold); text-shadow: 0 0 8px var(--gold); }

.header-actions { display: flex; gap: 20px; align-items: center; }
.btn-app-login { color: #fff; font-size: 0.85rem; font-weight: 600; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); padding: 8px 20px; border-radius: 4px; transition: 0.3s; }
.btn-app-login:hover { border-color: var(--accent); color: var(--accent); background: rgba(59, 130, 246, 0.1); }
.btn-primary-glow { background: rgba(212, 175, 55, 0.1); border: 1px solid var(--gold); color: var(--gold); padding: 8px 25px; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; text-decoration: none; transition: 0.3s; }
.btn-primary-glow:hover { background: var(--gold); color: #000; box-shadow: 0 0 20px var(--gold-glow); }

/* Hero Parallax */
#hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg-video { position: absolute; top:0; left:0; width: 100%; height: 100%; z-index: 2; overflow: hidden; }
.parallax-img { width: 100%; height: 120%; object-fit: cover; transform-origin: top; }
.hero-gradient-overlay { position: absolute; top:0; left:0; width: 100%; height: 100%; background: linear-gradient(0deg, var(--bg-base) 0%, rgba(3,7,18,0.7) 50%, rgba(3,7,18,0.9) 100%); }

.hero-content { position: relative; z-index: 10; text-align: center; max-width: 1000px; padding: 0 20px; }
.glitch-text { font-size: 6rem; font-weight: 700; margin: 20px 0; color: #fff; position: relative; display: inline-block; text-shadow: 0 0 20px rgba(255,255,255,0.2); }
.hero-content h2 { font-size: 2.2rem; margin-bottom: 25px; font-family: 'Jura', sans-serif; font-weight: 400; letter-spacing: 4px; color: #e5e7eb; }
.hero-content p { font-family: 'Outfit', sans-serif; font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; line-height: 1.8; }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.7; }
.mouse { width: 30px; height: 50px; border: 2px solid var(--gold); border-radius: 15px; position: relative; }
.mouse::before { content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrollAnim 1.5s infinite; }
@keyframes scrollAnim { 0% { top: 10px; opacity: 1; } 100% { top: 25px; opacity: 0; } }
.scroll-indicator span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); }

/* Stats Impact */
.dark-section { background: var(--bg-base); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); transform: translateY(-50px); }
.stat-card { background: var(--bg-surface); padding: 50px 20px; text-align: center; position: relative; overflow: hidden; }
.stat-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; opacity: 0.5; }
.stat-card h3 { font-size: 4rem; font-family: 'Outfit', sans-serif; font-weight: 800; margin-bottom: 10px; background: linear-gradient(to bottom, #fff, var(--text-muted)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card p { font-family: 'Syncopate', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); }
.stat-line { position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: 0.5s; }
.stat-card:hover .stat-line { transform: scaleX(1); box-shadow: 0 0 15px var(--gold); }

/* Typography Extras */
.neon-subtitle { font-family: 'Jura', sans-serif; color: var(--gold); font-size: 1.1rem; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 15px; }
.massive-title { font-size: 3.5rem; color: #fff; line-height: 1.2; text-shadow: 0 5px 20px rgba(0,0,0,0.5); }

/* 3D Flip Services */
.services-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-3d-card { background-color: transparent; height: 400px; perspective: 1000px; cursor: pointer; }
.s-card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; }
.service-3d-card:hover .s-card-inner { transform: rotateY(180deg); }
.s-card-front, .s-card-back { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; border: 1px solid rgba(255,255,255,0.05); background: var(--bg-surface); }
.s-card-front i { font-size: 4rem; color: rgba(255,255,255,0.1); margin-bottom: 20px; transition: 0.3s; }
.service-3d-card:hover .s-card-front i { color: var(--gold); text-shadow: 0 0 20px var(--gold-glow); transform: scale(1.1); }
.s-card-front h3 { font-size: 1.2rem; font-family: 'Jura', sans-serif; letter-spacing: 2px; text-transform: uppercase; }
.s-card-back { background: var(--gold); color: #000; transform: rotateY(180deg); }
.s-card-back h3 { font-size: 1.1rem; margin-bottom: 20px; font-weight: 800; color: #000; border-bottom: 2px solid #000; padding-bottom: 10px; }
.s-card-back p { font-family: 'Outfit', sans-serif; font-size: 0.95rem; line-height: 1.6; color: #111; font-weight: 600; }
.s-card-back .btn-small-glow { color: #000; border-color: #000; }

/* Simulator Premium Box */
.glass-box { background: rgba(17, 24, 39, 0.7); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); padding: 60px; border-radius: 4px; }
.border-glow { position: relative; }
.border-glow::after { content: ''; position: absolute; top: -1px; left: -1px; width: calc(100% + 2px); height: calc(100% + 2px); background: linear-gradient(45deg, var(--gold), transparent, var(--accent), transparent, var(--gold)); z-index: -1; opacity: 0.3; }

.simulator-wrapper { display: flex; gap: 60px; align-items: center; }
.sim-text { flex: 1.2; }
.sim-text h2 { font-size: 3rem; margin-bottom: 20px; }
.sim-text p { font-family: 'Outfit', sans-serif; font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; }
.sim-data { flex: 1; background: var(--bg-base); padding: 40px; border: 1px solid rgba(255,255,255,0.05); }

.cyber-slider { -webkit-appearance: none; width: 100%; height: 2px; background: rgba(255,255,255,0.2); outline: none; margin-top: 20px; }
.cyber-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 30px; height: 30px; background: var(--bg-base); border: 2px solid var(--gold); cursor: pointer; transform: rotate(45deg); box-shadow: 0 0 15px var(--gold-glow); }

.data-block { padding: 20px; background: rgba(255,255,255,0.02); margin-bottom: 15px; border-left: 2px solid rgba(255,255,255,0.1); }
.trad-block { border-left-color: #f43f5e; } .dry-block { border-left-color: #10b981; background: rgba(16, 185, 129, 0.05); }
.data-vs { text-align: center; font-family: 'Syncopate', sans-serif; font-weight: 700; color: var(--text-muted); padding: 10px 0; }
.data-block h4 { font-size: 0.9rem; margin-bottom: 15px; color: #fff; letter-spacing: 2px; }
.data-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-family: 'Outfit', sans-serif; }
.data-row strong { font-size: 1.2rem; }
.sim-footer { margin-top: 30px; text-align: center; font-family: 'Outfit', sans-serif; font-size: 1.1rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }

/* Contact Cyber Form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 0 !important; background: var(--bg-surface); overflow: hidden; }
.contact-info { padding: 60px; background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%); }
.contact-info p { font-family: 'Outfit', sans-serif; font-size: 1.1rem; color: var(--text-muted); max-width: 400px; margin-top: 20px; line-height: 1.8; }
.contact-info .c-list { list-style: none; margin-top: 40px; }
.c-list li { margin-bottom: 25px; display: flex; gap: 20px; align-items: center; font-family: 'Outfit', sans-serif; font-size: 1.05rem; }
.c-list i { font-size: 1.5rem; color: var(--gold); width: 30px; text-align: center; }

.contact-form-area { padding: 60px; background: rgba(0,0,0,0.2); }
.cyber-form .input-wrapper { margin-bottom: 25px; }
.cyber-form .input-row { display: flex; gap: 20px; }
.cyber-form input, .cyber-form select, .cyber-form textarea {
    width: 100%; background: rgba(255,255,255,0.02); border: none; border-bottom: 2px solid rgba(255,255,255,0.1);
    padding: 15px 20px; color: #fff; font-family: 'Outfit', sans-serif; font-size: 1rem; transition: 0.3s;
}
.cyber-form input:focus, .cyber-form select:focus, .cyber-form textarea:focus { border-bottom-color: var(--gold); background: rgba(212, 175, 55, 0.05); outline: none; }
.cyber-form select option { background: var(--bg-surface); color: #fff; }

/* Keyframes for Reveal */
.reveal { opacity: 0; transform: translateY(50px); transition: all 1s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; } .delay-2 { transition-delay: 0.4s; } .delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 1024px) {
    .services-cards { grid-template-columns: repeat(2, 1fr); }
    .glitch-text { font-size: 4.5rem; }
    .simulator-wrapper, .contact-grid { flex-direction: column; display: flex; }
}
@media (max-width: 768px) {
    nav, .btn-app-login, .header-actions { display: none; }
    header { padding: 12px 15px; justify-content: center; width: 100%; text-align: center; }
    .logo { font-size: 1rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
    .logo-img { max-height: 35px; margin: 0; }
    .logo-text { font-size: 1.05rem; white-space: normal; line-height: 1.2; letter-spacing: 1px; }
    header.scrolled { padding: 10px; }
    header.scrolled .logo-img { max-height: 30px; }
    header.scrolled .logo-text { font-size: 0.95rem; }
    
    .glitch-text { font-size: 2.3rem !important; line-height: 1.2; margin-bottom: 10px; padding: 0 10px; }
    .hero-content h2 { font-size: 1.2rem; padding: 0 15px; line-height: 1.4; margin-bottom: 20px;}
    .hero-content p { font-size: 1rem; line-height: 1.7; padding: 0 25px; text-align: justify; margin: 15px auto 30px auto; color: #ddd !important; }
    
    .massive-title { font-size: 2rem !important; line-height: 1.3; }
    .services-cards { grid-template-columns: 1fr; }
    .cyber-form .input-row { flex-direction: column; gap: 0; }
    
    .contact-info, .contact-form-area { padding: 30px 20px; }
    .glass-box { padding: 30px 20px !important; }
    .quality-card { padding: 25px 20px; }
}
