/* ============================================================
   Chronicle 2026 — Dark Navy & Orange Glassmorphism Theme
   ============================================================ */

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Brand Core */
    --loyal-blue:  #004165;
    --true-maroon: #F2DF74; /* Changed to yellow to prevent any accidental red */
    --cool-gray:   #A9B2B1;
    --happy-yellow:#F2DF74;

    /* Theme Mapping */
    --navy:        #001a29; /* Darker anchor for backgrounds */
    --navy-light:  var(--loyal-blue);
    --navy-mid:    #005788;
    --orange:      var(--happy-yellow);
    --orange-dark: #ccbc62;
    --orange-glow: rgba(242, 223, 116, 0.3);
    --white:       #ffffff;
    --gray:        var(--cool-gray);
    --glass-bg:    rgba(0, 65, 101, 0.35);
    --glass-border:rgba(255, 255, 255, 0.12);
    --radius:      24px;
    --shadow:      0 12px 48px rgba(0, 0, 0, 0.5);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

a { color: var(--happy-yellow); text-decoration: none; transition: color 0.3s; }
a:hover { color: #fff2a8; }

img { max-width: 100%; height: auto; }

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* ── Glass Card ─────────────────────────────────────────────── */
.glass {
    background: rgba(0, 65, 101, 0.3);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0 20px;
}

.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
}

.navbar-brand {
    font-size: 1.5rem; font-weight: 700; color: var(--white);
    display: inline-flex; align-items: center;
    letter-spacing: -0.02em;
}

.navbar-brand .highlight-c { margin-right: 0; color: var(--happy-yellow); }
.navbar-brand span { color: var(--orange); }

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { color: var(--gray); font-size: 0.95rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links .btn-primary { color: #0a1628; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span {
    display: block; width: 25px; height: 3px;
    background: var(--white); border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
    background: url('../assets/hero_bg.png') no-repeat center top;
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */
}

.hero::after {
    content: '';
    position: absolute; inset: 0;
    /* Premium overlay combining navy depth with happy yellow warmth */
    background: linear-gradient(135deg, rgba(0, 26, 41, 0.8) 0%, rgba(242, 223, 116, 0.05) 100%);
    box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(242, 223, 116, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(242, 223, 116, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    color: var(--happy-yellow);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--happy-yellow);
    backdrop-filter: blur(8px);
}

.area-block {
    text-align: center;
    margin-bottom: 24px;
}

.area-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.area-sub {
    font-size: clamp(0.85rem, 2.5vw, 1.05rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 6px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 .highlight { color: var(--happy-yellow); }

.highlight-c {
    color: var(--happy-yellow);
    font-weight: 800;
    margin-right: -2px;
    display: inline;
}

.hero-meta {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 24px; margin: 24px 0 32px;
    color: var(--gray); font-size: 1rem;
}

.hero-meta-item { display: flex; align-items: center; gap: 8px; }

.hero-meta-item svg {
    width: 20px; height: 20px; stroke: var(--orange);
    fill: none; stroke-width: 2;
}

.hero p.tagline {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-block; padding: 14px 36px;
    border: none; border-radius: 8px;
    font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #ffec8a);
    color: var(--navy);
    box-shadow: 0 4px 15px var(--orange-glow), inset 0 1px 1px rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 16px 44px;
    border-radius: 10px;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #ffec8a, var(--orange));
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px var(--orange-glow);
    color: var(--navy);
}

.btn-outline {
    background: rgba(242, 223, 116, 0.05);
    color: var(--happy-yellow);
    border: 1.5px solid var(--happy-yellow);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: var(--happy-yellow);
    color: var(--navy);
    box-shadow: 0 0 20px var(--orange-glow);
}

.btn-sm { padding: 8px 20px; font-size: 0.875rem; }

.btn-danger { background: #e74c3c; color: #fff; }
.btn-danger:hover { background: #c0392b; }

.btn-success { background: #27ae60; color: #fff; }
.btn-success:hover { background: #219a52; }

.btn:disabled, .btn[disabled] {
    opacity: 0.5; cursor: not-allowed;
    transform: none !important;
}

/* ── Section ────────────────────────────────────────────────── */
.section { padding: 80px 0; }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header .underline {
    width: 60px; height: 4px;
    background: var(--orange);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.section-header p { color: var(--gray); max-width: 600px; margin: 0 auto; }

/* ── About Section ──────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.about-card {
    padding: 32px;
    text-align: center;
    transition: transform 0.3s;
}

.about-card:hover { transform: translateY(-4px); }

.about-card .icon {
    width: 60px; height: 60px;
    background: var(--orange-glow);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}

.about-card .icon svg {
    width: 28px; height: 28px;
    stroke: var(--orange); fill: none; stroke-width: 2;
}

.about-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.about-card p { color: var(--gray); font-size: 0.95rem; }

/* ── Schedule / Timeline ────────────────────────────────────── */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }

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

.timeline-item {
    position: relative;
    padding: 0 0 30px 64px;
}

.timeline-dot {
    position: absolute; left: 15px; top: 8px;
    width: 20px; height: 20px;
    background: var(--navy);
    border: 3px solid var(--orange);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content { padding: 20px 24px; }

.timeline-time {
    display: inline-block;
    background: var(--orange-glow);
    color: var(--orange);
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content h3 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-content p { color: var(--gray); font-size: 0.92rem; }

.timeline-duration {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--gray);
    background: rgba(255,255,255,0.05);
    padding: 2px 10px;
    border-radius: 4px;
}

/* ── Terms Accordion ────────────────────────────────────────── */
.accordion { max-width: 800px; margin: 0 auto; }

.accordion-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    border-radius: 12px;
    transition: background 0.3s;
}

.accordion-header:hover { background: rgba(17, 34, 64, 0.85); }

.accordion-header .arrow {
    transition: transform 0.3s;
    font-size: 0.8rem;
    color: var(--orange);
}

.accordion-item.active .accordion-header { border-radius: 12px 12px 0 0; }
.accordion-item.active .accordion-header .arrow { transform: rotate(180deg); }

.accordion-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(17, 34, 64, 0.4);
    border: 1px solid var(--glass-border);
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.accordion-body-inner {
    padding: 20px 24px;
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
    background: rgba(10, 25, 47, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 50px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
    margin-bottom: 36px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--orange);
}

.footer-col p, .footer-col li { color: var(--gray); font-size: 0.92rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: var(--gray); }
.footer-col ul a:hover { color: var(--orange); }

.social-links { display: flex; gap: 12px; margin-top: 12px; }

.social-links a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
}
.social-links a svg {
    width: 18px; height: 18px;
    stroke: var(--gray); fill: none; stroke-width: 2;
}
.social-links a:hover svg { stroke: #fff; }

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    color: var(--gray);
    font-size: 0.85rem;
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label .required { color: var(--orange); margin-left: 2px; }

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-control::placeholder { color: var(--gray); opacity: 0.6; }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238892b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

select.form-control option { background: var(--navy-light); color: var(--white); }

textarea.form-control { resize: vertical; min-height: 100px; }

/* Radio / Checkbox */
.radio-group, .checkbox-group { display: flex; flex-wrap: wrap; gap: 16px; }

.radio-option, .checkbox-option {
    display: flex; align-items: center; gap: 8px;
    cursor: pointer; font-size: 0.95rem;
}

.radio-option input, .checkbox-option input {
    accent-color: var(--orange);
    width: 18px; height: 18px;
    cursor: pointer;
}

/* File upload */
.file-upload-area {
    border: 2px dashed var(--glass-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: border-color 0.3s, background 0.3s;
    cursor: pointer;
}

.file-upload-area:hover, .file-upload-area.dragover {
    border-color: var(--orange);
    background: rgba(255, 102, 0, 0.05);
}

.file-upload-area svg {
    width: 40px; height: 40px;
    stroke: var(--gray); fill: none; stroke-width: 1.5;
    margin-bottom: 10px;
}

.file-upload-area p { color: var(--gray); font-size: 0.9rem; }
.file-upload-area .browse-link { color: var(--orange); font-weight: 600; cursor: pointer; }
.file-preview { margin-top: 12px; max-width: 200px; border-radius: 8px; }
.file-name { color: var(--orange); font-size: 0.9rem; margin-top: 8px; }

/* Form hint / error */
.form-hint { font-size: 0.82rem; color: var(--gray); margin-top: 6px; }
.form-error { font-size: 0.82rem; color: #e74c3c; margin-top: 6px; }
.form-control.error { border-color: #e74c3c; }

/* ── Steps Indicator ────────────────────────────────────────── */
.steps-indicator {
    display: flex; justify-content: center;
    gap: 0; margin-bottom: 40px;
    position: relative;
}

.step-item {
    display: flex; align-items: center; gap: 10px;
    padding: 0 20px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    width: 60px; height: 2px;
    background: var(--glass-border);
    margin-left: 10px;
}

.step-item.active:not(:last-child)::after { background: var(--orange); }

.step-number {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem;
    border: 2px solid var(--glass-border);
    color: var(--gray);
    transition: all 0.3s;
    flex-shrink: 0;
}

.step-item.active .step-number {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
}

.step-item.completed .step-number {
    border-color: #27ae60;
    background: #27ae60;
    color: #fff;
}

.step-label { font-size: 0.85rem; color: var(--gray); white-space: nowrap; }
.step-item.active .step-label { color: var(--white); font-weight: 600; }
.step-item.completed .step-label { color: #27ae60; }

/* Step content */
.step-content { display: none; }
.step-content.active { display: block; animation: fadeIn 0.3s ease; }

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

.step-buttons { display: flex; justify-content: space-between; margin-top: 30px; gap: 16px; }

/* ── Review Summary ─────────────────────────────────────────── */
.review-table { width: 100%; border-collapse: collapse; }
.review-table tr { border-bottom: 1px solid var(--glass-border); }
.review-table td { padding: 12px 16px; font-size: 0.95rem; }
.review-table td:first-child { color: var(--gray); font-weight: 500; width: 40%; }
.review-table td:last-child { color: var(--white); }

/* ── Confirmation Page ──────────────────────────────────────── */
.confirmation-card {
    max-width: 600px;
    margin: 120px auto 60px;
    padding: 40px;
    text-align: center;
}

.confirmation-icon {
    width: 80px; height: 80px;
    background: rgba(39, 174, 96, 0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
}

.confirmation-icon svg {
    width: 40px; height: 40px;
    stroke: #27ae60; fill: none; stroke-width: 2.5;
}

.reference-badge {
    display: inline-block;
    background: var(--orange-glow);
    color: var(--orange);
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 16px 0;
    border: 1px solid rgba(242, 223, 116, 0.4);
}

/* ── Admin Panel ────────────────────────────────────────────── */
.admin-layout {
    padding-top: 90px;
    min-height: 100vh;
}

.admin-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 30px; flex-wrap: wrap; gap: 16px;
}

.admin-header h1 { font-size: 1.8rem; }

.admin-tabs {
    display: flex; gap: 8px; margin-bottom: 30px; flex-wrap: wrap;
}

.admin-tab {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--gray);
    transition: all 0.3s;
    text-decoration: none;
}

.admin-tab:hover { border-color: var(--orange); color: var(--orange); }
.admin-tab.active { background: var(--orange); color: #fff; border-color: var(--orange); }

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    padding: 24px;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 4px;
}

/* ── Data Table ─────────────────────────────────────────────── */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th, .data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
    white-space: nowrap;
}

.data-table th {
    background: rgba(242, 223, 116, 0.15);
    color: var(--orange);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tr:hover { background: rgba(255, 255, 255, 0.02); }

.data-table td { color: var(--gray); }

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
}

.badge-toastmaster { background: rgba(255, 102, 0, 0.15); color: var(--orange); }
.badge-guest { background: rgba(52, 152, 219, 0.15); color: #3498db; }
.badge-student { background: rgba(39, 174, 96, 0.15); color: #27ae60; }

.action-btns { display: flex; gap: 6px; }
.action-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: opacity 0.3s;
    text-decoration: none;
    color: #fff;
}
.action-btn:hover { opacity: 0.8; color: #fff; }
.action-btn.view { background: #3498db; }
.action-btn.edit { background: var(--orange); }
.action-btn.delete { background: #e74c3c; }

/* ── Login Form ─────────────────────────────────────────────── */
.login-card {
    max-width: 420px;
    margin: 0 auto;
    padding: 40px;
}

.login-card h2 { text-align: center; margin-bottom: 8px; }
.login-card p { text-align: center; color: var(--gray); margin-bottom: 28px; }

/* ── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none; align-items: center; justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal {
    max-width: 600px; width: 100%;
    max-height: 80vh; overflow-y: auto;
    padding: 32px;
}

.modal-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
}

.modal-header h3 { font-size: 1.3rem; }

.modal-close {
    background: none; border: none; color: var(--gray);
    font-size: 1.5rem; cursor: pointer;
    transition: color 0.3s;
}
.modal-close:hover { color: var(--orange); }

/* ── Alert Messages ─────────────────────────────────────────── */
.alert {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.92rem;
    display: flex; align-items: center; gap: 10px;
}

.alert-success { background: rgba(39, 174, 96, 0.15); color: #27ae60; border: 1px solid rgba(39, 174, 96, 0.3); }
.alert-error { background: rgba(231, 76, 60, 0.15); color: #e74c3c; border: 1px solid rgba(231, 76, 60, 0.3); }
.alert-warning { background: rgba(241, 196, 15, 0.15); color: #f1c40f; border: 1px solid rgba(241, 196, 15, 0.3); }

/* ── QR Code Section ────────────────────────────────────────── */
.payment-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
}

.qr-box {
    padding: 20px;
    text-align: center;
    border-radius: 12px;
}

.qr-box img { width: 180px; border-radius: 8px; }

.bank-details { padding: 20px 0; }
.bank-details h4 { color: var(--orange); margin-bottom: 16px; font-size: 1.1rem; }

.detail-row {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.92rem;
}

.detail-row .label { color: var(--gray); }
.detail-row .value { color: var(--white); font-weight: 600; }

/* ── Admin Form ─────────────────────────────────────────────── */
.admin-form-card {
    padding: 30px;
    margin-bottom: 20px;
}

.inline-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.inline-form .full-width { grid-column: 1 / -1; }

/* ── Sort Handle ────────────────────────────────────────────── */
.sort-handle {
    cursor: grab; color: var(--gray); font-size: 1.2rem;
    user-select: none;
}
.sort-handle:active { cursor: grabbing; }

/* ── Print Styles ───────────────────────────────────────────── */
@media print {
    .navbar, .footer, .no-print { display: none !important; }
    body { background: #fff; color: #333; font-size: 12px; }
    .glass { background: #fff; border: 1px solid #ddd; box-shadow: none; backdrop-filter: none; }
    .confirmation-card { 
        margin: 10px auto; 
        padding: 15px; 
        width: 90%; 
        max-width: 800px;
    }
    .confirmation-card h2 { 
        font-size: 1.5rem; 
        margin-bottom: 10px; 
    }
    .confirmation-card p { 
        font-size: 0.9rem; 
        margin: 6px 0; 
    }
    .reference-badge {
        font-size: 1.4rem !important;
        padding: 8px 16px !important;
        margin: 10px 0 !important;
    }
    .confirmation-card .glass { 
        padding: 15px; 
    }
    .confirmation-card table { 
        font-size: 0.85rem; 
        width: 100%; 
    }
    .confirmation-card td { 
        padding: 6px 8px; 
    }
    /* Reduce spacing in fee section */
    .confirmation-card > div:not(.glass) { 
        margin: 15px 0; 
        padding: 12px; 
    }
    .confirmation-card > div:not(.glass) div:first-child { 
        font-size: 0.7rem; 
    }
    .confirmation-card > div:not(.glass) div:nth-child(2) { 
        font-size: 1.8rem; 
    }
    .confirmation-card > div:not(.glass) div:last-child { 
        font-size: 0.7rem; 
    }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed; top: 70px; left: 0; right: 0;
        background: rgba(10, 25, 47, 0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform 0.3s;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.open { transform: translateY(0); }

    .hero h1 { font-size: 2rem; }
    .hero-meta { flex-direction: column; align-items: center; }

    .steps-indicator { flex-direction: column; align-items: flex-start; gap: 12px; }
    .step-item::after { display: none; }

    .form-wrapper { padding: 24px; }

    .payment-info { grid-template-columns: 1fr; }

    #step2Banner { flex-direction: column; text-align: center; }
    #step2Banner > div { text-align: center !important; }

    .inline-form { grid-template-columns: 1fr; }

    .section { padding: 50px 0; }

    .footer-grid { grid-template-columns: 1fr; }

    .admin-header { flex-direction: column; align-items: flex-start; }

    .data-table th, .data-table td { padding: 10px 12px; font-size: 0.82rem; }

    .step-buttons { flex-direction: column; }
    .step-buttons .btn { width: 100%; }
}

@media (max-width: 480px) {
    .hero { padding: 80px 16px 40px; }
    .hero h1 { font-size: 1.7rem; }
    .section-header h2 { font-size: 1.6rem; }
    .form-wrapper { padding: 16px; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }
}

/* ── Chronicle 2026 UI Overhaul ──────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800&display=swap');

h1, h2, h3, h4, .font-display { font-family: 'Outfit', sans-serif; }
body { font-family: 'Inter', sans-serif; }

.noise-overlay {
    position: absolute; inset: 0; opacity: 0.03; z-index: 10;
    pointer-events: none;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.bg-navy { background-color: var(--navy); }
.bg-navy-mid { background-color: var(--navy-mid); }
.blur-3xl { filter: blur(60px); }
.spotlight-beam { filter: blur(40px); opacity: 0.2; transform: skewX(-15deg); }

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}
.glass-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }

/* Scroll Animations */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s ease; }
.in-view { opacity: 1; transform: translate(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Progress Bar */
.progress-bar-container {
    width: 100%; height: 6px; background: rgba(255,255,255,0.1);
    border-radius: 4px; overflow: hidden; margin-bottom: 24px;
}
.progress-bar-fill { height: 100%; background: var(--orange); border-radius: 4px; transition: width 0.4s ease; }
