:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #2563eb; /* Blue-600 */
    --accent-hover: #1d4ed8; /* Blue-700 */
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-light: #94a3b8;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar & Logo */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.35rem 0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1280px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
    position: relative;
}
.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    flex-shrink: 0;
}
/* Updated Minimal Logo Size */
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Header Status Indicator */
.support-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(240, 253, 244, 0.8); /* Light green bg */
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    border: 1px solid #dcfce7;
}
.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e; /* Green-500 */
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-green 2s infinite;
}
.status-text {
    font-size: 0.85rem;
    color: #15803d; /* Green-700 */
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
    padding: 0;
    margin-left: 1rem;
    margin-right: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay - Modified for Dropdown Style */
.mobile-menu-overlay {
    position: absolute; /* Changed from fixed */
    top: 100%; /* Push below navbar */
    left: -1px; /* Account for border alignment */
    width: calc(100% + 2px); /* Account for border alignment */
    background: rgba(255, 255, 255, 0.95); /* Match navbar */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999; /* Below navbar (1000) */
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); /* Match navbar shadow */
    border-radius: 0 0 16px 16px; /* Rounded bottom */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: none;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Navbar Open State - Flatten Bottom Corners */
.navbar {
    transition: border-radius 0.3s ease, background 0.3s ease;
}

.navbar.nav-open {
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider */
}

.mobile-menu-content {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-section h4 {
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

.mobile-section a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--primary);
    text-decoration: none;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: color 0.2s;
}

.mobile-section a:hover {
    color: var(--accent);
}

/* DROPDOWN STYLES (Merged from dropdown.css) */
.nav-center {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-trigger {
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    transition: all 0.2s;
    border-radius: 50px;
    white-space: nowrap;
}

.dropdown-trigger:hover {
    color: var(--accent);
    background-color: rgba(37, 99, 235, 0.05);
}

.chevron {
    font-size: 0.8em;
    opacity: 0.6;
    transition: transform 0.2s;
}

.dropdown:hover .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 260px;
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 20px 40px -5px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 2000;
    margin-top: 12px;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: menuFadeIn 0.2s ease-out forwards;
}

@keyframes menuFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Triangle/Arrow on top of menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid rgba(226, 232, 240, 0.8);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: var(--text-main);
    border-radius: 10px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: #eff6ff;
    color: var(--accent);
}

.dropdown-item:hover .dd-icon {
    transform: scale(1.2);
}

.dd-icon {
    font-size: 1.25rem;
    width: 1.5rem;
    text-align: center;
    transition: transform 0.2s;
}

.dd-title {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Show on Tablet/Mobile */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }
    .nav-center {
        display: none;
    }
}

.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}
.nav-cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}
.nav-cta-btn svg {
    flex-shrink: 0;
}

/* Hero Section with Video */
.hero {
    position: relative;
    background-color: var(--primary); /* Fallback */
    color: var(--white);
    text-align: center;
    padding: 8rem 0 10rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    overflow: hidden;
}

/* Video Wrapper */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65); /* Made lighter from 0.85 */
    z-index: 1;
}

/* Mobile Gradient Background */
.hero-mobile-bg {
    display: none; /* Hidden by default (desktop) */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(-45deg, #0f172a, #1e3a8a, #1e293b, #0f172a);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2; /* Sits above video */
}

.text-faded-red {
    color: #ff4d4d; /* Vibrant Red */
    text-shadow: 0 0 20px rgba(255, 77, 77, 0.6), 0 2px 5px rgba(0,0,0,0.5);
    position: relative;
    display: inline-block;
}

.hero h1 { 
    font-size: 3.5rem; 
    margin-bottom: 1.5rem; 
    line-height: 1.1; 
    font-weight: 800; 
    text-shadow: 0 4px 20px rgba(0,0,0,0.6); 
    letter-spacing: -0.03em;
}
.subtitle { 
    font-size: 1.35rem; 
    opacity: 0.95; 
    max-width: 800px; 
    margin: 0 auto 2.5rem; 
    text-shadow: 0 1px 5px rgba(0,0,0,0.6); 
    font-weight: 500;
    line-height: 1.6;
}

.highlight-text {
    color: #4ade80; /* Bright Green */
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Buttons */
.pulse-button {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    animation: pulse 2s infinite;
    transition: transform 0.2s;
}
.pulse-button:hover { transform: translateY(-2px); background-color: var(--accent-hover); }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.25rem; color: var(--primary); margin-bottom: 0.5rem; }
.divider { height: 4px; width: 60px; background: var(--accent); margin: 1rem auto; border-radius: 2px; }

/* Cards */
.features, .injury-types { padding: 4rem 0; }
#how-it-works {
    padding-top: 0;
    margin-top: -6rem;
    position: relative;
    z-index: 10;
}
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}
.card-header-content {
    text-align: center;
    margin-bottom: 1rem;
}
.card h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.card p {
    text-align: left;
    margin-top: 0;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--accent); }

/* Animated Icons */
.icon-animated {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #eff6ff;
    border-radius: 50%;
    margin-bottom: 1rem;
    color: var(--accent);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.svg-icon {
    width: 32px;
    height: 32px;
    stroke-width: 2;
    transition: all 0.3s ease;
}
.card:hover .icon-animated {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1) rotate(360deg);
}
.card:hover .svg-icon {
    stroke-width: 2.5;
}

/* Injury Types Section */
.injury-types {
    background-color: transparent; /* Was white, now transparent to show through if needed, or just cleaner */
    padding: 2rem 0 6rem 0; /* Reduced top padding */
    margin-top: -2rem; /* Pull up closer to previous section */
    position: relative;
    z-index: 5;
}

.glass-card-container {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 32px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
}

.glass-card-container .section-header {
    margin-bottom: 2.5rem;
}

.grid-large { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns */
    gap: 2rem; 
}

/* Mobile Response for Grid Large */
@media (max-width: 992px) {
    .grid-large {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.feature-card {
    background: transparent; /* Remove card background */
    padding: 1.5rem;
    border-radius: 16px; /* Smaller radius for inner items */
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: visible; /* Allow animations to spill out if needed */
}

/* Add subtle hover effect for the items inside the big card */
.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(248, 250, 252, 0.5); /* Very subtle highlight */
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 20px; /* Squircle */
    background: #eff6ff; /* Light blue/slate */
    margin-bottom: 1rem;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Elastic easing */
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.feature-icon {
    width: 32px;
    height: 32px;
}

.feature-card h4 {
    margin: 0 0 0.8rem 0;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Animation Delays */
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* State Directory & Search */
.state-directory {
    padding: 0 0 6rem 0; /* Modified: Reduced top padding */
    margin-top: -4rem; /* Modified: Pull up closer to previous section */
    background: var(--bg-light);
    position: relative;
    z-index: 6;
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto 4rem;
    position: relative;
}

.search-wrapper input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    font-size: 1.1rem;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    color: var(--primary);
    box-sizing: border-box;
}

.search-wrapper input::placeholder {
    color: #94a3b8;
}

.search-wrapper input:focus {
    border-color: var(--accent);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.search-wrapper .search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
    pointer-events: none;
}

.state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}

.state-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent; /* No background */
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    border: 1px solid #e2e8f0; /* Thin light border */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}

.state-card:hover {
    border-color: rgba(37, 99, 235, 0.1); /* Very subtle blue border */
    transform: translateY(-2px);
    background: rgba(248, 250, 252, 0.8);
    color: var(--primary);
}

.state-card .state-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #eff6ff; /* Light blue */
    border-radius: 50%;
    color: var(--text-light);
    transition: background-color 0.3s, color 0.3s;
    flex-shrink: 0;
}

.state-card:hover .state-icon {
    background-color: var(--accent);
    color: white;
}

.state-card .state-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
}

/* Extended Footer */
.site-footer { background: var(--primary); color: #cbd5e1; padding: 4rem 0 0; font-size: 0.95rem; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-col h4 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a { color: #cbd5e1; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
    background: var(--primary-light);
    padding: 1.5rem 0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}
.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; transform: translateY(20px); }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* Mobile */
@media (max-width: 768px) {
    /* Restore Video on Mobile */
    .hero-video-wrapper { 
        display: block; 
        height: 100% !important; 
    }
    .hero-video-wrapper video {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
    .hero-mobile-bg { display: none; }

    .navbar {
        width: 94%; /* Widen navbar on mobile */
        top: 1rem;
        padding: 0.25rem 0;
    }

    .logo-img {
        height: 48px; /* Smaller logo on mobile */
    }

    .nav-cta-btn {
        display: none; /* Hide phone button on mobile */
    }
    
    .nav-content {
        padding: 0 1rem;
    }

    /* Hero Adjustments */
    .hero, .hero-medical, .hero-legal {
        padding: 6.5rem 0 6rem 0 !important; /* Slightly increased top padding */
        text-align: center;
    }

    #how-it-works {
        margin-top: -4rem; /* Pull cards up less on mobile */
    }

    /* Shrink 24/7 Support on Mobile */
    .support-status {
        padding: 0.2rem 0.5rem;
        font-size: 0.75rem;
        gap: 4px;
    }
    .status-dot {
        width: 6px;
        height: 6px;
    }
    .status-text {
        font-size: 0.75rem;
    }
    
    .hero h1, .hero-medical h1, .hero-legal h1 { 
        font-size: 1.75rem !important; /* Smaller header */
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 1rem; /* Smaller subtext on mobile */
        padding: 0 1rem; /* Prevent edge touching */
        line-height: 1.5;
    }

    .hero-graphic {
        display: none !important; /* Hide complex graphics on mobile */
    }

    .hero-text {
        text-align: center;
    }
    
    .pulse-button {
        width: auto; /* Let button size to content/padding, or 100% if desired. Kept large but scaled. */
        display: inline-block;
        min-width: 200px;
        box-sizing: border-box;
        padding: 0.9rem 1.5rem; /* Smaller button */
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    /* Shrink disclaimer on mobile to fit one line */
    .disclaimer {
        font-size: 0.75rem;
        white-space: nowrap;
        opacity: 0.9;
    }

    /* Grid Adjustments */
    .grid, .grid-large, .footer-grid { 
        grid-template-columns: 1fr !important; 
    }
    
    .glass-card-container {
        padding: 2rem 1rem; 
    }

    /* Medical Page Specifics */
    .alert-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem !important;
    }

    .step-list > div {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* State Grid */
    .state-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 0.75rem;
    }
    
    .state-card {
        padding: 0.75rem;
        flex-direction: column; 
        text-align: center;
        justify-content: center;
    }
    
    .state-card .state-name {
        font-size: 0.85rem;
        white-space: normal; 
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 1rem;
    }
}

/* Creative Header for Accident Types */
.accident-types-header h2 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

.accident-types-header .divider {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    margin: 1.5rem auto;
    position: relative;
    overflow: visible;
}

.accident-types-header .divider::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--white);
    border: 2px solid var(--accent);
    border-radius: 50%;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* State Directory Creative Styles */
.state-directory-header h2 {
    background: linear-gradient(135deg, #111827 0%, #2563eb 50%, #111827 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.state-directory-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced State Card Container */
.state-card-container {
    border-top: 5px solid var(--accent); /* Accent Top Border */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* Deep shadow */
    position: relative;
}
.state-card-container::before {
    content: "USA";
    position: absolute;
    top: -2rem;
    right: 2rem;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    pointer-events: none;
    z-index: 0;
}