:root {
    --navy: #0e2238;
    --navy-soft: #163452;
    --gold: #c89b52;
    --gold-dark: #a67e42;
    --sand: #f5f0e7;
    --white: #ffffff;
    --text: #233243;
    --muted: #66768a;
    --border: #d7dce2;
    --soft: #f7f8fa;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
}

/* =========================
   HEADER / NAVBAR
========================= */
.site-header .navbar {
    background: rgba(8, 22, 38, 0.95);
    backdrop-filter: blur(8px);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), #e7c07d);
    color: #111;
    font-weight: 800;
}

.navbar-brand strong {
    display: block;
    line-height: 1;
    color: #fff;
}

.navbar-brand small {
    color: #d1dae5;
    line-height: 1;
}

.nav-link {
    color: #ecf2f7 !important;
}

.nav-link:hover {
    color: #fff !important;
}

/* =========================
   BUTTONS
========================= */
.btn-gold {
    background: var(--gold);
    color: #fff;
    border: none;
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: #fff;
}

.btn-soft {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-soft:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* =========================
   HERO
========================= */
.hero-section {
    background: linear-gradient(120deg, rgba(8, 22, 38, 0.96), rgba(19, 52, 82, 0.92));
    color: #fff;
    padding: 100px 0 80px;
}

.hero-section h1 {
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero-section h1 span {
    color: #f0c784;
}

.hero-text {
    font-size: 1.12rem;
    color: #dce5ef;
    max-width: 640px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: 700;
    color: #e8c27b;
}

.eyebrow.dark {
    color: var(--gold-dark);
}

.hero-card,
.quote-box,
.concierge-box,
.contact-card,
.service-card,
.stat-card,
.mini-feature {
    border-radius: 18px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.hero-card-badge {
    display: inline-block;
    background: rgba(240, 199, 132, 0.18);
    color: #f0c784;
    border: 1px solid rgba(240, 199, 132, 0.25);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.hero-card ul,
.concierge-box ul,
.service-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.hero-stats .stat-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong,
.service-card h3,
.concierge-box h3,
.contact-card strong {
    display: block;
}

.stat-card span {
    color: #d5e1ec;
    font-size: 0.92rem;
}

/* =========================
   GENERAL SECTIONS
========================= */
.section-padding {
    padding: 85px 0;
}

.bg-light-soft {
    background: var(--soft);
}

.section-heading {
    max-width: 780px;
}

.section-heading h2,
.concierge-section h2,
.contact-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 12px;
}

.section-heading p,
.concierge-section p,
.contact-section p,
.service-card p {
    color: var(--muted);
}

/* =========================
   SERVICE CARDS
========================= */
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 28px;
    box-shadow: 0 12px 30px rgba(15, 30, 50, 0.05);
}

.service-card.highlight {
    background: linear-gradient(180deg, #fff7ea, #ffffff);
    border-color: #e8d1aa;
}

/* =========================
   CONCIERGE
========================= */
.concierge-section {
    background: linear-gradient(180deg, #fff, #f7f7f7);
}

.concierge-box {
    background: var(--navy);
    color: #fff;
    padding: 32px;
}

.concierge-box h3 {
    color: #fff;
}

.concierge-box ul li {
    margin-bottom: 10px;
}

.mini-feature {
    background: #fff;
    border: 1px solid var(--border);
    padding: 16px 18px;
    font-weight: 600;
}

/* =========================
   QUOTE FORM
========================= */
.quote-box {
    background: #fff;
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: 0 15px 35px rgba(15, 30, 50, 0.06);
}

.form-control,
.form-select {
    min-height: 50px;
    border-radius: 12px;
    border-color: #cfd6df;
}

textarea.form-control {
    min-height: auto;
}

/* =========================
   CONTACT
========================= */
.contact-card {
    background: var(--sand);
    padding: 32px;
    border: 1px solid #e7dbc8;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: var(--navy);
    color: #d3dce7;
}

.site-footer h5,
.site-footer h6 {
    color: #fff;
}

.site-footer a {
    color: #d3dce7;
}

.site-footer a:hover {
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 30px 0 20px;
}

/* =========================
   LOGIN PAGES
========================= */
.login-page {
    min-height: 100vh;
    background: linear-gradient(140deg, #0d2238, #1e466a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}

.login-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    padding: 34px;
}

.login-card .form-control {
    min-height: 52px;
}

/* =========================
   DASHBOARD
========================= */
.dashboard-shell {
    min-height: 100vh;
    background: #f5f7fb;
}

.dashboard-topbar {
    background: #fff;
    border-bottom: 1px solid #e3e8ef;
    padding: 18px 0;
}

.dashboard-card {
    background: #fff;
    border: 1px solid #e4e8ee;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.dashboard-card h4 {
    font-size: 1.2rem;
    color: var(--navy);
}

.badge-soft {
    background: #edf3fb;
    color: #1d4d79;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 80px;
    }

    .hero-actions .btn {
        width: 100%;
    }
}
.hero-with-photo {
    background: #0f172a;
    color: #ffffff;
    isolation: isolate;
    min-height: 760px;
    overflow: hidden;
    padding: 8rem 0 5rem;
    position: relative;
}

.hero-background,
.hero-overlay {
    inset: 0;
    position: absolute;
}

.hero-background {
    z-index: -3;
}

.hero-background-image {
    height: 100%;
    object-fit: cover;
    object-position: center center;
    width: 100%;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(8, 25, 40, .96) 0%,
            rgba(8, 25, 40, .88) 38%,
            rgba(8, 25, 40, .56) 67%,
            rgba(8, 25, 40, .35) 100%
        );
    z-index: -2;
}

.hero-with-photo::after {
    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(212, 175, 55, .22),
            transparent 30%
        );
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-with-photo .eyebrow {
    border: 1px solid rgba(255, 255, 255, .32);
    color: #f5d77a;
}

.hero-with-photo h1 {
    color: #ffffff;
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    line-height: 1.05;
    margin: 1.1rem 0 1.5rem;
    max-width: 820px;
}

.hero-with-photo h1 span {
    color: #f5d77a;
    display: block;
}

.hero-with-photo .hero-text {
    color: rgba(255, 255, 255, .86);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 680px;
}

.hero-with-photo .stat-card {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .14);
    min-height: 100%;
    backdrop-filter: blur(10px);
}

.hero-with-photo .stat-card strong {
    color: #ffffff;
}

.hero-with-photo .stat-card span {
    color: rgba(255, 255, 255, .75);
}

.hero-card-glass {
    background: rgba(9, 30, 45, .74);
    border: 1px solid rgba(255, 255, 255, .20);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .28);
    color: #ffffff;
    backdrop-filter: blur(16px);
}

.hero-card-glass h3 {
    color: #ffffff;
}

.hero-card-glass li {
    color: rgba(255, 255, 255, .88);
}

.hero-card-glass .hero-card-badge {
    background: rgba(212, 175, 55, .18);
    border: 1px solid rgba(245, 215, 122, .36);
    color: #f5d77a;
}

@media (max-width: 991.98px) {
    .hero-with-photo {
        min-height: auto;
        padding: 6.5rem 0 4rem;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 25, 40, .90) 0%,
                rgba(8, 25, 40, .84) 55%,
                rgba(8, 25, 40, .92) 100%
            );
    }

    .hero-background-image {
        object-position: 65% center;
    }

    .min-vh-75 {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .hero-with-photo {
        padding: 5.5rem 0 3rem;
    }

    .hero-with-photo h1 {
        font-size: clamp(2.3rem, 12vw, 3.4rem);
    }

    .hero-with-photo .hero-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-card-glass {
        padding: 1.4rem;
    }
}