:root {
    --black: #111111;
    --dark-grey: #1a1a1a;
    --red: #e74c3c;
    --white: #ffffff;
    --light-grey: #f4f4f4;
    
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --sidebar-width: 280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--light-grey);
    color: var(--black);
    display: flex;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Layout */
.layout-wrapper { display: flex; width: 100%; }

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--black);
    color: var(--white);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    z-index: 1000;
}

.brand { font-family: var(--font-head); font-size: 2rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 50px; }
.red-dot { color: var(--red); }

.sidebar nav { display: flex; flex-direction: column; gap: 20px; }
.sidebar nav a { font-family: var(--font-head); font-size: 1.2rem; text-transform: uppercase; color: #888; }
.sidebar nav a:hover, .sidebar nav a.active { color: var(--white); border-left: 4px solid var(--red); padding-left: 10px; }
.urgent-btn { color: var(--red) !important; font-weight: bold; margin-top: 30px; }

.sidebar-footer { font-size: 0.8rem; color: #444; }

/* Mobile Header */
.mobile-header { display: none; background: var(--black); color: white; padding: 20px; width: 100%; justify-content: space-between; align-items: center; position: fixed; top: 0; z-index: 2000; }
.menu-toggle { background: none; border: 1px solid white; color: white; padding: 5px 10px; cursor: pointer; }

/* Content Area */
.content-area { margin-left: var(--sidebar-width); width: calc(100% - var(--sidebar-width)); min-height: 100vh; }

/* Hero */
.hero-noir {
    height: 100vh;
    background: url('https://images.pexels.com/photos/1563256/pexels-photo-1563256.jpeg?auto=compress&cs=tinysrgb&w=1920') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-noir::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, #000 0%, transparent 100%); }

.hero-text { position: relative; z-index: 10; padding-left: 80px; color: var(--white); max-width: 800px; }
.status { color: var(--red); font-weight: bold; font-family: var(--font-head); letter-spacing: 2px; display: block; margin-bottom: 20px; }
.hero-text h1 { font-family: var(--font-head); font-size: 5rem; line-height: 0.9; margin-bottom: 30px; text-transform: uppercase; }
.hero-text p { font-size: 1.2rem; margin-bottom: 40px; color: #ccc; }

.btn-solid { background-color: var(--red); color: white; padding: 15px 40px; font-family: var(--font-head); font-size: 1.2rem; text-transform: uppercase; display: inline-block; }
.btn-solid:hover { background-color: #c0392b; }

/* Areas Grid */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--black); color: white; }
.area-box { padding: 60px 40px; border-right: 1px solid #333; transition: 0.3s; }
.area-box:hover { background: #1a1a1a; }
.area-box h2 { color: var(--red); font-family: var(--font-head); font-size: 2rem; opacity: 0.5; margin-bottom: 10px; }
.area-box h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 15px; }

/* Pages */
.page-content { padding: 80px; background: var(--white); }
.split-screen { display: flex; gap: 60px; align-items: center; }
.text-side { flex: 1; }
.image-side { flex: 1; }
.image-side img { width: 100%; filter: grayscale(100%); }
.text-side h1 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 20px; }
.red-line { width: 80px; height: 5px; background: var(--red); margin-bottom: 30px; }
.strategy-list { list-style: none; margin-top: 30px; font-weight: bold; }
.strategy-list li { margin-bottom: 15px; border-left: 3px solid var(--red); padding-left: 15px; }

/* Cases */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.case-file { background: #f0f0f0; padding: 40px; border-top: 5px solid var(--black); transition: 0.3s; }
.case-file:hover { border-top-color: var(--red); transform: translateY(-5px); }
.case-status { font-weight: bold; color: var(--red); font-family: var(--font-head); margin-bottom: 10px; }
.case-file h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 15px; }

/* Contact Form */
.contact-wrapper { display: flex; gap: 50px; }
.contact-alert { flex: 1; background: var(--black); color: white; padding: 50px; }
.emergency-number { font-size: 2rem; font-family: var(--font-head); color: var(--red); margin-top: 30px; }
.dark-form { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.dark-form label { font-family: var(--font-head); font-weight: bold; color: var(--black); }
.dark-form input, .dark-form select, .dark-form textarea { padding: 15px; background: #e0e0e0; border: none; font-family: var(--font-body); }
.submit-btn { background: var(--black); color: white; border: none; padding: 20px; font-family: var(--font-head); cursor: pointer; font-size: 1.2rem; transition: 0.3s; }
.submit-btn:hover { background: var(--red); }

/* Responsive */
@media (max-width: 1000px) {
    .sidebar { display: none; }
    .sidebar.active { display: flex; width: 100%; position: fixed; z-index: 3000; }
    .mobile-header { display: flex; }
    .content-area { margin-left: 0; width: 100%; margin-top: 70px; }
    .hero-text { padding-left: 20px; }
    .hero-text h1 { font-size: 3rem; }
    .areas-grid, .split-screen, .case-grid, .contact-wrapper { grid-template-columns: 1fr; flex-direction: column; }
    .page-content { padding: 40px 20px; }
}