/*
Theme Name: Injury Claim Assist
Theme URI: https://injuryclaimassist.us
Author: SATECH
Description: Dark, sleek, professional theme.
Version: 1.0
*/

:root {
    --bg-dark: #0f172a; /* Dark Slate */
    --card-bg: #1e293b; /* Lighter Slate */
    --accent: #eab308; /* Gold/Yellow */
    --text-main: #f8fafc; /* White/Grey */
    --text-muted: #94a3b8;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-main);
}

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

/* Header */
header {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid #334155;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent);
}

.phone-header a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid var(--accent);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s;
}

.phone-header a:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

/* Hero Split */
.hero-split {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 40px 0;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-form {
    flex: 0 0 450px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #334155;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hero-form h3 {
    margin-top: 0;
    color: var(--accent);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.form-input, .form-select {
    width: 100%;
    padding: 12px;
    background: #0f172a;
    border: 1px solid #475569;
    color: var(--text-main);
    border-radius: 4px;
    font-size: 1rem;
}

.form-input:focus, .form-select:focus {
    border-color: var(--accent);
    outline: none;
}

.btn-gold {
    width: 100%;
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
    transition: opacity 0.2s;
}

.btn-gold:hover {
    opacity: 0.9;
}

.disclaimer {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 20px;
    text-align: center;
}

/* Footer */
footer {
    border-top: 1px solid #334155;
    padding: 40px 0;
    text-align: center;
    color: #64748b;
    font-size: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 10px;
}

@media (max-width: 900px) {
    .hero-split {
        flex-direction: column;
    }
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    .hero-form {
        width: 100%;
        flex: auto;
    }
}
