:root {
    --law-navy: #0a2540;
    --law-slate: #425466;
    --accent-gold: #c5a059;
    --cta-orange: #d35400;
    --light-bg: #f6f9fc;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; color: var(--law-navy); line-height: 1.6; background: #fff; }

/* NAVIGATION */
nav { 
    background: var(--law-navy) !important; 
    height: 80px; padding: 0 5%; 
    display: flex; justify-content: space-between; align-items: center; 
    position: sticky; top: 0; z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.logo { color: white; font-weight: 800; text-decoration: none; font-size: 1.2rem; text-transform: uppercase; }
.nav-links a { color: white; text-decoration: none; margin-left: 20px; font-weight: 600; font-size: 0.9rem; }
.btn-nav { background: var(--cta-orange); padding: 10px 20px; border-radius: 4px; }

/* HERO */
.hero { 
    padding: 120px 5% !important; text-align: center; 
    background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2000');
    background-size: cover; background-position: center;
    color: white !important; min-height: 500px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem) !important; font-weight: 900; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 800px; margin-bottom: 40px; opacity: 0.9; }

/* PREMIUM CARDS */
.container { max-width: 1200px; margin: auto; padding: 80px 5%; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.injury-card { 
    background: white !important; 
    padding: 50px 40px !important; 
    border-radius: 15px !important; 
    border: 1px solid #eee !important; 
    text-align: center;
    position: relative !important; 
    overflow: hidden !important; 
    transition: all 0.4s ease;
}

/* THE GOLD ACCENT BAR */
.injury-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 8px;
    background: #c5a059 !important; /* Gold */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.injury-card:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.injury-card:hover::before { transform: scaleX(1); }

.injury-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.cta-main { background: var(--cta-orange); color: white; padding: 18px 40px; font-weight: 800; text-decoration: none; border-radius: 5px; }

/* MOBILE MENU */
#menu-toggle { display: none; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background: white; }

@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 80px; right: -100%; width: 100%; height: calc(100vh - 80px);
        background: var(--law-navy); flex-direction: column; padding-top: 50px; transition: 0.4s;
    }
    #menu-toggle:checked ~ .nav-links { right: 0; }
}