/*
Theme Name: Injury Claims Desk
Theme URI: https://injuryclaimsdesk.us
Author: SATECH
Description: Professional, structured legal theme.
Version: 1.0
*/

:root {
    --primary: #1e293b;
    --secondary: #475569;
    --accent: #3b82f6;
    --bg-light: #f8fafc;
    --text-main: #334155;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

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

/* Header */
header {
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
}

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

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

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

.phone-header {
    font-weight: 600;
    color: var(--secondary);
}

.phone-header a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.2rem;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-features {
    list-style: none;
    padding: 0;
}

.hero-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.hero-features li::before {
    content: '✓';
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
    background: rgba(255,255,255,0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Form */
.desk-form {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: var(--text-main);
}

.desk-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 15px;
}

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

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

.form-input, .form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

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

.btn-primary:hover {
    background: #2563eb;
}

.disclaimer {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 15px;
    text-align: center;
    line-height: 1.4;
}

/* Footer */
footer {
    background: var(--primary);
    color: #94a3b8;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}

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

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-text {
        text-align: center;
        margin-bottom: 30px;
    }
    .hero-features {
        display: inline-block;
        text-align: left;
    }
}
