/* --- Variables & Reset --- */
:root {
    --primary-color: #00f2ff; /* Cyan */
    --secondary-color: #0d1b2a;
    --warning-color: #ffcc00;
    --success-green: #00e676; 
    --error-red: #ff3d00;     
    --text-light: #e0e1dd;
    --bg-dark: #000000;
    --card-bg: #111625;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body { font-family: var(--font-body); background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }

/* --- Construction Badge --- */
.construction-bar { background: var(--warning-color); color: #000; text-align: center; padding: 5px 0; font-weight: bold; font-size: 0.8rem; position: fixed; top: 0; width: 100%; z-index: 2000; text-transform: uppercase; letter-spacing: 1px; }
.status-badge { background: rgba(255, 204, 0, 0.2); border: 1px solid var(--warning-color); color: var(--warning-color); display: inline-block; padding: 5px 15px; border-radius: 4px; font-weight: bold; margin-bottom: 20px; letter-spacing: 2px; }

/* --- Navbar --- */
.navbar { background: rgba(13, 27, 42, 0.95); height: 80px; display: flex; justify-content: center; align-items: center; position: fixed; top: 25px; width: 100%; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.1); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; color: #fff; text-decoration: none; font-weight: 900; }
.logo span { color: var(--primary-color); }
.nav-menu { display: flex; list-style: none; align-items: center; }
.nav-link { color: var(--text-light); text-decoration: none; margin-left: 30px; font-weight: 500; transition: 0.3s; font-size: 0.9rem; text-transform: uppercase; }
.nav-link:hover { color: var(--primary-color); }
.btn-contact { border: 1px solid var(--primary-color); padding: 8px 20px; border-radius: 50px; }

/* --- Hero Section & Video --- */
.hero { height: 100vh; position: relative; display: flex; align-items: center; padding-top: 50px; background: #000 !important; overflow: hidden; }
.back-video { position: absolute; right: 0; bottom: 0; z-index: 0; min-width: 100%; min-height: 100%; width: auto; height: auto; object-fit: cover; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding-left: 10%; max-width: 800px; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.highlight { color: var(--primary-color); text-shadow: 0 0 20px rgba(0, 242, 255, 0.5); }
.hero p { font-size: 1.2rem; margin-bottom: 30px; color: #b0c4de; max-width: 600px; }

/* --- General Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.btn { padding: 12px 30px; border-radius: 4px; font-weight: 700; text-decoration: none; transition: 0.3s; display: inline-block; text-transform: uppercase; font-family: var(--font-heading); }
.btn-primary { background-color: var(--primary-color); color: var(--bg-dark); box-shadow: 0 0 15px rgba(0, 242, 255, 0.4); border: none; cursor: pointer; }
.btn-primary:hover { background-color: #fff; box-shadow: 0 0 25px rgba(0, 242, 255, 0.8); }

/* --- ANIMATION CLASSES (Professional Scroll Reveal) --- */
.reveal-up, .reveal-left, .reveal-right, .reveal-card, .reveal-step {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

/* Initial States */
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-card { transform: scale(0.9); opacity: 0; }
.reveal-step { transform: translateY(30px); opacity: 0; }

/* Active States (Triggered by JS) */
.active { opacity: 1 !important; transform: translate(0) scale(1) !important; }

/* --- Who We Are Section --- */
.who-we-are-section { background-color: #000000; padding: 100px 0; }
.who-we-are-wrapper { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 50px; }
.left-content { flex: 1; min-width: 300px; }
.modern-title { font-size: 2.5rem; color: #ffffff; font-weight: 700; margin-bottom: 30px; border-left: 5px solid var(--primary-color); padding-left: 20px; line-height: 1.2; }
.description { font-size: 1.1rem; color: #cccccc; margin-bottom: 30px; max-width: 600px; }
.feature-list { list-style: none; padding: 0; }
.feature-list li { font-size: 1.1rem; color: #e0e1dd; margin-bottom: 15px; display: flex; align-items: center; }
.feature-list li i { color: var(--primary-color); margin-right: 15px; font-size: 1.2rem; }
.right-stats { display: flex; gap: 20px; }
.stat-card { background-color: var(--card-bg); width: 170px; height: 170px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; border-radius: 2px; }
.stat-card h3 { color: var(--primary-color); font-size: 2rem; font-weight: 700; margin-bottom: 10px; }
.stat-card p { color: #ffffff; font-size: 1rem; font-weight: 400; }

/* --- SNAKE PROCESS SECTION --- */
.process-section { background-color: #000; padding-bottom: 100px; position: relative; }
.relative-container { position: relative; }
.section-header { width: 100%; display: flex; flex-direction: column; align-items: center; margin-bottom: 80px; }
.section-title { font-size: 2.5rem; color: #fff; margin-bottom: 10px; text-align: center; }
.title-underline { width: 80px; height: 4px; background: var(--primary-color); }
.snake-wrapper { position: relative; width: 100%; max-width: 900px; margin: 0 auto; }
.snake-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: visible; pointer-events: none; }
.path-main { filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.6)); transition: stroke-dashoffset 0.1s linear; }
.step-row { position: relative; width: 50%; padding: 20px; z-index: 2; margin-bottom: 80px; }
.step-row.right { margin-left: 50%; text-align: left; padding-left: 60px; }
.step-row.left { margin-right: 50%; text-align: right; padding-right: 60px; }
.step-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 15px; display: inline-block; filter: drop-shadow(0 0 10px rgba(0,242,255,0.3)); }
.step-content h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 10px; color: #fff; text-transform: uppercase; }
.step-content p { color: #ccc; }

/* --- Contact Section --- */
.contact-section { background-color: #050505; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info .info-item { display: flex; align-items: center; margin-bottom: 20px; font-size: 1.1rem; }
.contact-info i { color: var(--primary-color); margin-right: 15px; font-size: 1.5rem; }
.contact-info h2 { font-size: 2.5rem; margin-bottom: 20px; color: #fff; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; margin-bottom: 15px; background: #111; border: 1px solid #333; color: #fff; font-family: var(--font-body); font-size: 1rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary-color); }
.status-msg { display: none; padding: 15px; margin-bottom: 20px; border-radius: 5px; font-weight: bold; text-align: center; }
.status-msg.success { display: block; background: rgba(0, 230, 118, 0.1); border: 1px solid var(--success-green); color: var(--success-green); }
.status-msg.error { display: block; background: rgba(255, 61, 0, 0.1); border: 1px solid var(--error-red); color: var(--error-red); }
footer { padding: 30px 0; background: #000; text-align: center; border-top: 1px solid #111; font-size: 0.9rem; color: #777; }

/* --- Mobile --- */
@media (max-width: 768px) {
    .navbar { top: 30px; }
    .menu-toggle { display: block; cursor: pointer; }
    .bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: #fff; transition: 0.3s; }
    .nav-menu { position: fixed; left: -100%; top: 80px; flex-direction: column; background-color: var(--secondary-color); width: 100%; text-align: center; transition: 0.3s; padding: 20px 0; }
    .nav-menu.active { left: 0; }
    .nav-link { margin: 20px 0; display: block; }
    .hero h1 { font-size: 2.5rem; }
    .who-we-are-wrapper, .contact-wrapper { flex-direction: column; grid-template-columns: 1fr; }
    .right-stats { width: 100%; justify-content: center; margin-top: 30px; }
    .hero { justify-content: center; text-align: center; }
    .hero-content { padding: 0 20px; }
    .snake-svg { display: none; }
    .snake-wrapper { border-left: 2px solid #333; margin-left: 20px; padding-left: 30px; }
    .step-row { width: 100%; margin-left: 0 !important; margin-right: 0 !important; text-align: left !important; padding: 0 0 40px 0; }
}