/*
Theme Name: Auto Policy Help
Theme URI: https://autopolicyhelp.us
Author: SATECH
Description: Modern, dark-themed automotive insurance site.
Version: 1.0
*/

:root {
    --primary: #2563eb; /* Royal Blue */
    --dark: #0f172a; /* Slate 900 */
    --darker: #020617; /* Slate 950 */
    --accent: #facc15; /* Yellow */
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--darker);
    color: var(--text-light);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

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

/* Header */
header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1e293b;
    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: 800;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--primary);
}

.btn-call {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-call:hover {
    background: #1d4ed8;
}

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

.hero-content {
    flex: 1;
}

.tag {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0 0 20px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.stats-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid #1e293b;
    padding-top: 30px;
}

.stat h4 {
    font-size: 2rem;
    margin: 0;
    color: var(--white);
}

.stat span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Form Card */
.form-wrapper {
    flex: 0 0 450px;
    background: var(--dark);
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-header {
    margin-bottom: 25px;
    text-align: center;
}

.form-header h3 {
    margin: 0 0 5px;
    font-size: 1.5rem;
}

.form-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-input, .form-select {
    width: 100%;
    background: #1e293b;
    border: 1px solid #334155;
    color: var(--text-light);
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.2s;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #1d4ed8;
}

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

/* Footer */
footer {
    border-top: 1px solid #1e293b;
    padding: 40px 0;
    margin-top: 40px;
    background: var(--dark);
    text-align: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.legal-text {
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 0.8rem;
    color: #475569;
}

@media (max-width: 900px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        margin: 0 auto 30px;
    }
    .stats-row {
        justify-content: center;
    }
    .form-wrapper {
        width: 100%;
        flex: auto;
    }
}
