/* ════════════════════════════════════════════════
   Kiratu's Shoes -- Master Stylesheet
   Design: Modern minimalist -- white, charcoal, one accent
   Fonts: Playfair Display + DM Sans
   ════════════════════════════════════════════════ */

:root {
    /* One restrained accent -- warm brass, used sparingly */
    --gold: #a68a5b;
    --gold-light: #c2a677;
    --gold-dark: #8a7048;

    /* Charcoal replaces the old navy-black for text and dark surfaces */
    --dark: #1c1c1c;
    --dark-mid: #262626;
    --dark-soft: #333333;

    /* Predominantly white / very light neutral background */
    --cream: #ffffff;
    --cream-dark: #f4f3f1;
    --text: #1c1c1c;
    --text-muted: #7d7a75;
    --white: #ffffff;

    --success: #2e7d4f;
    --danger: #c0392b;
    --warning: #b8860b;
    --info: #3b6ea5;

    /* Subtle shadows only */
    --shadow: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
    --radius: 10px;
    --radius-sm: 6px;
    --border: #e8e6e2;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark theme kept functionally, restrained to the same minimalist language */
[data-theme="dark"] {
    --cream: #121212;
    --cream-dark: #1a1a1a;
    --text: #f2f0ec;
    --text-muted: #a6a29a;
    --white: #1a1a1a;
    --border: #2c2c2c;
    --shadow: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s, color 0.3s;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, .brand-name, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); line-height: 1.08; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.15; }
h3 { font-size: 1.25rem; }
a { text-decoration: none; color: var(--gold-dark); transition: var(--transition); }
a:hover { color: var(--gold); }

/* ── NAVBAR ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .navbar { background: rgba(18,18,18,0.92); }
.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.1rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text);
}
.brand-icon { font-size: 1.5rem; }
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.brand-tagline {
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.nav-link {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--text);
    background: var(--cream-dark);
}
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-left: 0.35rem;
}
.theme-toggle:hover { border-color: var(--gold); }

/* ── USER DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.42rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    transition: var(--transition);
}
.nav-user-btn:hover { border-color: var(--gold); }
.user-avatar {
    width: 26px;
    height: 26px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.78rem;
}
[data-theme="dark"] .user-avatar { background: var(--gold); color: var(--dark); }
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 210px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text);
    font-size: 0.88rem;
    transition: var(--transition);
}
.dropdown-item:hover { background: var(--cream-dark); color: var(--gold-dark); }
.dropdown-divider { border-top: 1px solid var(--border); margin: 0.25rem 0; }
.text-danger { color: var(--danger) !important; }

/* ── MOBILE MENU ── */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.1rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
}
.mobile-menu {
    display: none;
    background: var(--white);
    padding: 1rem 1.75rem 1.5rem;
    border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-link {
    display: block;
    padding: 0.85rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid transparent;
    text-align: center;
}
.btn-gold {
    background: var(--dark);
    color: var(--white);
}
.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--white);
}
[data-theme="dark"] .btn-gold { background: var(--gold); color: var(--dark); }
[data-theme="dark"] .btn-gold:hover { background: var(--gold-light); }
.btn-outline-gold {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}
.btn-outline-gold:hover {
    border-color: var(--dark);
    background: var(--cream-dark);
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
}
.btn-dark:hover { background: var(--dark-soft); color: var(--white); }
.btn-danger { background: transparent; color: var(--danger); border-color: var(--danger); }
.btn-danger:hover { background: var(--danger); color: white; }
.btn-success { background: var(--success); color: white; }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.78rem; }
.btn-lg { padding: 0.95rem 2.4rem; font-size: 1rem; }
.btn-block { display: block; width: 100%; }
.btn-whatsapp {
    background: #1c1c1c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-whatsapp:hover { background: #25D366; color: white; }
.btn-whatsapp-footer {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-size: 0.83rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-whatsapp-footer:hover { background: #25D366; border-color: #25D366; color: white; }

/* ── FLASH MESSAGES ── */
.flash-container {
    position: fixed;
    top: 90px;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 360px;
}
.flash {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    animation: slideIn 0.3s ease;
    font-size: 0.88rem;
    font-weight: 500;
    background: var(--white);
    border: 1px solid var(--border);
}
.flash-success { border-left: 3px solid var(--success); color: var(--success); }
.flash-danger  { border-left: 3px solid var(--danger); color: var(--danger); }
.flash-warning { border-left: 3px solid var(--warning); color: var(--warning); }
.flash-info    { border-left: 3px solid var(--info); color: var(--info); }
.flash-close { background: none; border: none; cursor: pointer; font-size: 1rem; opacity: 0.5; color: inherit; }
@keyframes slideIn { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── CONTAINER & LAYOUT ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.75rem; }
.section { padding: 5.5rem 0; }
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    color: var(--text);
    margin-bottom: 0.6rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-top: 0.9rem;
}

/* ── SHOE CARD ── */
.shoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}
.shoe-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: none;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}
.shoe-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-3px);
}
.shoe-card.sold { opacity: 0.6; }
.shoe-img-wrap {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--cream-dark);
}
.shoe-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.shoe-card:hover .shoe-img-wrap img { transform: scale(1.04); }
.badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
}
.badge-new { background: var(--dark); color: var(--white); border-color: var(--dark); }
.badge-sold { background: var(--white); color: var(--danger); border-color: var(--danger); }
.shoe-card-body { padding: 1.4rem; }
.shoe-size { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.shoe-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 1.1rem;
}
.shoe-card-actions { display: flex; gap: 0.6rem; }
.shoe-card-actions .btn { flex: 1; font-size: 0.78rem; }

/* ── HERO ── */
.hero {
    background: var(--cream);
    color: var(--text);
    padding: 6rem 1.75rem 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}
.hero-eyebrow {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.25rem);
    line-height: 1.08;
    margin-bottom: 1.4rem;
    color: var(--text);
}
.hero h1 span { color: var(--gold-dark); font-style: italic; }
.hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 2.75rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── ADS BANNER ── */
.ads-banner {
    display: grid;
    gap: 1.25rem;
    padding: 0 1.75rem 2.5rem;
    max-width: 1240px;
    margin: 0 auto;
}
.ads-banner.has-ads { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.ad-item { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.ad-item img { width: 100%; height: 160px; object-fit: cover; display: block; }

/* ── FORMS ── */
.form-container {
    max-width: 460px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.75rem 2.5rem;
    box-shadow: none;
    border: 1px solid var(--border);
}
.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 0.3rem;
    color: var(--text);
}
.form-subtitle { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 2.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--cream-dark);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    transition: var(--transition);
    outline: none;
}
.form-control:focus { border-color: var(--gold); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Password strength */
.strength-meter { margin-top: 0.5rem; }
.strength-bar {
    height: 3px;
    border-radius: 2px;
    background: var(--border);
    margin-bottom: 0.3rem;
    overflow: hidden;
}
.strength-fill {
    height: 100%;
    border-radius: 2px;
    transition: var(--transition);
    width: 0;
}
.strength-weak .strength-fill { width: 33%; background: var(--danger); }
.strength-medium .strength-fill { width: 66%; background: var(--warning); }
.strength-strong .strength-fill { width: 100%; background: var(--success); }
.strength-label { font-size: 0.72rem; font-weight: 600; }
.strength-weak .strength-label { color: var(--danger); }
.strength-medium .strength-label { color: var(--warning); }
.strength-strong .strength-label { color: var(--success); }

/* File upload */
.file-upload-area {
    border: 1.5px dashed var(--border);
    border-radius: var(--radius);
    padding: 2.75rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.file-upload-area:hover { border-color: var(--gold); background: var(--cream-dark); }
.file-preview { max-width: 200px; border-radius: var(--radius-sm); margin: 1rem auto 0; display: none; }

/* ── PAGE HEADER ── */
.page-header {
    background: var(--cream);
    color: var(--text);
    padding: 3.5rem 1.75rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-header h1 { color: var(--text); margin-bottom: 0.5rem; }
.page-header p { color: var(--text-muted); }

/* ── DASHBOARD ── */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: none;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1.1rem;
}
.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    background: var(--cream-dark);
}
.stat-icon-gold { background: var(--cream-dark); }
.stat-icon-green { background: var(--cream-dark); }
.stat-icon-red { background: var(--cream-dark); }
.stat-icon-blue { background: var(--cream-dark); }
.stat-value { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── ADMIN SIDEBAR ── */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 70px);
}
@media (max-width: 900px) {
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
}
.admin-sidebar {
    background: var(--white);
    border-right: 1px solid var(--border);
    padding: 1.5rem 0;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
}
.sidebar-title {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem 0.25rem;
    margin-top: 1rem;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition);
    border-left: 2px solid transparent;
}
.sidebar-link:hover, .sidebar-link.active {
    background: var(--cream-dark);
    color: var(--text);
    border-left-color: var(--gold);
}
.admin-content { padding: 2.5rem; background: var(--cream); }

/* ── TABLES ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
th {
    background: var(--cream-dark);
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 1.2rem;
    text-align: left;
}
td { padding: 0.95rem 1.2rem; border-bottom: 1px solid var(--border); font-size: 0.88rem; vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--cream-dark); }

/* ── SHOE DETAIL ── */
.shoe-detail-wrap {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    padding: 4rem 1.75rem;
}
@media (max-width: 680px) { .shoe-detail-wrap { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.5rem; } }
.shoe-detail-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: none;
    border: 1px solid var(--border);
    position: relative;
}
.shoe-detail-img img { width: 100%; height: 440px; object-fit: cover; display: block; }
.shoe-detail-info { display: flex; flex-direction: column; gap: 1.5rem; }
.shoe-detail-size { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.shoe-detail-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: var(--text);
    font-weight: 700;
}
.mpesa-box {
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.mpesa-box h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.75rem; }
.mpesa-box ol { padding-left: 1.25rem; }
.mpesa-box li { font-size: 0.88rem; margin-bottom: 0.4rem; }
.mpesa-till { font-weight: 700; color: var(--gold-dark); font-size: 1.05rem; }

/* ── ACTIVITY LOG ── */
.log-list { display: flex; flex-direction: column; gap: 0.5rem; }
.log-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: none;
    font-size: 0.83rem;
}
.log-action { color: var(--text); }
.log-time { color: var(--text-muted); white-space: nowrap; margin-left: 1rem; }

/* ── PAGE-SPECIFIC HELPERS ── */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: none;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.card-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 1rem; }
.breadcrumb { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--gold-dark); }
.empty-state { text-align: center; padding: 4.5rem 1rem; color: var(--text-muted); }
.empty-state .empty-icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.6; }
.row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.col-half { flex: 1 1 calc(50% - 0.75rem); min-width: 260px; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); font-size: 0.875rem; }
.d-flex { display: flex; }
.gap-1 { gap: 0.5rem; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.justify-between { justify-content: space-between; }

/* ── FOOTER ── */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65);
    padding: 3.5rem 1.75rem 0;
    margin-top: auto;
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); }
.footer-sub { font-size: 0.72rem; opacity: 0.5; }
.footer-links { display: flex; gap: 1.75rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { text-align: center; padding: 1.25rem; font-size: 0.78rem; opacity: 0.4; max-width: 1240px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .dashboard-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 3.5rem 0; }
    .form-card { padding: 2rem 1.5rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.5s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
