/* style.css - Elite Light Redesign */
:root {
    /* Color Palette - Light Mode */
    --bg-color: #FAFAFA;
    --surface: #FFFFFF;
    --surface-glass: rgba(255, 255, 255, 0.7);
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);

    --text-main: #0F172A;
    --text-muted: #64748B;

    --primary: #000000;
    --primary-invert: #FFFFFF;

    /* Vibrant Soft Accents */
    --accent-emerald: #10B981;
    --accent-indigo: #6366F1;
    --accent-violet: #8B5CF6;
    --accent-blue: #3B82F6;
    --accent-pink: #EC4899;
    --accent-amber: #F59E0B;
    --error: #EF4444;

    /* Metrics */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.08), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(0, 0, 0, 0.05);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s ease;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.2;
}

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

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.bold { font-weight: 600; }
.full-width { width: 100%; }

/* Typography Highlights */
.gradient-text {
    background: linear-gradient(135deg, #000000 0%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn-primary, .btn-primary-outline, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-invert);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary-outline {
    background: transparent;
    color: var(--text-main);
    border: 1.5px solid var(--border-hover);
}

.btn-primary-outline:hover {
    background: var(--bg-color);
    border-color: var(--primary);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text-main);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-color);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.btn-large {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
}

.btn-glow {
    position: relative;
    z-index: 1;
}
.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
    border-radius: calc(var(--radius-sm) + 2px);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    filter: blur(14px);
}
.btn-glow:hover::after {
    opacity: 0.3; /* Softer glow for light mode */
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-main);
    cursor: pointer;
    letter-spacing: -0.5px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--primary-invert);
    border-radius: 8px;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

.hamburger {
    display: none;
    font-size: 2rem;
    color: var(--text-main);
    cursor: pointer;
}

.footer_logo{
       width: 41%;

}

/* Animations & Reveal */
.page-section {
    display: none;
    padding-top: 80px;
    min-height: calc(100vh - 80px);
}

.page-section.active {
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* 1. HERO SECTION */
.hero {
    position: relative;
    padding: 8rem 5% 6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
}

.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    filter: blur(100px);
    opacity: 0.25;
    border-radius: 50%;
    animation: drift 20s infinite alternate ease-in-out;
}

.shape-1 {
    width: 600px; height: 600px;
    background: var(--accent-violet);
    top: -100px; right: 5%;
}
.shape-2 {
    width: 500px; height: 500px;
    background: var(--accent-blue);
    bottom: -50px; left: -10%;
    animation-direction: alternate-reverse;
}
.shape-3 {
    width: 450px; height: 450px;
    background: var(--accent-pink);
    top: 30%; left: 35%;
    opacity: 0.15;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 60px); }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-emerald);
    animation: pulse-light 2s infinite;
}

@keyframes pulse-light {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.tutor-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--surface);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

/* 2. BENEFITS & INFO */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 3rem auto 5rem;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.section-title.left-align, .section-subtitle.left-align {
    text-align: left;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 8rem;
}

.benefit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,0,0,0.15);
    box-shadow: var(--shadow-lg);
}

.icon-wrap {
    width: 55px; height: 55px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    background: var(--bg-color);
}

.color-indigo { color: var(--accent-indigo); background: #EEF2FF; border: 1px solid #E0E7FF; }
.color-emerald { color: var(--accent-emerald); background: #ECFDF5; border: 1px solid #D1FAE5; }
.color-rose { color: var(--accent-pink); background: #FDF2F8; border: 1px solid #FCE7F3; }
.color-amber { color: var(--accent-amber); background: #FFFBEB; border: 1px solid #FEF3C7; }

.benefit-card:hover .icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Timeline */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--border), rgba(0,0,0,0));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    transform: translateX(-50%);
    width: 32px; height: 32px;
    background: var(--surface);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 0 0 4px var(--bg-color);
}

.timeline-item:hover .timeline-dot {
    background: var(--primary);
    color: var(--primary-invert);
    box-shadow: 0 0 0 6px rgba(0,0,0,0.05);
}

.timeline-content {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.timeline-item:hover .timeline-content {
    border-color: rgba(0,0,0,0.15);
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* 3. PREMIUM FORM */
.form-wrapper {
    max-width: 1300px;
    margin: 0 auto 6rem;
}

.form-header-premium {
    text-align: center;
    margin-bottom: 3rem;
}
.form-header-premium h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

.glass-heavy {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0,0,0,0.02);
    border-radius: var(--radius);
    padding: 3.5rem;
}

.form-section-title {
    font-size: 1.15rem;
    color: var(--text-main);
    border-bottom: 2px solid var(--bg-color);
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group, .form-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

/* Floating Labels & Inputs */
.form-floating input, .form-floating textarea {
    width: 100%;
    padding: 1.2rem 1rem 0.6rem;
    font-size: 1rem;
    color: var(--text-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    background: var(--surface);
    transition: var(--transition-fast);
}

.form-floating textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 1.5rem;
}

.form-floating label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.form-floating textarea + label {
    top: 1.5rem;
    transform: translateY(0);
}

.form-floating input:focus, .form-floating textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 1px var(--primary);
}

/* Hide label when field is focused OR has content */
.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label,
.form-floating textarea:focus + label,
.form-floating textarea:not(:placeholder-shown) + label {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Select */
.select-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.custom-select {
    position: relative;
}

.custom-select::after {
    content: '\eb52';
    font-family: 'boxicons';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

.custom-select select {
    width: 100%;
    appearance: none;
    padding: 1rem;
    font-size: 1rem;
    color: var(--text-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    background: var(--surface);
    transition: var(--transition-fast);
    font-weight: 500;
}

.custom-select select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

/* Checkboxes */
.premium-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

/* Subjects section spans full width outside form-row */
.subjects-full-row {
    grid-column: 1 / -1;
    width: 100%;
    margin-bottom: 1.5rem;
}

.premium-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    cursor: pointer;
    background: var(--surface);
    transition: var(--transition-fast);
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
    white-space: nowrap;
    min-width: 0;
}

.premium-checkbox:hover {
    border-color: var(--border-hover);
    background: var(--bg-color);
}

.premium-checkbox input { display: none; }

.chk-box {
    width: 18px; height: 18px;
    border: 1.5px solid var(--border-hover);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-fast);
    background: var(--bg-color);
}

.premium-checkbox input:checked + .chk-box {
    background: var(--primary);
    border-color: var(--primary);
}

.premium-checkbox input:checked + .chk-box::after {
    content: '\eb7b';
    font-family: 'boxicons';
    color: var(--primary-invert);
    font-size: 14px;
    font-weight: bold;
}

.premium-checkbox:has(input:checked) {
    border-color: var(--primary);
    background: rgba(0,0,0,0.02);
}

/* File Upload */
.file-upload-wrapper {
    display: block;
    border: 2px dashed rgba(0,0,0,0.15);
    border-radius: var(--radius-sm);
    background: var(--bg-color);
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-wrapper:hover, .file-upload-wrapper.dragover {
    border-color: var(--primary);
    background: rgba(0,0,0,0.02);
}

.file-upload-wrapper input[type="file"] { display: none; }

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

.upload-icon i {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.upload-text {
    font-size: 1.05rem;
    color: var(--text-main);
}

.upload-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.file-name-tag {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
}

/* Errors */
.error-msg {
    display: block;
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 0.4rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: var(--transition-fast);
    position: absolute;
    pointer-events: none;
    font-weight: 500;
}

.has-error .error-msg {
    opacity: 1;
    transform: translateY(0);
}

.has-error input, .has-error textarea, .has-error select, .has-error .premium-checkbox, .has-error .file-upload-wrapper {
    border-color: var(--error) !important;
    background: rgba(239, 68, 68, 0.05) !important;
}

.has-error .form-floating label { color: var(--error); }

/* Submit Button Logic */
.btn-submit {
    height: 56px;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}
.btn-submit .icon-right {
    font-size: 1.3rem;
    transition: transform 0.3s;
}
.btn-submit:hover .icon-right { transform: translateX(5px); }

.spinner {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: #FFF;
    border-radius: 50%;
    animation: spin 1s infinite linear;
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
}

.btn-submit.loading span, .btn-submit.loading i { opacity: 0; }
.btn-submit.loading .spinner { display: block; }
@keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }

/* Footer */
.footer {
    background: var(--surface);
    color: var(--text-main);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
    margin-bottom: 2rem;
}

.social-links { display: flex; gap: 1rem; }
.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: var(--transition-fast);
}
.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-col h4 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.link-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition-fast);
}

/* Logo IMage CSs */
.logo img {
    position: absolute;
    margin: -50px 0 0;
    width: 8%;
}

.link-col a:hover {
    color: var(--primary);
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Toasts */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--primary);
    border-left: 4px solid var(--accent-emerald);
    color: var(--primary-invert);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xs);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.toast-error { border-left-color: var(--error); }
.toast.show { transform: translateX(0); opacity: 1; }
.toast i { font-size: 1.3rem; }
.toast.toast-success i { color: var(--accent-emerald); }
.toast.toast-error i { color: var(--error); }

/* Responsive */
@media (max-width: 900px) {
    .split-layout { grid-template-columns: 1fr; }
    .hero h1 { font-size: 4rem; }
    .footer-content { grid-template-columns: 1fr; gap: 3rem; }
    .tutor-stats { flex-direction: column; gap: 1rem; }
    .stat-divider { width: 60px; height: 1px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        flex-direction: column;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; color: #000; }

    .form-row { grid-template-columns: 1fr; }
    .glass-heavy { padding: 2.5rem 1.5rem; box-shadow: var(--shadow-sm); }
    .hero { padding-top: 6rem; min-height: 70vh; }
    .hero h1 { font-size: 3.2rem; }
}

/* Applied Notice */
.applied-notice {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
}

.notice-icon i {
    font-size: 3rem;
    color: var(--accent-emerald);
}

.applied-notice h3 {
    font-size: 1.4rem;
    color: #166534;
    margin-bottom: 0.5rem;
}

.applied-notice p {
    color: #15803d;
    font-size: 1rem;
}

.text-muted-small {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
}

/* Notification Bell */
.notif-bell-btn {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px 6px;
    transition: var(--transition-fast);
}

.notif-bell-btn:hover { color: var(--text-main); }

.notif-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 9px;
    height: 9px;
    background: var(--accent-emerald);
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulse-light 2s infinite;
}

.notif-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 300px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    overflow: hidden;
}

.notif-dropdown.open { display: block; }

.notif-header {
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
    background: var(--bg-color);
}

.notif-body { padding: 8px 0; }

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    font-size: 0.88rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}

.notif-item i {
    font-size: 1.1rem;
    color: var(--accent-emerald);
    margin-top: 2px;
    flex-shrink: 0;
}

.notif-empty {
    padding: 16px;
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
}
