/*
Theme Name: Auto Injury Assist
Theme URI: https://autoinjuryassist.us
Author: SATECH
Description: Automotive, industrial theme.
Version: 1.0
*/

:root {
    --bg-metal: #e5e7eb;
    --primary: #2563eb; /* Blue */
    --accent: #f59e0b; /* Amber */
    --text-dark: #1f2937;
    --text-light: #f3f4f6;
    --header-bg: #111827;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-metal);
    color: var(--text-dark);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background: var(--header-bg);
    padding: 15px 0;
    color: var(--text-light);
    border-bottom: 4px solid var(--primary);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
    font-style: italic;
    text-transform: uppercase;
}

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

.phone-header {
    color: var(--accent);
    font-weight: 700;
}

.phone-header a {
    color: var(--white);
    text-decoration: none;
    background: var(--primary);
    padding: 6px 15px;
    border-radius: 4px;
    margin-left: 10px;
}

/* Hero */
.hero {
    background: linear-gradient(to bottom, #1f2937, #374151);
    color: var(--text-light);
    padding: 50px 0;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0 0 10px;
}

.hero p {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Form */
.auto-form {
    background: white;
    max-width: 700px;
    margin: -60px auto 50px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
    border-top: 5px solid var(--accent);
}

.auto-form h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

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

.form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4b5563;
    text-transform: uppercase;
}

.form-input, .form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    border-radius: 4px;
    font-size: 1rem;
}

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

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

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

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: #6b7280;
    font-size: 0.8rem;
    background: white;
}

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

@media (max-width: 600px) {
    .hero {
        clip-path: none;
    }
    .auto-form {
        margin-top: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
}
