:root {
    --primary-blue: #0b1120;
    --secondary-blue: #1e293b;
    --accent-orange: linear-gradient(90deg, #ff6b00 0%, #ff9500 100%);
    --text-light: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --font-main: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-blue);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(11, 17, 32, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ff9500;
}

.sep {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.btn-outline {
    border: 1px solid var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem !important;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: url('hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(11, 17, 32, 0.2) 0%, rgba(11, 17, 32, 0.8) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Stats Bar */
.stats-bar {
    background-color: #cbd5e1;
    color: var(--text-dark);
    padding: 20px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #334155;
}

.stat-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e65100;
}

/* Main Form Section */
.form-section {
    padding: 100px 0;
    background: url('hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.9), rgba(11, 17, 32, 0.95));
    z-index: 0;
}

.form-section .container {
    position: relative;
    z-index: 1;
}

.proposal-card {
    background: transparent;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
}

.form-container {
    flex: 1.2;
    padding: 50px;
    background: var(--white);
    color: #1e293b;
}

.form-container h2 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.form-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background-color: #f8fafc;
    font-family: inherit;
    font-size: 0.95rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 5px;
    font-size: 0.85rem;
    color: #475569;
}

.info-icon {
    color: #94a3b8;
    cursor: help;
}

.disclaimer {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 25px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #ff6b00 0%, #ff8c00 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
    filter: brightness(1.1);
}

/* Sidebar */
.sidebar {
    flex: 0.8;
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.commitment-box {
    background: linear-gradient(90deg, rgba(230, 81, 0, 0.7) 0%, rgba(255, 152, 0, 0.7) 100%);
    color: white;
    padding: 15px 25px;
    position: relative;
}

.commitment-box::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ff9800;
}

.commitment-box h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.commitment-box ul,
.commitment-list-simple ul {
    list-style: none;
}

.commitment-box li,
.commitment-list-simple li {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.commitment-list-simple {
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #1e293b;
}

.commitment-list-simple p {
    margin-bottom: 15px;
}

.help-box {
    background-color: transparent;
    color: white;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.help-box h4 {
    margin-bottom: 5px;
}

.help-box p {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.phone-number {
    font-size: 19px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

/* Footer */
.footer {
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-info {
    display: flex;
    gap: 30px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(11, 17, 32, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 1.2rem;
    }

    .proposal-card {
        flex-direction: column-reverse;
        /* Sidebar on bottom or top? User didnt specify, but usually sidebar info comes last on mobile forms. Let's keep it below form or above? Let's assume standard stack. */
        flex-direction: column;
    }

    .sidebar {
        display: none;
        /* Often sidebars distract on mobile forms, but let's keep it if user wants info. Or maybe put it at bottom? */
        /* Let's keep it visible but simpler */
        display: flex;
    }

    .sidebar-image {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    /* Stacking Form Fields */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        width: 100%;
        margin-bottom: 15px;
    }

    /* Footer Stacking */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* Social links below address is automatic by flex col */

    .copyright {
        font-size: 0.65rem;
        /* Smaller as requested */
        padding: 10px 0;
    }
}