/* ============================================
   Potent Cleaning — Main Stylesheet
   Inspired by modern service-business design
   ============================================ */

:root {
    --navy:       #2B3990;
    --navy-deep:  #1A2560;
    --blue:       #3B5BDB;
    --sky:        #58B9E7;
    --cyan:       #5CE1E6;
    --cyan-hover: #3dd4d9;
    --ice:        #F0F8FF;
    --ice-dark:   #E3F2FD;
    --cream:      #F4F0E8;
    --menu-bg:    #EAF4FB;
    --white:      #FFFFFF;
    --text:       #1A2560;
    --text-light: #4A5568;
    --border:     #B8D4E8;
    --shadow:     0 4px 24px rgba(43, 57, 144, 0.10);
    --shadow-lg:  0 8px 40px rgba(43, 57, 144, 0.15);
    --radius:     12px;
    --radius-lg:  24px;
    --radius-pill: 50px;
    --font-sans:  'Montserrat', system-ui, sans-serif;
    --font-display:'Archivo Black', 'Montserrat', sans-serif;
    --font-script:'Dancing Script', cursive;
    --header-h:   72px;
    --transition: 0.3s ease;
    --img-border: 3px solid var(--navy);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Retro-modern display headlines */
.headline-block {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3.25rem);
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--navy);
    text-shadow:
        2px 2px 0 rgba(88, 185, 231, 0.55),
        3px 3px 0 rgba(91, 141, 220, 0.35);
    margin-bottom: 1.25rem;
}

.headline-block-sm {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 5vw, 2rem);
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--navy);
    text-shadow:
        1px 1px 0 rgba(88, 185, 231, 0.5),
        2px 2px 0 rgba(91, 141, 220, 0.3);
}

.center-block { text-align: center; }

/* Subtle star watermark pattern */
.stars-pattern {
    background-color: var(--cream);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%232B3990' fill-opacity='0.04' d='M40 4l4 12h12l-10 8 4 12-10-8-10 8 4-12-10-8h12z'/%3E%3C/svg%3E");
}

/* Rounded image frames with navy border */
.img-frame,
.hero-main-img,
.about-image-wrap img:not(.about-banner-img) {
    border-radius: var(--radius-lg);
    border: var(--img-border);
}

.img-frame {
    overflow: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.script {
    font-family: var(--font-script);
    color: var(--navy);
    font-weight: 700;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
    background: var(--cyan);
    color: var(--text);
    box-shadow: 0 4px 16px rgba(92, 225, 230, 0.4);
}

.btn-primary:hover {
    background: var(--cyan-hover);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(92, 225, 230, 0.5);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.9rem; }
.btn-block { display: block; width: 100%; }

.btn-navy {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(43, 57, 144, 0.35);
}

.btn-navy:hover {
    background: var(--navy-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(43, 57, 144, 0.45);
}

.btn-cyan {
    background: var(--cyan);
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(92, 225, 230, 0.4);
}

.btn-cyan:hover {
    background: var(--cyan-hover);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--cream);
    border-bottom: 2px solid var(--navy);
    height: var(--header-h);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    height: 100%;
}

/* Logo — text style */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    color: var(--navy);
}

.logo-text:hover { color: var(--navy); }

.logo-script {
    font-family: var(--font-script);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--sky);
    display: block;
}

.logo-sans {
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 50%;
    color: var(--white);
    transition: background var(--transition), transform var(--transition);
}

.btn-call svg { width: 20px; height: 20px; }
.btn-call:hover { background: var(--blue); transform: scale(1.05); color: var(--white); }

.btn-menu-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-label {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
}

.btn-menu-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--sky);
    border-radius: 50%;
    transition: background var(--transition);
}

.btn-menu-wrap:hover .btn-menu-circle { background: var(--cyan); }

.btn-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 20px;
    height: 16px;
}

.btn-menu span {
    display: block;
    width: 18px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
}

/* Mobile menu bar (logo + close) — hidden on desktop */
.mobile-menu-bar,
.mobile-menu-cta {
    display: none;
}

/* ========== MOBILE FULL-SCREEN MENU ========== */
@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 1100;
        background: var(--menu-bg);
        display: flex;
        flex-direction: column;
        padding: 1.5rem 1.75rem 2.5rem;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease,
                    visibility 0.3s ease;
    }

    .main-nav.open {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-menu-bar {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 2.5rem;
        flex-shrink: 0;
    }

    .menu-text-logo {
        display: flex;
        flex-direction: column;
        line-height: 1.05;
        color: var(--navy);
    }

    .menu-text-logo:hover { color: var(--navy); }

    .menu-logo-script {
        font-family: var(--font-script);
        font-size: clamp(2.4rem, 9vw, 3.2rem);
        font-weight: 700;
        color: var(--sky);
        display: block;
    }

    .menu-logo-sans {
        font-size: clamp(0.95rem, 3.5vw, 1.15rem);
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--navy);
        margin-top: 0.15rem;
    }

    .mobile-menu-close {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        flex-shrink: 0;
    }

    .close-label {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        font-weight: 900;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--navy);
    }

    .close-circle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: var(--sky);
        color: var(--navy);
        border-radius: 50%;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
    }

    .mobile-menu-close:hover .close-circle {
        background: var(--cyan);
    }

    .mobile-menu-links {
        list-style: none;
        padding: 0;
        margin: 0;
        flex: 1;
    }

    .mobile-menu-links li {
        margin: 0;
        border-bottom: 1px solid rgba(43, 57, 144, 0.06);
    }

    .mobile-menu-links li:last-child {
        border-bottom: none;
    }

    .mobile-menu-links a {
        display: block;
        padding: 0.85rem 0;
        font-size: clamp(1.35rem, 5.5vw, 1.85rem);
        font-weight: 900;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--navy);
        line-height: 1.25;
        transition: color var(--transition);
    }

    .mobile-menu-links a:hover {
        color: var(--blue);
    }

    .mobile-menu-cta {
        display: block;
        margin-top: 2rem;
        padding: 1.15rem 2rem;
        background: var(--cyan);
        color: var(--navy);
        font-family: var(--font-sans);
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        font-weight: 900;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-align: center;
        border-radius: var(--radius-pill);
        box-shadow: 0 6px 20px rgba(92, 225, 230, 0.45);
        transition: background var(--transition), transform var(--transition);
        flex-shrink: 0;
    }

    .mobile-menu-cta:hover {
        background: var(--cyan-hover);
        color: var(--navy);
        transform: translateY(-2px);
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Desktop inline nav */
@media (min-width: 768px) {
    .main-nav {
        position: static;
        display: block;
        background: transparent;
        padding: 0;
        flex: 1;
        order: 1;
        transform: none;
        visibility: visible;
        opacity: 1;
    }

    .mobile-menu-links {
        list-style: none;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.15rem;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-links li { margin: 0; border: none; }

    .mobile-menu-links a {
        display: block;
        padding: 0.35rem 0.6rem;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0;
        text-transform: none;
        color: var(--text);
        transition: color var(--transition);
    }

    .mobile-menu-links a:hover {
        color: var(--navy);
    }

    .main-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
    }

    .mobile-menu-cta {
        display: inline-block;
        margin: 0;
        padding: 0.5rem 1rem;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        box-shadow: 0 2px 10px rgba(92, 225, 230, 0.35);
        flex-shrink: 0;
    }

    .mobile-menu-cta:hover {
        transform: none;
    }
}

main { padding-top: var(--header-h); }

/* ========== HERO ========== */
.hero {
    position: relative;
    padding: 2rem 0 3rem;
    text-align: center;
    overflow: hidden;
}

.hero-content { position: relative; z-index: 1; }

.hero-image-wrap,
.about-banner-wrap {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    padding: 0 clamp(0.25rem, 1.5vw, 0.75rem);
    margin-bottom: 2rem;
}

.hero-main-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.hero-banner-img {
    width: 100%;
    max-width: min(1320px, 98vw);
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    margin: 0 auto;
    border-radius: clamp(10px, 1.5vw, var(--radius-lg));
    border: var(--img-border);
    box-shadow: var(--shadow-lg);
}

.about-banner-img {
    width: 100%;
    max-width: min(1320px, 98vw);
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: calc(100% + 1rem);
    max-width: min(720px, 96vw);
    margin: 0 auto;
}

.gallery-grid-lg {
    max-width: min(960px, 98vw);
    gap: 12px;
}

.gallery-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hero-desc {
    max-width: 520px;
    margin: 0 auto 1.75rem;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
}

.hero-rating {
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.stars {
    color: var(--navy);
    font-size: 1.5rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.35rem;
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========== SECTIONS ========== */
.section {
    padding: 3.5rem 0;
}

.section-title {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.section-title.center,
.center { text-align: center; }

.center-text {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.center-btn { text-align: center; margin-top: 1.5rem; }

/* Quote band */
.quote-band {
    background: var(--cream);
    border-top: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    padding: 2rem 0;
    text-align: center;
}

.quote-band p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.25rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Features grid — 2 columns */
.features-grid-section { background: var(--cream); padding: 2.5rem 0; }

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
}

.feature-item { text-align: left; }

.feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.feature-icon svg { width: 100%; height: 100%; }

.feature-item h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* About */
.about { background: var(--cream); }

.about-image-wrap {
    position: relative;
    max-width: 520px;
    margin: 0 auto 2rem;
}

.about-image-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-image-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 3.5vw, 1.15rem);
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 1px 1px 0 rgba(88, 185, 231, 0.45), 0 0 16px rgba(0,0,0,0.35);
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text);
    max-width: 680px;
}

.about .btn { margin-top: 0.5rem; }

/* Promise section — arched card */
.promise-section {
    background: var(--cream);
    padding: 2rem 0 3.5rem;
}

.promise-card {
    position: relative;
    background: var(--ice);
    border: 3px solid var(--navy);
    border-radius: 120px 120px 24px 24px;
    padding: 3.5rem 1.75rem 2rem;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.promise-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--sky);
    border: 3px solid var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--navy);
}

.promise-title { margin-bottom: 0.75rem; }

.promise-intro {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.promise-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.55;
}

.promise-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--sky);
    border: 2px solid var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.promise-icon svg { width: 22px; height: 22px; }

/* Gallery strip */
.gallery-strip {
    padding: 3rem 0;
    text-align: center;
}

.gallery-strip .headline-block { margin-bottom: 2rem; }

/* Services */
.services { background: var(--ice); }

.services-intro p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    max-width: 680px;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
    max-width: 680px;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: 800;
}

.services-grid {
    display: grid;
    gap: 1.25rem;
    margin: 2rem 0 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-light);
}

.services .btn-primary { margin-top: 0.5rem; }

/* Before & After */
.before-after { background: var(--white); }

.ba-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.ba-card {
    background: var(--ice);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 4px;
}

.ba-before,
.ba-after {
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 6px;
}

.ba-before span,
.ba-after span {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0,0,0,0.65);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
}

.ba-after span { background: var(--navy); }

.ba-card > p {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

/* Reviews — dark panel */
.reviews { padding: 0; }

.reviews-dark {
    background: var(--navy-deep);
    padding: 2.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.reviews-dark::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%2358B9E7' fill-opacity='0.08'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
}

.review-header { margin-bottom: 1.5rem; }

.review-slider {
    position: relative;
    min-height: 180px;
    text-align: left;
}

.review-card {
    display: none;
    animation: fadeIn 0.5s ease;
}

.review-card.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reviewer-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.review-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 1rem;
    line-height: 1.75;
    max-width: 520px;
}

.review-stars {
    color: var(--cyan);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.review-source {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

.review-dots {
    display: flex;
    gap: 8px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.review-dot.active {
    background: var(--cyan);
    transform: scale(1.2);
}

.review-arrows {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.review-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.review-arrow:hover {
    border-color: var(--cyan);
    background: rgba(92, 225, 230, 0.15);
}

/* Quote CTA strip */
.quote-cta-strip {
    background: var(--cream);
    border-top: 3px solid var(--navy);
    padding: 2.5rem 0;
    text-align: center;
}

.quote-cta-headline {
    margin-bottom: 1.5rem;
}

.quote-tilt-box {
    display: inline-block;
    background: var(--sky);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    text-transform: uppercase;
    padding: 0.35rem 1.25rem;
    transform: rotate(-4deg);
    margin-bottom: 0.5rem;
    border: 2px solid var(--navy);
}

.quote-cta-text {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 4.5vw, 1.65rem);
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.2;
}

/* Service Areas */
.service-areas {
    background: var(--ice);
    text-align: center;
}

.areas-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.areas-list li {
    background: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(43,57,144,0.08);
}

/* Forms */
.forms-section { background: var(--cream); padding-bottom: 4rem; }

.forms-grid {
    display: grid;
    gap: 3rem;
    margin-top: 1rem;
}

.form-block {
    background: var(--ice);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
}

.form-block > p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info-block a { color: var(--navy); }

.site-form .form-row { margin-bottom: 1rem; }

.site-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.site-form input,
.site-form select,
.site-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(88, 185, 231, 0.25);
}

.site-form textarea { resize: vertical; min-height: 100px; }

.hp-field {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Booking Toast */
.booking-toast {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
    padding: 0.65rem 1rem 0.65rem 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 2000;
    font-size: 0.85rem;
    max-width: 90vw;
    animation: slideUp 0.4s ease;
}

.booking-toast[hidden] { display: none; }

@keyframes slideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #27ae60;
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0 0.25rem;
    line-height: 1;
    margin-left: 0.25rem;
}

.toast-close:hover { color: var(--text); }

/* Footer */
.site-footer {
    background: var(--cream);
    text-align: center;
    padding: 3rem 1.25rem 0;
    border-top: 3px solid var(--navy);
}

.site-footer .footer-copy {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.75);
    padding: 1.25rem;
    margin: 2rem -1.25rem 0;
}

.footer-hero h2 {
    font-size: clamp(1.3rem, 4vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-areas-inline {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text);
    transition: color var(--transition), transform var(--transition);
}

.social-links a:hover { color: var(--navy); transform: translateY(-2px); }
.social-links svg { width: 24px; height: 24px; }

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--blue);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy) !important;
}

.footer-copy {
    font-size: 0.78rem;
}

/* ========== DESKTOP ========== */
@media (min-width: 768px) {
    :root { --header-h: 80px; }

    .logo-script { font-size: 1.85rem; }
    .logo-sans { font-size: 0.6rem; }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .gallery-grid {
        max-width: min(900px, 95vw);
        gap: 14px;
    }

    .gallery-grid-lg {
        max-width: min(1100px, 96vw);
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .forms-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .polaroid { max-width: 400px; }

    .section { padding: 5rem 0; }

    /* Desktop nav — show inline */
    .btn-menu-wrap { display: none; }

    .header-inner {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .header-actions { order: 2; }

    .about,
    .services-intro { display: grid; }

    .hero { padding: 4rem 0 5rem; }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
