/* =========================
   Reset + base
   ========================= */
* { box-sizing: border-box; }

html, body { height: 100%; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: #000000;
    color: #e6e9ee;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   Site header
   ========================= */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: 64px;
    display: flex;
    align-items: center;
    background: rgba(7,7,7,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    z-index: 1000;
    padding: 0 12px;
    backdrop-filter: blur(6px);
    transition: background 220ms ease, box-shadow 220ms ease;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 140px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 8px 14px 8px 10px;
    border-radius: 10px;
    transition: 0.2s;
    margin-left: -10px;
}
.logo:hover { background: rgba(255,255,255,0.08); }

.logo-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 6px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}
.top-nav a {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 10px;
    border-radius: 8px;
    transition: 0.2s;
}
.top-nav a:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
    transform: translateY(-2px);
}

.site-header.scrolled {
    background: rgba(7,7,7,0.9);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.main-content { padding-top: 84px; }

/* =========================
   Hero (home page)
   ========================= */
.hero {
    padding: 64px 0;
    display: flex;
    align-items: center;
    min-height: 40vh;
}
.hero h1 {
    font-size: 2.35rem;
    margin: 0 0 8px 0;
    color: #fff;
}
.tagline {
    color: #bfc7d6;
    font-size: 1.05rem;
    margin: 0 0 14px;
}
.lead {
    color: #d7dde7;
    max-width: 820px;
    margin-bottom: 18px;
}
.btn {
    display: inline-block;
    padding: 12px 18px;
    color: #061428;
    background: linear-gradient(90deg, #a5dcff, #4fb3ff);
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(79,179,255,0.12);
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
}
.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(79,179,255,0.16);
}

/* =========================
   Services section
   ========================= */
.services { padding: 54px 0 80px; }
.service-item {
    background: #0b0b0b;
    border-radius: 10px;
    padding: 18px;
    margin: 10px 0;
}

/* =========================
   Footer
   ========================= */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.02);
    padding: 20px 0;
    color: #9ea8b7;
    background: #070707;
    font-size: 0.95rem;
}
.site-footer p { margin: 0; text-align: center; }

/* =========================
   Contact card
   ========================= */
.contact-card-wrapper { display: flex; justify-content: center; }

.contact-card {
    background: radial-gradient(circle at top left, rgba(79,179,255,0.25), transparent 60%),
                radial-gradient(circle at bottom right, rgba(0,192,111,0.18), transparent 55%),
                #050509;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.85);
    max-width: 760px;
    border: 1px solid rgba(255,255,255,0.04);
}
.contact-card-inner { display: flex; flex-direction: column; gap: 12px; }
.card-title { font-size: 1.45rem; margin: 0 0 4px; color: #ffffff; }
.card-sub { color: #bfc7d6; margin: 0 0 8px; }
.card-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.card-item { min-width: 220px; text-align: center; }
.card-label { color: #9fb0c6; font-weight: 700; margin-bottom: 6px; }
.contact-link {
    color: #e6f7ff;
    text-decoration: none;
    font-weight: 600;
}
.contact-link:hover { text-decoration: underline; }
.card-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    justify-content: center;
}
.btn-email {
    background: linear-gradient(120deg, #9de2ff, #6fbfff);
    color: #031428;
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.06);
}
.btn-ws {
    background: linear-gradient(120deg, #33cc66, #1fbf5a);
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(0,0,0,0.4);
}
.card-note { color: #aeb8c6; font-size: 0.95rem; margin-top: 12px; }

/* Mail chooser popup */
.mail-chooser { display: none; }
.mail-chooser.show { display: block; }
.mail-chooser-inner {
    margin-top: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(3,6,30,0.92));
    padding: 12px;
    border-radius: 10px;
    max-width: 720px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
    border: 1px solid rgba(147,197,253,0.4);
}
.mail-chooser-title { color: #fff; font-weight: 700; font-size: 1.05rem; }
.mail-chooser-desc { color: #bfc7d6; margin-bottom: 10px; }
.mail-chooser-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.mail-option {
    background: radial-gradient(circle at top, rgba(59,130,246,0.3), rgba(15,23,42,0.9));
    color: #eaf6ff;
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(148,163,184,0.4);
    cursor: pointer;
    font-size: 0.95rem;
}
.mail-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.8);
}
.mail-chooser-footer {
    color: #9fb0c6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.small-link {
    background: none;
    border: none;
    color: #9fb0c6;
    cursor: pointer;
    text-decoration: underline;
}

/* =========================
   About layout
   ========================= */
.about-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 12px;
}
.about-card {
    background: #0b0b0b;
    padding: 16px;
    border-radius: 10px;
}
.about-card .muted { color: #c1cbd8; }

/* =========================
   Request a service card
   ========================= */
.service-request {
    background: radial-gradient(circle at top left, rgba(56,189,248,0.18), transparent 60%),
                radial-gradient(circle at bottom right, rgba(59,130,246,0.26), transparent 55%),
                #050508;
    padding: 26px;
    border-radius: 16px;
    box-shadow: 0 18px 55px rgba(0,0,0,0.9);
    border: 1px solid rgba(148,163,184,0.4);
}
.service-request h2 { margin-top: 0; color: #ffffff; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-request label {
    display: block;
    color: #c8d0dd;
    font-weight: 600;
    margin: 12px 0 6px;
    font-size: 0.95rem;
}

.service-request input,
.service-request textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(148,163,184,0.45);
    background: rgba(15,23,42,0.96);
    color: #eef3ff;
    font-size: 0.98rem;
    outline: none;
}

/* Phone row inside Request a Service */
.phone-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 4px;
}

.phone-cc-wrap {
    display: flex;
    align-items: center;
    background: rgba(15,23,42,0.96);
    border-radius: 10px;
    border: 1px solid rgba(148,163,184,0.45);
    padding: 0 8px;
    max-width: 120px;
    flex: 0 0 auto;
}

.phone-plus {
    color: #9ca3af;
    font-weight: 600;
    margin-right: 4px;
    font-size: 0.95rem;
}

.phone-cc {
    border: none;
    background: transparent;
    color: #eef3ff;
    padding: 8px 0;
    width: 100%;
    outline: none;
    font-size: 0.95rem;
}

.phone-number {
    flex: 1 1 auto;
}

/* mobile: stack phone inputs if needed */
@media (max-width: 480px) {
    .phone-row {
        flex-direction: column;
        align-items: stretch;
    }
    .phone-cc-wrap {
        max-width: 100%;
    }
}

.service-request input:focus,
.service-request textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 1px rgba(56,189,248,0.8);
}
.service-request textarea { resize: vertical; min-height: 120px; }

.form-feedback {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #a5ffb7;
    opacity: 0;
    transition: 0.2s;
}
.form-feedback.show { opacity: 1; }

/* PROJECT TYPE CHOOSER (like email chooser) */
.project-type-trigger {
    margin-top: 6px;
    width: 100%;
    justify-content: space-between;
    display: flex;
}
.project-type-chooser {
    display: none;
    position: relative;
    margin-top: 10px;
}
.project-type-chooser.show { display: block; }

.project-type-inner {
    background: linear-gradient(180deg, rgba(15,23,42,0.98), rgba(3,7,18,0.98));
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(148,163,184,0.6);
    box-shadow: 0 16px 50px rgba(0,0,0,0.95);
}
.project-type-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
    margin-bottom: 4px;
}
.project-type-desc {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.project-type-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}
.project-type-option {
    text-align: left;
    width: 100%;
    background: radial-gradient(circle at top left, rgba(56,189,248,0.2), transparent 55%),
                rgba(15,23,42,1);
    border-radius: 8px;
    border: 1px solid rgba(148,163,184,0.6);
    padding: 8px 10px;
    cursor: pointer;
    color: #e5ecff;
    font-size: 0.94rem;
}
.project-type-option:hover {
    border-color: #22c55e;
    box-shadow: 0 10px 32px rgba(0,0,0,0.9);
}
.project-type-option.selected {
    background: linear-gradient(90deg, rgba(56,189,248,0.3), rgba(34,197,94,0.3));
    border-color: #22c55e;
    color: #f9fafb;
}

/* Custom project type dropdown (cdropdown) */
.cdropdown {
    width: 100%;
    position: relative;
    user-select: none;
    margin-top: 4px;
}

.cdropdown-selected {
    padding: 10px 12px;
    background: rgba(15,23,42,0.96);
    border-radius: 10px;
    border: 1px solid rgba(148,163,184,0.45);
    color: #eef3ff;
    font-size: 0.96rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cdropdown-selected::after {
    content: "▾";
    font-size: 0.75rem;
    color: #9ca3af;
    margin-left: 8px;
}

.cdropdown.open .cdropdown-selected {
    border-color: #38bdf8;
    box-shadow: 0 0 0 1px rgba(56,189,248,0.7);
}

.cdropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #050810;
    border-radius: 10px;
    border: 1px solid rgba(148,163,184,0.6);
    box-shadow: 0 16px 40px rgba(0,0,0,0.9);
    display: none;
    overflow: hidden;
    z-index: 1500;
}
.cdropdown.open .cdropdown-menu { display: block; }

.cdropdown-item {
    padding: 9px 12px;
    font-size: 0.94rem;
    color: #e5e7eb;
    cursor: pointer;
    transition: 0.15s ease;
    background: transparent;
}
.cdropdown-item:hover {
    background: rgba(37,99,235,0.25);
}
.cdropdown-item.active {
    background: linear-gradient(90deg, rgba(56,189,248,0.35), rgba(37,99,235,0.35));
    color: #f9fafb;
    font-weight: 600;
}

/* =========================
   Admin STATS cards (top of receiver)
   ========================= */
.admin-dashboard {
    margin-top: 12px;
    margin-bottom: 16px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.admin-stat-card {
    position: relative;
    overflow: hidden;
    padding: 16px 18px;
    border-radius: 16px;
    background:
        radial-gradient(circle at top left, rgba(56,189,248,0.28), transparent 55%),
        radial-gradient(circle at bottom right, rgba(34,197,94,0.22), transparent 55%),
        rgba(10,10,20,0.96);
    border: 1px solid rgba(148,163,184,0.6);
    box-shadow: 0 18px 45px rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.admin-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 4px;
}
.admin-stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e5f2ff;
    text-shadow: 0 0 20px rgba(56,189,248,0.7);
    margin-bottom: 4px;
}
.admin-stat-sub {
    font-size: 0.82rem;
    color: #9fb0c6;
}

/* =========================
   Receiver (admin) TABLE
   ========================= */

/* Wrapper card for the table */
#table-container {
    margin-top: 18px;
    background:
        radial-gradient(circle at top left, rgba(56,189,248,0.25), transparent 60%),
        radial-gradient(circle at bottom right, rgba(34,197,94,0.18), transparent 60%),
        rgba(5,5,12,0.98);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(148,163,184,0.4);
    box-shadow: 0 22px 60px rgba(0,0,0,0.9);
    overflow-x: auto;          /* horizontal scroll if needed */
}

/* Tabs */
.request-tabs {
    display: inline-flex;
    gap: 10px;
    margin-top: 14px;
    margin-bottom: 16px;
    background: radial-gradient(circle at top, rgba(15,23,42,0.95), rgba(3,7,18,0.98));
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.6);
    box-shadow: 0 16px 40px rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
}
.request-tab {
    border: none;
    padding: 8px 16px;
    border-radius: 999px;
    background: transparent;
    color: #cbd5f5;
    font-size: 0.88rem;
    cursor: pointer;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: 0.15s ease;
}
.request-tab:hover { background: rgba(148,163,184,0.18); }
.request-tab.active {
    background: radial-gradient(circle at top left, #38bdf8, #22c55e);
    color: #020617;
    font-weight: 600;
    box-shadow: 0 0 0 1px rgba(15,23,42,0.9), 0 14px 30px rgba(15,23,42,0.9);
}

/* Table */
#requests-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 4px;
    font-size: 0.9rem;
    background: transparent;
    min-width: 1000px;   /* makes the table itself wider */
}
#requests-table thead {
    position: sticky;
    top: 0;
    z-index: 5;
}
#requests-table th,
#requests-table td {
    padding: 10px 12px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;   /* just in case JS lets more text in */
}

#requests-table th {
    background: linear-gradient(90deg, rgba(15,23,42,0.95), rgba(15,23,42,0.9));
    color: #93c5fd;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(148,163,184,0.4);
}
#requests-table th:first-child { border-top-left-radius: 10px; }
#requests-table th:last-child { border-top-right-radius: 10px; }

#requests-table tbody tr {
    background: rgba(15,23,42,0.96);
    border-bottom: 1px solid rgba(31,41,55,0.8);
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.08s ease;
}
#requests-table tbody tr:nth-child(even) {
    background: rgba(15,23,42,0.9);
}
#requests-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(8,47,73,0.9), rgba(5,150,105,0.9));
    box-shadow: 0 0 0 1px rgba(56,189,248,0.8);
    transform: translateY(-1px);
}

#requests-table td {
    color: #e5e7eb;
    border-bottom: 1px solid rgba(15,23,42,0.95);
}

.desc-preview {
    max-width: 180px;
    color: #9ca3af;
}

/* Status text (bold + color) */
.status-cell {
    font-weight: 700;
}

/* New */
.status-new       { color: #3ba0ff; }  /* soft blue */
/* In progress */
.status-in_progress { color: #22c55e; }
/* On hold */
.status-on_hold   { color: #f59e0b; }
/* Rejected */
.status-rejected  { color: #ef4444; }
/* Done */
.status-done      { color: #15803d; }

/* View button */
.view-btn {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(56,189,248,0.9);
    background: radial-gradient(circle at top left, rgba(56,189,248,0.85), rgba(37,99,235,0.95));
    cursor: pointer;
    color: #020617;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: 0.15s ease;
    box-shadow: 0 12px 32px rgba(37,99,235,0.45);
}
.view-btn:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 18px 40px rgba(37,99,235,0.7);
}

/* =========================
   Modal
   ========================= */
.detail-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}
.detail-modal.show { display: flex; }

.detail-modal-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(56,189,248,0.14), rgba(0,0,0,0.9));
    backdrop-filter: blur(10px);
}

.detail-modal-inner {
    position: relative;
    margin: auto;
    width: 480px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    background:
        radial-gradient(circle at top left, rgba(56,189,248,0.3), transparent 60%),
        radial-gradient(circle at bottom right, rgba(34,197,94,0.22), transparent 55%),
        rgba(10,10,18,0.98);
    padding: 22px 22px 18px;
    border-radius: 18px;
    color: #e5e7eb;
    box-shadow: 0 30px 80px rgba(0,0,0,0.95);
    border: 1px solid rgba(148,163,184,0.6);
}
.detail-modal-inner h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #e0f2fe;
}
.detail-modal-inner p {
    margin: 3px 0;
    font-size: 0.9rem;
}
.detail-modal-inner strong { color: #bfdbfe; }

.detail-actions,
.detail-actions-2 {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.detail-btn-accept,
.detail-btn-hold,
.detail-btn-reject,
.detail-btn-done,
.detail-btn-reply,
.detail-btn-delete {
    border: none;
    padding: 9px 13px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
    box-shadow: 0 10px 26px rgba(0,0,0,0.9);
}

/* button colors */
.detail-btn-accept {
    background: radial-gradient(circle at top left, #16a34a, #22c55e);
    color: #ecfdf5;
}
.detail-btn-accept:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(34,197,94,0.8);
}
.detail-btn-hold {
    background: radial-gradient(circle at top left, #eab308, #facc15);
    color: #111827;
}
.detail-btn-hold:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(234,179,8,0.8);
}
.detail-btn-reject {
    background: radial-gradient(circle at top left, #dc2626, #ef4444);
    color: #fef2f2;
}
.detail-btn-reject:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(239,68,68,0.8);
}
.detail-btn-done {
    background: radial-gradient(circle at top left, #0ea5e9, #38bdf8);
    color: #eff6ff;
}
.detail-btn-done:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(56,189,248,0.8);
}
.detail-btn-reply {
    background: radial-gradient(circle at top left, #22c55e, #4ade80);
    color: #022c22;
}
.detail-btn-reply:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(34,197,94,0.85);
}
.detail-btn-delete {
    background: radial-gradient(circle at top left, #b91c1c, #f97373);
    color: #fef2f2;
}
.detail-btn-delete:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(248,113,113,0.9);
}

.detail-close-link {
    background: none;
    color: #9ca3af;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.85rem;
    margin-top: 10px;
    align-self: flex-end;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 920px) {
    .site-header { height: 72px; }
    .main-content { padding-top: 96px; }
    .logo-img { width: 44px; }
    .form-grid { grid-template-columns: 1fr; }
    .about-columns { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .site-header { height: 72px; }
    .main-content { padding-top: 92px; }
    .top-nav a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    .hero { padding: 40px 0; }
    .hero h1 { font-size: 1.6rem; }
}

@media (max-width: 600px) {
    .site-header {
        height: 64px;
        padding: 0 10px;
        background: rgba(7,7,7,0.96);
        box-shadow: 0 8px 30px rgba(0,0,0,0.85);
    }
    .site-header .container {
        gap: 8px;
        justify-content: space-between;
    }
    .logo {
        margin-left: 0;
        padding: 6px 8px 6px 4px;
    }
    .logo-img {
        width: 34px;
        height: 34px;
    }
    .top-nav { gap: 4px; }
    .top-nav a {
        padding: 6px 6px;
        font-size: 0.8rem;
    }
    .container {
        padding: 0 14px;
    }
    .hero {
        padding: 28px 0 20px;
        min-height: auto;
    }
    .hero h1 { font-size: 1.4rem; }
    .tagline,
    .lead { font-size: 0.95rem; }

    #table-container { padding: 12px; }
    #requests-table th,
    #requests-table td {
        padding: 8px 8px;
        font-size: 0.82rem;
    }

    .admin-stat-card { padding: 12px 12px; }
    .admin-stat-value { font-size: 1.3rem; }
}

@media (max-width: 420px) {
    .logo-text { display: none; }
    .top-nav { gap: 2px; }
    .top-nav a {
        padding: 5px 4px;
        font-size: 0.75rem;
    }
    .hero h1 { font-size: 1.25rem; }
    .tagline,
    .lead { font-size: 0.9rem; }
}
/* =========================
   Logo Styles
========================= */

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.site-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

