/* Palette: Void Black, Alert Red, White, Concrete */
:root {
    --black: #0F0F0F;
    --dark: #1a1a1a;
    --red: #E60023;
    --red-dark: #b3001b;
    --white: #FFFFFF;
    --grey: #cccccc;
    
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.5;
    font-weight: 500;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; filter: grayscale(100%) contrast(1.2); }

/* Alert Bar */
.alert-bar { background: var(--red); color: var(--white); font-family: var(--font-head); text-transform: uppercase; padding: 5px 0; overflow: hidden; white-space: nowrap; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; }
.scrolling-text { display: inline-block; padding-left: 100%; animation: scroll 20s linear infinite; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* Header */
.front-header { padding: 20px 0; background: rgba(15, 15, 15, 0.95); position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--dark); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.red-slash { color: var(--red); margin: 0 2px; font-weight: 400; }

.sharp-nav a { margin-left: 30px; font-family: var(--font-head); font-size: 1.1rem; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; }
.sharp-nav a:hover, .sharp-nav a.active { color: var(--red); }

.btn-red { background: var(--red); color: var(--white); padding: 10px 25px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; transform: skewX(-20deg); display: inline-block; margin-left: 30px; border: none; cursor: pointer; transition: 0.3s; }
.btn-red:hover { background: var(--white); color: var(--red); }

.mobile-toggle { display: none; background: transparent; border: 1px solid var(--white); color: var(--white); padding: 5px 10px; font-family: var(--font-head); cursor: pointer; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100%; background: var(--red); z-index: 2000; padding: 50px; transition: 0.3s; }
.mobile-menu.active { right: 0; }
.close-btn { background: none; border: none; font-size: 2rem; color: var(--white); margin-bottom: 30px; cursor: pointer; }
.mobile-menu a { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--white); margin-bottom: 15px; text-transform: uppercase; }

@media (max-width: 900px) {
    .sharp-nav, .btn-red { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero-sharp { height: 85vh; position: relative; display: flex; align-items: center; justify-content: flex-start; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, #0F0F0F 0%, rgba(15,15,15,0.6) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding-left: 20px; border-left: 5px solid var(--red); }

.status-box { display: inline-block; border: 1px solid var(--red); color: var(--red); padding: 5px 10px; font-family: var(--font-head); letter-spacing: 2px; margin-bottom: 20px; font-size: 0.9rem; }
.hero-content h1 { font-family: var(--font-head); font-size: 5rem; line-height: 0.9; margin-bottom: 25px; text-transform: uppercase; }
.red-text { color: var(--red); }
.hero-content p { font-size: 1.4rem; color: var(--grey); margin-bottom: 40px; max-width: 600px; }

.cta-zone { display: flex; gap: 20px; }
.btn-red-skew { background: var(--red); color: var(--white); padding: 15px 40px; font-family: var(--font-head); font-size: 1.2rem; transform: skewX(-20deg); text-transform: uppercase; font-weight: 700; display: inline-block; transition: 0.3s; }
.btn-red-skew:hover { background: var(--red-dark); }
.btn-white-outline { border: 2px solid var(--white); color: var(--white); padding: 15px 40px; font-family: var(--font-head); font-size: 1.2rem; transform: skewX(-20deg); text-transform: uppercase; font-weight: 700; display: inline-block; transition: 0.3s; }
.btn-white-outline:hover { background: var(--white); color: var(--black); }

/* Mission / Why Us */
.section-title h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 10px; }
.red-bar { width: 100px; height: 5px; background: var(--red); margin-bottom: 40px; }
.red-bar.left { margin-right: auto; }
.center { text-align: center; }
.center .red-bar { margin: 0 auto 40px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.sharp-card { background: var(--dark); padding: 40px; border: 1px solid #333; transition: 0.3s; position: relative; overflow: hidden; }
.sharp-card:hover { border-color: var(--red); }
.sharp-card h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--red); margin-bottom: 15px; letter-spacing: 1px; }
.sharp-card p { color: var(--grey); font-size: 1.1rem; }

/* Training List */
.training-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.t-card { border: 1px solid #333; background: var(--dark); transition: 0.3s; }
.t-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(230, 0, 35, 0.1); }
.t-card.active { border-color: var(--red); }
.t-header { background: #222; padding: 20px; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; }
.t-header h3 { font-family: var(--font-head); font-size: 1.3rem; margin: 0; }
.level { font-size: 0.8rem; background: var(--red); padding: 2px 8px; color: var(--white); font-weight: 700; }
.t-body { padding: 30px; }
.link-red { color: var(--red); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; margin-top: 20px; display: inline-block; font-size: 1.1rem; }

/* Simulation */
.sim-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.sim-text h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1; margin-bottom: 20px; }
.stats { list-style: none; margin-top: 40px; display: flex; gap: 40px; border-top: 1px solid #333; padding-top: 30px; }
.stats li { font-size: 1.2rem; }
.stats strong { display: block; font-size: 3rem; color: var(--red); font-family: var(--font-head); line-height: 1; }
.sim-visual { position: relative; }
.overlay-red { position: absolute; inset: 0; background: var(--red); opacity: 0.2; mix-blend-mode: multiply; }

/* Contact Form */
.contact-terminal { max-width: 700px; margin: 0 auto; background: var(--dark); border: 1px solid #333; padding: 60px; }
.c-head { text-align: center; margin-bottom: 40px; border-bottom: 1px solid #333; padding-bottom: 20px; }
.c-head h2 { font-family: var(--font-head); font-size: 3rem; color: var(--white); }

.sharp-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--red); margin-bottom: 5px; letter-spacing: 1px; }
.field input, .field select, .field textarea { width: 100%; background: #000; border: 1px solid #444; color: var(--white); padding: 12px; font-family: var(--font-body); font-size: 1.1rem; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); outline: none; }
.full { width: 100%; font-size: 1.5rem; padding: 15px; margin-top: 10px; }

.direct-contact { margin-top: 40px; text-align: center; color: var(--grey); font-family: var(--font-head); font-size: 1.2rem; }

/* Legal */
.legal-doc { max-width: 800px; margin: 0 auto; }
.legal-doc h1 { font-family: var(--font-head); font-size: 3rem; color: var(--white); }

/* Footer */
.front-footer { background: #000; padding: 60px 0 20px; margin-top: 100px; border-top: 3px solid var(--red); }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-info h4 { font-family: var(--font-head); font-size: 2rem; color: var(--white); margin-bottom: 5px; }
.f-links a { margin-left: 30px; font-family: var(--font-head); font-size: 1.2rem; color: var(--grey); }
.f-links a:hover { color: var(--red); }
.copyright { text-align: center; font-size: 0.8rem; color: #555; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3.5rem; }
    .cta-zone { flex-direction: column; align-items: flex-start; }
    .grid-3, .training-list, .sim-split, .sharp-form .form-row { grid-template-columns: 1fr; }
    .sim-visual { order: -1; }
    .stats { flex-direction: column; gap: 20px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}