@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #050714;
    --bg-alt: #0b0f1f;
    --bg-alt-soft: #101426;
    --primary: #f14cff;       /* neon magenta */
    --primary-soft: rgba(241, 76, 255, 0.16);
    --accent: #46e6ff;        /* cyan accent */
    --border-subtle: #232741;
    --text-main: #f8f7ff;
    --text-muted: #a4a8c4;
    --text-soft: #6d7192;
    --danger: #ff6b6b;
    --success: #3dd68c;
    --radius-lg: 22px;
    --radius-md: 14px;
    --radius-pill: 999px;
    --shadow-soft: 0 28px 80px rgba(3, 6, 30, 0.85);
    --shadow-subtle: 0 14px 40px rgba(5, 8, 27, 0.6);
    --font-sans: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* RESET / BASE */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text-main);
    background:
        radial-gradient(circle at 12% 0%, #3b1d67 0, transparent 55%),
        radial-gradient(circle at 88% 0%, #0b9edc 0, transparent 55%),
        radial-gradient(circle at 50% 110%, #f14cff 0, #050714 65%);
    background-color: var(--bg);
    min-height: 100vh;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.6rem;
}

.narrow {
    max-width: 720px;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(5,7,20,0.95), rgba(5,7,20,0.8));
    border-bottom: 1px solid rgba(35,39,65,0.9);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 20% 20%, #ffffff, #ffd7ff 25%, #f14cff 55%, #181627 100%);
    box-shadow: 0 0 0 2px rgba(8,11,30,0.9), 0 10px 26px rgba(0,0,0,0.7);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-soft);
}

.main-nav {
    display: flex;
    gap: 1.1rem;
    font-size: 0.9rem;
}

.main-nav a {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    color: var(--text-soft);
}

.main-nav a:hover {
    background-color: rgba(241,76,255,0.12);
    color: #ffffff;
    text-decoration: none;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.86rem;
}

.nav-user {
    color: var(--text-muted);
}

/* BUTTONS */

.btn-primary,
.btn-outline,
.btn-ghost,
.btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s ease-in-out;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #f14cff, #ff8fd7);
    color: #050714;
    box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
}

.btn-outline {
    border: 1px solid rgba(173, 177, 214, 0.7);
    background: rgba(10, 13, 40, 0.8);
    color: #e6e8ff;
}

.btn-outline:hover {
    background: rgba(241, 76, 255, 0.18);
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    color: var(--accent);
}

.btn-ghost:hover {
    background: rgba(173, 177, 214, 0.14);
    text-decoration: none;
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    border-radius: var(--radius-pill);
    background: rgba(20, 24, 60, 0.9);
    color: var(--text-muted);
    border: 1px solid rgba(60, 66, 110, 0.9);
}

.btn-small.ghost {
    background: transparent;
    border: 1px solid rgba(90, 96, 144, 0.9);
    color: var(--text-soft);
}

.btn-small:hover {
    filter: brightness(1.1);
    text-decoration: none;
}

/* HERO */

.hero {
    position: relative;
    color: #fdfdff;
}

.hero-city {
    min-height: 78vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    pointer-events: none;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.4) contrast(1.1) brightness(0.85);
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    background:
        radial-gradient(circle at 10% 0%, rgba(70,230,255,0.45), transparent 55%),
        radial-gradient(circle at 90% 0%, rgba(241,76,255,0.6), transparent 55%),
        linear-gradient(to bottom, rgba(5,7,20,0.78), rgba(5,7,20,0.98));
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 3.1fr) minmax(0, 2.3fr);
    gap: 2.7rem;
    padding: 3.8rem 0 3.4rem;
    align-items: center;
}

.hero-left h1 {
    font-size: clamp(2.4rem, 3.3vw, 3rem);
    line-height: 1.1;
    margin: 0.4rem 0 0.8rem;
}

.hero-lead {
    color: rgba(230, 232, 255, 0.88);
    max-width: 36rem;
    font-size: 0.98rem;
    line-height: 1.7;
}

.hero-tag {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(208, 213, 255, 0.86);
}

.hero-cta-row {
    display: flex;
    gap: 0.9rem;
    margin: 1.6rem 0 1.3rem;
    flex-wrap: wrap;
}

.hero-btn {
    border-radius: var(--radius-pill);
}

.hero-pill-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 0.9rem;
}

.hero-pill {
    border-radius: 18px;
    padding: 0.8rem 1rem;
    background: rgba(16, 19, 56, 0.92);
    border: 1px solid rgba(124, 136, 201, 0.7);
    box-shadow: 0 12px 28px rgba(2, 5, 26, 0.8);
}

.pill-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(193, 199, 255, 0.9);
    margin-bottom: 0.15rem;
}

.pill-value {
    font-size: 0.88rem;
    color: rgba(244, 244, 255, 0.98);
}

/* Hero right card */

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: radial-gradient(circle at 0% 0%, rgba(241,76,255,0.18), transparent 60%),
                radial-gradient(circle at 100% 0%, rgba(70,230,255,0.13), transparent 60%),
                rgba(8, 11, 40, 0.96);
    border-radius: 26px;
    padding: 1.6rem 1.7rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(122, 132, 215, 0.8);
    max-width: 380px;
    width: 100%;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.7rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.dot-live {
    background: radial-gradient(circle at 30% 30%, #ffffff, #46e6ff 55%, #0f172a 100%);
    box-shadow: 0 0 0 4px rgba(70,230,255,0.28);
}

.hero-card-title {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(210, 214, 255, 0.9);
}

.hero-card-grid {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

.hero-metric {
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
    background: rgba(10, 15, 54, 0.95);
    border: 1px solid rgba(74, 85, 186, 0.9);
}

.metric-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(185, 193, 255, 0.9);
}

.metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0.25rem;
    color: #ffffff;
}

.metric-note {
    font-size: 0.78rem;
    color: rgba(193, 197, 238, 0.9);
    margin-top: 0.2rem;
}

.hero-card-footer {
    margin-top: 1rem;
}

.hero-footline {
    font-size: 0.78rem;
    color: rgba(189, 193, 230, 0.85);
}

/* SECTIONS */

.section {
    padding: 3rem 0;
}

.section-deep {
    background: radial-gradient(circle at 0% 0%, rgba(241,76,255,0.16), transparent 60%),
                radial-gradient(circle at 100% 100%, rgba(70,230,255,0.08), transparent 60%),
                rgba(7, 8, 27, 0.98);
    border-top: 1px solid rgba(58, 61, 110, 0.8);
    border-bottom: 1px solid rgba(58, 61, 110, 0.8);
}

.section-alt {
    background: radial-gradient(circle at 0% 0%, rgba(241,76,255,0.09), transparent 55%),
                #050714;
    border-top: 1px solid rgba(35, 39, 65, 0.8);
}

.section-header {
    max-width: 700px;
    margin-bottom: 2rem;
}

.section-header h2 {
    margin: 0 0 0.6rem;
    font-size: 1.6rem;
}

.section-header p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* GRID & CARDS */

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 2.4rem;
    align-items: flex-start;
}

.card-grid {
    display: grid;
    gap: 1.7rem;
    margin-top: 1.4rem;
}

.card-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-card,
.panel-outline {
    background: rgba(9, 12, 40, 0.96);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.6rem;
    border: 1px solid rgba(60, 66, 120, 0.9);
    box-shadow: var(--shadow-subtle);
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.info-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.panel-outline.panel-gradient {
    background: radial-gradient(circle at 0% 0%, rgba(241,76,255,0.2), transparent 60%),
                radial-gradient(circle at 100% 100%, rgba(70,230,255,0.12), transparent 60%),
                rgba(9, 12, 40, 0.97);
}

/* CHECKLIST & STEPS */

.lead {
    color: var(--text-muted);
    font-size: 0.96rem;
    max-width: 40rem;
}

.checklist {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    font-size: 0.92rem;
}

.checklist li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.55rem;
    color: var(--text-muted);
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.12rem;
    color: var(--accent);
    font-size: 0.85rem;
}

.steps-list {
    margin: 0.5rem 0 0.7rem;
    padding-left: 1.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.steps-list li {
    margin-bottom: 0.35rem;
}

/* TEXT HELPERS */

.small-muted {
    font-size: 0.78rem;
    color: var(--text-soft);
}

/* FORMS */

.form-card {
    margin-top: 1.5rem;
    background: rgba(10, 14, 40, 0.96);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.7rem;
    border: 1px solid rgba(60, 66, 120, 0.9);
    box-shadow: var(--shadow-subtle);
}

.form-card.narrow {
    max-width: 420px;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-row label {
    font-size: 0.84rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #e6e8ff;
}

.form-row input,
.form-row select,
.form-row textarea {
    border-radius: 12px;
    border: 1px solid rgba(101, 108, 170, 0.9);
    padding: 0.55rem 0.75rem;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    background: rgba(4, 7, 24, 0.96);
    color: var(--text-main);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(241,76,255,0.25);
}

.form-row textarea {
    resize: vertical;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.form-actions {
    margin-top: 1.25rem;
}

.checkbox-row label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.checkbox-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

/* SUCCESS PANEL */

.success-panel {
    margin-top: 1.5rem;
    padding: 1.6rem 1.7rem;
    border-radius: var(--radius-lg);
    background: rgba(25, 53, 46, 0.96);
    border: 1px solid rgba(61, 214, 140, 0.45);
}

/* TABLES */

.table-wrapper {
    margin-top: 1.5rem;
    background: rgba(10, 14, 40, 0.96);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(60, 66, 120, 0.9);
    box-shadow: var(--shadow-subtle);
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
}

.data-table th,
.data-table td {
    padding: 0.7rem 0.85rem;
    text-align: left;
    border-bottom: 1px solid rgba(34, 38, 80, 0.9);
}

.data-table thead th {
    background: radial-gradient(circle at 0% 0%, rgba(241,76,255,0.18), transparent 70%),
                rgba(8, 11, 40, 0.98);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-soft);
}

.data-table tbody tr:hover {
    background: rgba(20, 24, 65, 0.9);
}

.status-pill {
    display: inline-flex;
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    border: 1px solid transparent;
}

.status-pending {
    background: rgba(255, 193, 7, 0.12);
    color: #ffdd75;
    border-color: rgba(255, 193, 7, 0.5);
}

.status-confirmed {
    background: rgba(61, 214, 140, 0.14);
    color: var(--success);
    border-color: rgba(61, 214, 140, 0.5);
}

.status-cancelled {
    background: rgba(255, 107, 107, 0.14);
    color: var(--danger);
    border-color: rgba(255, 107, 107, 0.6);
}

.table-actions {
    display: flex;
    gap: 0.4rem;
}

/* FILTER BAR */

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    margin-top: 0.8rem;
}

.filter-bar .form-row {
    margin-bottom: 0;
}

/* FLASH MESSAGES */

.flash-wrapper {
    margin-top: 0.5rem;
}

.flash {
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

.flash-error {
    background: rgba(255, 107, 107, 0.14);
    color: #fca5a5;
    border: 1px solid rgba(255, 107, 107, 0.7);
}

.flash-success {
    background: rgba(61, 214, 140, 0.16);
    color: #6ee7b7;
    border: 1px solid rgba(61, 214, 140, 0.7);
}

/* FOOTER */

.site-footer {
    margin-top: 3rem;
    padding: 1.5rem 0 1.8rem;
    border-top: 1px solid rgba(35,39,65,0.9);
    background: rgba(3, 5, 20, 0.96);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-soft);
}

.footer-note {
    margin-top: 0.25rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        padding: 3rem 0 2.6rem;
        gap: 2rem;
    }

    .hero-right {
        order: -1;
        justify-content: flex-start;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 0.4rem;
    }

    .hero-video-bg,
    .hero-overlay {
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
}

@media (max-width: 640px) {
    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .split {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        flex-direction: column;
    }
    /* Dashboard metrics layout */
.metrics .info-card {
    text-align: left;
}

.metric {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0.1rem 0 0.3rem;
}

@media (max-width: 900px) {
    .metrics.card-grid,
    .card-grid.metrics {
        grid-template-columns: minmax(0, 1fr);
    }
}

}
