:root {
    --black: #0d0d0d;
    --dark-grey: #1a1a1a;
    --red: #8b0000; /* Dark Blood Red */
    --bright-red: #b30000;
    --white: #e0e0e0;
    --text-grey: #a0a0a0;
    
    --font-head: 'Cinzel', serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--text-grey);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Emergency Bar */
.emergency-bar { background-color: var(--red); color: #fff; text-align: center; padding: 10px 0; font-weight: bold; letter-spacing: 1px; }

/* Header */
.crim-header { background-color: rgba(13, 13, 13, 0.95); padding: 25px 0; border-bottom: 1px solid #333; position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; color: var(--white); font-weight: 700; letter-spacing: 2px; }
.logo .red { color: var(--bright-red); }

.crim-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.crim-nav a { color: var(--white); text-transform: uppercase; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; }
.crim-nav a:hover, .crim-nav a.active { color: var(--bright-red); }

.btn-red { border: 2px solid var(--bright-red); color: var(--bright-red) !important; padding: 10px 25px; transition: 0.3s; }
.btn-red:hover { background-color: var(--bright-red); color: var(--white) !important; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: 1px solid var(--white); color: var(--white); padding: 5px 15px; font-family: var(--font-head); cursor: pointer; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--dark-grey); z-index: 2000; padding: 60px; display: flex; flex-direction: column; transition: 0.3s; border-left: 2px solid var(--red); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; color: var(--white); background: none; border: none; font-size: 1.5rem; margin-bottom: 20px; cursor: pointer; }
.mobile-menu a { padding: 15px 0; border-bottom: 1px solid #333; color: var(--white); font-family: var(--font-head); font-weight: 700; }

/* Hero */
.hero-crim {
    height: 650px; background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
    width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 100%);
    display: flex; align-items: center;
}
.hero-content { padding-left: 10%; max-width: 800px; color: var(--white); }
.tagline { color: var(--bright-red); font-family: var(--font-head); letter-spacing: 3px; font-weight: 700; display: block; margin-bottom: 15px; }
.hero-content h1 { font-family: var(--font-head); font-size: 4rem; line-height: 1.1; margin-bottom: 30px; text-transform: uppercase; }
.hero-content p { font-size: 1.3rem; margin-bottom: 40px; border-left: 4px solid var(--red); padding-left: 20px; color: #ccc; }

.hero-btns a { margin-right: 15px; padding: 15px 40px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; display: inline-block; }
.btn-primary { background-color: var(--red); color: var(--white); }
.btn-primary:hover { background-color: var(--bright-red); }
.btn-secondary { border: 2px solid var(--white); color: var(--white); }
.btn-secondary:hover { background-color: var(--white); color: var(--black); }

/* Areas */
.section-padding { padding: 100px 0; }
.section-head { margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-head); font-size: 3rem; color: var(--white); margin-bottom: 15px; }
.red-line { width: 100px; height: 4px; background-color: var(--red); }

.crim-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.crim-card { background: var(--dark-grey); padding: 30px 20px; border: 1px solid #333; transition: 0.3s; }
.crim-card:hover { border-color: var(--red); transform: translateY(-5px); }
.crim-card h3 { font-family: var(--font-head); color: var(--white); font-size: 1.4rem; margin-bottom: 15px; border-bottom: 1px solid #333; padding-bottom: 10px; }
.crim-card p { color: #888; }

/* About */
.page-header { background-color: var(--dark-grey); padding: 80px 0; text-align: center; border-bottom: 1px solid #333; }
.page-header h1 { font-family: var(--font-head); color: var(--white); font-size: 3rem; letter-spacing: 3px; }

.about-dark { display: flex; gap: 60px; align-items: center; }
.text-block { flex: 1; }
.text-block h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--bright-red); margin-bottom: 20px; }
.strategy-list { list-style: none; margin-top: 30px; border-top: 1px solid #333; padding-top: 20px; }
.strategy-list li { margin-bottom: 15px; font-size: 1.1rem; color: var(--white); }
.strategy-list li::before { content: "■"; color: var(--red); margin-right: 15px; }
.img-block { flex: 1; }
.img-block img { width: 100%; border: 1px solid #333; filter: grayscale(100%); }

/* Cases */
.cases-grid { display: flex; flex-direction: column; gap: 30px; max-width: 900px; margin: 0 auto; }
.case-item { background: var(--dark-grey); padding: 40px; border-left: 5px solid var(--red); }
.case-status { display: inline-block; background: var(--red); color: #fff; padding: 5px 15px; font-family: var(--font-head); font-weight: 700; margin-bottom: 15px; font-size: 0.9rem; }
.case-item h3 { color: var(--white); margin-bottom: 10px; font-family: var(--font-head); font-size: 1.5rem; }
.case-item p { color: #ccc; }

/* Contact */
.contact-dark { display: flex; gap: 50px; background: var(--dark-grey); padding: 50px; border: 1px solid #333; }
.info-side { flex: 1; border-right: 1px solid #333; padding-right: 50px; }
.info-side h2 { font-family: var(--font-head); color: var(--white); margin-bottom: 20px; font-size: 2rem; }
.urgent { color: var(--bright-red); font-weight: bold; font-size: 1.2rem; margin-bottom: 30px; border-bottom: 1px solid #333; padding-bottom: 20px; }
.contact-details p { margin-bottom: 10px; color: #ccc; }
.contact-details strong { color: var(--white); }

.crim-form { flex: 1.5; }
.form-title { font-family: var(--font-head); color: var(--white); font-size: 1.5rem; margin-bottom: 20px; }
.form-group { margin-bottom: 15px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px; background: #0d0d0d; border: 1px solid #333; color: var(--white); font-family: var(--font-body); font-size: 1rem; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--bright-red); outline: none; }
.submit-btn { width: 100%; background: var(--white); color: var(--black); padding: 15px; font-family: var(--font-head); font-weight: 700; border: none; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background: var(--bright-red); color: #fff; }

/* Legal */
.legal-doc { max-width: 800px; margin: 0 auto; }
.legal-doc h1 { font-family: var(--font-head); color: var(--white); }
.legal-doc h3 { color: var(--bright-red); margin-top: 40px; margin-bottom: 10px; font-family: var(--font-head); }

/* Footer */
.crim-footer { background-color: var(--dark-grey); padding: 60px 0; border-top: 5px solid var(--red); text-align: center; margin-top: auto; }
.brand { font-family: var(--font-head); font-size: 2rem; color: var(--white); letter-spacing: 5px; margin-bottom: 20px; }
.links a { color: #666; margin: 0 15px; font-weight: bold; }
.links a:hover { color: var(--red); }
.copyright { margin-top: 30px; font-size: 0.8rem; color: #444; }

@media (max-width: 900px) {
    .crim-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .crim-grid, .about-dark, .contact-dark { grid-template-columns: 1fr; flex-direction: column; }
    .info-side { border-right: none; padding-right: 0; padding-bottom: 30px; border-bottom: 1px solid #333; }
}