:root {
    --bg: #0b0f1a;
    --card: rgba(255,255,255,.08);
    --border: rgba(255,255,255,.15);
    --text: #eaf0ff;
    --muted: #a9b3c7;
    --accent: #7dd3fc; /* ice blue */
    --accent-2: #a78bfa; /* soft purple */
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}

.bg-grid {
    background-image: radial-gradient(circle at 25% 15%, rgba(125,211,252,.15), transparent 30%), radial-gradient(circle at 75% 85%, rgba(167,139,250,.15), transparent 30%), linear-gradient(to bottom right, rgba(255,255,255,.04), rgba(255,255,255,.02)), url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='rgba(255,255,255,.05)' d='M0 0H32V32H0zM16 0v32M0 16h32'/%3E%3C/svg%3E");
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px
}

.row {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between
}

header.nav-blur {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
    background: linear-gradient( to bottom, rgba(11,15,26,.85), rgba(11,15,26,.45) );
    border-bottom: 1px solid var(--border);
}

header .brand {
    font-weight: 800;
    letter-spacing: .5px;
    font-size: 20px
}

header .links a {
    color: var(--muted);
    text-decoration: none;
    margin-right: 16px
}

    header .links a:hover {
        color: var(--text)
    }

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 14px;
    border-radius: 12px;
    cursor: pointer
}

    .btn-ghost:hover {
        border-color: var(--accent);
        color: var(--accent)
    }

.page {
    padding: 40px 0 80px
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.05);
}

    .card h1, .card h2 {
        margin: .2rem 0 1rem 0
    }

h1 {
    font-size: 28px
}

h2 {
    font-size: 20px;
    color: var(--muted);
    font-weight: 600
}

.form {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

    .form .row {
        gap: 16px
    }

.input {
    display: grid;
    gap: 8px;
}

    .input label {
        font-size: 13px;
        color: var(--muted)
    }

    .input input, .input select {
        width: 100%;
        padding: 12px 14px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: rgba(255,255,255,.04);
        color: var(--text);
        outline: none;
    }

        .input input:focus, .input select:focus {
            border-color: var(--accent)
        }

.actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: none;
    color: #0a0a0a;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 14px;
    cursor: pointer
}

    .btn-primary:hover {
        filter: brightness(1.05)
    }

.text-muted {
    color: var(--muted)
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px
}

    .table th, .table td {
        border-bottom: 1px solid var(--border);
        padding: 10px 8px;
        font-size: 14px
    }

.footer {
    opacity: .7;
    padding: 24px 0;
    border-top: 1px solid var(--border)
}

.alert {
    background: rgba(125,211,252,.12);
    border: 1px solid rgba(125,211,252,.35);
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 14px
}

.validation-summary-errors {
    color: #ffb4b4
}

.field-validation-error {
    color: #ff9b9b;
    font-size: 12px
}
.guest-nav {
    position: sticky;
    top: 0;
    z-index: 5;
    backdrop-filter: blur(16px);
    background: linear-gradient( to bottom, rgba(11,15,26,.85), rgba(11,15,26,.45) );
    border-bottom: 1px solid var(--border);
}

.guest-nav__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guest-brand {
    font-weight: 800;
    letter-spacing: .5px;
    font-size: 20px
}
/* --- Feedback block (Windows-11 card vibe) --- */
.feedback-card {
    max-width: 1080px;
    margin: 28px auto;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    padding: 20px 22px;
}

@media (prefers-color-scheme: light) {
    .feedback-card {
        background: #fff;
        border: 1px solid #e6e6e6;
        box-shadow: 0 8px 24px rgba(0,0,0,.06);
    }
}

.feedback-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.feedback-title {
    font-size: 1.25rem;
    margin: 0 0 2px;
    font-weight: 700;
    letter-spacing: .2px;
}

.feedback-subtitle {
    margin: 0;
    color: var(--muted, #8b8b8b);
    font-size: .95rem;
}

.feedback-quicklinks {
    display: flex;
    gap: 8px;
}

/* Grid layout */
.feedback-form .f-row {
    display: grid;
    grid-template-columns: 160px 1fr 2fr 1fr 1fr 180px auto;
    gap: 12px;
    align-items: end;
}

@media (max-width: 1100px) {
    .feedback-form .f-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .feedback-form .f-row {
        grid-template-columns: 1fr;
    }
}

.f-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.f-col--wide {
    grid-column: span 2;
}

.f-compact {
    min-width: 160px;
}

.f-label {
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-2, #cfd3dc);
}

@media (prefers-color-scheme: light) {
    .f-label {
        color: #374151;
    }
}

.f-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: #e9eef7;
    outline: none;
    transition: box-shadow .2s, border-color .2s, background .2s;
}

.f-textarea {
    min-height: 48px;
}

@media (prefers-color-scheme: light) {
    .f-input {
        background: #fff;
        color: #111;
        border-color: #d9d9d9;
    }
}

.f-input:focus {
    border-color: #7aa2ff;
    box-shadow: 0 0 0 3px rgba(122,162,255,.25);
    background: rgba(255,255,255,.12);
}

@media (prefers-color-scheme: light) {
    .f-input:focus {
        background: #fff;
    }
}

.f-switch {
    display: flex;
    align-items: center;
}

.f-switch-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.f-switch-input {
    width: 18px;
    height: 18px;
}

.f-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

/* Buttons (if not relying on Bootstrap) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: #3b82f6;
    color: #fff;
}

    .btn-primary:hover {
        background: #2563eb;
    }

.btn-outline-success {
    color: #22c55e;
    border-color: #22c55e;
    background: transparent;
}

    .btn-outline-success:hover {
        background: rgba(34,197,94,.12);
    }

.btn-outline-secondary {
    color: #a3a3a3;
    border-color: #a3a3a3;
    background: transparent;
}

    .btn-outline-secondary:hover {
        background: rgba(163,163,163,.12);
    }

.btn-ghost {
    color: #8aa0ff;
    border: 1px solid rgba(138,160,255,.35);
    background: transparent;
}

    .btn-ghost:hover {
        background: rgba(138,160,255,.12);
    }

.hp {
    display: none;
}
/* Force all dropdown (select) text to black everywhere */
select,
.px-select,
.input select,
.feedback-form select,
.f-input select {
    color: #000 !important;
}

    /* Also ensure option text is black on white */
    select option {
        color: #000 !important;
        background: #fff !important;
    }

