:root {
    --black: #0a0a0a;
    --dark-grey: #1c1c1c;
    --red: #a30000; /* Blood Red */
    --bright-red: #dc143c;
    --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: 8px 0; font-weight: bold; letter-spacing: 1px; }

/* Header */
.justice-header { background-color: rgba(10, 10, 10, 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); }

.justice-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.justice-nav a { color: var(--white); text-transform: uppercase; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; }
.justice-nav a:hover, .justice-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-justice {
    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.9) 0%, rgba(0,0,0,0.4) 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: 4px; 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; text-shadow: 2px 2px 10px #000; }
.hero-content p { font-size: 1.3rem; margin-bottom: 40px; border-left: 4px solid var(--red); padding-left: 20px; color: #ccc; }

.hero-buttons 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); }

/* Practice 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); }

.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.area-item { background: var(--dark-grey); padding: 30px 20px; border: 1px solid #333; transition: 0.3s; }
.area-item:hover { border-color: var(--red); transform: translateY(-5px); }
.area-item h3 { font-family: var(--font-head); color: var(--white); font-size: 1.4rem; margin-bottom: 15px; border-bottom: 1px solid #333; padding-bottom: 10px; }
.area-item 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-grid { 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; }
.stats-list { list-style: none; margin-top: 30px; border-top: 1px solid #333; padding-top: 20px; }
.stats-list li { margin-bottom: 15px; font-size: 1.1rem; color: var(--white); }
.stats-list strong { color: var(--bright-red); font-family: var(--font-head); font-size: 1.5rem; margin-right: 10px; }
.image-block { flex: 1; }
.image-block img { width: 100%; border: 1px solid #333; filter: grayscale(100%); transition: 0.3s; }
.image-block img:hover { filter: grayscale(0%); }

/* Testimonials */
.case-studies { display: flex; flex-direction: column; gap: 30px; max-width: 900px; margin: 0 auto; }
.case-card { background: var(--dark-grey); padding: 40px; border-left: 5px solid var(--red); }
.status-badge { 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-card h3 { color: var(--white); margin-bottom: 10px; font-family: var(--font-head); font-size: 1.5rem; }
.case-card p { color: #ccc; margin-bottom: 20px; }
.court-info { color: #666; font-size: 0.9rem; font-style: italic; text-transform: uppercase; }

/* Contact Form */
.contact-wrapper { display: flex; gap: 50px; background: var(--dark-grey); padding: 50px; border: 1px solid #333; }
.contact-urgent { flex: 1; border-right: 1px solid #333; padding-right: 50px; }
.contact-urgent h2 { font-family: var(--font-head); color: var(--white); margin-bottom: 20px; font-size: 2rem; }
.urgent-box { background: var(--red); color: #fff; padding: 20px; text-align: center; margin: 30px 0; font-size: 1.5rem; font-weight: bold; }
.urgent-box a { color: #fff; display: block; margin-top: 5px; }
.office-info { color: #888; }

.dark-form { flex: 1.5; }
.form-title { font-family: var(--font-head); color: var(--white); font-size: 1.5rem; margin-bottom: 20px; }
.input-group { margin-bottom: 15px; }
.input-group input, .input-group select, .input-group textarea { width: 100%; padding: 15px; background: #000; border: 1px solid #333; color: var(--white); font-family: var(--font-body); font-size: 1rem; }
.input-group input:focus, .input-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-text { max-width: 800px; margin: 0 auto; }
.legal-text h1 { font-family: var(--font-head); color: var(--white); }
.legal-text h3 { color: var(--bright-red); margin-top: 40px; margin-bottom: 10px; font-family: var(--font-head); }

/* Footer */
.justice-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); }
.copy { margin-top: 30px; font-size: 0.8rem; color: #444; }

@media (max-width: 900px) {
    .justice-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .areas-grid, .about-grid, .contact-wrapper { grid-template-columns: 1fr; flex-direction: column; }
    .contact-urgent { border-right: none; padding-right: 0; padding-bottom: 30px; border-bottom: 1px solid #333; }
}