:root {
    --prof-primary: #1e3a8a;
    /* Deep Blue */
    --prof-primary-light: #3b82f6;
    --prof-secondary: #ea580c;
    /* Burnt Orange */
    --prof-bg: #f8fafc;
    --prof-card-bg: #ffffff;
    --prof-text-main: #111827;
    --prof-text-muted: #6b7280;
    --prof-border: #e5e7eb;
    --prof-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --prof-radius: 0.75rem;
}

body {
    background-color: var(--prof-bg);
    color: var(--prof-text-main);
}

/* Override Glass Card for a cleaner look */
.glass-card {
    background: var(--prof-card-bg);
    border: 1px solid var(--prof-border);
    box-shadow: var(--prof-shadow);
    border-radius: var(--prof-radius);
    backdrop-filter: none;
    /* Remove blur for cleaner look */
}

.glass-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Professional Section Headers */
.prof-section-header {
    background: white;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--prof-border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .prof-section-header {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
}

.prof-section-header h2,
.prof-section-header h3 {
    color: var(--prof-text-main);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prof-section-header i {
    color: var(--prof-primary);
    font-size: 1.25rem;
}

.prof-section-header p {
    color: var(--prof-text-muted);
    font-size: 0.875rem;
    margin-left: 0;
    font-weight: 400;
}

@media (min-width: 768px) {
    .prof-section-header p {
        margin-left: auto;
    }
}

/* Dashboard Stat Cards - Clean */
.dashboard-stat-card {
    background: white;
    border: 1px solid var(--prof-border);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    border-left: 4px solid var(--prof-primary);
    /* Default accent */
}

.dashboard-stat-card:hover {
    border-color: var(--prof-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.dashboard-stat-card .text-2xl {
    color: var(--prof-text-main);
}

.dashboard-stat-card .text-xs {
    color: var(--prof-text-muted);
}

/* Icon backgrounds in dashboard */
.dashboard-stat-card .rounded-full {
    background-color: #eff6ff;
    /* blue-50 */
}

.dashboard-stat-card i {
    color: var(--prof-primary);
}

/* Important Dates Cards */
.date-card {
    background: white;
    border: 1px solid var(--prof-border);
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.date-card .icon-box {
    background-color: #eff6ff;
    color: var(--prof-primary);
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: inline-flex;
}

.date-card h3 {
    color: var(--prof-text-main);
    font-weight: 600;
}

/* Quick Links - Grid */
.quick-link-card {
    background: white;
    border: 1px solid var(--prof-border);
    border-radius: 0.5rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.2s;
}

.quick-link-card:hover {
    border-color: var(--prof-primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.quick-link-card .icon-circle {
    width: 3rem;
    height: 3rem;
    background-color: #eff6ff;
    color: var(--prof-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
}

.quick-link-card:hover .icon-circle {
    background-color: var(--prof-primary);
    color: white;
}

/* Hero Section Refinement */
.hero-illustration {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.25);
}

/* Steps */
.step-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid var(--prof-border);
    border-radius: 0.5rem;
    transition: border-color 0.2s;
}

.step-item:hover {
    border-color: var(--prof-primary);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--prof-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Footer */
footer {
    background-color: #111827;
    border-top: 1px solid #374151;
}

/* Utility to hide elements that are too flashy */
.hide-flashy {
    display: none !important;
}