/* ============================================================
   GLOBAL RESET & ROOT VARIABLES
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --tomato: #a31621;
    --tomato-dark: #7e1019;
    --deep-navy: #0b1f33;
    --night: #081320;
    --card: #0f253c;
    --card-2: #0f314f;
    --text: #e9f2ff;
    --muted: #adc2de;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    margin: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 99, 71, 0.08), transparent 25%),
                radial-gradient(circle at 80% 10%, rgba(0, 132, 255, 0.08), transparent 30%),
                var(--night);
    color: var(--text);
    line-height: 1.6;
}

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

/* ============================================================
   PAGE LOADING BAR
   ============================================================ */

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: var(--tomato);
    z-index: 9999;
    transform: scaleX(0);
    transform-origin: left center;
    animation: loader-progress 0.9s ease-out forwards;
    transition: opacity 0.3s ease;
}

@keyframes loader-progress {
    0%   { transform: scaleX(0); }
    70%  { transform: scaleX(0.85); }
    100% { transform: scaleX(1); }
}

/* ============================================================
   FIXED NAVIGATION
   ============================================================ */

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.9rem clamp(1rem, 3vw, 2.5rem);
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.top-nav.scrolled {
    background: rgba(8, 19, 32, 0.96);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    padding: 0.6rem clamp(1rem, 3vw, 2.5rem);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(8, 19, 32, 0.5);
    transition: border-color 0.35s ease;
}

.top-nav.scrolled .nav-inner {
    border-color: rgba(255, 255, 255, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    flex: 1;
    color: #fff;
}

.logo {
    width: 3.8rem;
    height: auto;
}

.brand-text {
    font-size: 1.35rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.nav-links {
    display: inline-flex;
    gap: 0.2rem;
    align-items: center;
}

.nav-right {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

/* ---- Language Switcher ---- */

.lang-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-globe {
    font-size: 0.95rem;
    line-height: 1;
}

.lang-caret {
    font-size: 0.8rem;
    opacity: 0.8;
    transition: transform 0.2s ease;
}

.lang-switch.is-open .lang-caret {
    transform: rotate(180deg);
}

.lang-trigger {
    background: rgba(8, 19, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #dfe9f7;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.1;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: inherit;
}

.lang-trigger:hover,
.lang-trigger:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 150px;
    background: rgba(8, 19, 32, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 0.3rem;
    box-shadow: var(--shadow);
    display: none;
    z-index: 5;
}

.lang-switch.is-open .lang-menu {
    display: block;
}

.lang-option {
    width: 100%;
    border: none;
    background: transparent;
    color: #dfe9f7;
    padding: 0.5rem 0.7rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease;
    display: block;
}

.lang-option:hover,
.lang-option:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

.lang-option.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ---- Hamburger toggle ---- */

.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.4rem;
    height: 2.4rem;
    padding: 0.35rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(8, 19, 32, 0.5);
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #f6f9ff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Animated X when open */
.nav-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
}
.nav-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Nav links ---- */

.ghost-link {
    font-family: 'Playfair Display', Georgia, serif;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    color: #dfe9f7;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.ghost-link:hover,
.ghost-link:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

/* ---- Book Now CTA pill ---- */

.pill,
.nav-book-btn {
    background: var(--tomato);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: none;
}

.pill:hover,
.nav-book-btn:hover {
    background: var(--tomato-dark);
    transform: translateY(-1px);
    box-shadow: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #fff;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) brightness(0.9);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 19, 32, 0.72) 0%,
        rgba(8, 19, 32, 0.62) 38%,
        rgba(8, 19, 32, 0.12) 68%,
        rgba(8, 19, 32, 0.04) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
    padding: 7rem clamp(1.2rem, 5vw, 4rem) 5rem;
    gap: 1rem;
    max-width: 680px;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--tomato);
    margin: 0;
}

/* plans-trust inside hero */
.hero .plans-trust {
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 1.2rem 0 0;
    margin-top: 0.2rem;
    max-width: none;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hero .trust-item strong {
    color: #fff;
}

.hero .trust-item p {
    color: rgba(255, 255, 255, 0.65);
}

.hero .trust-item:nth-child(1) i,
.hero .trust-item:nth-child(2) i,
.hero .trust-item:nth-child(3) i {
    color: var(--tomato);
}

.headline {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.5px;
}

.main-para {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 500;
    margin: 0;
    max-width: 44rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.5rem;
}

/* Primary CTA — filled */
.intro_button {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    height: 3.2rem;
    padding: 0 2rem;
    border: none;
    border-radius: 12px;
    background-color: var(--tomato);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(163, 22, 33, 0.4);
    font-family: inherit;
    cursor: pointer;
}

.intro_button:hover {
    background: var(--tomato-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(163, 22, 33, 0.5);
}

/* Secondary CTA — ghost/outlined */
.ghost_button {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    height: 3.2rem;
    padding: 0 2.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    background: transparent;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    cursor: pointer;
}

.ghost_button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* ============================================================
   SCROLL FADE-IN ANIMATIONS (Intersection Observer)
   ============================================================ */

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

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

/* Stagger siblings */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.18s; }
.fade-in:nth-child(4) { transition-delay: 0.26s; }
.fade-in:nth-child(5) { transition-delay: 0.34s; }
.fade-in:nth-child(6) { transition-delay: 0.42s; }

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */

.back-to-top {
    position: absolute;
    right: 1.5rem;
    bottom: 1rem;
    margin: 0 0.85rem 4.5rem 0.5rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--tomato);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease, transform 0.2s ease;
}

.back-to-top:hover {
    background: var(--tomato-dark);
    transform: translateY(-2px);
}

/* ============================================================
   SECTION HEADINGS (shared)
   ============================================================ */

.section-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 1rem clamp(1.2rem, 4vw, 2.5rem) 0;
}

.section-heading h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.3px;
    color: black;
    margin: 0;
}

.section-heading .lede {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    margin: 0.8rem 0 1rem 0;
    color: #333;
    line-height: 1.7;
}

/* ============================================================
   RESPONSIVE — NAVIGATION
   ============================================================ */

@media screen and (max-width: 900px) {
    .nav-inner {
        border-radius: 16px;
    }
}

@media screen and (max-width: 780px) {
    .hamburger {
        display: flex;
        margin-left: auto;
    }

    /* Hide nav links until toggle checked */
    .nav-links,
    .nav-right {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 0.2rem 0;
        gap: 0.3rem;
        flex: none;
    }

    .nav-inner {
        flex-wrap: wrap;
        border-radius: 16px;
        align-items: center;
    }

    .nav-toggle:checked ~ .nav-links,
    .nav-toggle:checked ~ .nav-right {
        display: flex;
    }

    .ghost-link {
        width: 100%;
        border-radius: 10px;
        padding: 0.65rem 0.9rem;
        text-align: center;
    }

    .pill,
    .nav-book-btn {
        width: 100%;
        text-align: center;
        border-radius: 10px;
        padding: 0.65rem 1rem;
    }

    .lang-switch {
        width: 100%;
    }

    .lang-trigger {
        width: 100%;
        justify-content: center;
        border-radius: 10px;
        padding: 0.65rem 1rem;
    }

    .lang-menu {
        width: 100%;
        right: auto;
        left: 0;
    }

    .lang-option {
        text-align: center;
    }
}

/* ============================================================
   RESPONSIVE — HERO
   ============================================================ */

@media screen and (max-width: 600px) {
    .headline {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }

    .hero-overlay {
        background: linear-gradient(
            to top,
            rgba(8, 19, 32, 0.55) 0%,
            rgba(8, 19, 32, 0.40) 42%,
            rgba(8, 19, 32, 0.08) 72%,
            rgba(8, 19, 32, 0.02) 100%
        );
    }

    .hero-content {
        padding: 8rem 1.4rem 3rem;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.6rem;
        width: 100%;
    }

    .hero-actions .intro_button,
    .hero-actions .ghost_button {
        flex: 1 1 0;
        height: 2.8rem;
        padding: 0 0.5rem;
        font-size: 0.88rem;
    }

    .hero-kicker {
        margin-top: 0;
        text-align: center;
    }

    .headline {
        text-align: center;
    }

    .main-para {
        text-align: justify;
    }

    .hero .plans-trust {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        align-items: center;
        justify-items: center;
    }
}

/* ============================================================
   SUPPRESS MOBILE TAP HIGHLIGHT on interactive elements
   ============================================================ */

@media screen and (max-width: 768px) {
    button,
    [type="button"],
    [type="submit"],
    .intro_button,
    .ghost_button,
    .plan-cta,
    .send-button,
    .projects-nav,
    .ghost-link,
    .hamburger,
    .nav-book-btn,
    .back-to-top {
        -webkit-tap-highlight-color: transparent;
    }

    button:focus,
    button:active,
    .intro_button:focus,
    .intro_button:active,
    .ghost_button:focus,
    .ghost_button:active,
    .plan-cta:focus,
    .plan-cta:active,
    .send-button:focus,
    .send-button:active,
    .projects-nav:focus,
    .projects-nav:active,
    .ghost-link:focus,
    .ghost-link:active,
    .hamburger:focus,
    .hamburger:active,
    .back-to-top:focus,
    .back-to-top:active {
        outline: none;
        box-shadow: none;
    }

    .intro_button:hover,
    .intro_button:active {
        background-color: var(--tomato);
        transform: none;
        box-shadow: none;
    }

    .ghost_button:hover,
    .ghost_button:active {
        background: transparent;
        transform: none;
    }

    .plan-cta:hover,
    .plan-cta:active {
        transform: none;
        box-shadow: none;
        filter: none;
    }

    .send-button:hover,
    .send-button:active {
        transform: none;
        box-shadow: none;
    }

    .ghost-link:hover,
    .ghost-link:active {
        background: transparent;
        color: #dfe9f7;
    }
}

/* ============================================================
   WHY CHOOSE US — 4-card grid with SVG icons & paragraphs
   ============================================================ */

.about {
    background: white;
    padding: 5rem 1.5rem 5rem;
}

.about .section-heading {
    margin-bottom: 2.5rem;
}

.about .section-heading h2 {
    color: #0b1f33;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-card {
    position: relative;
    overflow: hidden;
    color: #0b1f33;
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    border: 1px solid rgba(163, 22, 33, 0.4);
    text-align: left;
    background: rgb(238, 237, 237);
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(11, 31, 51, 0.12);
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--tomato);
    transform: scaleX(1);
    border-radius: 3px 3px 0 0;
}

.about-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.about-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--tomato);
    flex-shrink: 0;
}

.about-card h3 {
    margin: 0 0 0.6rem 0;
    color: #0b1f33;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
}

.about-card p {
    margin: 0;
    color: #3a4a5c;
    font-size: 0.97rem;
    line-height: 1.75;
}

@media screen and (max-width: 768px) {
    .about {
        padding: 4rem 1.2rem;
    }

    .about-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.2rem;
    }
}

@media screen and (max-width: 540px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-card {
        padding: 1.5rem 1.3rem;
    }
}

/* ============================================================
   4-STEP PROCESS — icons + connecting line on desktop
   ============================================================ */

.how-it-works {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #f7e58a, #f2cc5c);
    color: #0b0b0b;
}

.how-it-works::before,
.how-it-works::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    z-index: 0;
}

.how-it-works::before {
    width: 240px;
    height: 240px;
    top: -80px;
    left: -60px;
}

.how-it-works::after {
    width: 320px;
    height: 320px;
    bottom: -140px;
    right: -120px;
}

.how-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.how-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.how-kicker {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 0.85rem;
    margin: 0 0 0.5rem 0;
}

.how-heading h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    margin: 0;
    color: #111;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    position: relative;
}

.how-steps::before {
    content: "";
    position: absolute;
    top: 44px;
    left: calc(12.5% + 0.75rem);
    right: calc(12.5% + 0.75rem);
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        rgba(0, 0, 0, 0.25) 0px,
        rgba(0, 0, 0, 0.25) 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 0;
    pointer-events: none;
}

.how-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 1.8rem 1.4rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: howRise 0.6s ease forwards;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.how-card:nth-child(1) { animation-delay: 0.05s; }
.how-card:nth-child(2) { animation-delay: 0.18s; }
.how-card:nth-child(3) { animation-delay: 0.31s; }
.how-card:nth-child(4) { animation-delay: 0.44s; }

.how-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.how-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
    color: #111;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.how-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    margin: 0 0 0.4rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b0b0b;
}

.how-card p {
    margin: 0;
    color: #2a2a2a;
    font-size: 0.93rem;
    line-height: 1.65;
}

@keyframes howRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 980px) {
    .how-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .how-steps::before {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .how-it-works {
        padding: 4rem 1.2rem;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .how-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.4rem 1.2rem;
    }
}

/* ============================================================
   WASHING PACKAGES / PRICING CARDS
   ============================================================ */

section.plans {
    background: white;
    padding: 5rem 1.5rem;
}

.plans-shell {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

/* --- Header --- */

.plans-header {
    text-align: center;
    max-width: 700px;
}

.plans-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #1a56db;
    margin: 0 0 0.8rem;
}

.plans-kicker::before,
.plans-kicker::after {
    content: "";
    width: 40px;
    height: 1.5px;
    background: #1a56db;
    display: inline-block;
}

.plans-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    color: #0b1f33;
    margin: 0 0 0.8rem;
    letter-spacing: -0.3px;
}

.plans-lede {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: #5a6a7a;
    line-height: 1.7;
    margin: 0;
}

/* --- Grid --- */

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1100px;
}

/* --- Card --- */

.plan-card {
    --accent: #1a56db;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--accent);
    display: flex;
    flex-direction: column;
}


/* Accent colour variants */
.plan-card--blue   { --accent: #1a56db; }
.plan-card--green  { --accent: #16a34a; }
.plan-card--purple { --accent: #7c3aed; }
.plan-card--orange { --accent: #ea580c; }
.plan-card--teal   { --accent: #0891b2; }
.plan-card--rose   { --accent: #be185d; }

/* --- Image & icon badge --- */

.plan-img-wrap {
    position: relative;
    flex-shrink: 0;
}

.plan-img-wrap img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.plan-icon-badge {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    z-index: 1;
}

/* --- Body --- */

.plan-body {
    padding: 2.4rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: rgb(238, 237, 237);
}

.plan-name {
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 0.3rem;
    text-align: center;
    color: var(--accent);
}

.plan-tagline {
    font-size: 0.87rem;
    color: #7a8a9a;
    margin: 0;
    text-align: center;
}

.plan-divider {
    height: 2px;
    width: 36px;
    border-radius: 2px;
    background: var(--accent);
    margin: 0.6rem auto 0.9rem;
}

/* --- Features --- */

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: grid;
    gap: 0.5rem;
    flex: 1;
}

.plan-features li {
    font-size: 0.88rem;
    color: #3a4a5c;
    padding-left: 1.7rem;
    position: relative;
    line-height: 1.5;
}

.plan-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 900;
    font-size: 0.95rem;
}

/* --- Footer row: duration + price --- */

.plan-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0;
}

.plan-duration {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6a7a8a;
}

.plan-duration i {
    color: #8a9aaa;
}

.plan-price {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

/* --- CTA button --- */

.plan-cta {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
    border: 2px solid var(--accent);
    border-radius: 8px;
    color: var(--accent);
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 0.8rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.plan-cta:hover {
    background: var(--accent);
    color: #fff;
}

/* --- Trust bar --- */

.plans-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    background: #f1f5f9;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    width: 100%;
    max-width: 1100px;
}

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

.trust-item i {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.trust-item:nth-child(1) i { color: #1a56db; }
.trust-item:nth-child(2) i { color: #16a34a; }
.trust-item:nth-child(3) i { color: #7c3aed; }
.trust-item:nth-child(4) i { color: #ea580c; }

.trust-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: #0b1f33;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.trust-item p {
    margin: 0;
    font-size: 0.84rem;
    color: #5a6a7a;
    line-height: 1.55;
}

/* --- Custom package note --- */

.plans-custom-note {
    font-size: 0.95rem;
    color: #5a6a7a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plans-custom-note i {
    color: #1a56db;
}

.plans-custom-note a {
    color: #1a56db;
    font-weight: 700;
    text-decoration: none;
}

.plans-custom-note a:hover {
    text-decoration: underline;
}

/* --- Responsive --- */

@media screen and (max-width: 1100px) {
    .plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

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

@media screen and (max-width: 680px) {
    section.plans {
        padding: 4rem 1.2rem;
    }

    .plan-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 1.8rem;
    }

    .plans-trust {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .plans-custom-note {
        flex-wrap: wrap;
        align-items: flex-start;
        font-size: 0.88rem;
        text-align: center;
        justify-content: center;
    }
}

/* ============================================================
   BEFORE / AFTER COMPARISON SLIDER
   ============================================================ */

.wash-diff {
    background: #eef2f7;
    color: #0b0b0b;
    padding: 5rem 1.5rem;
}

.wash-shell {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.wash-copy {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
    align-items: center;
    max-width: 640px;
}

.wash-kicker {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 0.82rem;
    margin: 0;
    color: #555;
}

.wash-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    margin: 0;
    color: #0b1f33;
    letter-spacing: -0.3px;
}

.wash-copy .lede {
    margin: 0.4rem 0 0;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: #3a4a5c;
    line-height: 1.7;
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 580px;
    background: #020202;
    border-radius: 20px;
    overflow: hidden;
    cursor: ew-resize;
    -webkit-user-select: none;
    user-select: none;
    touch-action: pan-y;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.cs-before,
.cs-after {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cs-before img,
.cs-after img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
}

.cs-after {
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0s;
}

.cs-label {
    position: absolute;
    bottom: 1rem;
    padding: 0.3rem 0.85rem;
    background: rgba(255, 255, 255, 0.62);
    color: #fff;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    pointer-events: none;
}

.cs-label-before {
    left: 1rem;
}

.cs-label-after {
    right: 1rem;
}

.cs-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.cs-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    transition: box-shadow 0.2s ease;
}

.comparison-slider:active .cs-handle {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.cs-handle svg {
    color: #333;
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .wash-diff {
        padding: 4rem 1.2rem;
    }

    .comparison-slider {
        height: 320px;
    }
}

@media screen and (max-width: 480px) {
    .comparison-slider {
        height: 240px;
        border-radius: 14px;
    }

    .cs-handle {
        width: 40px;
        height: 40px;
    }

    .cs-label {
        font-size: 0.75rem;
        padding: 0.25rem 0.65rem;
    }
}

/* ============================================================
   GALLERY — hover zoom + lightbox with keyboard navigation
   ============================================================ */

.latest-projects {
    background: #fff;
    color: #0b0b0b;
    padding: 5rem 1.5rem;
}

.projects-shell {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 0.5rem;
}

.projects-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    margin: 0;
    color: #0b1f33;
    letter-spacing: -0.3px;
}

.projects-header .lede {
    margin: 0.8rem 0 1.5rem 0;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: #3a4a5c;
    line-height: 1.7;
}

.projects-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 1.5rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.projects-carousel::-webkit-scrollbar {
    display: none;
}

.projects-track {
    display: flex;
    gap: 1rem;
    will-change: transform;
}

.project-card {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    flex: 0 0 calc(50% - 0.5rem);
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.project-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.4s ease;
    transform-origin: center;
}

.project-card:hover img {
    transform: scale(1.06);
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    border-radius: 14px;
    transition: background 0.3s ease;
    pointer-events: none;
}

.project-card:hover::after {
    background: rgba(0, 0, 0, 0.18);
}

.projects-controls {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.projects-nav {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid #0b0b0b;
    background: #0b0b0b;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.projects-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.projects-nav:focus-visible {
    outline: 2px solid var(--tomato);
    outline-offset: 2px;
}

.project-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 1.5rem;
}

.project-modal.is-open {
    display: flex;
}

.project-modal-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 92vw;
    max-height: 88vh;
}

.project-modal-frame {
    position: relative;
    width: min(92vw, 1100px);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-modal-frame img {
    max-height: 85vh;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.project-modal-close {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}

.project-modal-close:hover {
    background: #fff;
}

.project-modal-prev,
.project-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}

.project-modal-prev {
    left: -3.5rem;
}

.project-modal-next {
    right: -3.5rem;
}

.project-modal-prev:hover,
.project-modal-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.project-modal-prev:focus-visible,
.project-modal-next:focus-visible,
.project-modal-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media screen and (max-width: 900px) {
    .project-card {
        flex: 0 0 100%;
    }

    .project-modal-prev {
        left: -2.5rem;
    }

    .project-modal-next {
        right: -2.5rem;
    }
}

@media screen and (max-width: 600px) {
    .latest-projects {
        padding: 4rem 1.2rem;
    }

    .project-modal-prev,
    .project-modal-next {
        display: none;
    }
}

/* ============================================================
   TESTIMONIALS — 2×2 grid, clean cards
   ============================================================ */

.stories {
    position: relative;
    padding: 5rem 1.5rem;
    background: #eef2f7;
    color: #0b1220;
}

.stories-shell {
    max-width: 1100px;
    margin: 0 auto;
}

.stories-heading {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.deco-quote {
    position: absolute;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    color: #c8d4e4;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

.deco-quote--left {
    top: -1.5rem;
    left: -0.5rem;
}

.deco-quote--right {
    bottom: -3rem;
    right: -0.5rem;
}

.stories-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 0.78rem;
    color: #e63e3e;
    margin: 0 0 0.8rem 0;
}

.stories-kicker::before,
.stories-kicker::after {
    content: "";
    display: block;
    width: 2rem;
    height: 2px;
    background: #e63e3e;
    opacity: 0.6;
}

.stories-heading h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.3px;
    margin: 0;
    color: #0b1220;
    line-height: 1.25;
}

.stories-lede {
    margin: 0.8rem 0 1.2rem;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: #5a6a7e;
    line-height: 1.7;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff;
    border: 1.5px solid #dde4ed;
    border-radius: 999px;
    padding: 0.4rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    margin-top: 0.5rem;
}

.google-star {
    color: #f59e0b;
    font-size: 1rem;
    line-height: 1;
}

.google-badge-divider {
    display: inline-block;
    width: 1px;
    height: 1rem;
    background: #c5cfd9;
    margin: 0 0.2rem;
    vertical-align: middle;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.feedback {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #dde4ed;
    border-radius: 16px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.feedback:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(11, 18, 32, 0.1);
}

.fb-top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.avatar-teal   { background: #14b8a6; }
.avatar-blue   { background: #3b82f6; }
.avatar-purple { background: #8b5cf6; }
.avatar-orange { background: #f97316; }

.review-stars {
    font-size: 1rem;
    color: #f59e0b;
    letter-spacing: 0.1rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.fb-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b1220;
    margin: 0;
    line-height: 1.3;
}

.customer_feedback {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    color: #5a6a7e;
    font-weight: 400;
    flex: 1;
}

.fb-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eef2f7;
    padding-top: 0.9rem;
    gap: 0.5rem;
}

.signature {
    color: #0b1220;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0;
}

.fb-location {
    font-size: 0.8rem;
    color: #8a99ad;
    margin: 0;
    white-space: nowrap;
}

.fb-location .fa {
    margin-right: 0.25rem;
    color: #e63e3e;
}

@media screen and (max-width: 768px) {
    .stories {
        padding: 4rem 1.2rem;
    }

    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .feedback {
        padding: 1.4rem 1.3rem;
    }
}

/* ============================================================
   CONTACT — form validation, success state, Google Maps
   ============================================================ */

.contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7e58a, #f2cc5c);
    color: #0b0b0b;
    padding: 5rem 1.5rem;
}

.contact::before,
.contact::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    z-index: 0;
}

.contact::before {
    width: 240px;
    height: 240px;
    top: -80px;
    left: -60px;
}

.contact::after {
    width: 320px;
    height: 320px;
    bottom: -140px;
    right: -120px;
}

.contact-shell {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) minmax(240px, 0.9fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact-heading {
    position: relative;
    max-width: 780px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
    z-index: 1;
}

.contact-heading h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.3px;
    margin: 0;
    color: #0b0b0b;
}

.contact-heading .lede {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    text-align: center;
    margin: 0.7rem 0 0;
    color: #2a2a2a;
    line-height: 1.7;
}

.contact-form {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 2.2rem 2rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    margin: 0 0 1rem 0;
    color: #0b0b0b;
}

.contact-form form {
    text-align: left;
    display: grid;
    gap: 0.85rem;
}

.contact-form .field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.contact-form .field-row {
    position: relative;
}

.contact-form .field i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #444;
    font-size: 0.95rem;
    pointer-events: none;
}

.contact-form .field.textarea i {
    top: 1.1rem;
    transform: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    font-size: 0.97rem;
    font-family: inherit;
    background: #fffce8;
    color: #0b0b0b;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
    min-height: 120px;
    padding-top: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.contact-form input.is-error,
.contact-form textarea.is-error {
    border-color: #d32f2f;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12);
}

.field-error {
    display: block;
    font-size: 0.8rem;
    color: #d32f2f;
    font-weight: 600;
    margin-top: 0.3rem;
    padding-left: 0.2rem;
    min-height: 1rem;
}

.send-button {
    background: #111;
    color: #f7e58a;
    border: none;
    border-radius: 999px;
    padding: 0.9rem 2rem;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: inherit;
}

.send-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.contact-success-msg {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.8rem 0 0;
    color: #16a34a;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-success-msg[hidden] {
    display: none;
}

.contact-details {
    display: grid;
    gap: 1.2rem;
}

.contact-details-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.2rem 0;
    color: #0b0b0b;
}

.contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
}

.contact-item h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
}

.contact-item p {
    margin: 0.25rem 0 0;
    color: #2a2a2a;
    font-size: 0.95rem;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #f7e58a;
    font-size: 1rem;
    flex-shrink: 0;
}


@media screen and (max-width: 900px) {
    .contact {
        padding: 4rem 1.2rem;
    }

    .contact-shell {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .send-button {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
    background: var(--deep-navy);
    padding: 3.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex: 1;
    justify-content: center;
}

.stat-item + .stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 2rem;
}

.stat-item .fa {
    font-size: 2.6rem;
    color: var(--tomato);
    flex-shrink: 0;
}

.stat-text strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-text span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media screen and (max-width: 700px) {
    .stats-bar-inner {
        flex-wrap: wrap;
        gap: 1.8rem;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
        min-width: 140px;
    }

    .stat-item + .stat-item {
        border-left: none;
        padding-left: 0;
    }
}

/* ============================================================
   CTA BANNER + STATS
   ============================================================ */

.cta-section {
    padding: 3.5rem 1.5rem 3.5rem;
    background: #fff;
}

.cta-card {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11, 31, 51, 0.14);
}

.cta-banner {
    background: var(--deep-navy);
    display: flex;
    align-items: stretch;
    min-height: 140px;
}

.cta-text {
    flex: 1;
    padding: 1rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
}

.cta-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.73rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.cta-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.25;
}

.cta-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.6;
}

.cta-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--deep-navy);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 0.2rem;
    width: fit-content;
    transition: background 0.22s ease, color 0.22s ease;
}

.cta-book-btn:hover {
    background: var(--tomato);
    color: #fff;
}

.cta-car-img {
    flex: 0 0 44%;
    position: relative;
    overflow: hidden;
}

.cta-car-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--deep-navy) 0%, transparent 35%);
    z-index: 1;
    pointer-events: none;
}

.cta-car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


@media screen and (max-width: 780px) {
    .cta-section {
        padding: 2.5rem 1.2rem 2.5rem;
    }

    .cta-banner {
        flex-direction: column;
    }

    .cta-text {
        padding: 2rem 1.6rem;
    }

    .cta-car-img {
        flex: 0 0 auto;
        height: 200px;
    }

    .cta-car-img::before {
        background: linear-gradient(to bottom, var(--deep-navy) 0%, transparent 40%);
    }

    .cta-stats {
        flex-wrap: wrap;
        padding: 1.2rem 1rem;
        gap: 0.6rem;
    }

    .cta-stat {
        flex: 0 0 calc(50% - 0.5rem);
        justify-content: flex-start;
    }

    .cta-stat + .cta-stat {
        border-left: none;
    }

    .cta-stat:nth-child(2),
    .cta-stat:nth-child(4) {
        border-left: 1px solid #e2e8f0;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: var(--deep-navy);
    color: var(--text);
}

/* --- Main grid --- */

.footer-main {
    padding: 5rem 1.5rem 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-shell {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1fr 1.3fr;
    column-gap: 2.5rem;
    row-gap: 2.5rem;
    align-items: start;
}

/* --- Brand column --- */

.footer-col--brand .footer-logo {
    width: 5.5rem;
    height: auto;
    margin-bottom: 0.6rem;
    display: block;
}

.footer-brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.2rem;
    color: #fff;
}

.footer-tagline {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tomato);
    margin: 0 0 0.9rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 1.2rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 1rem;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.footer-social a:hover {
    border-color: var(--tomato);
    color: #fff;
    background: var(--tomato);
    transform: translateY(-3px);
}

/* --- Column headings --- */

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #fff;
    margin: 0 0 1.2rem;
    padding-bottom: 0.7rem;
    position: relative;
}

.footer-col-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--tomato);
    border-radius: 2px;
}

/* --- Nav links --- */

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav li a {
    font-size: 0.9rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s, gap 0.2s;
}

.footer-nav li a::before {
    content: "›";
    font-size: 1.1rem;
    color: var(--tomato);
    line-height: 1;
    flex-shrink: 0;
}

.footer-nav li a:hover {
    color: #fff;
    gap: 0.65rem;
}

/* --- Contact list --- */

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.55;
}

.footer-contact li a {
    color: var(--muted);
    transition: color 0.2s;
}

.footer-contact li a:hover {
    color: #fff;
}

.fc-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(163, 22, 33, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tomato);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}


/* --- Copyright bar --- */

.footer-copyright {
    position: relative;
    background: var(--night);
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.82rem;
    color: rgba(173, 194, 222, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-copyright strong {
    color: var(--muted);
}

/* --- Responsive --- */

@media screen and (max-width: 1100px) {
    .footer-shell {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 700px) {
    .footer-main {
        padding: 3.5rem 1.2rem 2.5rem;
    }

    .footer-shell {
        grid-template-columns: 1fr 1fr;
    }

}

@media screen and (max-width: 480px) {
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 0;
        align-items: center;
        text-align: center;
    }

    .footer-copyright p {
        margin: 0;
        line-height: 1.6;
    }
}

/* ============================================================
   BOOKING PAGE — two-column desktop, single-column mobile
   ============================================================ */

body.booking-page {
    background: #f2f9ff;
    color: #0b0b0b;
}

.booking-header {
    background: linear-gradient(135deg, var(--night) 0%, #0c2540 100%);
    color: #fff;
    padding: 6.5rem 1.5rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #f2f9ff;
    border-radius: 40px 40px 0 0;
}

.booking-hero {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.booking-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin: 0 0 0.6rem;
    line-height: 1.15;
}

.booking-lede {
    margin: 0 auto;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.65;
}

.booking-main {
    max-width: 780px;
    margin: 0 auto 4rem;
    padding: 2.5rem 1.5rem 0;
}

.booking-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.booking-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 1.2rem;
    color: #0b1f33;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-card-title svg {
    width: 22px;
    height: 22px;
    stroke: var(--tomato);
    flex-shrink: 0;
}

.booking-form {
    display: grid;
    gap: 0.85rem;
}

.booking-form .form-field {
    display: grid;
    gap: 0.3rem;
}

.booking-form label {
    font-weight: 600;
    font-size: 0.87rem;
    color: #1a2a3a;
}

.label-optional {
    font-weight: 400;
    color: #6a7a8a;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    border: 1.5px solid rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    font-family: inherit;
    font-size: 0.96rem;
    background: #fafcff;
    color: #0b0b0b;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.booking-form select {
    cursor: pointer;
    appearance: none;
    background-color: #f5f0f0;
    border-color: rgba(163, 22, 33, 0.25);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23a31621' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    color: #0b1f33;
    font-weight: 600;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--tomato);
    box-shadow: 0 0 0 3px rgba(163, 22, 33, 0.1);
}

.booking-form input.is-error,
.booking-form select.is-error,
.booking-form textarea.is-error {
    border-color: #d32f2f;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.booking-form .field-error {
    font-size: 0.78rem;
    color: #d32f2f;
    font-weight: 600;
    min-height: 1rem;
}

.booking-form textarea {
    resize: vertical;
    min-height: 80px;
}


.booking-calendar {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.calendar-month {
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0;
    color: #0b1f33;
}

.calendar-subtitle {
    margin: 0.15rem 0 0;
    color: #6a7a8a;
    font-size: 0.82rem;
}

.calendar-nav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.14);
    background: #f5f7fa;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #0b1f33;
    transition: background 0.2s ease, border-color 0.2s ease;
    font-family: inherit;
}

.calendar-nav:hover {
    background: #e8ecf2;
    border-color: rgba(0, 0, 0, 0.25);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.4rem;
}

.calendar-day-label {
    font-weight: 700;
    font-size: 0.75rem;
    color: #6a7a8a;
    text-align: center;
    padding: 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-blank {
    height: 40px;
}

.calendar-date {
    border: 1.5px solid transparent;
    border-radius: 10px;
    padding: 0.6rem 0;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    text-align: center;
    background: #f0f4f8;
    color: #5a6a7a;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    font-family: inherit;
    line-height: 1;
}

.calendar-date.available {
    background: #fff;
    color: #0b1f33;
    border-color: rgba(0, 0, 0, 0.1);
}

.calendar-date.available:hover {
    background: rgba(163, 22, 33, 0.08);
    border-color: var(--tomato);
    transform: translateY(-1px);
}

.calendar-date.is-today {
    box-shadow: 0 0 0 2px var(--tomato);
    color: var(--tomato);
    font-weight: 900;
}

.calendar-date.is-selected {
    background: var(--tomato) !important;
    color: #fff !important;
    border-color: var(--tomato) !important;
    box-shadow: 0 4px 12px rgba(163, 22, 33, 0.35);
    transform: translateY(-1px);
}

.calendar-date.past,
.calendar-date.weekend {
    background: #f0f0f0;
    color: #bbb;
    cursor: not-allowed;
    border-color: transparent;
}

.calendar-date.past:hover,
.calendar-date.weekend:hover {
    background: #f0f0f0;
    border-color: transparent;
    transform: none;
}

.calendar-legend {
    display: flex;
    gap: 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6a7a8a;
    flex-wrap: wrap;
}

.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.3rem;
    vertical-align: middle;
}

.legend-dot.available { background: #fff; border: 1.5px solid rgba(0,0,0,0.2); }
.legend-dot.selected  { background: var(--tomato); }
.legend-dot.unavailable { background: #ddd; }

.time-slots-panel {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
}

.time-slots-panel.is-active {
    display: flex;
}

.time-slots-panel h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0b1f33;
}

.time-zone-note {
    font-size: 0.78rem;
    color: #8a9aaa;
    margin: 0;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.slot {
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 0.6rem 0.4rem;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    background: #fff;
    color: #0b1f33;
    text-align: center;
    font-family: inherit;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.slot:hover {
    background: rgba(163, 22, 33, 0.08);
    border-color: var(--tomato);
    transform: translateY(-1px);
}

.slot.is-selected {
    background: var(--tomato);
    color: #fff;
    border-color: var(--tomato);
    box-shadow: 0 4px 12px rgba(163, 22, 33, 0.3);
}

.calendar-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.calendar-confirm {
    flex: 1 1 0;
    min-width: 0;
}

.calendar-cancel {
    flex: 0 0 auto;
}

.booking-page .ghost_button {
    color: #0b0b0b;
    border-color: rgba(0, 0, 0, 0.3);
    height: 3.2rem;
    padding: 0 1.4rem;
}

.booking-page .ghost_button:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: #111;
}

.booking-spinner {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 1rem;
    text-align: center;
}

.booking-spinner.is-active {
    display: flex;
}

.spinner-ring {
    width: 52px;
    height: 52px;
    border: 4px solid rgba(163, 22, 33, 0.2);
    border-top-color: var(--tomato);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.booking-spinner p {
    color: #6a7a8a;
    font-size: 0.95rem;
    margin: 0;
}

.booking-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.booking-success.is-active {
    display: flex;
}

.success-check {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.success-check svg {
    width: 40px;
    height: 40px;
    stroke: #16a34a;
}

.check-path {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: draw-check 0.45s 0.35s ease forwards;
}

@keyframes success-pop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

@keyframes draw-check {
    to { stroke-dashoffset: 0; }
}

.booking-success h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    color: #0b1f33;
}

.success-summary {
    background: linear-gradient(135deg, #0b1f33, #0f2d4a);
    border: 1px solid rgba(163, 22, 33, 0.35);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    text-align: left;
    width: 100%;
    max-width: 400px;
    display: grid;
    gap: 0.5rem;
}

.success-summary p {
    margin: 0;
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.success-summary strong {
    color: #ffffff;
    font-weight: 700;
}

.success-note {
    font-size: 0.9rem;
    color: #6a7a8a;
    margin: 0;
    max-width: 360px;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.success-actions .intro_button {
    background: #16a34a;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.success-actions .intro_button:hover {
    background: #15803d;
}

/* Calendar card hidden until form is complete */
#calendar-card {
    display: none;
}

#calendar-card.is-revealed {
    display: block;
    animation: booking-reveal 0.35s ease;
}

@keyframes booking-reveal {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Continue button */
.booking-continue-btn {
    width: 100%;
    margin-top: 1.4rem;
    justify-content: center;
    gap: 0.5rem;
}

@media screen and (max-width: 640px) {
    .booking-main {
        padding: 1.5rem 1rem 0;
    }

    .booking-card {
        padding: 1.4rem 1.2rem;
    }

    .calendar-grid {
        gap: 0.3rem;
    }

    .calendar-date {
        padding: 0.5rem 0;
        font-size: 0.82rem;
    }

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

    .calendar-actions {
        flex-direction: column;
    }

    .calendar-confirm,
    .calendar-cancel {
        flex: none;
        width: 100%;
    }
}

/* ============================================================
   POLICY PAGES — Privacy Policy & Terms & Conditions
   ============================================================ */

body.policy-page {
    background: #f7f9fc;
    color: #0b1f33;
}

/* --- Header --- */

.policy-header {
    background: linear-gradient(135deg, var(--night) 0%, #0c2540 100%);
    color: #fff;
    padding: 7rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(26, 86, 219, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.policy-hero {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.policy-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #93c5fd;
    margin: 0 0 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 0.3rem 1rem;
}

.policy-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    margin: 0 0 1rem;
    letter-spacing: -0.3px;
    color: #fff;
}

.policy-lede {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: rgba(173, 194, 222, 0.85);
    line-height: 1.7;
    margin: 0 0 0.75rem;
}

.policy-date {
    font-size: 0.82rem;
    color: rgba(173, 194, 222, 0.55);
    margin: 0;
}

/* --- Body --- */

.policy-body {
    padding: 4rem 1.5rem 5rem;
}

.policy-shell {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* --- Sections --- */

.policy-section {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 2rem 2.2rem;
    margin-bottom: 1.25rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b1f33;
    margin: 0 0 0.9rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid #e8edf3;
}

.policy-section h3 {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0b1f33;
    margin: 1.1rem 0 0.45rem;
}

.policy-section p {
    font-size: 0.95rem;
    color: #3d5166;
    line-height: 1.8;
    margin: 0 0 0.75rem;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    margin: 0 0 0.75rem 1.2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.policy-section ul:last-child {
    margin-bottom: 0;
}

.policy-section li {
    font-size: 0.95rem;
    color: #3d5166;
    line-height: 1.75;
}

.policy-section a {
    color: #1a56db;
    font-weight: 600;
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* --- Responsive --- */

@media screen and (max-width: 680px) {
    .policy-header {
        padding: 6rem 1.2rem 3rem;
    }

    .policy-body {
        padding: 2.5rem 1rem 4rem;
    }

    .policy-section {
        padding: 1.5rem 1.2rem;
        border-radius: 12px;
    }
}
