@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
    --primary: #0F172A;
    --primary-light: #1E293B;
    --accent: #E2E8F0;
    --brand-primary: #1E40AF;
    --brand-gradient: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    --gold: #D97706;
    --gold-light: #FEF3C7;
    --success: #059669;
    --success-light: #D1FAE5;
    --danger: #DC2626;
    --danger-light: #FEE2E2;
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --text-main: #334155;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    background: var(--brand-gradient);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 10px rgba(30, 64, 175, 0.3);
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--brand-primary);
}

.nav-btn {
    background: var(--brand-gradient);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 6px -1px rgba(30, 64, 175, 0.2);
}

.nav-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #EFF6FF 0%, #F8FAFC 100%);
    padding: 80px 24px 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px auto;
}

/* Search Bar Component */
.search-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 6px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    border: 1px solid var(--border-color);
    position: relative;
}

.search-input {
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 15px;
    flex-grow: 1;
    color: var(--text-main);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.search-btn {
    background: var(--brand-gradient);
    color: white;
    border: none;
    outline: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    opacity: 0.95;
}

/* Quick Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    margin-top: 8px;
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    text-align: left;
}

.suggestion-item {
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid #F1F5F9;
    transition: var(--transition);
}

.suggestion-item:hover {
    background-color: #EFF6FF;
    color: var(--brand-primary);
}

/* Trust Strips */
.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.trust-icon {
    color: var(--brand-primary);
    font-size: 18px;
}

/* Sections */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #BFDBFE;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #EFF6FF;
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: bold;
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 24px;
}

.service-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 18px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.service-price span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.service-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--brand-gradient);
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.service-action:hover {
    opacity: 0.9;
}

/* Calculator Widget */
.calc-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.calc-inputs {
    flex: 1 1 500px;
    padding: 40px;
    border-right: 1px solid var(--border-color);
}

.calc-summary {
    flex: 1 1 350px;
    padding: 40px;
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calc-group {
    margin-bottom: 24px;
}

.calc-group label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.calc-select, .calc-range {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    outline: none;
    font-size: 14px;
    font-weight: 600;
    background: white;
}

.calc-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.calc-summary h4 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    pb: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.summary-row.total {
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
    margin-top: 18px;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
}

/* FAQs */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-trigger {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-trigger::after {
    content: '+';
    font-size: 20px;
    color: var(--text-muted);
}

.faq-item.active .faq-trigger::after {
    content: '−';
}

.faq-content {
    padding: 0 24px 20px 24px;
    font-size: 14px;
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}

/* Modal Wizard Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-header {
    background: #F8FAFC;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-body {
    padding: 28px;
    max-height: 450px;
    overflow-y: auto;
}

.modal-footer {
    padding: 20px 28px;
    border-top: 1px solid var(--border-color);
    background: #F8FAFC;
    display: flex;
    justify-content: space-between;
}

/* Wizard Steps styling */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step-node {
    position: relative;
    z-index: 2;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
}

.step-node.active {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: white;
}

.step-node.completed {
    border-color: var(--success);
    background: var(--success);
    color: white;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 14px;
}

.form-control:focus {
    border-color: var(--brand-primary);
}

/* Dashboard Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    max-width: 1200px;
    margin: 0 auto;
    gap: 32px;
    padding: 40px 24px;
}

.sidebar {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    height: fit-content;
}

.sidebar-menu {
    list-style: none;
    margin-top: 20px;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.sidebar-menu a:hover, .sidebar-menu li.active a {
    background: #EFF6FF;
    color: var(--brand-primary);
}

.dash-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dash-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
}

/* Status Tracker styles */
.tracker-container {
    margin-top: 24px;
}

.tracker-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.tracker-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: #E2E8F0;
    z-index: 1;
}

.tracker-progress {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 0%;
    height: 4px;
    background: var(--success);
    z-index: 2;
    transition: var(--transition);
}

.tracker-node {
    position: relative;
    z-index: 3;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.tracker-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #E2E8F0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
}

.tracker-node.active .tracker-circle {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.tracker-node.completed .tracker-circle {
    border-color: var(--success);
    background: var(--success);
    color: white;
}

.tracker-label {
    margin-top: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-muted);
}

.tracker-node.active .tracker-label {
    color: var(--brand-primary);
}

.tracker-node.completed .tracker-label {
    color: var(--success);
}

/* Document upload status styling */
.doc-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.doc-upload-card {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    background: #FAFAFA;
    transition: var(--transition);
    position: relative;
}

.doc-upload-card:hover {
    border-color: var(--brand-primary);
    background: #EFF6FF;
}

.doc-icon {
    font-size: 28px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.doc-name {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.doc-status {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.doc-status.pending {
    color: var(--gold);
}

.doc-status.uploaded {
    color: var(--success);
}

/* Chat Simulator Widget */
.chat-widget {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: white;
}

.chat-header {
    background: #F8FAFC;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    background: var(--brand-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.chat-info h5 {
    font-size: 13px;
    font-weight: bold;
    color: var(--primary);
}

.chat-info p {
    font-size: 10px;
    color: var(--success);
    font-weight: 600;
}

.chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message-bubble {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
}

.message-bubble.user {
    background: var(--brand-primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.message-bubble.advisor {
    background: white;
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 0;
    border: 1px solid var(--border-color);
}

.chat-input-wrapper {
    padding: 12px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
}

.chat-input {
    flex-grow: 1;
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 13px;
}

.chat-send {
    background: var(--brand-gradient);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
}

/* Footer Section */
footer {
    background: var(--primary);
    color: #94A3B8;
    padding: 60px 24px 30px 24px;
    margin-top: auto;
    font-size: 13px;
    border-top: 4px solid var(--brand-primary);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #1E293B;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    background: white;
    color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    font-size: 16px;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 900;
    color: white;
}

/* Utility Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    animation: fadeIn 0.4s ease forwards;
}

/* Responsiveness overrides & Mobile Drawer Styles */
.header-mobile-actions {
    display: none;
}

/* Mobile Menu Toggle Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0.5rem;
    z-index: 1010;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #0f172a;
    transition: var(--transition);
}

/* Hamburger morphing animations */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer Overlay */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer Panel */
.drawer-panel {
    position: fixed;
    top: 0;
    left: -320px;
    width: min(320px, 85vw);
    height: 100vh;
    background: #ffffff;
    z-index: 999;
    box-shadow: 10px 0 30px rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-panel.active {
    left: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer-item {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.drawer-item:hover {
    background-color: #EFF6FF;
    color: var(--brand-primary);
}

.drawer-item.drawer-btn {
    background: var(--brand-gradient);
    color: white;
    text-align: center;
    margin-top: 1rem;
}

.drawer-item.drawer-btn-sec {
    background: #E2E8F0;
    color: var(--text-main);
    text-align: center;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 15px;
    }
    .nav-links {
        display: none !important;
    }
    .header-mobile-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        z-index: 1010;
    }
    .mobile-profile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: var(--brand-primary);
        color: white !important;
        box-shadow: 0 2px 6px rgba(30, 64, 175, 0.2);
        transition: var(--transition);
        border: none;
    }
    .mobile-profile-btn:hover {
        transform: scale(1.05);
    }
    .mobile-profile-btn svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
    }
    .menu-toggle {
        display: flex;
    }
}

/* Top Disclaimer Banner */
.top-disclaimer-banner {
    background-color: var(--gold-light, #FEF3C7);
    color: #92400E;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
    width: 100%;
    position: relative;
    z-index: 1000;
}
.top-disclaimer-banner strong {
    font-weight: 700;
}
.top-disclaimer-banner a {
    color: #1E40AF;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 4px;
}

