/* ============================================================
   Hardhika Beauty & Lifestyle — luxury dark theme
   Palette drawn from the brand logo: black canvas, champagne
   gold, rose gold, warm ivory.
   ============================================================ */

:root {
    --bg: #0d0a07;
    --bg-alt: #14100b;
    --panel: #1a1510;
    --panel-2: #211a12;
    --ink: #f5edda;
    --ink-soft: #c9bda3;
    --muted: #94886f;
    --gold: #d8b878;
    --gold-deep: #a8823c;
    --gold-soft: #ecd9a8;
    --rose: #d09a7e;
    --rose-deep: #b57e5f;
    --line: rgba(216, 184, 120, 0.18);
    --line-soft: rgba(216, 184, 120, 0.10);
    --shadow-soft: 0 14px 44px rgba(0, 0, 0, 0.55);
    --shadow-card: 0 8px 26px rgba(0, 0, 0, 0.45);
    --glow-gold: 0 10px 34px rgba(216, 184, 120, 0.18);
    --radius: 18px;
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Jost", "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    color: var(--ink-soft);
    background: var(--bg);
    font-size: 1.02rem;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ink);
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); }

/* ---------- Buttons ---------- */

.btn-brand {
    background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 45%, var(--gold-deep) 100%);
    color: #211505;
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1.6rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: 0 8px 24px rgba(216, 184, 120, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-brand:hover, .btn-brand:focus {
    color: #211505;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(216, 184, 120, 0.42);
}

.btn-brand.btn-sm { padding: 0.45rem 1.2rem; font-size: 0.92rem; }

.btn-outline-brand {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    background: transparent;
    transition: all 0.2s ease;
}

.btn-outline-brand:hover {
    background: rgba(216, 184, 120, 0.12);
    border-color: var(--gold-soft);
    color: var(--gold-soft);
}

/* ---------- Navbar ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-navbar {
    background: rgba(10, 8, 5, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
    padding: 0.55rem 0;
}

.brand { display: flex; align-items: center; gap: 0.7rem; }

.brand-logo {
    height: 52px;
    width: auto;
    display: block;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-deep) 60%, var(--rose) 140%);
    color: #211505;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(216, 184, 120, 0.35);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--ink);
    letter-spacing: 0.5px;
}

.brand-tag {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    color: var(--gold);
}

.site-navbar .navbar-toggler {
    border-color: var(--line);
}

.site-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(216,184,120,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-navbar .nav-link {
    color: var(--ink-soft);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0 0.35rem;
    position: relative;
}

.site-navbar .nav-link:hover { color: var(--gold-soft); }

.site-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.25s ease;
    transform: translateX(-50%);
}

.site-navbar .nav-link:hover::after { width: 60%; }

/* ---------- Hero ---------- */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1100px 520px at 85% -10%, rgba(216, 184, 120, 0.14), transparent 60%),
        radial-gradient(900px 600px at -10% 110%, rgba(208, 154, 126, 0.12), transparent 55%),
        linear-gradient(160deg, #0d0a07 0%, #161009 100%);
    padding: 6rem 0 5.5rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(216, 184, 120, 0.08);
    border: 1px solid var(--line);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    margin-bottom: 1.4rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--ink);
}

.hero h1 .accent {
    background: linear-gradient(120deg, var(--gold-soft) 10%, var(--gold) 45%, var(--rose) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 34rem;
    margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }

.hero-highlights { display: flex; flex-wrap: wrap; gap: 1.6rem; }

.hero-highlight { display: flex; align-items: center; gap: 0.55rem; color: var(--ink-soft); font-size: 0.95rem; }

.hero-highlight .hh-icon { font-size: 1.2rem; }

.hero-visual { position: relative; }

.hero-card {
    background: rgba(26, 21, 16, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1.6rem 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-card + .hero-card { margin-top: 1.1rem; }

.hero-card .hc-icon { font-size: 2rem; }

.hero-card h5 { margin: 0.4rem 0 0.2rem; font-size: 1.12rem; color: var(--gold-soft); }

.hero-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Sections ---------- */

.section { padding: 5rem 0; }

.section-alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); }

.section-head { max-width: 620px; margin: 0 auto 3rem; text-align: center; }

.section-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 0.8rem; }

.section-head p { color: var(--ink-soft); margin: 0; }

/* ---------- Service cards ---------- */

.service-card {
    background: linear-gradient(160deg, var(--panel) 0%, var(--bg-alt) 100%);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 2rem 1.8rem;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--line);
    box-shadow: var(--glow-gold);
}

.service-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    border-radius: 16px;
    background: rgba(216, 184, 120, 0.08);
    border: 1px solid var(--line);
    margin-bottom: 1.1rem;
}

.service-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--gold-soft); }

.service-card > p { color: var(--ink-soft); font-size: 0.95rem; }

.service-list { list-style: none; padding: 0; margin: 1rem 0 1.2rem; }

.service-list li {
    padding: 0.28rem 0 0.28rem 1.5rem;
    position: relative;
    color: var(--ink-soft);
    font-size: 0.93rem;
}

.service-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

.service-card .card-link { font-weight: 600; font-size: 0.92rem; letter-spacing: 0.4px; }

/* ---------- Bridal ---------- */

.bridal {
    background:
        radial-gradient(800px 400px at 110% 0%, rgba(216, 184, 120, 0.16), transparent 55%),
        radial-gradient(700px 400px at -10% 100%, rgba(208, 154, 126, 0.14), transparent 55%),
        linear-gradient(140deg, #16100a 0%, #221710 55%, #2b1d12 100%);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.bridal .section-eyebrow { color: var(--gold-soft); }

.bridal h2, .bridal h3 { color: var(--ink); }

.bridal p { color: var(--ink-soft); }

.bridal-panel {
    background: rgba(13, 10, 7, 0.55);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem 1.5rem;
    height: 100%;
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bridal-panel:hover { transform: translateY(-4px); box-shadow: var(--glow-gold); }

.bridal-panel .bp-icon { font-size: 1.8rem; }

.bridal-panel h3 { font-size: 1.15rem; margin: 0.6rem 0 0.4rem; color: var(--gold-soft); }

.bridal-panel p { font-size: 0.92rem; margin: 0; }

.bridal .btn-gold {
    background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-deep) 100%);
    color: #211505;
    border-radius: 999px;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 8px 24px rgba(216, 184, 120, 0.32);
    transition: transform 0.2s ease;
}

.bridal .btn-gold:hover { transform: translateY(-2px); color: #211505; }

/* ---------- Products ---------- */

.product-card {
    background: linear-gradient(160deg, var(--panel) 0%, var(--bg-alt) 100%);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 1.7rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--line);
    box-shadow: var(--glow-gold);
}

.product-icon { font-size: 2.4rem; display: block; margin-bottom: 0.8rem; }

.product-card .badge-cat {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(216, 184, 120, 0.10);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    padding: 0.25rem 0.8rem;
    margin-bottom: 0.6rem;
}

.product-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--gold-soft); }

.product-card p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* ---------- Why us ---------- */

.why-item { display: flex; gap: 1rem; align-items: flex-start; }

.why-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    background: rgba(216, 184, 120, 0.08);
    border: 1px solid var(--line);
}

.why-item h3 { font-size: 1.12rem; margin-bottom: 0.25rem; color: var(--gold-soft); }

.why-item p { color: var(--ink-soft); font-size: 0.93rem; margin: 0; }

/* ---------- Testimonials ---------- */

.testimonial-card {
    background: linear-gradient(160deg, var(--panel) 0%, var(--bg-alt) 100%);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 1.8rem 1.6rem;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 0.4rem;
    right: 1.2rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(216, 184, 120, 0.16);
    line-height: 1;
}

.testimonial-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.7rem; }

.testimonial-card p { color: var(--ink-soft); font-size: 0.95rem; }

.testimonial-name { font-weight: 600; color: var(--ink); }

.testimonial-service { font-size: 0.82rem; color: var(--gold); letter-spacing: 0.5px; }

/* ---------- CTA band ---------- */

.cta-band {
    background:
        radial-gradient(700px 300px at 15% 120%, rgba(255, 255, 255, 0.14), transparent 60%),
        linear-gradient(120deg, var(--gold-deep) 0%, var(--gold) 55%, var(--rose) 130%);
    border-radius: 24px;
    color: #241708;
    padding: 3.2rem 2.5rem;
    box-shadow: var(--glow-gold);
}

.cta-band h2 { color: #241708; font-size: clamp(1.7rem, 3vw, 2.3rem); }

.cta-band p { color: rgba(36, 23, 8, 0.82); margin: 0; }

.cta-band .btn-light-cta {
    background: #14100b;
    color: var(--gold-soft);
    border-radius: 999px;
    padding: 0.75rem 1.9rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    border: none;
    box-shadow: 0 8px 22px rgba(20, 12, 4, 0.35);
    transition: transform 0.2s ease;
}

.cta-band .btn-light-cta:hover { transform: translateY(-2px); color: var(--gold-soft); }

/* ---------- Forms ---------- */

.form-shell {
    background: linear-gradient(160deg, var(--panel) 0%, var(--bg-alt) 100%);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 2.4rem 2.2rem;
}

.form-shell .form-label { font-weight: 500; color: var(--ink); }

.form-shell .form-control,
.form-shell .form-select {
    border-radius: 12px;
    border: 1.5px solid var(--line);
    padding: 0.65rem 0.9rem;
    background: #0f0c09;
    color: var(--ink);
}

.form-shell .form-control::placeholder { color: var(--muted); }

.form-shell .form-select { color: var(--ink-soft); }

.form-shell .form-select option { background: #14100b; color: var(--ink); }

.form-shell .form-control:focus,
.form-shell .form-select:focus {
    background: #0f0c09;
    color: var(--ink);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(216, 184, 120, 0.15);
}

.form-shell input[type="date"] { color-scheme: dark; }

.contact-side {
    background:
        radial-gradient(400px 260px at 100% 0%, rgba(216, 184, 120, 0.10), transparent 60%),
        linear-gradient(150deg, var(--panel-2) 0%, var(--bg-alt) 100%);
    border-radius: var(--radius);
    padding: 2.2rem 2rem;
    height: 100%;
    border: 1px solid var(--line);
}

.contact-side h3 { font-size: 1.4rem; color: var(--gold-soft); }

.contact-side ul { list-style: none; padding: 0; margin: 1.2rem 0 0; }

.contact-side li { padding: 0.45rem 0; color: var(--ink-soft); }

/* ---------- Consent checkbox ---------- */

.consent-check {
    background: rgba(216, 184, 120, 0.06);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.9rem 1rem 0.9rem 2.6rem;
}

.consent-check .form-check-input {
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.22rem;
    background-color: #0f0c09;
    border: 1.5px solid var(--gold);
    cursor: pointer;
}

.consent-check .form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.consent-check .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(216, 184, 120, 0.2);
}

.consent-check .form-check-label {
    font-size: 0.92rem;
    color: var(--ink-soft);
    cursor: pointer;
}

.consent-check a {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ---------- Legal pages ---------- */

.legal-page h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.7rem;
    color: var(--gold-soft);
}

.legal-page p, .legal-page li {
    color: var(--ink-soft);
}

.legal-page ul { padding-left: 1.2rem; }

.legal-page li { padding: 0.15rem 0; }

.legal-address {
    background: rgba(216, 184, 120, 0.06);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.2rem;
    color: var(--ink-soft);
    font-style: normal;
    margin: 1rem 0;
}

.legal-address strong { color: var(--ink); }

/* ---------- Gallery ---------- */

.gallery-card {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line-soft);
    background: var(--panel);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    border-color: var(--line);
    box-shadow: var(--glow-gold);
}

.gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.gallery-card figcaption {
    padding: 0.85rem 1.2rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--gold-soft);
    background: var(--panel);
}

/* ---------- Brand banner strip ---------- */

.brand-banner {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    background: #000;
}

.brand-banner img { width: 100%; display: block; }

/* ---------- Thank-you ---------- */

.thankyou-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(800px 400px at 50% -20%, rgba(216, 184, 120, 0.12), transparent 60%),
        linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.thankyou-card {
    background: linear-gradient(160deg, var(--panel) 0%, var(--bg-alt) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 560px;
    margin: 3rem auto;
}

.thankyou-card .ty-icon { font-size: 3.2rem; display: block; margin-bottom: 1rem; }

/* ---------- Footer ---------- */

.site-footer {
    background: linear-gradient(180deg, #0a0805 0%, #060403 100%);
    color: var(--ink-soft);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid var(--line-soft);
}

.footer-logo {
    max-width: 260px;
    width: 100%;
    display: block;
}

.footer-about { margin-top: 1.2rem; font-size: 0.93rem; max-width: 22rem; color: var(--ink-soft); }

.footer-social { margin-top: 0.8rem; font-size: 0.93rem; }

.footer-social a { color: var(--gold); }

.footer-social a:hover { color: var(--gold-soft); }

.footer-heading {
    color: var(--gold-soft);
    font-family: var(--font-body);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    margin-bottom: 1rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { padding: 0.28rem 0; font-size: 0.93rem; color: var(--ink-soft); }

.footer-links a { color: var(--ink-soft); }

.footer-links a:hover { color: var(--gold-soft); }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    border-top: 1px solid var(--line-soft);
    margin-top: 3rem;
    padding-top: 1.4rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.footer-bottom a { color: var(--muted); }

.footer-bottom a:hover { color: var(--gold-soft); }

.footer-bottom .dot { margin: 0 0.5rem; }

/* ---------- WhatsApp float ---------- */

.whatsapp-float {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 1040;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- Admin (kept light for readability) ---------- */

.admin-body {
    background: #f5f1ea;
    color: #2b2013;
    min-height: 100vh;
    font-family: var(--font-body);
}

.admin-body h1, .admin-body h2, .admin-body h3,
.admin-body h4, .admin-body h5, .admin-body h6 { color: #2b2013; }

.admin-body a { color: var(--gold-deep); }

.admin-nav {
    background: linear-gradient(120deg, #0d0a07 0%, #241a10 100%);
    color: #fff;
    padding: 0.9rem 0;
}

.admin-nav .brand-name { color: #fff; font-size: 1.15rem; }

.admin-nav .brand-tag { color: var(--gold-soft); }

.admin-nav a { color: rgba(255, 255, 255, 0.85); }

.admin-nav a:hover { color: #fff; }

.stat-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 26px rgba(60, 45, 20, 0.10);
    padding: 1.3rem 1.4rem;
    border-left: 5px solid var(--gold);
}

.stat-card.gold { border-left-color: #c98a3f; }
.stat-card.plum { border-left-color: #6e4d2b; }
.stat-card.green { border-left-color: #4c9a6a; }

.stat-value { font-size: 1.9rem; font-weight: 700; font-family: var(--font-display); color: #2b2013; }

.stat-label { color: #8a7a5f; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.4px; }

.admin-panel {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 26px rgba(60, 45, 20, 0.10);
    padding: 1.6rem;
}

.admin-table th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #8a7a5f;
    border-bottom-width: 2px;
}

.admin-table td { vertical-align: middle; }

.badge-status {
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.badge-status.new { background: #fdeade; color: #b3541e; }
.badge-status.contacted { background: #e8f0fd; color: #2b5eb3; }
.badge-status.confirmed { background: #e4f5ea; color: #23744a; }
.badge-status.completed { background: #ece9f7; color: #55418f; }
.badge-status.cancelled { background: #f3f3f3; color: #777; }

.badge-type {
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-type.booking { background: #f3e8d5; color: #8a6528; }
.badge-type.contact { background: #eef3f6; color: #47656f; }

.login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(900px 500px at 90% -10%, rgba(216, 184, 120, 0.14), transparent 60%),
        linear-gradient(150deg, #0d0a07 0%, #1c130b 60%, #2b1d12 100%);
    padding: 2rem 1rem;
}

.login-card {
    background: #fff;
    color: #2b2013;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    padding: 2.6rem 2.4rem;
    width: 100%;
    max-width: 420px;
}

.login-card h3 { color: #2b2013; }

.login-logo { max-width: 220px; width: 100%; display: block; margin: 0 auto; border-radius: 10px; }

/* ---------- Reveal animation ---------- */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive tweaks ---------- */

@media (max-width: 991.98px) {
    .hero { padding: 4rem 0 3.5rem; }
    .hero-visual { margin-top: 2.5rem; }
    .section { padding: 3.6rem 0; }
    .brand-logo { height: 44px; }
}
