/* ===================================================================
   MEDHOPE Medical Coding Academy — Navy & Gold Theme
   =================================================================== */

:root {
    --navy-950: #0A1730;
    --navy-900: #0F1F3D;
    --navy-800: #16305C;
    --navy-700: #1F3D6B;
    --navy-600: #2C4E82;

    --gold-600: #A87D1E;
    --gold-500: #C9A227;
    --gold-400: #D9B94D;
    --gold-300: #E7C874;
    --gold-100: #F6EAC6;

    --ivory: #F6F4EE;
    --surface: #FFFFFF;
    --surface-sunk: #F0EEE6;

    --text-main: #0F1F3D;
    --text-muted: #5B6478;
    --text-on-navy: #F6F4EE;
    --text-on-navy-muted: #B9C2D6;

    --border: rgba(15, 31, 61, 0.12);
    --border-gold: rgba(201, 162, 39, 0.4);
    --shadow-card: 0 10px 30px rgba(15, 31, 61, 0.08);
    --shadow-lift: 0 18px 40px rgba(15, 31, 61, 0.14);

    --font-display: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--ivory);
    overflow-x: hidden;
}

body {
    position: relative;
    overflow-x: hidden;
    background:
        radial-gradient(1200px 600px at 90% -10%, rgba(201, 162, 39, 0.08), transparent 60%),
        radial-gradient(900px 500px at -10% 20%, rgba(15, 31, 61, 0.05), transparent 55%),
        var(--ivory);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy-900);
    letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 1.5px;
    background: var(--gold-500);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.08rem;
    max-width: 600px;
    margin: 0 auto;
}

.gold-text { color: var(--gold-500); }

.footer-logo .med{
    color:#ffffff;
}

.footer-logo .hope{
    color:var(--gold-400);
}

/* ---------- Code chip (signature element) ---------- */
.code-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    background: var(--navy-900);
    color: var(--gold-300);
    border: 1px solid var(--navy-700);
    white-space: nowrap;
}

.code-chip::before {
    content: '</>';
    color: var(--gold-500);
    opacity: 0.8;
    font-size: 0.72rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.9rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid transparent;
    font-family: var(--font-body);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--navy-900);
    color: var(--text-on-navy);
    box-shadow: 0 8px 20px rgba(15, 31, 61, 0.25);
}
.btn-primary:hover { background: var(--navy-800); box-shadow: 0 10px 26px rgba(15, 31, 61, 0.32); }

.btn-secondary {
    background: transparent;
    color: var(--navy-900);
    border-color: var(--gold-500);
}
.btn-secondary:hover { background: var(--gold-100); }

.btn-outline {
    background: transparent;
    border-color: var(--border);
    color: var(--navy-800);
}
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-600); background: var(--gold-100); }

.w-100 { width: 100%; }

/* ---------- Cards ---------- */
.glass-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
    border-color: var(--border-gold);
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.4rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.9rem 0;
    background: rgba(246, 244, 238, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--navy-900);
}

.logo img {
    height: 38px;
    width: auto;
    display: block;
}

.brand{
    display:inline-flex;
    align-items:center;
    line-height:1;
    letter-spacing:0;
}

.brand .med{
    color:var(--navy-900);
}

.brand .hope{
    color:var(--gold-500);
}

.nav-links { display: flex; gap: 2.2rem; }

.nav-links a {
    font-size: 0.96rem;
    font-weight: 500;
    color: var(--navy-800);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { color: var(--navy-900); }

.hamburger { display: none; font-size: 1.4rem; cursor: pointer; color: var(--navy-900); }

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.1rem;
    background: var(--gold-100);
    color: var(--gold-600);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
    border: 1px solid var(--border-gold);
}

.hero h1 {
    font-size: 3.6rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-500);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    max-width: 92%;
}

.hero-buttons { display: flex; gap: 1rem; margin-bottom: 2.6rem; flex-wrap: wrap; }

.hero-highlights { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    padding: 0.55rem 1rem;
    border-radius: 50px;
    font-size: 0.86rem;
    border: 1px solid var(--border);
    color: var(--navy-800);
    font-weight: 500;
}

.highlight-item i { color: var(--gold-500); }

/* ---------- Hero seal visual (replaces stock photo) ---------- */
.hero-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seal-plate {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, var(--navy-700), var(--navy-950) 72%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(10, 23, 48, 0.35), inset 0 0 0 2px rgba(201, 162, 39, 0.35);
}

.seal-plate::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 1.5px dashed rgba(201, 162, 39, 0.55);
}

.seal-inner {
    text-align: center;
    color: var(--text-on-navy);
}

.seal-inner .seal-cpc {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold-300);
    line-height: 1;
}

.seal-inner .seal-caption {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-on-navy-muted);
    margin-top: 0.6rem;
}

.seal-ribbon {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.seal-ribbon span {
    width: 26px;
    height: 46px;
    background: var(--gold-500);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
}

.seal-ribbon span:last-child { background: var(--navy-700); }

.floating-code {
    position: absolute;
    animation: float-badge 5s infinite ease-in-out alternate;
}

.floating-code.fc-1 { top: 8%; left: 2%; animation-delay: 0.2s; }
.floating-code.fc-2 { top: 20%; right: 0%; animation-delay: 1.2s; }
.floating-code.fc-3 { bottom: 14%; left: -2%; animation-delay: 0.6s; }
.floating-code.fc-4 { bottom: 4%; right: 6%; animation-delay: 1.8s; }

@keyframes float-badge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-14px); }
}

/* ---------- About ---------- */
.about { padding: 120px 0; }

.about-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
}

/* Terminal-style panel replaces stock photo */
.terminal-card {
    background: var(--navy-950);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    border: 1px solid var(--navy-700);
}

.terminal-topbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.1rem;
    background: var(--navy-900);
    border-bottom: 1px solid var(--navy-700);
}

.terminal-topbar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--navy-700);
}

.terminal-topbar span:nth-child(1) { background: #E7676B; }
.terminal-topbar span:nth-child(2) { background: var(--gold-400); }
.terminal-topbar span:nth-child(3) { background: #58C48B; }

.terminal-topbar .terminal-label {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-on-navy-muted);
}

.terminal-body {
    padding: 1.6rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.88rem;
    line-height: 2;
    color: var(--text-on-navy-muted);
}

.terminal-body .t-key { color: var(--gold-300); }
.terminal-body .t-val { color: #A7E3C4; }
.terminal-body .t-comment { color: #5C6C8C; }
.terminal-body .t-cursor {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: var(--gold-400);
    vertical-align: middle;
    animation: blink 1s step-start infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.about-content .subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold-600);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.2rem;
}

.feature-box {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.5rem 1rem;
    border-radius: 14px;
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.feature-box i { font-size: 1.7rem; color: var(--gold-500); margin-bottom: 1rem; }
.feature-box h3 { font-size: 0.98rem; margin-bottom: 0.4rem; font-family: var(--font-body); font-weight: 600; }
.feature-box p { font-size: 0.8rem; margin: 0; }

.sparkle-text {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.8rem;
    background: var(--navy-900);
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-on-navy);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.sparkle-text i { color: var(--gold-400); margin-right: 0.6rem; }

/* ---------- Courses ---------- */
.courses { padding: 120px 0; }

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.course-card { padding: 2rem; display: flex; flex-direction: column; }

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--navy-900);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-400);
    margin-bottom: 1.5rem;
}

.course-card h3 { font-size: 1.35rem; margin-bottom: 1rem; }

.course-code-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-desc {
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ---------- Why us ---------- */
.why-us { padding: 120px 0; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.4rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface);
    padding: 1.4rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.benefit-item:hover { border-color: var(--border-gold); transform: translateX(5px); }

.benefit-item i {
    font-size: 1.3rem;
    color: var(--navy-900);
    background: var(--gold-100);
    padding: 0.75rem;
    border-radius: 10px;
}

.benefit-item span { font-weight: 500; font-size: 1.05rem; }

/* ---------- Batches: ticket-style cards ---------- */
.batches { padding: 120px 0; }

.batches-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.batch-card {
    background: var(--surface);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: var(--shadow-card);
}

.batch-header {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
    color: var(--text-on-navy);
}

.batch-header i { font-size: 2.6rem; }

.batch-header h3 { font-size: 1.3rem; color: var(--text-on-navy); font-family: var(--font-display); }

.batch-header.offline {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}
.batch-header.offline i { color: var(--gold-400); }

.batch-header.online {
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.batch-header.online i { color: var(--gold-400); }

.batch-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    position: relative;
}

.batch-body::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    border-top: 2px dashed var(--border);
}

.batch-detail { display: flex; align-items: center; gap: 1rem; }

.batch-detail i {
    font-size: 1.1rem;
    color: var(--gold-600);
    width: 30px;
    text-align: center;
}

.batch-detail div { display: flex; flex-direction: column; }
.batch-detail .label { font-size: 0.78rem; color: var(--text-muted); }
.batch-detail .value { font-weight: 600; font-size: 1.05rem; font-family: var(--font-mono); }

/* ---------- Placement ---------- */
.placement { padding: 120px 0; }

.placement-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.placement-goal {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--gold-600);
    margin-bottom: 1.4rem;
    font-family: var(--font-display);
}

.placement-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.placement-list li { display: flex; align-items: center; gap: 1rem; font-size: 1.05rem; }
.placement-list i { color: var(--gold-500); font-size: 1.15rem; }

.placement-stats { display: flex; justify-content: center; align-items: center; }
.stat-circle { text-align: center; }

.circular-chart { display: block; margin: 0 auto 1rem; max-width: 240px; max-height: 240px; }
.circle-bg { fill: none; stroke: var(--border); stroke-width: 2.5; }
.circle {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke: var(--gold-500);
    animation: progress 2s ease-out forwards;
}

@keyframes progress { 0% { stroke-dasharray: 0 100; } }

.percentage {
    fill: var(--navy-900);
    font-family: var(--font-display);
    font-size: 0.5em;
    font-weight: 700;
    text-anchor: middle;
}

.stat-circle p { font-size: 1.1rem; font-weight: 600; color: var(--navy-900); }

/* ---------- Testimonials ---------- */
.testimonials { padding: 120px 0; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial-card { padding: 2rem; }
.stars { color: var(--gold-500); margin-bottom: 1rem; }

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.65;
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.student-info { display: flex; align-items: center; gap: 1rem; }

.avatar {
    width: 40px;
    height: 40px;
    background: var(--navy-900);
    color: var(--gold-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-display);
}

.student-info span { font-weight: 600; color: var(--navy-800); }

/* ---------- Contact ---------- */
.contact { padding: 120px 0; }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.info-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.info-item { display: flex; gap: 1.5rem; }

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--navy-900);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--gold-400);
    flex-shrink: 0;
}

.info-item h4 { margin-bottom: 0.3rem; font-family: var(--font-body); font-size: 1rem; }
.info-item p, .info-item a { color: var(--text-muted); font-size: 0.95rem; }
.info-item a:hover { color: var(--gold-600); }

.social-links { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.social-btn {
    padding: 0.8rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    color: var(--navy-800);
}

.social-btn:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.social-btn i { color: var(--gold-500); }
.social-btn.instagram:hover i { color: #C13584; }

.contact-form h3 { margin-bottom: 1.5rem; font-size: 1.4rem; }

.form-group { margin-bottom: 1.2rem; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.3rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-main);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #9AA3B5; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

/* ---------- Footer ---------- */
footer {
    background: var(--navy-950);
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 300px at 50% 0%, rgba(201, 162, 39, 0.08), transparent 70%);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    position: relative;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-on-navy);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-logo img { height: 32px; }
.footer-logo span { color: var(--gold-400); }

.footer-tagline {
    color: var(--text-on-navy-muted);
    font-weight: 500;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.footer-tagline i { color: var(--gold-400); }

.footer-copyright { color: #6E7A99; font-size: 0.85rem; margin-top: 0.6rem; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease-out; }
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s ease-out; }
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.6s ease-out; transition-delay: var(--delay, 0s); }
.reveal-up.active { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-up, .floating-code, .btn, .glass-panel {
        transition: none !important;
        animation: none !important;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .hero-container, .about-container, .placement-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content { order: 2; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-highlights { justify-content: center; }
    .hero-visual { order: 1; }
    .hero h1 { font-size: 2.8rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.3rem; }
    .hero-visual { height: 360px; }
    .seal-plate { width: 240px; height: 240px; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(246, 244, 238, 0.98);
        backdrop-filter: blur(15px);
        padding: 2rem;
        border-bottom: 1px solid var(--border);
        text-align: center;
        gap: 1rem;
    }
}
