:root {
    --primary: #0E1B4D;
    --primary-dark: #00001f;
    --primary-light: #13C5DD;
    --primary-subtle: #e1f9fc;
    --secondary: #475467;
    --success: #027A48;
    --warning: #FFAD0F;
    --error: #D92D20;
    --surface: #FFFFFF;
    --surface-secondary: #F8FAFC;
    --surface-tertiary: #F1F5F9;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-tertiary: #94A3B8;
    --border: #E2E8F0;
    --border-light: #e2e8f0;
    --success: #22C55E;
    --error: #EF4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --usa-red: #B91C1C;
    --usa-blue: #1E40AF;
    --usa-flag: linear-gradient(135deg, #1E40AF 0%, #B91C1C 50%, #FFFFFF 100%);
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: var(--surface-secondary);
    line-height: 1.6;
}
/* Clean USA Theme Elements */
.usa-flag-badge {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 53, 0.15);
}
.usa-header-badge {
    text-align: center;
    margin-bottom: 1rem;
}
.usa-icon {
    background: var(--primary-subtle);
}
/* Top Bar Styles */
.top-bar {
    background-color: var(--primary);
    color: #ffffff;
    padding: 1rem 0;
}
.top-bar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}
.top-bar a:hover {
    color: varಸ
}
.top-bar .fa-envelope, .top-bar .fa-phone-alt {
    color: var(--primary-light);
}
/* Navbar Styles */
.navbar {
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
}
.navbar-brand img {
    height: 60px;
}
.nav-link {
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-light);
}
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
}
.dropdown-item {
    color: var(--primary);
    font-size: 0.9rem;
}
.dropdown-item:hover {
    background-color: var(--primary-subtle);
    color: var(--primary-light);
}
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline-primary:hover {
    background-color: var(--primary-light);
    color: #ffffff;
    border-color: var(--primary-light);
}
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}
/* Clean Button Styles */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    padding: 10px 24px;
    transition: all 0.2s ease;
    border-radius: 8px;
}
.btn-primary:hover:not(:disabled) {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 53, 0.25);
}
.btn-outline-light {
    color: var(--secondary);
    border-color: var(--border);
    background-color: white;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.2s ease;
    border-radius: var(--radius-md);
}
.btn-outline-light:hover:not(:disabled) {
    background-color: var(--surface-tertiary);
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-1px);
}
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
/* Main Content Area */
.main-content {
    padding: 2rem 0;
    min-height: 70vh;
}
.form-panel {
    background: var(--surface);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: sticky;
    top: 2rem;
    height: fit-content;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}
.form-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.15);
}
.form-panel h1 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
}
.form-panel h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}
.form-panel .text-muted {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}
.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.form-control {
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(19, 197, 221, 0.1);
    outline: none;
}
/* Results Container */
.results-container {
    background: var(--surface);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    position: relative;
}
.results-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--usa-flag);
}
.results-header {
    padding: 2rem;
    text-align: center;
    background: var(--surface-secondary);
    border-bottom: 1px solid var(--border);
}
.results-header h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.results-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}
/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}
.feature-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, rgba(19, 197, 221, 0.1) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}
.feature-list {
    list-style: none;
    padding: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.feature-list li {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 600;
}
/* Progress Tracker */
.progress-tracker {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    position: relative;
}
.progress-tracker::before {
    content: '';
    position: absolute;
    to
p: 15px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border);
    z-index: 1;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
.step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-secondary);
    display unmatched closing tag: </div>