@font-face {
    font-family: "MV Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2") format("woff2");
}

@font-face {
    font-family: "MV Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2") format("woff2");
}

@font-face {
    font-family: "MV Slab";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2") format("woff2");
}

:root {
    --bg: #eff6ff;
    --surface: rgba(255, 255, 255, 0.76);
    --text: #15305f;
    --text-soft: #587198;
    --primary: #0b3b8f;
    --secondary: #10a6e7;
    --secondary-soft: #e2f7ff;
    --accent: #ff7f5c;
    --shadow: 0 28px 60px rgba(11, 59, 143, 0.14);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --shell: min(1180px, calc(100vw - 32px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(16, 166, 231, 0.22), transparent 34%),
        radial-gradient(circle at right center, rgba(255, 127, 92, 0.14), transparent 28%),
        linear-gradient(180deg, #f9fcff 0%, var(--bg) 60%, #f6fbff 100%);
    font-family: "MV Sans", sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.shell {
    width: var(--shell);
    margin: 0 auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    backdrop-filter: blur(16px);
    background: rgba(249, 252, 255, 0.72);
    border-bottom: 1px solid rgba(11, 59, 143, 0.06);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(16, 166, 231, 0.18);
}

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

.brand strong {
    font-family: "MV Slab", serif;
    font-size: 1.1rem;
    line-height: 1.1;
}

.brand small {
    color: var(--text-soft);
}

.site-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.site-menu a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--text-soft);
    transition: 180ms ease;
}

.site-menu a:hover,
.site-menu a.is-active {
    color: var(--primary);
    background: rgba(16, 166, 231, 0.1);
}

.nav-toggle {
    display: none;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    cursor: pointer;
}

.hero {
    position: relative;
    overflow: clip;
    padding: 56px 0 34px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero::before {
    width: 300px;
    height: 300px;
    top: -90px;
    right: -40px;
    background: rgba(16, 166, 231, 0.15);
}

.hero::after {
    width: 220px;
    height: 220px;
    bottom: 10px;
    left: -70px;
    background: rgba(255, 127, 92, 0.16);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.hero-grid-city {
    align-items: start;
}

.hero-copy h1,
.section-heading h2,
.process-panel h2,
.social-panel h2,
.cta-panel h2,
.thank-you-panel h1,
.prose-panel h1 {
    margin: 0;
    font-family: "MV Slab", serif;
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.hero-copy p,
.section-heading p,
.thank-you-panel p,
.prose-panel p,
.social-panel p {
    color: var(--text-soft);
    font-size: 1.04rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(11, 59, 143, 0.08);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
}

.hero-actions,
.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions {
    margin-top: 26px;
}

.hero-pill-row {
    margin-top: 22px;
}

.hero-pill-row span {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(11, 59, 143, 0.08);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(11, 59, 143, 0.16);
}

.button-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1751b7 100%);
    color: #fff;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(11, 59, 143, 0.1);
    color: var(--primary);
}

.button-block {
    width: 100%;
}

.hero-visual {
    position: relative;
    min-height: 500px;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.54);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-card-primary {
    top: 28px;
    right: 12px;
    width: 220px;
    padding: 24px;
}

.hero-card-primary p,
.hero-card-primary small {
    margin: 0;
    color: var(--text-soft);
}

.hero-card-primary strong,
.hero-card-floating span {
    display: block;
    margin-top: 6px;
    font-size: 1.4rem;
    line-height: 1.1;
}

.hero-card-image {
    left: 18px;
    bottom: 18px;
    width: min(480px, 100%);
    overflow: hidden;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.hero-card-floating {
    left: -8px;
    top: 58px;
    width: 170px;
    padding: 18px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(226, 247, 255, 0.92));
}

.stats-grid,
.feature-grid,
.location-grid,
.process-grid {
    display: grid;
    gap: 18px;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.feature-card,
.location-card,
.process-card,
.prose-panel,
.thank-you-panel,
.social-panel,
.cta-panel,
.process-panel {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.stat-card,
.feature-card,
.location-card,
.process-card {
    border-radius: var(--radius-lg);
    padding: 24px;
}

.stat-card strong {
    display: block;
    font-family: "MV Slab", serif;
    font-size: 2rem;
}

.stat-card p,
.feature-card p,
.location-card p,
.process-card p {
    margin-bottom: 0;
    color: var(--text-soft);
}

.section {
    padding: 42px 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(16, 166, 231, 0.05));
}

.section-heading {
    max-width: 760px;
    margin-bottom: 26px;
}

.section-heading h2 {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.section-heading-left {
    margin-bottom: 18px;
}

.location-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.location-chip {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--secondary-soft);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
}

.location-card h3,
.feature-card h3,
.process-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary);
    font-weight: 700;
}

.process-panel,
.social-panel,
.cta-panel,
.prose-panel,
.thank-you-panel {
    border-radius: var(--radius-xl);
    padding: 32px;
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(11, 59, 143, 0.12), rgba(16, 166, 231, 0.16));
    color: var(--primary);
    font-weight: 700;
}

.cta-section {
    padding-top: 8px;
    padding-bottom: 72px;
}

.cta-panel,
.social-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.booking-card {
    position: sticky;
    top: 104px;
    padding: 22px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(14px);
}

.booking-card-head {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
}

.booking-card-head span {
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
}

.booking-card-head strong {
    font-family: "MV Slab", serif;
    font-size: 1.6rem;
    line-height: 1.1;
}

.booking-form {
    display: grid;
    gap: 18px;
}

.booking-form label,
.booking-form fieldset {
    display: grid;
    gap: 8px;
}

.booking-form span,
.booking-form legend {
    font-weight: 700;
    font-size: 0.95rem;
}

.booking-form input {
    width: 100%;
    border: 1px solid rgba(11, 59, 143, 0.14);
    border-radius: 14px;
    background: rgba(249, 252, 255, 0.94);
    padding: 14px 16px;
    color: var(--text);
}

.booking-form input:focus {
    outline: 2px solid rgba(16, 166, 231, 0.2);
    border-color: rgba(16, 166, 231, 0.6);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.booking-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.choice-grid {
    display: grid;
    gap: 10px;
}

.choice-grid-time {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-grid-reason {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-chip {
    position: relative;
    display: block;
    cursor: pointer;
}

.choice-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-chip span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(11, 59, 143, 0.12);
    background: rgba(249, 252, 255, 0.9);
    color: var(--text-soft);
    text-align: center;
    transition: 160ms ease;
}

.choice-chip input:checked + span {
    border-color: rgba(16, 166, 231, 0.32);
    background: linear-gradient(135deg, rgba(11, 59, 143, 0.94), rgba(16, 166, 231, 0.92));
    color: #fff;
    box-shadow: 0 14px 28px rgba(16, 166, 231, 0.18);
}

.form-note,
.redirect-note {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
}

.form-alert p {
    margin: 0;
}

.form-alert p + p {
    margin-top: 6px;
}

.form-alert-error {
    background: rgba(255, 127, 92, 0.12);
    color: #8c3e29;
    border: 1px solid rgba(255, 127, 92, 0.22);
}

.form-alert-success {
    background: rgba(24, 171, 104, 0.12);
    color: #1f6f4c;
    border: 1px solid rgba(24, 171, 104, 0.24);
}

.admin-page {
    padding-bottom: 20px;
}

.admin-page .section {
    padding: 20px 0 30px;
}

.admin-shell {
    display: grid;
    gap: 14px;
}

.admin-shell.admin-shell-wide {
    --shell: calc(100vw - 24px);
}

.admin-shell-login {
    justify-items: center;
}

.admin-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.54);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 18px;
}

.admin-card-compact {
    padding: 14px 16px;
}

.admin-inline-copy h2 {
    margin: 0;
    font-family: "MV Slab", serif;
}

.admin-inline-copy p {
    margin: 4px 0 0;
    color: var(--text-soft);
}

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

.admin-login-card h1,
.admin-head h1 {
    margin: 0 0 10px;
    font-family: "MV Slab", serif;
    line-height: 1.05;
}

.admin-login-card p,
.admin-head p {
    margin: 0;
    color: var(--text-soft);
}

.admin-form,
.admin-import-form {
    display: grid;
    gap: 14px;
    margin-top: 4px;
}

.admin-form label {
    display: grid;
    gap: 8px;
}

.admin-form span {
    font-weight: 700;
}

.admin-form input,
.admin-import-form input[type="file"] {
    width: 100%;
    border: 1px solid rgba(11, 59, 143, 0.14);
    border-radius: 14px;
    background: rgba(249, 252, 255, 0.94);
    padding: 13px 14px;
    color: var(--text);
}

.admin-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.admin-table-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.admin-table-head h2 {
    margin: 0;
    font-family: "MV Slab", serif;
}

.admin-table-head span {
    color: var(--text-soft);
    font-weight: 700;
}

.admin-table-tools {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.admin-view-toggle {
    display: inline-flex;
    background: rgba(11, 59, 143, 0.08);
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
}

.toggle-btn {
    border: 0;
    background: transparent;
    color: var(--text-soft);
    padding: 7px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

.toggle-btn.is-active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 6px 14px rgba(11, 59, 143, 0.15);
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-filter-form {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.admin-filter-form label {
    display: grid;
    gap: 5px;
}

.admin-filter-form span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-filter-form input[type="date"] {
    border: 1px solid rgba(11, 59, 143, 0.14);
    border-radius: 12px;
    background: rgba(249, 252, 255, 0.94);
    padding: 10px 12px;
    color: var(--text);
    min-width: 160px;
}

.admin-filter-form .button {
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 12px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1450px;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid rgba(11, 59, 143, 0.1);
    padding: 10px 8px;
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-soft);
}

.admin-table td {
    font-size: 0.92rem;
}

.admin-table-wrap.mode-single td {
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    max-width: none;
}

.admin-table-wrap.mode-multi td {
    white-space: normal;
    overflow-wrap: anywhere;
    max-width: 420px;
}

.admin-table-wrap.mode-multi .lead-details {
    max-width: 460px;
}

.wa-link {
    color: #138d5f;
    font-weight: 700;
}

.lead-status-form {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lead-status-select {
    border: 1px solid rgba(11, 59, 143, 0.16);
    border-radius: 10px;
    background: rgba(249, 252, 255, 0.94);
    color: var(--text);
    padding: 8px 10px;
    min-width: 140px;
}

.status-save-btn {
    border: 1px solid rgba(11, 59, 143, 0.14);
    background: #fff;
    color: var(--primary);
    border-radius: 10px;
    padding: 8px 10px;
    font-weight: 700;
    cursor: pointer;
}

.thank-you-page {
    padding-top: 38px;
    padding-bottom: 60px;
}

.thank-you-panel,
.prose-panel {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.site-footer {
    padding: 0 0 36px;
}

.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px;
    border-radius: 24px;
    background: rgba(10, 38, 90, 0.96);
    color: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 52px rgba(10, 38, 90, 0.28);
}

.footer-shell strong {
    display: block;
    margin-bottom: 8px;
}

.footer-shell p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    color: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-delay {
    transition-delay: 120ms;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .hero-grid-city,
    .location-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-card-primary {
        right: 0;
    }

    .hero-card-image {
        left: 0;
        width: calc(100% - 56px);
    }

    .choice-grid-time {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .site-header {
        padding: 14px 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        display: none;
        padding: 14px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

    .site-menu.is-open {
        display: grid;
    }

    .cta-panel,
    .social-panel,
    .footer-shell,
    .admin-head,
    .admin-table-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-table-tools {
        justify-content: flex-start;
    }

    .admin-shell.admin-shell-wide {
        --shell: calc(100vw - 12px);
    }

    .admin-filter-form {
        align-items: stretch;
    }

    .lead-status-form {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-card {
        position: static;
    }

    .choice-grid-reason,
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 34px;
    }

    .hero-copy h1,
    .section-heading h2,
    .process-panel h2,
    .social-panel h2,
    .cta-panel h2,
    .thank-you-panel h1,
    .prose-panel h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .hero-card-image {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .hero-card-image img {
        min-height: 280px;
    }

    .hero-card-primary,
    .hero-card-floating {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        margin-bottom: 16px;
    }

    .hero-visual {
        min-height: auto;
    }

    .choice-grid-time {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-panel,
    .social-panel,
    .cta-panel,
    .prose-panel,
    .thank-you-panel,
    .booking-card,
    .admin-card {
        padding: 22px;
    }

    .admin-card-compact {
        padding: 14px;
    }
}
