:root {
    --navy: #071a3d;
    --blue: #1769e0;
    --green: #0f8a50;
    --red: #c92a2a;
    --page: #f3f6fb;
    --text: #13213a;
    --muted: #5d6e87;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--page);
    color: var(--text);
}

header {
    background: var(--navy);
    color: white;
    padding: 14px 26px;
}

.brand {
    max-width: 1180px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: #c9dcff;
    margin-top: 3px;
}

main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 38px 24px;
}

.card {
    background: white;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 22px;
    box-shadow:
        0 10px 28px
        rgba(20, 47, 90, 0.09);
}

.grid {
    display: grid;
    gap: 22px;
}

.grid-2 {
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(300px, 1fr)
        );
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.btn,
button {
    display: inline-block;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    background: var(--blue);
    color: white;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.btn-green {
    background: var(--green);
}

.btn-red {
    background: var(--red);
}

.btn-light {
    background: #e8eef8;
    color: var(--text);
}

input,
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cfd8e6;
    border-radius: 10px;
}

label {
    display: block;
    margin-top: 14px;
    margin-bottom: 6px;
    font-weight: bold;
}

.badge {
    display: inline-block;
    border-radius: 999px;
    padding: 6px 10px;
    background: #e7edf7;
    font-size: 13px;
}

.scene-row {
    padding: 16px 0;
    border-bottom: 1px solid #e4eaf2;
}

.scene-row:last-child {
    border-bottom: 0;
}

.hero {
    padding: 60px 24px;
    text-align: center;
    color: white;
    background:
        linear-gradient(
            135deg,
            #0b3c88,
            #1884e8
        );
}

.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 6vw, 58px);
}

.hero p {
    max-width: 760px;
    margin: auto;
    line-height: 1.6;
    color: #dbeafe;
}

footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    background: var(--navy);
    color: #c9dcff;
    font-size: 13px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 10px;
    border-bottom: 1px solid #e4eaf2;
    text-align: left;
}


.page-heading,
.section-heading {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    color: var(--blue);
}

.eyebrow.light {
    color: #c9dcff;
}

.premium-hero {
    min-height: 330px;
    display: grid;
    place-content: center;
    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(83, 173, 255, .6),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061a41,
            #0b58b4 55%,
            #0d91d8
        );
}

.notice {
    margin-bottom: 24px;
    padding: 16px 18px;
    border: 1px solid #bcd8ff;
    border-radius: 14px;
    background: #edf6ff;
}

.public-tour-card {
    position: relative;
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 18px;
    overflow: hidden;
}

.tour-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            #1769e0,
            #0d9be8
        );
    color: white;
    font-size: 22px;
    font-weight: 800;
    box-shadow:
        0 12px 24px
        rgba(23, 105, 224, .25);
}

.metric-row {
    display: flex;
    gap: 7px;
    align-items: baseline;
    margin: 14px 0;
}

.metric-row strong {
    font-size: 28px;
}

.sales-panel {
    margin-top: 34px;
    text-align: center;
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #eaf4ff
        );
}

.check-label {
    display: flex;
    gap: 9px;
    align-items: center;
}

.check-label input {
    width: auto;
}


.danger-card { border: 1px solid #f7c2c2; background: #fff7f7; }
.danger-card h2 { color: #a12727; }


.premises-badge {
    background: #e6f7ed;
    color: #146c3d;
    border: 1px solid #a9dfbe;
}

.actions form {
    display: inline-flex;
    margin: 0;
}


.whatsapp-action {
    background: #168c48;
    border-color: #168c48;
}

.whatsapp-action:hover {
    background: #10723a;
}

.feedback-card {
    margin-top: 28px;
    text-align: center;
}

.admin-login-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 80% 10%, rgba(62, 147, 255, .30), transparent 34%),
        linear-gradient(135deg, #061a41, #0b58b4);
}

.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.login-card {
    width: min(520px, 100%);
}

.login-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-brand img {
    width: 68px;
    height: 68px;
    border-radius: 18px;
}

.login-error {
    margin: 16px 0;
    padding: 12px 14px;
    border: 1px solid #efb4b4;
    border-radius: 12px;
    background: #fff1f1;
    color: #8f2020;
}

.login-public-link {
    display: block;
    margin-top: 16px;
    text-align: center;
}
