/*
Theme Name: Final Expense Care
Theme URI: https://finalexpensecare.us
Author: SATECH
Description: Caring, trustworthy insurance theme with icon features.
Version: 2.0
*/

:root {
    --primary: #1e3a8a; /* Deep Navy */
    --accent: #f59e0b; /* Bright Amber */
    --light-bg: #f8fafc;
    --text: #334155;
    --white: #ffffff;
}

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

/* Top Bar */
.top-bar {
    background: #0f172a;
    color: #cbd5e1;
    font-size: 0.85rem;
    padding: 8px 0;
    text-align: center;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon-lock {
    margin-right: 5px;
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-icon {
    margin-right: 10px;
    color: var(--accent);
}

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

.header-btn {
    display: flex;
    align-items: center;
    background: var(--light-bg);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.header-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Hero Split */
.hero-split {
    padding: 60px 0;
    background: radial-gradient(circle at top right, #eff6ff, #ffffff);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    background: #dbeafe;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    color: #0f172a;
    margin: 0 0 20px;
}

.hero-content p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Features List with Icons */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-box {
    background: #fff7ed;
    color: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: #0f172a;
    font-size: 1.05rem;
}

.feature-item span {
    font-size: 0.95rem;
    color: #64748b;
}

/* Form Card */
.form-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1);
    border: 1px solid #f1f5f9;
}

.form-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 20px;
    text-align: center;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-input, .form-select {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.2s;
    box-sizing: border-box;
}

.full-width {
    margin-bottom: 12px;
}

.form-input:focus, .form-select:focus {
    border-color: var(--primary);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.dob-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #64748b;
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: var(--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: #d97706;
}

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

/* Footer */
footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 50px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.logo-footer {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

.footer-col.links a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

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

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        text-align: center;
    }
    .feature-item {
        justify-content: center;
        text-align: left;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
