/* ═══════════════════════════════════════════════════════════
   KryptoRecht Deutschland — Main Stylesheet
   Palette: Deep Navy #0a1628 | Gold #c9a84c | White #f8f9fa
═══════════════════════════════════════════════════════════ */

/* ─── Reset & Variables ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:      #0a1628;
    --navy-mid:  #112240;
    --navy-light:#1a3458;
    --gold:      #c9a84c;
    --gold-light:#e8c96a;
    --white:     #f8f9fa;
    --grey:      #8892b0;
    --grey-light:#ccd6f6;
    --danger:    #e74c3c;
    --success:   #27ae60;
    --font-body: 'Inter', sans-serif;
    --font-head: 'Playfair Display', serif;
    --shadow:    0 10px 30px rgba(0,0,0,.25);
    --radius:    8px;
    --trans:     all .3s ease;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: 1.4rem; }
p  { color: var(--grey-light); margin-bottom: 1rem; }
a  { color: var(--gold); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--gold-light); }

/* ─── Utility ────────────────────────────────────────────── */
.container       { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center     { text-align: center; }
.text-gold       { color: var(--gold); }
.section-padding { padding: 90px 0; }
.section-title   { margin-bottom: 3rem; }
.section-title h2 span { color: var(--gold); }
.section-title p { max-width: 600px; margin: .8rem auto 0; }
.badge           { display: inline-block; background: rgba(201,168,76,.15); color: var(--gold);
                   font-size: .75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
                   padding: .3rem .8rem; border-radius: 20px; border: 1px solid rgba(201,168,76,.3); margin-bottom: .8rem; }
.divider         { width: 60px; height: 3px; background: var(--gold); margin: 1rem auto; border-radius: 2px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 2rem; border-radius: var(--radius);
    font-size: .95rem; font-weight: 600; cursor: pointer;
    border: 2px solid transparent; transition: var(--trans);
    text-decoration: none;
}
.btn-primary  { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,.35); }
.btn-outline  { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-sm       { padding: .55rem 1.3rem; font-size: .875rem; }
.btn-danger   { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-success  { background: var(--success); color: #fff; border-color: var(--success); }

/* ─── Top Bar ────────────────────────────────────────────── */
.topbar {
    background: var(--navy-mid);
    border-bottom: 1px solid rgba(201,168,76,.2);
    font-size: .82rem;
    padding: .45rem 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.topbar-left, .topbar-right { display: flex; gap: 1.5rem; }
.topbar span { color: var(--grey-light); display: flex; align-items: center; gap: .4rem; }
.topbar span i { color: var(--gold); font-size: .75rem; }

/* ─── Header / Nav ───────────────────────────────────────── */
.main-header {
    background: rgba(10,22,40,.95);
    backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(201,168,76,.15);
    transition: var(--trans);
}
.main-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: .7rem; font-family: var(--font-head); font-size: 1.3rem; color: var(--white); }
.logo i { color: var(--gold); font-size: 1.6rem; }
.main-nav ul { display: flex; align-items: center; list-style: none; gap: .2rem; }
.main-nav ul li a { padding: .5rem 1rem; border-radius: var(--radius); color: var(--grey-light); font-size: .92rem; font-weight: 500; }
.main-nav ul li a:hover, .main-nav ul li a.active { color: var(--white); background: rgba(201,168,76,.1); }
.btn-nav { background: var(--gold) !important; color: var(--navy) !important; font-weight: 600 !important; padding: .5rem 1.2rem !important; }
.btn-nav:hover { background: var(--gold-light) !important; }
.btn-admin { background: var(--danger) !important; color: #fff !important; margin-left: .3rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }

/* ─── Hero Section ───────────────────────────────────────── */
.hero {
    min-height: 90vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.08) 0%, transparent 60%);
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
    position: relative; z-index: 1;
    padding: 6rem 0 4rem;
}
.hero-content .badge { margin-bottom: 1rem; }
.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content h1 em { font-style: normal; color: var(--gold); }
.hero-content .lead { font-size: 1.1rem; color: var(--grey-light); margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--grey-light); }
.trust-item i { color: var(--gold); }
.hero-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 16px; padding: 2.5rem;
    backdrop-filter: blur(10px);
}
.hero-card h3 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.2rem; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-box { text-align: center; padding: 1.2rem; background: rgba(201,168,76,.05); border-radius: var(--radius); border: 1px solid rgba(201,168,76,.15); }
.stat-box .stat-num { display: block; font-size: 2rem; font-weight: 700; color: var(--gold); font-family: var(--font-head); }
.stat-box .stat-label { font-size: .8rem; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; }

/* ─── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
    background: var(--gold);
    padding: 2rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stats-grid .num { display: block; font-size: 2.2rem; font-weight: 700; color: var(--navy); font-family: var(--font-head); }
.stats-grid .lbl { font-size: .85rem; font-weight: 600; color: rgba(10,22,40,.75); text-transform: uppercase; letter-spacing: 1px; }

/* ─── Services Section ───────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
    background: var(--navy-mid);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: 12px; padding: 2rem;
    transition: var(--trans);
}
.service-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow); }
.service-icon { width: 56px; height: 56px; background: rgba(201,168,76,.1); border-radius: 12px;
                display: flex; align-items: center; justify-content: center;
                font-size: 1.4rem; color: var(--gold); margin-bottom: 1.2rem; }
.service-card h3 { color: var(--white); margin-bottom: .7rem; font-size: 1.15rem; }

/* ─── How It Works ───────────────────────────────────────── */
.how-it-works { background: var(--navy-mid); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; counter-reset: steps; }
.step-card {
    background: var(--navy);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: 12px; padding: 2rem 1.5rem;
    text-align: center; position: relative;
    transition: var(--trans);
}
.step-card:hover { border-color: var(--gold); }
.step-num {
    width: 48px; height: 48px;
    background: var(--gold); color: var(--navy);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 700; margin: 0 auto 1.2rem;
}
.step-card h3 { color: var(--white); font-size: 1rem; margin-bottom: .5rem; }

/* ─── Why Us ─────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.why-icon { flex-shrink: 0; width: 44px; height: 44px; background: rgba(201,168,76,.1);
            border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
            color: var(--gold); font-size: 1.1rem; }
.why-text h4 { color: var(--white); margin-bottom: .3rem; }
.why-image {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 16px; padding: 3rem; text-align: center;
    font-size: 5rem; color: var(--gold);
}

/* ─── Testimonials ───────────────────────────────────────── */
.testimonials { background: var(--navy-mid); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card {
    background: var(--navy);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: 12px; padding: 2rem;
}
.stars { color: var(--gold); margin-bottom: 1rem; font-size: .95rem; }
.testimonial-card blockquote { color: var(--grey-light); font-style: italic; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.author-avatar { width: 44px; height: 44px; background: var(--gold); border-radius: 50%;
                 display: flex; align-items: center; justify-content: center;
                 color: var(--navy); font-weight: 700; font-size: 1rem; }
.author-info strong { display: block; color: var(--white); font-size: .9rem; }
.author-info span   { color: var(--grey); font-size: .8rem; }

/* ─── CTA Section ────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    border-top: 1px solid rgba(201,168,76,.2);
    border-bottom: 1px solid rgba(201,168,76,.2);
    text-align: center; padding: 80px 0;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p  { max-width: 550px; margin: 0 auto 2rem; }
.cta-buttons    { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Contact Page ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.contact-form-box, .contact-info-box {
    background: var(--navy-mid);
    border: 1px solid rgba(201,168,76,.15);
    border-radius: 12px; padding: 2.5rem;
}
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item i { flex-shrink: 0; width: 44px; height: 44px; background: rgba(201,168,76,.1);
                       border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
                       color: var(--gold); font-size: 1rem; }
.contact-info-item strong { display: block; color: var(--white); font-size: .9rem; }
.contact-info-item span   { color: var(--grey-light); font-size: .85rem; }

/* ─── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: .4rem; color: var(--grey-light); font-size: .9rem; font-weight: 500; }
.form-group label span { color: var(--gold); }
.form-control {
    width: 100%; padding: .75rem 1rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--radius); color: var(--white);
    font-family: var(--font-body); font-size: .95rem;
    transition: var(--trans);
}
.form-control:focus { outline: none; border-color: var(--gold); background: rgba(201,168,76,.05); }
.form-control::placeholder { color: var(--grey); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-error { color: var(--danger); font-size: .82rem; margin-top: .3rem; display: block; }
.form-success-msg { background: rgba(39,174,96,.12); border: 1px solid var(--success); border-radius: var(--radius);
                    color: var(--success); padding: 1rem 1.2rem; margin-bottom: 1rem; }
.form-error-msg   { background: rgba(231,76,60,.12); border: 1px solid var(--danger); border-radius: var(--radius);
                    color: var(--danger); padding: 1rem 1.2rem; margin-bottom: 1rem; }

/* ─── Auth Pages ─────────────────────────────────────────── */
.auth-page { min-height: 80vh; display: flex; align-items: center; padding: 4rem 0; }
.auth-box {
    max-width: 460px; width: 100%; margin: 0 auto;
    background: var(--navy-mid);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 16px; padding: 2.5rem;
}
.auth-box .auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-box .auth-logo i { font-size: 2.5rem; color: var(--gold); }
.auth-box h2 { text-align: center; margin-bottom: .5rem; }
.auth-box .subtitle { text-align: center; margin-bottom: 2rem; }
.auth-link { text-align: center; margin-top: 1.5rem; font-size: .9rem; color: var(--grey-light); }

/* ─── Dashboard ──────────────────────────────────────────── */
.dashboard-layout { display: grid; grid-template-columns: 250px 1fr; min-height: calc(100vh - 140px); }
.sidebar {
    background: var(--navy-mid);
    border-right: 1px solid rgba(201,168,76,.1);
    padding: 2rem 0;
}
.sidebar .user-info { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid rgba(201,168,76,.1); margin-bottom: 1rem; }
.sidebar .user-info .avatar {
    width: 50px; height: 50px; background: var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); font-size: 1.2rem; font-weight: 700; margin-bottom: .8rem;
}
.sidebar .user-info strong { display: block; color: var(--white); font-size: .95rem; }
.sidebar .user-info span   { color: var(--grey); font-size: .8rem; }
.sidebar-nav ul { list-style: none; }
.sidebar-nav ul li a {
    display: flex; align-items: center; gap: .8rem;
    padding: .75rem 1.5rem; color: var(--grey-light); font-size: .9rem;
    transition: var(--trans);
}
.sidebar-nav ul li a:hover, .sidebar-nav ul li a.active {
    color: var(--white); background: rgba(201,168,76,.08);
    border-left: 3px solid var(--gold);
}
.sidebar-nav ul li a i { width: 18px; color: var(--gold); }
.dashboard-content { padding: 2.5rem; background: var(--navy); }
.dash-header { margin-bottom: 2rem; }
.dash-header h1 { font-size: 1.8rem; }
.dash-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-bottom: 2.5rem; }
.dash-card {
    background: var(--navy-mid);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: 12px; padding: 1.5rem;
    display: flex; align-items: center; gap: 1.2rem;
}
.dash-card-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.dash-card-icon.gold { background: rgba(201,168,76,.15); color: var(--gold); }
.dash-card-icon.blue { background: rgba(52,152,219,.15); color: #3498db; }
.dash-card-icon.green { background: rgba(39,174,96,.15); color: var(--success); }
.dash-card-icon.red { background: rgba(231,76,60,.15); color: var(--danger); }
.dash-card-info span { display: block; font-size: .8rem; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; }
.dash-card-info strong { font-size: 1.4rem; color: var(--white); font-family: var(--font-head); }

/* ─── Tables ─────────────────────────────────────────────── */
.table-box {
    background: var(--navy-mid);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: 12px; overflow: hidden; margin-bottom: 2rem;
}
.table-box-header { padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(201,168,76,.1);
                    display: flex; justify-content: space-between; align-items: center; }
.table-box-header h3 { font-size: 1rem; color: var(--white); }
table.data-table { width: 100%; border-collapse: collapse; }
table.data-table th { padding: .8rem 1.2rem; background: rgba(201,168,76,.05);
                      color: var(--gold); font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; text-align: left; }
table.data-table td { padding: .9rem 1.2rem; border-top: 1px solid rgba(201,168,76,.05); color: var(--grey-light); font-size: .9rem; }
table.data-table tr:hover td { background: rgba(201,168,76,.03); }
.badge-status { padding: .25rem .7rem; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.badge-offen    { background: rgba(52,152,219,.15); color: #3498db; }
.badge-aktiv    { background: rgba(39,174,96,.15); color: var(--success); }
.badge-erledigt { background: rgba(201,168,76,.15); color: var(--gold); }
.badge-abgelehnt{ background: rgba(231,76,60,.15); color: var(--danger); }

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    padding: 5rem 0 4rem;
    border-bottom: 1px solid rgba(201,168,76,.15);
    text-align: center;
}
.breadcrumb { display: flex; justify-content: center; gap: .5rem; margin-bottom: 1rem; font-size: .85rem; color: var(--grey); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--grey); }

/* ─── Team Cards ─────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.team-card {
    background: var(--navy-mid);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: 12px; overflow: hidden; text-align: center;
    transition: var(--trans);
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.team-photo { height: 200px; background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
              display: flex; align-items: center; justify-content: center;
              font-size: 4rem; color: var(--gold); }
.team-info { padding: 1.5rem; }
.team-info h3 { color: var(--white); margin-bottom: .3rem; font-size: 1rem; }
.team-info .role { color: var(--gold); font-size: .85rem; margin-bottom: .8rem; }
.team-info p { font-size: .85rem; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(201,168,76,.1); }
.faq-question {
    width: 100%; background: none; border: none; text-align: left;
    padding: 1.2rem 0; color: var(--white); font-size: 1rem; font-weight: 500;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-body); transition: var(--trans);
}
.faq-question:hover { color: var(--gold); }
.faq-question i { color: var(--gold); transition: var(--trans); }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding-bottom: 1.2rem; }

/* ─── Page Sections background alternation ──────────────── */
.bg-navy-mid { background: var(--navy-mid); }

/* ─── Recovery Panel ─────────────────────────────────────── */
.recovery-panel {
    background: var(--navy-mid);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.recovery-panel-header {
    background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.04));
    border-bottom: 1px solid rgba(201,168,76,.2);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.recovery-panel-header h3 { color: var(--white); font-size: 1rem; margin: 0; }
.recovery-panel-header h3 i { color: var(--gold); margin-right: .5rem; }
.recovery-status-badge {
    font-size: .78rem; font-weight: 600; padding: .3rem .9rem;
    border-radius: 20px; white-space: nowrap;
}
.recovery-status-badge.active  { background: rgba(39,174,96,.15); color: var(--success); border: 1px solid var(--success); }
.recovery-status-badge.pending { background: rgba(201,168,76,.12); color: var(--gold); border: 1px solid rgba(201,168,76,.3); }

.recovery-balance-row {
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.recovery-balance-box { text-align: center; }
.recovery-amount {
    display: block;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-head);
    line-height: 1;
}
.recovery-currency { font-size: 1.2rem; margin-left: .4rem; }
.recovery-label { display: block; font-size: .82rem; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; margin-top: .4rem; }

.recovery-progress-box { flex: 1; min-width: 200px; }
.recovery-progress-label { display: flex; justify-content: space-between; margin-bottom: .5rem; font-size: .85rem; color: var(--grey-light); }
.recovery-progress-label strong { color: var(--gold); }
.recovery-progress-bar { background: rgba(255,255,255,.08); border-radius: 20px; height: 12px; overflow: hidden; }
.recovery-progress-fill { background: linear-gradient(90deg, var(--gold), var(--gold-light)); height: 100%; border-radius: 20px; transition: width 1s ease; }

.recovery-wallets { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.recovery-wallets h4 { color: var(--white); font-size: .9rem; margin-bottom: 1rem; }
.recovery-wallets h4 i { color: var(--gold); margin-right: .4rem; }
.wallets-grid { display: flex; flex-direction: column; gap: .6rem; }
.wallet-item {
    display: flex; align-items: center; gap: .8rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: var(--radius);
    padding: .65rem 1rem;
    font-size: .82rem;
}
.wallet-num { color: var(--gold); font-weight: 700; flex-shrink: 0; min-width: 22px; }
.wallet-addr { color: var(--grey-light); font-family: monospace; word-break: break-all; flex: 1; }
.wallet-copy-btn {
    background: none; border: none; color: var(--grey); cursor: pointer;
    padding: .2rem .4rem; transition: var(--trans); flex-shrink: 0;
}
.wallet-copy-btn:hover { color: var(--gold); }

.recovery-empty {
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--grey);
}
.recovery-empty i { font-size: 2rem; color: var(--gold); opacity: .5; display: block; margin-bottom: .8rem; }

.recovery-notes {
    padding: 1.2rem 1.5rem;
    background: rgba(52,152,219,.04);
    border-top: 1px solid rgba(52,152,219,.1);
}
.recovery-notes h4 { color: var(--white); font-size: .88rem; margin-bottom: .5rem; }
.recovery-notes h4 i { color: #3498db; margin-right: .4rem; }
.recovery-notes p { font-size: .87rem; color: var(--grey-light); margin: 0; }

.recovery-withdraw-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(39,174,96,.08), rgba(39,174,96,.03));
    border-top: 1px solid rgba(39,174,96,.2);
}
.recovery-withdraw-cta strong { color: var(--white); display: block; margin-bottom: .3rem; }
.recovery-withdraw-cta p { font-size: .85rem; color: var(--grey-light); margin: 0; }

/* ─── Withdrawal Steps ───────────────────────────────────── */
.withdraw-steps {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-bottom: 2.5rem;
}
.withdraw-step {
    display: flex; flex-direction: column; align-items: center; gap: .4rem;
    min-width: 110px;
}
.ws-num {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .95rem;
    background: rgba(255,255,255,.08); color: var(--grey);
    border: 2px solid rgba(255,255,255,.15);
    transition: var(--trans);
}
.withdraw-step.active .ws-num { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.withdraw-step.done .ws-num   { background: var(--success); color: #fff; border-color: var(--success); }
.withdraw-step span { font-size: .78rem; color: var(--grey); text-align: center; }
.withdraw-step.active span, .withdraw-step.done span { color: var(--white); }
.ws-line { flex: 1; height: 2px; background: rgba(255,255,255,.1); margin-bottom: 1.2rem; min-width: 30px; }

.withdraw-card {
    background: var(--navy-mid);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 14px; padding: 2rem;
    margin-bottom: 1.5rem;
}
.withdraw-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 1rem; }
.withdraw-card h3 i { margin-right: .5rem; }

.withdraw-summary {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    overflow: hidden;
}
.ws-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .85rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: .92rem; color: var(--grey-light);
}
.ws-row:last-child { border-bottom: none; }
.ws-row-total { background: rgba(201,168,76,.05); padding: 1rem 1.2rem; }
.ws-row-total span { color: var(--white); font-weight: 600; }

/* KYC iframe */
.kyc-frame-wrap {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid rgba(201,168,76,.2);
    background: #fff;
    min-height: 600px;
}
.kyc-frame-wrap iframe {
    width: 100%; min-height: 600px; border: none; display: block;
}

/* Banking details card */
.banking-card {
    border: 1px solid rgba(201,168,76,.25);
    border-radius: var(--radius); overflow: hidden;
}
.banking-card-header {
    background: rgba(201,168,76,.1);
    padding: .85rem 1.2rem;
    color: var(--gold); font-weight: 600; font-size: .9rem;
    border-bottom: 1px solid rgba(201,168,76,.2);
}
.banking-card-header i { margin-right: .5rem; }
.banking-details { padding: 0; }
.banking-row {
    display: flex; align-items: center; gap: .8rem;
    padding: .8rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.banking-row:last-child { border-bottom: none; }
.banking-label { flex: 0 0 130px; color: var(--grey); font-size: .83rem; font-weight: 500; }
.banking-value { flex: 1; color: var(--white); font-size: .9rem; }
.banking-value.mono { font-family: monospace; font-size: .88rem; letter-spacing: .5px; }
.copy-btn {
    background: none; border: none; color: var(--grey); cursor: pointer;
    padding: .2rem .4rem; transition: var(--trans); flex-shrink: 0; font-size: .85rem;
}
.copy-btn:hover { color: var(--gold); }

/* ─── Registration Sections ───────────────────────────── */
.reg-section {
    background: var(--navy-mid);
    border: 1px solid rgba(201,168,76,.15);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.reg-section-header {
    background: rgba(201,168,76,.07);
    border-bottom: 1px solid rgba(201,168,76,.15);
    padding: .9rem 1.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
}
.reg-section-header i { font-size: 1rem; }
.reg-section-note {
    font-size: .78rem;
    color: var(--grey);
    font-weight: 400;
    margin-left: auto;
}
.reg-section-body { padding: 1.5rem; }

/* ─── Alerts ─────────────────────────────────────────────── */
.alert { padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.2rem; }
.alert-success { background: rgba(39,174,96,.12); border: 1px solid var(--success); color: var(--success); }
.alert-danger   { background: rgba(231,76,60,.12); border: 1px solid var(--danger); color: var(--danger); }
.alert-info     { background: rgba(52,152,219,.12); border: 1px solid #3498db; color: #3498db; }
.alert i        { margin-right: .5rem; }

/* ─── Footer ─────────────────────────────────────────────── */
.main-footer { background: #1c1c1c; }

/* Alert strip */
.footer-strip {
    background: #7a0000;
    padding: .7rem 0;
    font-size: .83rem;
    color: #fff;
    text-align: center;
    line-height: 1.5;
}
.footer-strip i { margin-right: .4rem; }
.footer-strip strong { font-weight: 600; }

/* Footer body */
.footer-body { padding: 2.8rem 0 0; }

/* Contact + nav row */
.footer-info-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Contact column */
.footer-contact-col { -webkit-box-flex: 0; -ms-flex: 0 0 250px; flex: 0 0 250px; }
.footer-contact-col h4 {
    color: #fff;
    font-family: var(--font-head);
    font-size: .95rem;
    margin-bottom: 1rem;
    letter-spacing: .5px;
}
.footer-contact-list { list-style: none; margin: 0; padding: 0; }
.footer-contact-list li {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start;
    gap: .65rem;
    margin-bottom: .85rem;
    color: #aaa;
    font-size: .86rem;
    line-height: 1.5;
}
.footer-contact-list li i { color: var(--gold); -webkit-box-flex: 0; -ms-flex-shrink: 0; flex-shrink: 0; margin-top: .18rem; font-size: .8rem; }
.footer-contact-list li a { color: #aaa; transition: var(--trans); }
.footer-contact-list li a:hover { color: var(--gold); }

/* Nav column */
.footer-nav-col { -webkit-box-flex: 0; -ms-flex: 0 0 200px; flex: 0 0 200px; padding-top: 2.1rem; }
.footer-nav-col ul { list-style: none; margin: 0; padding: 0; }
.footer-nav-col ul li { margin-bottom: .75rem; }
.footer-nav-col ul li a { color: #aaa; font-size: .88rem; transition: var(--trans); }
.footer-nav-col ul li a:hover { color: var(--gold); }

/* Badges row */
.footer-badges-row {
    padding: 1.6rem 0 1.8rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-badges-img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
}

/* Bottom bar */
.footer-bottom { background: #111; padding: 1.1rem 0; }
.footer-bottom-inner {
    display: -webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center;
    -ms-flex-wrap: wrap; flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom p { color: #777; font-size: .82rem; margin: 0; }
.footer-bottom a { color: #777; transition: var(--trans); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-info-row { gap: 2rem; }
    .footer-contact-col { -ms-flex: 0 0 210px; flex: 0 0 210px; }
    .dashboard-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero-grid      { grid-template-columns: 1fr; }
    .stats-grid     { grid-template-columns: repeat(2, 1fr); }
    .contact-grid   { grid-template-columns: 1fr; }
    .form-row       { grid-template-columns: 1fr; }
    .footer-info-row { -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 2rem; }
    .footer-contact-col { -ms-flex: 1 1 100%; flex: 1 1 100%; }
    .footer-nav-col     { -ms-flex: 1 1 100%; flex: 1 1 100%; padding-top: 0; }
    .footer-bottom-inner { -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; text-align: center; }
    .main-nav       { display: none; position: absolute; top: 70px; left: 0; right: 0;
                      background: var(--navy-mid); border-top: 1px solid rgba(201,168,76,.15); padding: 1rem; }
    .main-nav.open  { display: block; }
    .main-nav ul    { flex-direction: column; }
    .nav-toggle     { display: flex; }
    .topbar-left    { display: none; }
    .hero           { min-height: auto; }
    .hero-grid      { padding: 3rem 0 2rem; }
    .hero-card      { display: none; }
    .section-padding { padding: 60px 0; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .auth-box   { padding: 1.5rem; }
}

/* ─── Appointment Nav Button ─────────────────────────────── */
.btn-appt {
    background: rgba(201,168,76,.12) !important;
    color: var(--gold) !important;
    border: 2px solid var(--gold) !important;
    font-weight: 700 !important;
    padding: .45rem 1.1rem !important;
    border-radius: var(--radius) !important;
    transition: var(--trans) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: .5rem !important;
}
.btn-appt:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
}
.btn-appt i { font-size: .85rem; }

/* ─── Appointment Page: 2-column grid ────────────────────── */
.appt-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 960px) {
    .appt-grid { grid-template-columns: 1fr; }
    .appt-info-panel { position: static !important; }
}

/* ─── Appointment Info Panel ─────────────────────────────── */
.appt-info-panel {
    background: var(--navy-mid);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 90px;
}
.appt-info-header {
    background: rgba(201,168,76,.1);
    border-bottom: 1px solid rgba(201,168,76,.15);
    padding: 1.1rem 1.4rem;
    color: var(--gold);
    font-weight: 700;
    font-size: .95rem;
}
.appt-info-header i { margin-right: .5rem; }
.appt-step-list {
    list-style: none;
    padding: 1.2rem 1.4rem;
    margin: 0;
}
.appt-step-list li {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.appt-step-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.appt-step-num {
    flex-shrink: 0;
    width: 30px; height: 30px;
    background: var(--gold); color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; font-weight: 700;
}
.appt-step-text strong { display: block; color: var(--white); font-size: .92rem; margin-bottom: .2rem; }
.appt-step-text span   { color: var(--grey-light); font-size: .87rem; line-height: 1.65; }

/* ─── Appointment Success Card ───────────────────────────── */
.appt-success {
    background: var(--navy-mid);
    border: 2px solid var(--success);
    border-radius: 14px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.appt-success-icon {
    font-size: 4.5rem;
    color: var(--success);
    display: block;
    margin-bottom: 1.2rem;
}
.appt-success h2 { color: var(--white); margin-bottom: .8rem; }
.appt-summary-box {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,168,76,.15);
    border-radius: 8px;
    margin: 1.8rem 0;
    overflow: hidden;
}
.appt-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .9rem 1.3rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: .93rem;
    gap: 1rem;
}
.appt-summary-row:last-child { border-bottom: none; }
.appt-summary-row .label { color: var(--grey); white-space: nowrap; }
.appt-summary-row .val   { color: var(--white); font-weight: 600; text-align: right; }
@media (max-width: 560px) {
    .appt-success { padding: 2rem 1.3rem; }
    .appt-summary-row { flex-direction: column; align-items: flex-start; gap: .25rem; }
    .appt-summary-row .val { text-align: left; }
}

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY & SENIOR-FRIENDLY ENHANCEMENTS
   • Larger base font (18 px)
   • Minimum 50 px tap targets on buttons
   • Bigger form inputs with strong focus ring
   • Visible skip-navigation link
   • Clickable phone/email links in top bar
   • Improved colour contrast on body text
   • More breathing room (line-height, spacing)
═══════════════════════════════════════════════════════════ */

/* ─── Skip navigation ────────────────────────────────────── */
.skip-nav {
    position: absolute;
    top: -120px;
    left: 1rem;
    background: var(--gold);
    color: var(--navy);
    padding: .85rem 1.8rem;
    font-weight: 700;
    font-size: 1rem;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top .2s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.skip-nav:focus { top: 0; color: var(--navy); }

/* ─── Global focus ring ──────────────────────────────────── */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ─── Base font & line-height ────────────────────────────── */
html { font-size: 17.5px; }
body { line-height: 1.85; }
p    { line-height: 1.85; color: #d2daf0; }

/* ─── Top bar – phone & email as links ───────────────────── */
.topbar { font-size: .9rem; padding: .55rem 0; }
.topbar-phone-link,
.topbar-email-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--gold) !important;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: var(--trans);
}
.topbar-phone-link { font-size: 1rem !important; letter-spacing: .3px; }
.topbar-phone-link:hover,
.topbar-email-link:hover { color: var(--gold-light) !important; }
.topbar-phone-link i,
.topbar-email-link i { font-size: .85rem; }

/* ─── Navigation ─────────────────────────────────────────── */
.nav-inner { height: 84px; }
/* Logo: never shrink or wrap */
.logo {
    font-size: 1.2rem;
    flex-shrink: 0;
    white-space: nowrap;
}
.logo i { font-size: 1.5rem; }
/* Nav items: compact padding, never wrap */
.main-nav ul { gap: 0; flex-wrap: nowrap; }
.main-nav ul li a {
    font-size: .875rem;
    padding: .5rem .72rem;
    min-height: 44px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
/* Buttons: always single line */
.btn-nav {
    min-height: 42px;
    white-space: nowrap !important;
    padding: .45rem 1rem !important;
    font-size: .875rem !important;
}
.btn-appt {
    white-space: nowrap !important;
    padding: .42rem .9rem !important;
    font-size: .875rem !important;
}
.btn-appt i { font-size: .78rem; }

/* ─── Buttons – larger tap targets ──────────────────────── */
.btn {
    padding: .95rem 2.1rem;
    font-size: 1rem;
    min-height: 52px;
    letter-spacing: .2px;
}
.btn-primary { font-weight: 700; }
.btn-sm { padding: .65rem 1.4rem; font-size: .9rem; min-height: 42px; }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; min-height: 56px; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero-content .lead { font-size: 1.13rem; line-height: 1.9; color: #d2daf0; }
.trust-item { font-size: .95rem; gap: .55rem; }

/* ─── Forms – larger & more legible ──────────────────────── */
.form-group label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: #dce3f7;
}
.form-control {
    padding: .92rem 1.15rem;
    font-size: 1rem;
    border-width: 2px;
    border-color: rgba(201,168,76,.28);
    min-height: 52px;
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201,168,76,.15);
}
textarea.form-control { min-height: 155px; }
select.form-control { min-height: 52px; }

/* ─── Service cards ────────────────────────────────────────── */
.service-card p { font-size: .97rem; line-height: 1.85; }
.service-card h3 { font-size: 1.18rem; margin-bottom: .75rem; }
.service-icon  { width: 60px; height: 60px; font-size: 1.45rem; }

/* ─── Step cards ──────────────────────────────────────────── */
.step-card h3 { font-size: 1.08rem; }
.step-card p  { font-size: .97rem; line-height: 1.85; }
.step-num     { width: 52px; height: 52px; font-size: 1.25rem; }

/* ─── Why-us ──────────────────────────────────────────────── */
.why-text h4 { font-size: 1.08rem; }
.why-text p  { font-size: .97rem; }

/* ─── Testimonials ────────────────────────────────────────── */
.testimonial-card blockquote { font-size: 1rem; line-height: 1.85; }
.author-info strong { font-size: .95rem; }
.author-info span   { font-size: .85rem; }

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-question { font-size: 1.05rem; padding: 1.35rem 0; }
.faq-answer p { font-size: .97rem; line-height: 1.85; }

/* ─── CTA section ──────────────────────────────────────────── */
.cta-section p { font-size: 1.08rem; line-height: 1.85; }

/* ─── Auth pages ───────────────────────────────────────────── */
.auth-box       { padding: 3rem; max-width: 500px; }
.auth-box h2    { font-size: 1.85rem; }
.auth-box .subtitle { font-size: 1rem; line-height: 1.7; }
.auth-link      { font-size: 1rem; margin-top: 1.2rem; }

/* ─── Dashboard tables ─────────────────────────────────────── */
.sidebar-nav ul li a { font-size: .96rem; padding: .88rem 1.5rem; }
.dash-card-info span { font-size: .83rem; }
.dash-card-info strong { font-size: 1.45rem; }
table.data-table td { font-size: .93rem; padding: 1rem 1.2rem; }

/* ─── Contact info ─────────────────────────────────────────── */
.contact-info-item strong { font-size: .98rem; }
.contact-info-item span   { font-size: .93rem; line-height: 1.7; }

/* ─── Section titles ──────────────────────────────────────── */
.section-title p { font-size: 1rem; line-height: 1.85; }
.page-hero p { font-size: 1.08rem; }
.breadcrumb  { font-size: .88rem; }

/* ─── Footer links ────────────────────────────────────────── */
.footer-contact-list li { font-size: .9rem; line-height: 1.75; margin-bottom: 1rem; }
.footer-nav-col ul li a { font-size: .9rem; padding: .15rem 0; display: inline-block; }
.footer-strip { font-size: .87rem; padding: .85rem 0; }
.footer-bottom p { font-size: .85rem; }

/* ─── Alerts ──────────────────────────────────────────────── */
.alert { font-size: .97rem; padding: 1.1rem 1.4rem; line-height: 1.7; }

/* ─── Page-hero on inner pages ───────────────────────────── */
.page-hero { padding: 5.5rem 0 4.5rem; }

/* ─── Phone call prominence block (used in CTA & contact) ── */
.phone-cta-block {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(201,168,76,.1);
    border: 2px solid rgba(201,168,76,.35);
    border-radius: 12px;
    padding: 1rem 1.8rem;
    margin-top: 1.6rem;
    flex-wrap: wrap;
    justify-content: center;
}
.phone-cta-block .phone-cta-label {
    font-size: .88rem;
    color: var(--grey-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.phone-cta-block .phone-cta-number {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: .5px;
}
.phone-cta-block .phone-cta-number:hover { color: var(--gold-light); }
.phone-cta-block i { color: var(--gold); font-size: 1.4rem; }
.phone-cta-hours {
    font-size: .85rem;
    color: var(--grey);
    margin-top: .3rem;
}

/* ─── Responsive accessibility tweaks ───────────────────── */
@media (max-width: 768px) {
    html { font-size: 16.5px; }
    .btn { min-height: 56px; padding: 1rem 1.8rem; font-size: 1.02rem; }
    .main-nav ul li a { font-size: 1.05rem; padding: .88rem 1.2rem; min-height: 52px; }
    .form-control { font-size: 1.05rem; padding: 1rem 1.1rem; min-height: 56px; }
    .auth-box { padding: 2rem; }
    .faq-question { font-size: 1.02rem; }
    .topbar-phone-link { font-size: 1.05rem !important; }
}
@media (max-width: 480px) {
    .btn { font-size: 1rem; }
    .form-control { font-size: 1.08rem; }
    .phone-cta-block .phone-cta-number { font-size: 1.25rem; }
}
