/**
 * SkyView Theme Styles
 * Premium frontend styling with dynamic style presets
 * 
 * Note: CSS variables are set dynamically in header.php based on selected preset
 * DO NOT add :root declarations here - they will override the dynamic values
 */

/* Light mode adjustments for nav and specific components */
.sv-light .sv-nav {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
}

.sv-light .sv-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

.sv-light .sv-mobile-menu {
    background: #ffffff;
}
/* Light-mode overrides for the mobile menu — by default the menu uses
   a dark navy gradient with translucent-white link tints, which read as
   "blank space" on a white background. Force a clean white panel and
   darken text/borders so links and the services sub-nav are visible. */
.sv-light .sv-mobile-menu-bg {
    background: #ffffff;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
}
.sv-light .sv-mobile-link {
    background: rgba(15, 23, 42, 0.03);
    border-color: rgba(15, 23, 42, 0.08);
    color: var(--sv-text-primary);
}
.sv-light .sv-mobile-link:hover {
    background: rgba(15, 23, 42, 0.06);
    border-color: var(--sv-primary);
}
.sv-light .sv-mobile-link-text { color: var(--sv-text-primary); }
.sv-light .sv-mobile-close {
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--sv-text-primary);
}
.sv-light .sv-mobile-close svg { color: var(--sv-text-primary); }
.sv-light .sv-mobile-close:hover {
    background: rgba(15, 23, 42, 0.1);
}
.sv-light .sv-mobile-sublink {
    color: var(--sv-text-primary);
    border-bottom-color: rgba(15, 23, 42, 0.08);
}
.sv-light .sv-mobile-contact { color: var(--sv-text-secondary); }
.sv-light .sv-mobile-contact a { color: var(--sv-text-primary); }

/* Sticky CTA bar at the bottom of the mobile menu — always visible
   above the scrolling nav so users can convert from anywhere in the
   menu without scrolling back up. */
.sv-mobile-sticky-cta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1) 0.15s;
}
.sv-mobile-menu.active .sv-mobile-sticky-cta { transform: translateY(0); }

.sv-dark .sv-mobile-sticky-cta {
    background: rgba(15, 23, 42, 0.92);
    border-top-color: rgba(255, 255, 255, 0.08);
}

.sv-mobile-sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    color: #fff !important;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px color-mix(in srgb, var(--sv-primary) 35%, transparent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sv-mobile-sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--sv-primary) 45%, transparent);
}
.sv-mobile-sticky-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}
.sv-mobile-sticky-cta-btn:hover svg { transform: translateX(4px); }
.sv-mobile-sticky-cta-btn i { font-size: 16px; }
/* Cancel the default sv-mobile-link styles inherited from the .sv-mobile-link
   class (we re-use it so the JS auto-close handler fires on click). */
.sv-mobile-sticky-cta-btn.sv-mobile-link {
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    border: none;
    padding: 16px 24px;
    transform: none;
    opacity: 1;
}
.sv-mobile-sticky-cta-btn.sv-mobile-link:hover {
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    transform: translateY(-2px);
}

.sv-light .sv-footer {
    background: var(--sv-bg-secondary);
}

/* Base Styles */
body {
    background: var(--sv-bg-primary);
    color: var(--sv-text-primary);
    line-height: 1.6;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes floatTilted {
    0%, 100% { transform: perspective(1000px) rotateY(-8deg) rotateX(2deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-8deg) rotateX(2deg) translateY(-15px); }
}

@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blobs */
.sv-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blob 10s ease-in-out infinite;
    pointer-events: none;
}

.sv-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--sv-primary);
    top: -100px;
    right: -100px;
}

.sv-blob-2 {
    width: 350px;
    height: 350px;
    background: var(--sv-secondary);
    bottom: -50px;
    left: -100px;
    animation-delay: -5s;
}

.sv-blob-3 {
    width: 250px;
    height: 250px;
    background: var(--sv-accent);
    top: 50%;
    left: 30%;
    animation-delay: -2.5s;
    opacity: 0.2;
}

/* Gradient Text — black → aqua (brand) */
.sv-gradient-text {
    background: linear-gradient(135deg, var(--sv-primary, #000) 0%, var(--sv-secondary, #111827) 40%, var(--sv-accent, #74fcfd) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Navigation - uses preset colors */
.sv-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 10px 20px;
    background: var(--sv-bg-primary);
    background: linear-gradient(var(--sv-bg-primary), var(--sv-bg-primary));
    opacity: 0.95;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sv-border);
    transition: all 0.3s ease;
}

.sv-light .sv-nav {
    background: rgba(255, 255, 255, 0.9);
}

/* Nav scroll state */
.sv-nav.scrolled-down {
    background: color-mix(in srgb, var(--sv-bg-primary) 95%, transparent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.sv-light .sv-nav.scrolled-down {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Header Scroll Effects */
@media (max-width: 768px) {
    .sv-nav {
        padding: 4px 14px;
    }
    
    .sv-nav.scrolled {
        padding: 3px 14px;
        background: color-mix(in srgb, var(--sv-bg-primary) 60%, transparent);
    }
    
    .sv-nav.scrolled .sv-logo-img {
        max-height: 36px !important;
        transition: max-height 0.3s ease;
    }
    
    .sv-nav.scrolled .sv-logo-icon {
        width: 36px;
        height: 36px;
        transition: all 0.3s ease;
    }
    
    .sv-nav.scrolled .sv-logo-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .sv-nav.scrolled .sv-logo-text {
        font-size: 16px;
    }
    
    .sv-nav.scrolled-up {
        background: color-mix(in srgb, var(--sv-bg-primary) 95%, transparent);
    }
    
    .sv-light .sv-nav.scrolled {
        background: rgba(255, 255, 255, 0.6);
    }
    
    .sv-light .sv-nav.scrolled-up {
        background: rgba(255, 255, 255, 0.95);
    }
}

.sv-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.sv-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sv-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.sv-logo-icon svg {
    width: 24px;
    height: 24px;
}

.sv-logo-text {
    font-size: 20px;
    font-weight: 700;
}

.sv-nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sv-nav-menu a {
    color: var(--sv-text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.sv-nav-menu a:hover {
    color: var(--sv-text-primary);
}

/* ── Services mega menu (desktop) ─────────────────────────────── */
.sv-nav-menu li.sv-has-dropdown {
    position: static;
}
.sv-nav-menu li.sv-has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.sv-nav-menu li.sv-has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 28px; /* hover bridge across the gap into the mega */
}
.sv-nav-menu li.sv-has-dropdown > a .sv-dd-arrow {
    width: 10px;
    height: 10px;
    opacity: 0.6;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.sv-nav-menu li.sv-has-dropdown:hover > a .sv-dd-arrow,
.sv-nav-menu li.sv-has-dropdown:focus-within > a .sv-dd-arrow {
    transform: rotate(180deg);
}
.sv-mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 14px 0 0; /* breathing room under the header bar */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
        opacity 0.2s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.2s;
    transition-delay: 0s;
    z-index: 9999;
}
/* Invisible hover bridge across the visual gap */
.sv-mega::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 28px;
}
/* JS-gated open only — CSS :hover was stacking Contact + Payments */
.sv-nav-menu li.sv-has-dropdown.is-mega-open .sv-mega,
.sv-nav-menu li.sv-has-dropdown:focus-within .sv-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
    z-index: 10001;
}
@media (hover: hover) {
    .sv-nav-menu li.sv-has-dropdown.is-mega-open:hover .sv-mega {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}
/* Instant hide when swapping to a sibling mega (no overlay stack) */
.sv-nav-menu li.sv-has-dropdown.is-mega-swap-out .sv-mega {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: opacity 0.12s ease, transform 0.12s ease, visibility 0.12s !important;
    transition-delay: 0s !important;
    z-index: 9998 !important;
}
.sv-mega-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--sv-border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.16);
    transform: translateY(-14px);
    opacity: 0.72;
    transition:
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.28s ease;
}
.sv-nav-menu li.sv-has-dropdown.is-mega-open .sv-mega-inner,
.sv-nav-menu li.sv-has-dropdown:focus-within .sv-mega-inner {
    transform: translateY(0);
    opacity: 1;
}
.sv-nav-menu li.sv-has-dropdown.is-mega-swap-out .sv-mega-inner {
    transform: translateY(-10px);
    opacity: 0;
    transition-duration: 0.12s;
}
.sv-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.sv-mega-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: #f8fafc;
    text-decoration: none !important;
    color: inherit !important;
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.sv-mega-card:hover {
    border-color: color-mix(in srgb, var(--sv-primary) 35%, transparent);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.sv-mega-card-media,
.sv-mega-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    color: #fff;
}
.sv-mega-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sv-mega-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.sv-mega-card-body strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--sv-text-primary);
    line-height: 1.25;
}
.sv-mega-card-body span {
    font-size: 12px;
    line-height: 1.4;
    color: var(--sv-text-secondary);
}
.sv-mega-promo {
    border-radius: 16px;
    padding: 22px 18px;
    background: linear-gradient(160deg, #000000 0%, #111827 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sv-mega-promo-eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #74fcfd;
}
.sv-mega-promo h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    color: #fff;
}
.sv-mega-promo p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}
.sv-mega-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #74fcfd;
    color: #111827 !important;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none !important;
}
.sv-mega-promo-btn:hover {
    filter: brightness(1.05);
}
.sv-mega-promo-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
}
.sv-mega-promo-link:hover {
    color: #74fcfd !important;
}
@media (max-width: 1100px) {
    .sv-mega-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* ── /Services mega menu ───────────────────────────────────────── */

.sv-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    color: white !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.22);
    /* Improve touch/click reliability */
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
    user-select: none;
    -webkit-user-select: none;
}

.sv-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.sv-nav-cta:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

/* Mobile Menu */
.sv-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.sv-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--sv-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .sv-mobile-toggle {
        display: flex;
    }
    
    .sv-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--sv-bg-secondary);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--sv-border);
    }
    
    .sv-nav-menu.active {
        display: flex;
    }
}

/* Buttons */
.sv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    /* Improve touch/click reliability */
    position: relative;
    z-index: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.22);
    user-select: none;
    -webkit-user-select: none;
}

.sv-btn:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
}

/* Pill-shaped buttons. Each variant locks down its own colour tokens so
   they're always readable, regardless of the active style preset or
   light / dark body class. The base `.sv-btn` is intentionally inert —
   adding a variant (`-primary`, `-ghost`, `-secondary`) gives it look. */
.sv-btn {
    border-radius: 999px;
    padding: 13px 26px;
    letter-spacing: 0.005em;
    line-height: 1.1;
}

.sv-btn-lg {
    padding: 16px 30px;
    font-size: 16px;
    border-radius: 999px;
}

.sv-btn-primary {
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    color: #fff !important;
    box-shadow:
        0 6px 16px -4px color-mix(in srgb, var(--sv-primary) 55%, transparent),
        0 14px 32px -10px color-mix(in srgb, var(--sv-secondary) 45%, transparent);
}
.sv-btn-primary i { transition: transform 0.2s ease; }
.sv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 22px -4px color-mix(in srgb, var(--sv-primary) 65%, transparent),
        0 22px 40px -10px color-mix(in srgb, var(--sv-secondary) 55%, transparent);
}
.sv-btn-primary:hover i { transform: translateX(3px); }
.sv-btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow:
        0 4px 12px -2px color-mix(in srgb, var(--sv-primary) 55%, transparent);
}

/* Ghost — outlined button with enough contrast for both dark and light
   presets. Border opacity is 40% (was 22% — too faint on light themes).
   Background mode forces white so the button is always legible over a
   photo/video fill regardless of the active colour preset. */
.sv-btn-ghost,
.sv-btn-secondary {
    background: color-mix(in srgb, var(--sv-text-primary) 8%, transparent);
    color: var(--sv-text-primary);
    border: 1.5px solid color-mix(in srgb, var(--sv-text-primary) 40%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.sv-btn-ghost:hover,
.sv-btn-secondary:hover {
    background: color-mix(in srgb, var(--sv-primary) 12%, transparent);
    border-color: var(--sv-primary);
    color: var(--sv-primary);
    transform: translateY(-2px);
}
.sv-btn-ghost:active,
.sv-btn-secondary:active {
    transform: translateY(0) scale(0.98);
    background: color-mix(in srgb, var(--sv-primary) 16%, transparent);
}

/* In background (full-bleed image/video) mode the hero content sits on
   top of the photo, so we must use white regardless of the colour preset. */
.sv-hero-mode-background .sv-btn-ghost,
.sv-hero-mode-background .sv-btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
}
.sv-hero-mode-background .sv-btn-ghost:hover,
.sv-hero-mode-background .sv-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
}

/* Hero Section */
.sv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 88px 24px 56px;
    overflow: hidden;
}

.sv-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .sv-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.sv-hero-content {
    max-width: 600px;
}

@media (max-width: 968px) {
    .sv-hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
}

.sv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(116, 252, 253, 0.12);
    border: 1px solid rgba(116, 252, 253, 0.22);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--sv-primary);
    font-weight: 500;
    margin-bottom: 24px;
}

.sv-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
}

.sv-hero-description {
    font-size: 18px;
    color: var(--sv-text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.sv-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .sv-hero-buttons {
        justify-content: center;
    }
}

.sv-hero-image {
    position: relative;
}

.sv-hero-mockup {
    background: var(--sv-bg-secondary);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--sv-border);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: floatTilted 6s ease-in-out infinite;
}

/* Section Styling */
.sv-section {
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

/* Alternating Section Backgrounds */
.sv-section-alt {
    background: var(--sv-bg-secondary);
}

.sv-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.sv-section-header h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
}

.sv-section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin: 0 0 16px;
}

.sv-section-header p {
    font-size: 18px;
    color: var(--sv-text-secondary);
    margin: 0;
}

/* Services Grid */
/* Flex grid so the last row centres automatically (e.g. 3+2 for 5 cards,
   not 4+1). Cards have a fixed basis so they never stretch awkwardly. */
.sv-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.sv-service-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: 360px;
    min-width: 220px;
    background: var(--sv-bg-card);
    border: 1px solid var(--sv-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

@media (max-width: 1100px) {
    .sv-service-card {
        flex-basis: calc(50% - 12px);
    }
}

@media (max-width: 550px) {
    .sv-service-card {
        flex-basis: 100%;
        max-width: 100%;
    }
}

/* Card with image - remove top/side padding for image */
.sv-service-card.has-image {
    padding: 0;
    overflow: hidden;
}

.sv-service-card.has-image h3,
.sv-service-card.has-image p {
    padding: 0 24px;
}

.sv-service-card.has-image h3 {
    padding-top: 0;
}

.sv-service-card.has-image p {
    padding-bottom: 24px;
}

.sv-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--sv-primary);
    box-shadow: 0 20px 40px rgba(116, 252, 253, 0.18);
}

.sv-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.sv-service-image-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 20px;
}

.sv-service-card.has-image .sv-service-image-box {
    border-radius: 0;
    margin-bottom: 20px;
}

.sv-service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sv-service-card:hover .sv-service-image-box img {
    transform: scale(1.05);
}

.sv-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
}

.sv-service-card p {
    color: var(--sv-text-secondary);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Stats Section */
.sv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .sv-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.sv-stat {
    text-align: center;
}

.sv-stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.sv-stat-label {
    color: var(--sv-text-secondary);
    font-size: 16px;
}

/* Testimonials */
.sv-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.sv-testimonial-card {
    background: var(--sv-bg-card);
    border: 1px solid var(--sv-border);
    border-radius: 20px;
    padding: 32px;
}

.sv-testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
}

.sv-testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--sv-text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.sv-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sv-testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.sv-testimonial-name {
    font-weight: 600;
    margin: 0;
}

.sv-testimonial-location {
    color: var(--sv-text-muted);
    font-size: 14px;
    margin: 0;
}

/* CTA Section */
.sv-cta {
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.sv-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: blob 15s ease-in-out infinite;
}

.sv-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: white;
    margin: 0 0 16px;
    position: relative;
}

.sv-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 32px;
    position: relative;
}

.sv-cta .sv-btn {
    background: white;
    color: var(--sv-primary);
    position: relative;
}

.sv-cta .sv-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Footer */
.sv-footer {
    background: var(--sv-bg-secondary);
    border-top: 1px solid var(--sv-border);
    padding: 60px 24px 24px;
}

.sv-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 968px) {
    .sv-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .sv-footer-inner {
        grid-template-columns: 1fr;
    }
}

.sv-footer-brand {
    max-width: 300px;
}

.sv-footer-brand p {
    color: var(--sv-text-secondary);
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.7;
}

.sv-footer h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px;
}

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

.sv-footer-links li {
    margin-bottom: 12px;
}

.sv-footer-links a {
    color: var(--sv-text-secondary);
    font-size: 14px;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.sv-footer-links a:hover {
    color: var(--sv-primary);
    text-decoration: none !important;
}

/*
 * Services column — exactly 3 links visible, then a down-arrow cue.
 * Extra services scroll inside the list above the arrow.
 */
.sv-footer-services-scroll {
    position: relative;
    max-width: 100%;
    --sv-footer-svc-line: 32px; /* one link row */
}
.sv-footer-links--services {
    max-height: calc(var(--sv-footer-svc-line) * 3);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 4px;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 23, 42, 0.28) transparent;
    mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
}
.sv-footer-services-scroll.is-at-end .sv-footer-links--services {
    mask-image: none;
    -webkit-mask-image: none;
}
.sv-footer-links--services::-webkit-scrollbar {
    width: 5px;
}
.sv-footer-links--services::-webkit-scrollbar-track {
    background: transparent;
}
.sv-footer-links--services::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.22);
    border-radius: 999px;
}
.sv-footer-links--services li {
    margin: 0;
    height: var(--sv-footer-svc-line);
    display: flex;
    align-items: center;
}
.sv-footer-links--services a {
    line-height: 1.2;
    font-size: 14px;
}
.sv-footer-services-scroll-cue {
    display: none;
    justify-content: center;
    padding-top: 8px;
    pointer-events: none;
}
.sv-footer-services-scroll.is-scrollable .sv-footer-services-scroll-cue {
    display: flex;
}
.sv-footer-services-scroll-arrow {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #000000;
    color: var(--sv-accent, #74fcfd);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    animation: sv-footer-scroll-bounce 1.4s ease-in-out infinite;
}
.sv-footer-services-scroll.is-at-end .sv-footer-services-scroll-cue {
    opacity: 0.25;
}
@keyframes sv-footer-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

/* Contact column — matching header-style icon chips */
.sv-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: #475569;
    font-size: 14px;
    line-height: 1.45;
}
.sv-footer-contact li > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    text-decoration: none !important;
}
.sv-footer-contact li > a:hover {
    color: var(--sv-primary, #000000);
}
.sv-footer-contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: 1px solid rgba(65, 73, 87, 0.1);
    color: #414957;
    font-size: 12px;
}
.sv-footer-contact li > a:hover .sv-footer-contact-icon {
    background: var(--sv-secondary, #111827);
    border-color: var(--sv-secondary, #111827);
    color: var(--sv-accent, #74fcfd);
}

.sv-footer-bottom {
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 20px 0 8px;
    border-top: 1px solid var(--sv-border);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px 24px;
}

.sv-footer-bottom p,
.sv-footer-copy {
    color: var(--sv-text-muted);
    font-size: 13px;
    margin: 0;
    justify-self: start;
}

.sv-social-links {
    display: flex;
    gap: 12px;
}

.sv-social-links a {
    width: 40px;
    height: 40px;
    background: var(--sv-bg-card);
    border: 1px solid var(--sv-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sv-text-secondary);
    font-size: 18px;
    transition: all 0.2s ease;
}

.sv-social-links a:hover {
    background: var(--sv-primary);
    border-color: var(--sv-primary);
    color: white;
}

/* Reveal animations */
.sv-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.sv-reveal.active {
    animation: fadeInUp 0.6s ease forwards;
}

/* =================================
   Steps / How It Works Section
   ================================= */

.sv-step-card {
    position: relative;
    background: var(--sv-bg-card);
    border: 1px solid var(--sv-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sv-step-card:hover {
    transform: translateY(-8px);
    border-color: var(--sv-primary);
    box-shadow: 0 20px 40px rgba(116, 252, 253, 0.18);
}

.sv-step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.28);
}

.sv-step-icon {
    width: 80px;
    height: 80px;
    margin: 16px auto 24px;
    background: linear-gradient(135deg, rgba(116, 252, 253, 0.14), rgba(0, 0, 0, 0.06));
    border: 2px solid rgba(116, 252, 253, 0.22);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sv-step-card:hover .sv-step-icon {
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
}

.sv-step-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.sv-step-card:hover .sv-step-icon i {
    -webkit-text-fill-color: white;
    background: none;
    color: white;
}

.sv-step-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--sv-text-primary);
}

.sv-step-description {
    font-size: 14px;
    color: var(--sv-text-secondary);
    margin: 0;
    line-height: 1.6;
}

.sv-step-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.sv-step-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--sv-primary);
    opacity: 0.5;
}

@media (max-width: 968px) {
    .sv-steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .sv-step-arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    .sv-steps-grid {
        grid-template-columns: 1fr !important;
    }
    
    .sv-step-card {
        padding: 28px 20px;
    }
}

/* Utility classes */
.sv-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =================================
   Instant Quote Form Overrides
   ================================= */

/* Quote form container - centered, max-width, fully responsive */
.sv-quote-form-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .sv-quote-form-container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .sv-quote-form-container {
        padding: 0 12px;
    }
}

/* Force ALL text in the quote form to be dark */
.sv-quote-form-container,
.sv-quote-form-container * {
    color: #1e293b !important;
}

/* Headings */
.sv-quote-form-container h1,
.sv-quote-form-container h2,
.sv-quote-form-container h3,
.sv-quote-form-container h4,
.sv-quote-form-container h5 {
    color: #0f172a !important;
}

/* Paragraphs and labels */
.sv-quote-form-container p,
.sv-quote-form-container label,
.sv-quote-form-container span,
.sv-quote-form-container div {
    color: #374151 !important;
}

/* Muted/secondary text */
.sv-quote-form-container .text-gray-400,
.sv-quote-form-container .text-gray-500,
.sv-quote-form-container .text-gray-600,
.sv-quote-form-container .text-slate-400,
.sv-quote-form-container .text-slate-500,
.sv-quote-form-container small {
    color: #6b7280 !important;
}

/* Form inputs */
.sv-quote-form-container input,
.sv-quote-form-container select,
.sv-quote-form-container textarea {
    color: #1e293b !important;
    background-color: #ffffff !important;
    border-color: #d1d5db !important;
}

.sv-quote-form-container input::placeholder {
    color: #9ca3af !important;
}

.sv-quote-form-container input:focus,
.sv-quote-form-container select:focus,
.sv-quote-form-container textarea:focus {
    border-color: var(--sv-primary) !important;
    box-shadow: 0 0 0 3px rgba(116, 252, 253, 0.18) !important;
    outline: none !important;
}

/* Buttons - keep white text */
.sv-quote-form-container button,
.sv-quote-form-container [type="submit"],
.sv-quote-form-container [type="button"],
.sv-quote-form-container .btn,
.sv-quote-form-container [class*="btn-"],
.sv-quote-form-container [class*="bg-blue"],
.sv-quote-form-container [class*="bg-green"],
.sv-quote-form-container [class*="bg-primary"] {
    color: #ffffff !important;
}

/* Links */
.sv-quote-form-container a {
    color: var(--sv-primary) !important;
}

/* Price values - make them pop */
.sv-quote-form-container [class*="price"],
.sv-quote-form-container [class*="total"],
.sv-quote-form-container .font-bold {
    color: #0f172a !important;
}

/* Icons in buttons should stay white */
.sv-quote-form-container button svg,
.sv-quote-form-container button i,
.sv-quote-form-container [type="submit"] svg {
    color: #ffffff !important;
}

/* Checkboxes and radio styling */
.sv-quote-form-container input[type="checkbox"],
.sv-quote-form-container input[type="radio"] {
    accent-color: var(--sv-primary);
}

/* ==========================================
   Stunning Mobile Menu
   ========================================== */

/* Animated Burger Icon */
.sv-burger {
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.sv-burger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--sv-primary), var(--sv-secondary));
    border-radius: 3px;
    left: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sv-burger span:nth-child(1) { top: 0; width: 100%; }
.sv-burger span:nth-child(2) { top: 8px; width: 75%; }
.sv-burger span:nth-child(3) { top: 16px; width: 50%; }

.sv-burger:hover span:nth-child(2) { width: 100%; }
.sv-burger:hover span:nth-child(3) { width: 100%; }

.sv-burger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
    width: 100%;
}

.sv-burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.sv-burger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
    width: 100%;
}

/* Full Screen Mobile Menu */
.sv-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.sv-mobile-menu.active {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.sv-mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.sv-mobile-menu.active .sv-mobile-menu-bg {
    transform: translateX(0);
}

.sv-mobile-menu-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px 16px 96px;
    overflow-y: auto;
}

.sv-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease 0.3s;
}

.sv-mobile-menu.active .sv-mobile-menu-header {
    opacity: 1;
    transform: translateY(0);
}

.sv-mobile-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sv-mobile-close svg {
    width: 24px;
    height: 24px;
    color: white;
}

.sv-mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Mobile Navigation Links */
.sv-mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sv-mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateX(24px);
    transition: background 0.25s ease, border-color 0.25s ease, opacity 0.35s ease, transform 0.35s ease;
    transition-delay: var(--delay, 0s);
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.sv-mobile-menu.active .sv-mobile-link,
.sv-mobile-menu.active .sv-mobile-accordion {
    opacity: 1;
    transform: translateX(0);
}

.sv-mobile-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: color-mix(in srgb, var(--sv-primary) 55%, transparent);
}

.sv-mobile-link-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sv-mobile-link-icon svg {
    width: 16px;
    height: 16px;
    color: white;
}

.sv-mobile-link-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.25;
}

.sv-mobile-link-arrow {
    font-size: 16px;
    color: var(--sv-primary);
    opacity: 0.55;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sv-mobile-link:hover .sv-mobile-link-arrow {
    opacity: 1;
    transform: translateX(2px);
}

.sv-mobile-link-chevron {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.sv-mobile-link-chevron svg {
    width: 12px;
    height: 8px;
}
.sv-mobile-accordion.is-open .sv-mobile-link-chevron {
    transform: rotate(180deg);
}

/* Mobile services mega — closed by default */
.sv-mobile-accordion {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    transition-delay: var(--delay, 0s);
}
.sv-mobile-mega[hidden] {
    display: none !important;
}
.sv-mobile-mega {
    margin: 6px 0 8px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.sv-mobile-mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.sv-mobile-mega-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none !important;
    color: inherit !important;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.sv-mobile-mega-card:hover,
.sv-mobile-mega-card:active {
    border-color: color-mix(in srgb, var(--sv-accent, #74fcfd) 45%, transparent);
    transform: translateY(-1px);
}
.sv-mobile-mega-card-media,
.sv-mobile-mega-card-icon {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    color: #fff;
    font-size: 18px;
}
.sv-mobile-mega-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sv-mobile-mega-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.sv-mobile-mega-card-body strong {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}
.sv-mobile-mega-card-body span {
    font-size: 11px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.62);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sv-mobile-mega-promo {
    margin-top: 10px;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #000000 0%, #111827 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.sv-mobile-mega-promo-eyebrow {
    margin: 0 0 2px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #74fcfd;
}
.sv-mobile-mega-promo-copy strong {
    font-size: 13px;
    color: #fff;
    font-weight: 700;
}
.sv-mobile-mega-promo-btn {
    flex-shrink: 0;
    padding: 8px 12px;
    border-radius: 8px;
    background: #74fcfd;
    color: #111827 !important;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none !important;
}
.sv-mobile-mega-all {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}
.sv-mobile-mega-all:hover {
    color: #74fcfd;
}
/* Legacy list subnav (if present) */
.sv-mobile-subnav {
    padding: 4px 8px 8px 46px;
    margin: 0 0 4px;
}
.sv-mobile-subnav[hidden] {
    display: none !important;
}
.sv-mobile-sublink {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
    text-decoration: none;
}
.sv-mobile-sublink:last-child { border-bottom: none; }
.sv-mobile-sublink:hover { color: var(--sv-accent, #74fcfd); }
.sv-mobile-sublink-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--sv-primary);
    flex-shrink: 0;
    opacity: 0.7;
}

/* Mobile CTA Button */
.sv-mobile-cta {
    margin: 32px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: var(--delay);
}

.sv-mobile-menu.active .sv-mobile-cta {
    opacity: 1;
    transform: translateY(0);
}

.sv-mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    color: white;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    transition: all 0.3s ease;
}

.sv-mobile-cta-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.sv-mobile-cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.sv-mobile-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Mobile Footer */
.sv-mobile-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: var(--delay);
}

.sv-mobile-menu.active .sv-mobile-footer {
    opacity: 1;
    transform: translateY(0);
}

.sv-mobile-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sv-primary);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.sv-mobile-contact svg {
    width: 20px;
    height: 20px;
}

.sv-mobile-social {
    display: flex;
    gap: 16px;
}

.sv-mobile-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.sv-mobile-social a:hover {
    background: var(--sv-primary);
    border-color: var(--sv-primary);
    transform: translateY(-4px);
}

/* Hide desktop menu on mobile */
@media (max-width: 968px) {
    .sv-desktop-menu {
        display: none !important;
    }
    
    .sv-mobile-toggle {
        display: flex !important;
    }
}

@media (min-width: 969px) {
    .sv-mobile-toggle {
        display: none !important;
    }
    
    .sv-mobile-menu {
        display: none !important;
    }
}

/* ==========================================
   FAQ Section
   ========================================== */

.sv-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sv-faq-item {
    background: var(--sv-bg-card);
    border: 1px solid var(--sv-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sv-faq-item:hover {
    border-color: rgba(0, 0, 0, 0.22);
}

.sv-faq-item.active {
    border-color: var(--sv-primary);
    box-shadow: 0 4px 20px rgba(116, 252, 253, 0.18);
}

.sv-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--sv-text-primary);
    transition: all 0.3s ease;
}

.sv-faq-question:hover {
    color: var(--sv-primary);
}

.sv-faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--sv-primary);
    transition: transform 0.3s ease;
}

.sv-faq-item.active .sv-faq-icon {
    transform: rotate(45deg);
}

.sv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.sv-faq-item.active .sv-faq-answer {
    max-height: 500px;
}

.sv-faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    color: var(--sv-text-secondary);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid var(--sv-border);
    padding-top: 16px;
}

@media (max-width: 768px) {
    .sv-faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .sv-faq-answer p {
        padding: 0 20px 16px;
        font-size: 14px;
    }
}

/* ==========================================
   Contact Form
   ========================================== */

.sv-contact-form {
    max-width: 600px;
}

.sv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .sv-form-row {
        grid-template-columns: 1fr;
    }
}

.sv-form-group {
    margin-bottom: 20px;
}

.sv-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--sv-text-primary);
}

.sv-form-group label .required {
    color: #ef4444;
}

.sv-form-group input,
.sv-form-group textarea,
.sv-form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--sv-bg-card);
    border: 1px solid var(--sv-border);
    border-radius: 12px;
    color: var(--sv-text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.sv-form-group input:focus,
.sv-form-group textarea:focus,
.sv-form-group select:focus {
    outline: none;
    border-color: var(--sv-primary);
    box-shadow: 0 0 0 3px rgba(116, 252, 253, 0.18);
}

.sv-form-group input::placeholder,
.sv-form-group textarea::placeholder {
    color: var(--sv-text-secondary);
    opacity: 0.6;
}

.sv-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.sv-form-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sv-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sv-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.sv-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.sv-submit-btn .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sv-submit-btn .spinner {
    width: 20px;
    height: 20px;
    animation: cvSpin 1s linear infinite;
}

@keyframes cvSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sv-recaptcha-notice {
    font-size: 12px;
    color: var(--sv-text-secondary);
    opacity: 0.7;
}

.sv-form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
}

.sv-form-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.sv-form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ==========================================
   Service Areas Section
   ========================================== */

.sv-area-tag:hover {
    transform: translateY(-3px);
    border-color: var(--sv-primary);
    box-shadow: 0 8px 24px rgba(116, 252, 253, 0.18);
}

.sv-area-tag:hover i {
    transform: scale(1.2);
}

.sv-postcode-checker input:focus {
    outline: none;
    border-color: var(--sv-primary);
    box-shadow: 0 0 0 3px rgba(116, 252, 253, 0.18);
}

.sv-postcode-checker button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

/* ==========================================
   Before/After Gallery
   ========================================== */

.sv-beforeafter-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv-beforeafter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sv-ba-container {
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

/* ==========================================
   Trust Badges
   ========================================== */

.sv-badge-item {
    transition: transform 0.3s ease;
}

.sv-badge-item:hover {
    transform: scale(1.05);
}

/* ==========================================
   Skip link (a11y)
   ========================================== */
.sv-skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--sv-primary);
    color: #fff;
    padding: 12px 18px;
    font-weight: 600;
    z-index: 9999;
    border-radius: 0 0 10px 0;
    text-decoration: none;
    transition: top 0.2s;
}
.sv-skip-link:focus { top: 0; }

/* ==========================================
   Per-breakpoint logo system (ported from chase-dance)

   The header inline-style sets these CSS vars per page so each
   breakpoint can have its own width/height, and shrink-on-scroll
   smoothly animates between the full and shrunk sizes when `.scrolled`
   is added by the existing scroll JS.
   ========================================== */
.sv-nav {
    transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.sv-nav .sv-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(var(--sv-logo-offset-y, 0));
    padding-left: var(--sv-logo-pad-x, 0);
    padding-right: var(--sv-logo-pad-x, 0);
    text-decoration: none;
    color: inherit;
}
.sv-nav .sv-logo-img {
    display: block;
    width: var(--sv-logo-w-desktop, 150px);
    max-height: var(--sv-logo-h-desktop, 64px);
    height: auto;
    object-fit: contain;
    transition: width 0.25s ease, max-height 0.25s ease;
}
.sv-nav.sv-nav--shrink.scrolled-down .sv-logo-img,
.sv-nav.sv-nav--shrink.scrolled .sv-logo-img {
    width: var(--sv-logo-w-desktop-sm, 120px);
    max-height: var(--sv-logo-h-desktop-sm, 50px);
}
@media (max-width: 768px) {
    .sv-nav .sv-logo-img {
        width: var(--sv-logo-w-mobile, 110px);
        max-height: var(--sv-logo-h-mobile, 44px);
    }
    .sv-nav.sv-nav--shrink.scrolled-down .sv-logo-img,
    .sv-nav.sv-nav--shrink.scrolled .sv-logo-img {
        width: var(--sv-logo-w-mobile-sm, 90px);
        max-height: var(--sv-logo-h-mobile-sm, 36px);
    }
}
.sv-nav--logo-center .sv-nav-inner {
    justify-content: center;
    position: relative;
}
.sv-nav--logo-center .sv-mobile-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.sv-nav.sv-nav--shrink.scrolled-down,
.sv-nav.sv-nav--shrink.scrolled {
    padding-top: 2px;
    padding-bottom: 2px;
    box-shadow: 0 8px 28px -16px rgba(0,0,0,0.35);
}
.sv-logo-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sv-logo-mark svg { width: 100%; height: 100%; }
.sv-logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ==========================================
   Hero — modes, video, abstract fallback, scroll cue

   Overrides the older ".sv-hero { min-height: 100vh }" feel by giving
   the hero a content-driven height with comfortable but not cavernous
   vertical breathing room, plus a real visual frame on the media
   column instead of a bare floating image.
   ========================================== */
.sv-hero {
    min-height: clamp(620px, 90vh, 920px);
    padding: clamp(96px, 12vh, 140px) 24px clamp(64px, 10vh, 110px);
}
.sv-hero-mode-background { color: #fff; }
.sv-hero-mode-background .sv-hero-inner {
    grid-template-columns: 1fr;
    max-width: 900px;
    text-align: center;
    color: #fff;
}
.sv-hero-mode-background .sv-hero-content {
    max-width: 760px;
    margin: 0 auto;
}
.sv-hero-mode-background .sv-hero-buttons { justify-content: center; }
.sv-hero-mode-background .sv-hero h1,
.sv-hero-mode-background .sv-hero-description {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
/* No second floating media in background mode — the bg already fills the
   hero, so the side card would just duplicate the image awkwardly. */
.sv-hero-mode-background .sv-hero-image { display: none; }

/* Background mode wrapper */
.sv-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.sv-hero-bg-poster,
.sv-hero-bg-video,
.sv-hero-bg-image,
.sv-hero-bg-iframe-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sv-hero-bg-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;       /* 16:9 — taller than wide on portrait viewports */
    min-width: 177.78vh;   /* fallback so 9:16 phones still get full coverage */
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}
.sv-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 24, var(--sv-hero-overlay, 0.4));
}

/* Side-mode media frame — replaces the flat "image just placed on the
   site" feel with a real elevated card, identical to the mockup's
   shadow language so all hero variants feel coherent. */
.sv-hero-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: var(--sv-bg-secondary);
    border: 1px solid var(--sv-border);
    box-shadow:
        0 35px 80px -30px rgba(0,0,0,0.45),
        0 8px 24px -10px rgba(0,0,0,0.25);
    aspect-ratio: 4 / 3;
    animation: floatTilted 7s ease-in-out infinite;
}
.sv-hero-media img,
.sv-hero-media video,
.sv-hero-media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sv-hero-media-video.is-embed { aspect-ratio: 16 / 9; }
.sv-hero-media-embed {
    position: relative;
    width: 100%;
    height: 100%;
}
.sv-hero-media-embed iframe { border: 0; }
.sv-hero-media-image { aspect-ratio: 16 / 11; }

/* Quote widget container — keeps the WCQ shortcode looking like a hero
   card rather than an arbitrary form blob. We override the generic
   .sv-hero-media radius/overflow so dropdowns / popovers inside the
   widget aren't clipped, and reset the aspect-ratio so it grows with
   the form length. */
.sv-hero-media-widget {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    aspect-ratio: auto;
    border-radius: 0;
}
.sv-hero-media-widget > * {
    background: var(--sv-bg-secondary);
    border-radius: 22px;
    border: 1px solid var(--sv-border);
    box-shadow:
        0 35px 80px -30px rgba(0,0,0,0.45),
        0 8px 24px -10px rgba(0,0,0,0.25);
    padding: 24px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .sv-hero-media-widget > * { padding: 28px; }
}
.sv-light .sv-hero-media-widget > * {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow:
        0 30px 60px -25px rgba(15, 23, 42, 0.18),
        0 6px 18px -8px rgba(15, 23, 42, 0.08);
}

/* Abstract animated visual when admin hasn't uploaded anything yet */
.sv-hero-media-abstract {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--sv-primary) 18%, transparent),
        color-mix(in srgb, var(--sv-secondary) 18%, transparent));
    display: grid;
    place-items: center;
    overflow: hidden;
}
.sv-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
    animation: sv-float 14s ease-in-out infinite;
}
.sv-shape-1 {
    width: 280px; height: 280px;
    background: var(--sv-primary);
    top: 10%; left: 10%;
}
.sv-shape-2 {
    width: 220px; height: 220px;
    background: var(--sv-secondary);
    bottom: 12%; right: 8%;
    animation-delay: -4s;
}
.sv-shape-3 {
    width: 160px; height: 160px;
    background: var(--sv-accent);
    top: 50%; left: 55%;
    animation-delay: -8s;
}
.sv-shape-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 44px);
    color: rgba(255,255,255,0.85);
    text-shadow: 0 2px 14px rgba(0,0,0,0.25);
    mix-blend-mode: screen;
}
.sv-light .sv-shape-text { color: rgba(0,0,0,0.7); mix-blend-mode: multiply; }
@keyframes sv-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(20px, -30px) scale(1.06); }
    66%      { transform: translate(-15px, 20px) scale(0.96); }
}

/* Scroll cue under the hero — fades the eye toward the next section */
.sv-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 38px;
    border: 2px solid currentColor;
    border-radius: 14px;
    opacity: 0.45;
    transition: opacity 0.2s ease;
    z-index: 2;
    color: var(--sv-text-primary);
}
.sv-hero-mode-background .sv-scroll-cue { color: #fff; }
.sv-scroll-cue:hover { opacity: 0.95; }
.sv-scroll-cue span {
    display: block;
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    margin: 7px auto 0;
    animation: sv-scroll-cue 1.6s ease-in-out infinite;
}
@keyframes sv-scroll-cue {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50%      { transform: translateY(8px); opacity: 1; }
}

/* Content side better balanced — stops "squashed text" by giving the
   copy slightly more horizontal room and increasing line-height on the
   description. Also increases gap on desktop so the columns don't feel
   crammed into the middle. */
@media (min-width: 1024px) {
    .sv-hero-inner { gap: 80px; }
    .sv-hero-content { max-width: 640px; }
    .sv-hero h1 { font-size: clamp(48px, 4.6vw, 76px); letter-spacing: -0.02em; }
    .sv-hero-description { font-size: 19px; line-height: 1.65; max-width: 560px; }
}

/* ==========================================
   Services directory + single service detail blocks
   (Phase 2 / 3 — replaces the old inline styles in
   templates/template-services.php with proper classes)
   ========================================== */

/* Service cards are now <a> elements — keep the existing card visuals
   from the old <div> rules but reset the link styling. */
a.sv-service-card,
a.sv-service-card:hover {
    text-decoration: none;
    color: inherit;
}

.sv-services-page .sv-page-hero {
    padding-top: 140px;
    padding-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sv-services-page .sv-page-hero h1 {
    font-size: clamp(36px, 4.8vw, 60px);
    line-height: 1.05;
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.sv-services-page .sv-page-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--sv-text-secondary);
    font-size: 18px;
    line-height: 1.65;
}
.sv-services-page .sv-eyebrow a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(116, 252, 253, 0.14);
    border: 1px solid rgba(116, 252, 253, 0.28);
    color: var(--sv-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 14px;
}
/* Remove the outer grey pill wrapper when the eyebrow contains a link */
.sv-services-page .sv-eyebrow {
    background: none;
    border-color: transparent;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.sv-services-page .sv-eyebrow a::before {
    content: "←";
    font-weight: 700;
}

.sv-services-detail-section { padding-top: 30px; }
.sv-services-detail {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.sv-service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.sv-service-detail.is-even {
    direction: rtl;
}
.sv-service-detail.is-even > * {
    direction: ltr;
}
@media (max-width: 900px) {
    .sv-service-detail {
        grid-template-columns: 1fr;
        gap: 28px;
        direction: ltr !important;
    }
    .sv-service-detail.is-even { direction: ltr; }
}

.sv-service-detail .sv-service-image {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: var(--sv-bg-secondary);
    border: 1px solid var(--sv-border);
    aspect-ratio: 4 / 3;
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.4);
}
.sv-service-detail .sv-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sv-service-detail .sv-service-image-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--sv-primary) 25%, transparent),
        color-mix(in srgb, var(--sv-secondary) 25%, transparent));
    color: #fff;
    font-size: clamp(60px, 9vw, 110px);
}

.sv-service-detail .sv-service-icon-box {
    margin: 0 0 14px;
}
.sv-service-detail .sv-service-icon-chip {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sv-primary), var(--sv-secondary));
    color: #fff;
    border-radius: 16px;
    font-size: 22px;
    box-shadow: 0 16px 30px -16px rgba(0, 0, 0, 0.4);
}
.sv-service-detail h2 {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.sv-service-detail .sv-service-subheading {
    font-size: 16px;
    font-weight: 600;
    color: var(--sv-primary);
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.sv-service-detail .sv-service-short {
    font-size: 18px;
    color: var(--sv-text-secondary);
    line-height: 1.65;
    margin: 0 0 18px;
}
.sv-service-detail .sv-service-body {
    color: var(--sv-text-primary);
    line-height: 1.7;
    margin: 0 0 20px;
}
.sv-service-detail .sv-service-body p { margin: 0 0 12px; }
.sv-service-detail .sv-service-body p:last-child { margin-bottom: 0; }

.sv-service-detail .sv-service-features {
    background: var(--sv-bg-secondary);
    border: 1px solid var(--sv-border);
    border-radius: 16px;
    padding: 20px 22px;
    margin: 0 0 22px;
}
.sv-service-detail .sv-service-features h4 {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--sv-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.sv-service-detail .sv-service-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.sv-service-detail .sv-service-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--sv-text-primary);
    line-height: 1.5;
}
.sv-service-detail .sv-service-feature-tick {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(116, 252, 253, 0.18);
    color: var(--sv-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 1px;
}

.sv-service-detail .sv-service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sv-services-empty {
    text-align: center;
    color: var(--sv-text-secondary);
    padding: 60px 20px;
}

/* ==========================================
   Hero polish pass — eyebrow pill, balanced
   per-line headline, microproof line, ambient
   gradient and asymmetric grid (Chase Custom-
   inspired without losing SkyView identity).
   ========================================== */

/* Eyebrow pill — replaces the legacy `sv-hero-badge` look with a
   colour-anchored micro-tag that survives any preset / dark-mode
   switch. The dot uses `var(--sv-primary)` so it always reads. */
.sv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 12px;
    background: color-mix(in srgb, var(--sv-text-primary) 6%, transparent);
    border: 1px solid color-mix(in srgb, var(--sv-text-primary) 14%, transparent);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sv-text-primary);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.sv-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--sv-primary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--sv-primary) 22%, transparent);
}
/* Inside dark hero backgrounds, the eyebrow needs more contrast. */
.sv-hero-mode-background .sv-eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Per-line headline blocks — text-wrap balance keeps short last words
   from sitting alone, and the per-line span pattern lets us animate
   each line independently if we want to in future.

   Specificity note: `.sv-hero h1` (an existing rule earlier in this
   file) is 0,0,1,1 — equal to `h1.sv-hero-title`. We scope these
   rules under `.sv-hero` so the new sizing wins regardless of source
   order. */
.sv-hero h1.sv-hero-title {
    font-size: clamp(44px, 5.4vw, 76px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
}
.sv-hero .sv-hero-line {
    display: block;
    text-wrap: balance;
    -webkit-text-wrap: balance;
}
.sv-hero .sv-hero-line + .sv-hero-line { margin-top: 0.04em; }
.sv-hero .sv-hero-line-grad {
    background: linear-gradient(135deg, var(--sv-primary) 0%, var(--sv-secondary) 50%, var(--sv-accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: cvGradientShift 6s ease-in-out infinite alternate;
}
/* When the hero is a full-bleed image/video, the dark photo behind the
   gradient text kills its contrast. Use a solid white fill with a thin
   white outline (text-stroke) and a dark shadow halo so the highlighted
   word pops on any background photo.
   NOTE: .sv-hero-mode-background and .sv-hero are on the SAME element,
   so the selector uses NO space between them before the descendant. */
.sv-hero-mode-background .sv-hero-line-grad,
.sv-hero-mode-background .sv-gradient-text {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
    text-shadow:
        0 0 2px rgba(0, 0, 0, 0.95),
        0 0 8px rgba(0, 0, 0, 0.8),
        0 3px 12px rgba(0, 0, 0, 0.7),
        0 8px 30px rgba(0, 0, 0, 0.5);
    animation: none !important;
}
@keyframes cvGradientShift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Microproof line — tiny trust strip beneath the buttons. The check
   icon stays brand-green so it reads as "verified" without screaming. */
.sv-hero-microproof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 0;
    color: var(--sv-text-secondary);
    font-size: 14px;
    line-height: 1.5;
}
.sv-hero-microproof i {
    color: #10b981;
    font-size: 15px;
}
.sv-hero-mode-background .sv-hero-microproof {
    color: rgba(255, 255, 255, 0.85);
}
.sv-hero-mode-background .sv-hero-microproof i { color: #34d399; }

/* Hero ambience — radial gradient washes that sit under the existing
   blob layer, giving the hero real depth instead of a flat fill. */
.sv-hero {
    background:
        radial-gradient(1100px 600px at 88% -10%, color-mix(in srgb, var(--sv-secondary) 14%, transparent) 0%, transparent 60%),
        radial-gradient(800px 460px at -10% 12%, color-mix(in srgb, var(--sv-primary) 10%, transparent) 0%, transparent 60%),
        radial-gradient(1000px 520px at 50% 110%, color-mix(in srgb, var(--sv-accent) 10%, transparent) 0%, transparent 60%);
}

/* Mobile breathing room — the fixed header overlaps the top of the hero,
   and the smaller min-padding (96px) leaves the headline feeling
   squashed against the nav on phones with taller logos. Bump it. */
@media (max-width: 768px) {
    .sv-hero {
        padding-top: 140px !important;
        padding-bottom: 56px !important;
        min-height: auto !important;
    }
    .sv-referral-hero {
        padding-top: 140px !important;
        padding-bottom: 56px !important;
    }
}

/* Asymmetric column ratio — visual side gets a touch more room so the
   media frame feels properly anchored instead of "squashed text /
   image just placed". The legacy 1fr 1fr stays as the fallback. */
@media (min-width: 1024px) {
    .sv-hero-inner {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: clamp(48px, 5vw, 88px);
    }
    .sv-hero-content { gap: 0; }
}

/* Buttons in the hero — extra spacing above so the microproof line
   doesn't crash into them on narrow screens. */
.sv-hero-buttons { margin-top: 6px; }

/* Section eyebrow option — drop an eyebrow above any section title
   to give that "polished SaaS landing page" feel. The default
   `sv-section-header` already centres content; adding `.sv-eyebrow`
   above the h2 just works. */
.sv-section-header .sv-eyebrow { margin: 0 auto 14px; }

/* Service / testimonial / feature cards — a subtle border tint that
   reads on both dark and light surfaces, plus a softer inner gradient
   so cards no longer look like flat boxes. */
.sv-service-card,
.sv-testimonial-card,
.sv-step-card,
.sv-feature-card {
    background:
        linear-gradient(160deg, color-mix(in srgb, var(--sv-bg-card) 96%, var(--sv-primary) 4%) 0%, var(--sv-bg-card) 60%);
    border-color: color-mix(in srgb, var(--sv-text-primary) 8%, transparent);
}
.sv-service-card:hover,
.sv-feature-card:hover,
.sv-step-card:hover {
    border-color: color-mix(in srgb, var(--sv-primary) 35%, transparent);
    box-shadow:
        0 14px 36px -12px color-mix(in srgb, var(--sv-primary) 22%, transparent),
        0 4px 14px -4px color-mix(in srgb, var(--sv-secondary) 14%, transparent);
}

/* Trust strip / microproof line below the hero on every page. Lets
   sites scatter the same reassurance copy without rewriting
   templates. (Shared with section-* template-parts when authors add
   `<p class="sv-microproof">…</p>`.) */
.sv-microproof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sv-text-secondary);
    font-size: 14px;
}
.sv-microproof i { color: #10b981; }

/* =====================================================================
   Referral Page
   ===================================================================== */
.sv-referral-hero {
    position: relative;
    background: linear-gradient(135deg, var(--sv-primary) 0%, var(--sv-secondary) 100%);
    padding: 100px 24px 70px;
    text-align: center;
    overflow: hidden;
}
.sv-referral-hero--image {
    background-size: cover;
    background-position: center;
}
.sv-referral-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--sv-primary) 70%, #000) 0%,
        color-mix(in srgb, var(--sv-secondary) 55%, #000) 100%
    );
}
.sv-referral-hero--image .sv-referral-hero-overlay {
    background: rgba(0,0,0,0.45);
}
.sv-referral-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.sv-referral-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
}
.sv-referral-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Grid */
.sv-referral-section { padding: 64px 24px 80px; }
.sv-referral-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 768px) {
    .sv-referral-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Form column */
.sv-referral-form-heading {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sv-primary);
    margin: 0 0 28px;
}
.sv-referral-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 24px;
}
.sv-referral-form fieldset legend {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sv-text-secondary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.sv-referral-field { margin-bottom: 12px; }
.sv-referral-field input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--sv-border);
    border-radius: 10px;
    font-size: 0.95rem;
    background: var(--sv-bg-card);
    color: var(--sv-text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.sv-referral-field input:focus {
    outline: none;
    border-color: var(--sv-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--sv-primary) 15%, transparent);
}
.sv-referral-submit {
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

/* Success / errors */
.sv-referral-success {
    text-align: center;
    padding: 48px 32px;
    background: var(--sv-bg-card);
    border: 1px solid var(--sv-border);
    border-radius: 16px;
}
.sv-referral-success-icon {
    font-size: 3rem;
    color: #10b981;
    display: block;
    margin-bottom: 16px;
}
.sv-referral-success h3 { margin: 0; font-size: 1.2rem; }
.sv-referral-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
}
.sv-referral-errors p {
    margin: 0 0 6px;
    font-size: 0.9rem;
    color: #b91c1c;
}
.sv-referral-errors p:last-child { margin-bottom: 0; }

/* Info column */
.sv-referral-company {
    background: var(--sv-bg-card);
    border: 1px solid var(--sv-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-bottom: 28px;
}
.sv-referral-logo {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    object-fit: contain;
}
.sv-referral-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sv-primary);
    margin: 0 0 20px;
}
.sv-referral-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--sv-text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.sv-referral-contact-item:hover { color: var(--sv-primary); }
.sv-referral-contact-item i { color: var(--sv-primary); }

.sv-referral-scheme {
    background: var(--sv-bg-card);
    border: 1px solid var(--sv-border);
    border-radius: 16px;
    padding: 28px 32px;
}
.sv-referral-scheme h3 {
    margin: 0 0 16px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sv-text-primary);
}
.sv-referral-scheme p {
    font-size: 0.95rem;
    color: var(--sv-text-secondary);
    line-height: 1.65;
    margin: 0 0 12px;
}
.sv-referral-scheme p:last-child { margin-bottom: 0; }

.sv-referral-rewards {
    display: flex;
    gap: 14px;
    margin: 20px 0 16px;
}
.sv-referral-reward-badge {
    flex: 1;
    border: 2px solid var(--sv-primary);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    color: var(--sv-primary);
}
.sv-referral-reward-badge--highlight {
    background: var(--sv-primary);
    color: #fff;
    border-color: var(--sv-primary);
}
.sv-referral-reward-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.sv-referral-reward-badge--highlight .sv-referral-reward-amount { color: #fff; }
.sv-referral-reward-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
}
.sv-referral-reward-note {
    font-size: 0.82rem !important;
    color: var(--sv-text-muted) !important;
    margin-top: 4px !important;
}

/* Side layout + background image
   The sv-hero-bg layer is already position:absolute/fixed in background mode;
   reuse those rules by adding sv-hero-has-bg to the section. The side layout
   content (.sv-hero-inner) sits in normal flow above it. */
.sv-hero-mode-side.sv-hero-has-bg {
    position: relative;
}
.sv-hero-mode-side.sv-hero-has-bg .sv-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.sv-hero-mode-side.sv-hero-has-bg .sv-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.sv-hero-mode-side.sv-hero-has-bg .sv-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, calc(var(--sv-hero-overlay, 0.4)));
}
/* Lift content above the bg image */
.sv-hero-mode-side.sv-hero-has-bg .sv-hero-inner {
    position: relative;
    z-index: 1;
}
/* Suppress coloured blobs — they clash with a real photo */
.sv-hero-mode-side.sv-hero-has-bg .sv-blob {
    opacity: 0.15;
}
/* Make headline, description and button text white over the photo */
.sv-hero-mode-side.sv-hero-has-bg .sv-hero-title,
.sv-hero-mode-side.sv-hero-has-bg .sv-hero-line,
.sv-hero-mode-side.sv-hero-has-bg .sv-hero-description,
.sv-hero-mode-side.sv-hero-has-bg .sv-hero-microproof,
.sv-hero-mode-side.sv-hero-has-bg .sv-eyebrow,
.sv-hero-mode-side.sv-hero-has-bg .sv-eyebrow-dot,
.sv-hero-mode-side.sv-hero-has-bg .sv-btn-ghost {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}
/* Apply the same legible white-stroke treatment to the highlight word */
.sv-hero-mode-side.sv-hero-has-bg .sv-hero-line-grad,
.sv-hero-mode-side.sv-hero-has-bg .sv-gradient-text {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
    text-shadow:
        0 0 2px rgba(0, 0, 0, 0.95),
        0 0 8px rgba(0, 0, 0, 0.8),
        0 3px 12px rgba(0, 0, 0, 0.7),
        0 8px 30px rgba(0, 0, 0, 0.5);
    animation: none !important;
}


   Reuses .sv-referral-* layout classes for the two-column grid,
   hero, and company card. Only payment-specific elements below.
   ===================================================================== */
.sv-payment-intro {
    font-size: 1rem;
    color: var(--sv-text-primary);
    line-height: 1.7;
    margin: 0 0 28px;
}

.sv-payment-btn-wrap {
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.sv-payment-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: 12px;
}
.sv-payment-btn i { font-size: 1.1rem; }

.sv-payment-info-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 2px solid var(--sv-primary);
    color: var(--sv-primary);
    background: transparent;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.sv-payment-info-btn:hover {
    background: var(--sv-primary);
    color: #fff;
}

.sv-payment-info {
    font-size: 0.95rem;
    color: var(--sv-text-secondary);
    line-height: 1.7;
    margin: 0 0 12px;
}
.sv-payment-info:last-child { margin-bottom: 0; }


/* ============================================================
   Sky View Cleaning — contact bar, intro SEO block, hero fade
   ============================================================ */

.sv-contact-bar {
    background: linear-gradient(135deg, var(--sv-primary) 0%, var(--sv-secondary) 100%);
    color: #fff;
    padding: 0;
}
.sv-contact-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.sv-contact-bar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 24px;
    color: #fff !important;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.18);
    transition: background 0.2s ease;
}
.sv-contact-bar-item:last-child { border-right: none; }
.sv-contact-bar-item:hover {
    background: rgba(255,255,255,0.1);
}
.sv-contact-bar-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,0.16);
    display: grid;
    place-items: center;
    font-size: 20px;
}
.sv-contact-bar-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sv-contact-bar-copy strong {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.sv-contact-bar-copy span {
    font-size: 0.92rem;
    line-height: 1.5;
    opacity: 0.95;
}
.sv-trustindex-line {
    background: var(--sv-bg-secondary);
    padding: 18px 16px;
    text-align: center;
}
@media (max-width: 900px) {
    .sv-contact-bar-inner { grid-template-columns: 1fr; }
    .sv-contact-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.18);
    }
    .sv-contact-bar-item:last-child { border-bottom: none; }
}

/* Intro SEO block */
.sv-intro-section { padding-top: 72px; padding-bottom: 72px; }
.sv-intro-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.35fr;
    gap: 28px;
    align-items: start;
}
.sv-intro-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 16px 40px -28px rgba(15, 23, 42, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sv-dark .sv-intro-card {
    background: var(--sv-bg-secondary);
    border-color: rgba(255,255,255,0.08);
}
.sv-intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -28px rgba(6, 147, 227, 0.45);
}
.sv-intro-card-image {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 16px;
    background: var(--sv-bg-secondary);
}
.sv-intro-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sv-intro-card h3 {
    margin: 0 0 10px;
    color: var(--sv-primary);
    font-size: 1.2rem;
}
.sv-intro-card p {
    margin: 0;
    color: var(--sv-text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}
.sv-intro-about {
    padding: 8px 4px 8px 12px;
}
.sv-intro-about-label {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--sv-text-secondary);
}
.sv-intro-about h2 {
    margin: 0 0 16px;
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    line-height: 1.25;
    color: var(--sv-text-primary);
}
.sv-intro-about p {
    margin: 0 0 22px;
    color: var(--sv-text-secondary);
    line-height: 1.75;
    font-size: 1rem;
}
@media (max-width: 1024px) {
    .sv-intro-grid { grid-template-columns: 1fr 1fr; }
    .sv-intro-about { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
    .sv-intro-grid { grid-template-columns: 1fr; }
}

/* Hero image — fade into copy on the left */
.sv-hero-media-fade {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    animation: none !important;
    aspect-ratio: 5 / 4;
}
.sv-hero-media-fade img {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 18%, #000 42%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 18%, #000 42%, #000 100%);
}
.sv-light .sv-hero-mode-side .sv-hero-media-fade {
    box-shadow: none;
}
@media (max-width: 900px) {
    .sv-hero-media-fade {
        aspect-ratio: 16 / 10;
        border-radius: 18px !important;
        overflow: hidden;
    }
    .sv-hero-media-fade img {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

/* ============================================================
   Sky View Cleaning — cinematic hero + pro service pages (v1.0.2)
   ============================================================ */

/* Full-height cinematic hero with quote widget on image */
.sv-hero.sv-hero-mode-side.sv-hero-has-bg {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 110px;
    padding-bottom: 48px;
}
.sv-hero.sv-hero-mode-side.sv-hero-has-bg .sv-hero-bg-image {
    object-position: center center;
    filter: saturate(1.05) contrast(1.05);
}
.sv-hero.sv-hero-mode-side.sv-hero-has-bg .sv-hero-bg-overlay {
    background: linear-gradient(
        105deg,
        rgba(10, 30, 48, 0.88) 0%,
        rgba(10, 58, 92, 0.72) 42%,
        rgba(11, 123, 192, 0.35) 100%
    ) !important;
    opacity: 1 !important;
}
.sv-hero.sv-hero-mode-side.sv-hero-has-bg .sv-hero-inner {
    align-items: center;
    gap: 40px;
}
.sv-hero.sv-hero-mode-side.sv-hero-has-bg .sv-hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
}
.sv-hero.sv-hero-mode-side.sv-hero-has-bg .sv-hero-description {
    font-size: 1.05rem;
    max-width: 34rem;
    color: rgba(255,255,255,0.88) !important;
}
.sv-hero.sv-hero-mode-side.sv-hero-has-bg .sv-btn-ghost {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.35);
    color: #fff !important;
    backdrop-filter: blur(8px);
}
.sv-hero.sv-hero-mode-side.sv-hero-has-bg .sv-btn-primary {
    box-shadow: 0 12px 32px rgba(11, 123, 192, 0.45);
}

.sv-hero-trustindex {
    margin-top: 22px;
    max-width: 420px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
}
.sv-hero-trustindex iframe,
.sv-hero-trustindex > div {
    max-width: 100%;
}

/* Glass quote widget on hero */
.sv-hero.sv-hero-mode-side.sv-hero-has-bg .sv-hero-media-widget > * {
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(255,255,255,0.55) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 40px 80px -30px rgba(0,0,0,0.55),
        0 12px 28px -12px rgba(10, 58, 92, 0.35) !important;
    border-radius: 24px !important;
}

/* Contact bar — deeper navy, less “flat Elementor blue” */
.sv-contact-bar {
    background: linear-gradient(135deg, #0A3A5C 0%, #0B7BC0 100%);
}
.sv-contact-bar-item {
    padding: 32px 28px;
}
.sv-contact-bar-icon {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
}

/* Intro cards — tighter / cooler */
.sv-intro-card {
    border-radius: 22px;
    overflow: hidden;
    padding: 0 0 20px;
}
.sv-intro-card-image {
    border-radius: 0;
    margin-bottom: 18px;
}
.sv-intro-card h3,
.sv-intro-card p {
    padding: 0 20px;
}
.sv-intro-about h2 .sv-gradient-text {
    background: linear-gradient(135deg, #0B7BC0, #38BDF8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- Pro service pages ---------- */
.sv-service-pro .sv-svc-hero {
    position: relative;
    min-height: clamp(380px, 52vh, 560px);
    display: flex;
    align-items: flex-end;
    padding: 140px 24px 56px;
    background: linear-gradient(135deg, #0A3A5C, #0B7BC0);
    overflow: hidden;
    color: #fff;
}
.sv-svc-hero-bg {
    position: absolute;
    inset: 0;
}
.sv-svc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sv-svc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(10,30,48,0.88) 0%, rgba(10,58,92,0.7) 55%, rgba(11,123,192,0.4) 100%);
}
.sv-svc-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.sv-svc-crumb {
    display: inline-block;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.sv-svc-crumb:hover { color: #fff; }
.sv-svc-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #fff;
    max-width: 18ch;
}
.sv-svc-hero-sub {
    margin: 0 0 28px;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    max-width: 40rem;
}
.sv-svc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.sv-svc-hero .sv-btn-ghost {
    color: #fff !important;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.08);
}

.sv-svc-body {
    padding: 72px 24px;
    background: var(--sv-bg-primary);
}
.sv-svc-body-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
}
.sv-svc-block + .sv-svc-block { margin-top: 40px; }
.sv-svc-block h2 {
    margin: 0 0 16px;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    color: var(--sv-text-primary);
    letter-spacing: -0.02em;
}
.sv-svc-prose p {
    margin: 0 0 1em;
    color: var(--sv-text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}
.sv-svc-prose p:last-child { margin-bottom: 0; }
.sv-svc-why {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.sv-svc-why li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--sv-bg-secondary);
    border: 1px solid rgba(15,23,42,0.06);
    color: var(--sv-text-secondary);
    line-height: 1.55;
}
.sv-svc-why-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--sv-primary) 15%, transparent);
    color: var(--sv-primary);
    display: grid;
    place-items: center;
    font-size: 12px;
    margin-top: 2px;
}
.sv-svc-closing {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--sv-text-primary);
    padding: 22px 24px;
    border-left: 4px solid var(--sv-primary);
    background: var(--sv-bg-secondary);
    border-radius: 0 16px 16px 0;
    margin: 0;
}

.sv-svc-aside {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 100px;
}
.sv-svc-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 18px 40px -28px rgba(15,23,42,0.35);
}
.sv-svc-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    color: var(--sv-text-primary);
}
.sv-svc-card p {
    margin: 0 0 18px;
    color: var(--sv-text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}
.sv-svc-card-muted h3:not(:first-child) { margin-top: 8px; }
.sv-svc-card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--sv-text-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(15,23,42,0.06);
}
.sv-svc-card-link:last-of-type { border-bottom: none; }
.sv-svc-card-link i { color: var(--sv-primary); }

.sv-svc-related {
    padding: 64px 24px 80px;
    background: var(--sv-bg-secondary);
}
.sv-svc-related-inner { max-width: 1100px; margin: 0 auto; }
.sv-svc-related h2 {
    margin: 0 0 28px;
    font-size: 1.8rem;
}
.sv-svc-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sv-svc-related-card {
    display: grid;
    grid-template-rows: 160px auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(15,23,42,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sv-svc-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px -24px rgba(11,123,192,0.45);
}
.sv-svc-related-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.sv-svc-related-card > div { padding: 16px 18px 20px; }
.sv-svc-related-card h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: var(--sv-primary);
}
.sv-svc-related-card p {
    margin: 0;
    color: var(--sv-text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 960px) {
    .sv-svc-body-grid { grid-template-columns: 1fr; }
    .sv-svc-aside { position: static; }
    .sv-svc-related-grid { grid-template-columns: 1fr; }
    .sv-hero.sv-hero-mode-side.sv-hero-has-bg {
        min-height: auto;
        padding-top: 100px;
    }
}

/* ============================================================
   Sky View Cleaning — white header, hero rotate, intro BA (v1.0.3)
   ============================================================ */

/* Solid white header for logo with white background */
.sv-light .sv-nav,
.sv-light .sv-nav.scrolled,
.sv-light .sv-nav.scrolled-down,
.sv-light .sv-nav.scrolled-up {
    background: #ffffff !important;
    opacity: 1;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}
.sv-light .sv-nav .sv-nav-menu a,
.sv-light .sv-nav .sv-logo-text {
    color: #0F172A;
}
.sv-light .sv-nav .sv-nav-menu a:hover {
    color: var(--sv-primary);
}

/* Slightly tighter cinematic hero */
.sv-hero.sv-hero-mode-side.sv-hero-has-bg {
    min-height: 92vh;
    min-height: 92dvh;
    padding-top: 96px;
    padding-bottom: 36px;
}

/* Rotating service line above Specialists */
.sv-hero-rotate {
    position: relative;
    height: 1.35em;
    margin: 0 0 8px;
    overflow: hidden;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
}
.sv-hero-rotate-item {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    white-space: nowrap;
}
.sv-hero-rotate-item.is-active {
    opacity: 1;
    transform: translateY(0);
}
.sv-hero.sv-hero-mode-side.sv-hero-has-bg .sv-hero-rotate {
    color: #7DD3FC;
}

/* Taller service card images */
.sv-service-image-box {
    height: 260px;
}
@media (max-width: 700px) {
    .sv-service-image-box { height: 220px; }
}

/* Intro rework — about band + tall BA features */
.sv-intro-section { padding-top: 80px; padding-bottom: 80px; }
.sv-intro-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    gap: 48px;
}
.sv-intro-about {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.7fr);
    gap: 36px;
    align-items: end;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.sv-intro-about-label {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--sv-secondary);
}
.sv-intro-about h2 {
    margin: 0 0 16px;
    font-size: clamp(1.6rem, 2.6vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--sv-text-primary);
    max-width: 22ch;
}
.sv-intro-about-copy > p:last-child {
    margin: 0;
    color: var(--sv-text-secondary);
    line-height: 1.75;
    font-size: 1.02rem;
    max-width: 62ch;
}
.sv-intro-about-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}
.sv-intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.sv-intro-feature {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px -30px rgba(15, 23, 42, 0.4);
}
.sv-intro-ba {
    position: relative;
    height: 340px;
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
    background: #0f172a;
}
.sv-intro-ba .sv-ba-after-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.sv-intro-ba .sv-ba-before {
    position: absolute;
    inset: 0;
    width: 52%;
    overflow: hidden;
}
.sv-intro-ba .sv-ba-before img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    display: block;
    pointer-events: none;
    max-width: none;
}
.sv-intro-ba .sv-ba-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 52%;
    width: 2px;
    background: rgba(255,255,255,0.95);
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}
.sv-ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #fff;
    color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.sv-ba-label {
    position: absolute;
    top: 14px;
    z-index: 4;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}
.sv-ba-label-before { left: 14px; background: rgba(15,23,42,0.7); }
.sv-ba-label-after { right: 14px; background: var(--sv-primary); }
.sv-intro-feature-body {
    padding: 22px 24px 26px;
}
.sv-intro-feature-body h3 {
    margin: 0 0 10px;
    color: var(--sv-primary);
    font-size: 1.25rem;
}
.sv-intro-feature-body p {
    margin: 0 0 16px;
    color: var(--sv-text-secondary);
    line-height: 1.65;
    font-size: 0.95rem;
}
.sv-intro-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sv-secondary);
    font-weight: 700;
    text-decoration: none;
}
.sv-intro-feature-link:hover { color: var(--sv-primary); }

@media (max-width: 900px) {
    .sv-intro-about { grid-template-columns: 1fr; }
    .sv-intro-about-cta { flex-direction: row; flex-wrap: wrap; }
    .sv-intro-features { grid-template-columns: 1fr; }
    .sv-intro-ba { height: 280px; }
}

/* ============================================================
   Sky View Cleaning — white footer, logo, service BA (v1.0.4)
   ============================================================ */

.sv-light .sv-footer,
.sv-footer {
    background: #ffffff !important;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: #0F172A;
}
.sv-light .sv-footer h4,
.sv-footer h4 { color: #0F172A; }
.sv-light .sv-footer-brand p,
.sv-light .sv-footer-links a,
.sv-light .sv-footer-bottom p,
.sv-footer-brand p,
.sv-footer-links a,
.sv-footer-bottom p {
    color: #475569;
    text-decoration: none !important;
}
.sv-footer-links a:hover { color: var(--sv-primary); text-decoration: none !important; }
.sv-footer-bottom { border-top-color: rgba(15, 23, 42, 0.08); }

/* Mobile: centred logo — sizes from Theme Settings CSS vars (resizable).
   On scroll, logo + bar + burger all shrink together. */
@media (max-width: 768px) {
    .sv-nav {
        padding: 10px 14px;
        transition: padding 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
    }
    .sv-nav .sv-nav-inner {
        justify-content: center !important;
        position: relative;
        min-height: var(--sv-nav-h-mobile, 78px);
        transition: min-height 0.28s ease;
    }
    .sv-nav .sv-logo {
        margin: 0 auto;
    }
    .sv-nav .sv-logo-img {
        width: var(--sv-logo-w-mobile, 230px) !important;
        max-height: var(--sv-logo-h-mobile, 78px) !important;
        height: auto !important;
        transition: width 0.28s ease, max-height 0.28s ease;
    }
    .sv-nav .sv-mobile-toggle {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        transition: transform 0.28s ease;
    }
    .sv-nav .sv-burger {
        width: 30px;
        height: 22px;
        transition: width 0.28s ease, height 0.28s ease;
    }
    .sv-nav .sv-nav-cta { display: none; }

    /* Scrolled: shrink logo, bar height, and menu button together */
    .sv-nav.scrolled,
    .sv-nav.sv-nav--shrink.scrolled,
    .sv-nav.sv-nav--shrink.scrolled-down {
        padding: 4px 14px;
    }
    .sv-nav.scrolled .sv-nav-inner,
    .sv-nav.sv-nav--shrink.scrolled .sv-nav-inner,
    .sv-nav.sv-nav--shrink.scrolled-down .sv-nav-inner {
        min-height: var(--sv-nav-h-mobile-sm, 56px);
    }
    .sv-nav.scrolled .sv-logo-img,
    .sv-nav.sv-nav--shrink.scrolled .sv-logo-img,
    .sv-nav.sv-nav--shrink.scrolled-down .sv-logo-img {
        width: var(--sv-logo-w-mobile-sm, 160px) !important;
        max-height: var(--sv-logo-h-mobile-sm, 54px) !important;
    }
    .sv-nav.scrolled .sv-burger,
    .sv-nav.sv-nav--shrink.scrolled .sv-burger,
    .sv-nav.sv-nav--shrink.scrolled-down .sv-burger {
        width: 24px;
        height: 17px;
    }
}

/* Service BA cards */
.sv-service-card.has-ba {
    padding: 0;
    overflow: hidden;
    max-width: 380px;
}
.sv-service-ba {
    position: relative;
    height: 280px;
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
    background: #0f172a;
}
.sv-service-ba .sv-ba-after-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.sv-service-ba .sv-ba-before {
    position: absolute;
    inset: 0;
    width: 52%;
    overflow: hidden;
}
.sv-service-ba .sv-ba-before img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    max-width: none;
    pointer-events: none;
}
.sv-service-ba .sv-ba-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 52%;
    width: 2px;
    background: rgba(255,255,255,0.95);
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}
.sv-service-card-body {
    padding: 18px 22px 22px;
}
.sv-service-tagline {
    margin: 0 0 6px !important;
    font-size: 0.78rem !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    color: var(--sv-secondary) !important;
}
.sv-service-card.has-image .sv-service-card-body h3,
.sv-service-card.has-image .sv-service-card-body p {
    padding: 0;
}
.sv-service-card.has-image .sv-service-card-body h3 {
    margin: 0 0 8px;
    color: var(--sv-primary);
}
.sv-service-card.has-image .sv-service-card-body > p {
    margin: 0 0 14px;
}

/* ============================================================
   Sky View Cleaning — areas + postcode checker (v1.0.5)
   ============================================================ */
.sv-areas-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}
.sv-postcode-checker {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 28px 28px 24px;
    margin-bottom: 32px;
    box-shadow: 0 16px 40px -30px rgba(15, 23, 42, 0.35);
}
.sv-postcode-checker-copy h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    color: var(--sv-text-primary);
}
.sv-postcode-checker-copy p {
    margin: 0 0 20px;
    color: var(--sv-text-secondary);
    line-height: 1.6;
}
.sv-postcode-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 480px;
}
.sv-postcode-form input {
    flex: 1 1 200px;
    min-width: 0;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: var(--sv-bg-secondary);
    color: var(--sv-text-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.sv-postcode-form input:focus {
    outline: 2px solid color-mix(in srgb, var(--sv-primary) 45%, transparent);
    border-color: var(--sv-primary);
}
.sv-postcode-result {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 16px;
}
.sv-postcode-result.is-success {
    background: color-mix(in srgb, #10b981 12%, #fff);
    border: 1px solid color-mix(in srgb, #10b981 35%, transparent);
}
.sv-postcode-result.is-fail {
    background: color-mix(in srgb, #ef4444 10%, #fff);
    border: 1px solid color-mix(in srgb, #ef4444 30%, transparent);
}
.sv-postcode-result .sv-postcode-msg {
    margin: 0 0 8px;
    font-weight: 700;
    color: var(--sv-text-primary);
}
.sv-postcode-result .sv-postcode-sub {
    margin: 0 0 16px;
    color: var(--sv-text-secondary);
}
.sv-postcode-result .sv-btn { margin-top: 4px; }
.sv-postcode-result.is-success .sv-postcode-msg { color: #047857; }
.sv-postcode-result.is-fail .sv-postcode-msg { color: #b91c1c; }

.sv-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
.sv-area-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    font-weight: 600;
    color: var(--sv-text-primary);
}
.sv-area-tag i { color: var(--sv-primary); }
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}


/* ============================================================
   Sky View Cleaning — gallery page + photo grid (v1.0.6)
   ============================================================ */
.sv-gallery-hero {
    padding: 140px 24px 56px;
    text-align: center;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, color-mix(in srgb, var(--sv-primary) 16%, transparent), transparent 70%),
        var(--sv-bg-primary);
}
.sv-gallery-hero-inner { max-width: 760px; margin: 0 auto; }
.sv-gallery-eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--sv-primary) 12%, #fff);
    color: var(--sv-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.sv-gallery-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.1;
}
.sv-gallery-hero-copy {
    margin: 0 auto 28px;
    max-width: 560px;
    color: var(--sv-text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
}
.sv-gallery-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.sv-gallery-section .sv-gallery-grid,
.sv-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.sv-gallery-item {
    position: relative;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #0f172a;
    box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.45);
}
.sv-gallery-item.is-wide {
    grid-column: span 2;
}
.sv-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}
.sv-gallery-item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px 16px 14px;
    background: linear-gradient(to top, rgba(10, 30, 48, 0.85), transparent);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.sv-gallery-item:hover img { transform: scale(1.05); }
.sv-gallery-item:hover figcaption,
.sv-gallery-item:focus-within figcaption {
    opacity: 1;
    transform: translateY(0);
}

.sv-gallery-cta { padding-top: 24px; }
.sv-gallery-cta-box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px -36px rgba(15, 23, 42, 0.4);
}
.sv-gallery-cta-box h2 { margin: 0 0 12px; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.sv-gallery-cta-box p {
    margin: 0 0 24px;
    color: var(--sv-text-secondary);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .sv-gallery-section .sv-gallery-grid,
    .sv-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-gallery-item.is-wide { grid-column: span 1; }
}
@media (max-width: 560px) {
    .sv-gallery-hero { padding: 110px 16px 40px; }
    .sv-gallery-section .sv-gallery-grid,
    .sv-gallery-grid { grid-template-columns: 1fr; gap: 12px; padding: 0 16px; }
    .sv-gallery-item figcaption { opacity: 1; transform: none; }
}


/* ============================================================
   Sky View Cleaning — reviews page (v1.0.7)
   ============================================================ */
.sv-reviews-hero {
    padding: 140px 24px 48px;
    text-align: center;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, color-mix(in srgb, var(--sv-primary) 16%, transparent), transparent 70%),
        var(--sv-bg-primary);
}
.sv-reviews-hero-inner { max-width: 760px; margin: 0 auto; }
.sv-reviews-eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--sv-primary) 12%, #fff);
    color: var(--sv-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.sv-reviews-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.1;
}
.sv-reviews-hero-copy {
    margin: 0 auto 28px;
    max-width: 560px;
    color: var(--sv-text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
}
.sv-reviews-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.sv-reviews-embed-section { padding-top: 8px; }
.sv-reviews-embed {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    min-height: 200px;
}
.sv-reviews-empty {
    text-align: center;
    color: var(--sv-text-secondary);
    padding: 48px 16px;
}
.sv-reviews-cta-box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px -36px rgba(15, 23, 42, 0.4);
}
.sv-reviews-cta-box h2 { margin: 0 0 12px; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.sv-reviews-cta-box p {
    margin: 0 0 24px;
    color: var(--sv-text-secondary);
    line-height: 1.65;
}
@media (max-width: 560px) {
    .sv-reviews-hero { padding: 110px 16px 36px; }
}

/* ── Intro feature media (no before/after slider) ─────────────── */
.sv-intro-feature-media {
    display: block;
    height: 260px;
    overflow: hidden;
    background: #e5e7eb;
}
.sv-intro-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.sv-intro-feature:hover .sv-intro-feature-media img {
    transform: scale(1.04);
}
@media (max-width: 768px) {
    .sv-intro-feature-media { height: 220px; }
}

/* ── Why Choose Us (Sky View split layout) ─────────────────────── */
.sv-wcu {
    padding-top: 72px;
    padding-bottom: 72px;
}
.sv-wcu-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: center;
}
.sv-wcu-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}
.sv-wcu-label-mark {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background: #74fcfd;
    box-shadow: 0 0 0 3px rgba(116, 252, 253, 0.25);
}
.sv-wcu-title {
    margin: 0 0 18px;
    font-size: clamp(1.85rem, 3.4vw, 2.55rem);
    line-height: 1.15;
    color: #111827;
    font-weight: 800;
}
.sv-wcu-title-accent {
    display: inline;
    color: #111827;
}
.sv-wcu-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 28px;
    color: #74fcfd;
}
.sv-wcu-divider-line {
    flex: 1;
    height: 0;
    border-top: 2px dashed #d1d5db;
}
.sv-wcu-divider i {
    font-size: 18px;
}
.sv-wcu-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.sv-wcu-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
}
.sv-wcu-icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: #414957;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.sv-wcu-item h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
}
.sv-wcu-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.55;
    font-size: 0.98rem;
}
.sv-wcu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    padding: 16px 22px;
    border-radius: 6px;
    background: #74fcfd;
    color: #111827 !important;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: filter 0.15s ease, transform 0.15s ease;
}
.sv-wcu-cta:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
}
.sv-wcu-media {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sv-wcu-media-main {
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e5e7eb;
}
.sv-wcu-media-main img,
.sv-wcu-media-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sv-wcu-media-row {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 14px;
    min-height: 180px;
}
.sv-wcu-stat {
    background: #414957;
    color: #fff;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 12px;
    gap: 6px;
}
.sv-wcu-stat strong {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 800;
}
.sv-wcu-stat span {
    font-size: 1.05rem;
    font-weight: 600;
}
.sv-wcu-media-side {
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #e5e7eb;
    min-height: 180px;
}
@media (max-width: 960px) {
    .sv-wcu-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .sv-wcu-cta { max-width: none; }
}
@media (max-width: 560px) {
    .sv-wcu-media-row {
        grid-template-columns: 1fr;
    }
    .sv-wcu-stat { min-height: 140px; }
}

/* ── Why icons (professionals card grid) ──────────────────────── */
.sv-why-icons .sv-section-header {
    margin-bottom: 40px;
}
.sv-why-icons-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.sv-why-icon-card {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 28px 24px 26px;
    box-shadow: 0 10px 28px -22px rgba(15, 23, 42, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sv-why-icon-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--sv-primary) 40%, transparent);
    box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.35);
}
.sv-why-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 18px;
}
.sv-why-icon-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--sv-text-primary);
}
.sv-why-icon-card p {
    margin: 0;
    color: var(--sv-text-secondary);
    line-height: 1.55;
    font-size: 0.98rem;
}
@media (max-width: 900px) {
    .sv-why-icons-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
    .sv-why-icons-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   Dual header (live Sky View style)
   Floating charcoal nav over the hero (half-overlap)
   ========================================== */
.sv-header-dual {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    background: transparent; /* side gaps must show the hero behind the floating nav */
    display: block;
    box-sizing: border-box;
    overflow: visible;
}
.sv-dual-top {
    --sv-dual-overlap: 30px; /* ~half of dual nav bar height (Clear View tall bar) */
    width: 100%;
    background: #fff;
    border-bottom: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    /* Room for the menu's top half to sit under the white (connection) */
    padding-bottom: var(--sv-dual-overlap);
    margin-bottom: calc(var(--sv-dual-overlap) * -1);
    transition: background 0.28s ease, backdrop-filter 0.28s ease;
}
/*
 * On scroll — iOS-style frosted glass (vibrancy).
 * Needs a semi-opaque wash + strong blur + saturate, or it just looks flat.
 */
.sv-header-dual.is-scrolled .sv-dual-top {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.28) inset,
                0 6px 18px rgba(15, 23, 42, 0.05);
}
/* Keep contrast readable on glass */
.sv-header-dual.is-scrolled .sv-dual-email,
.sv-header-dual.is-scrolled .sv-dual-social a {
    color: #1e293b;
    border-color: rgba(30, 41, 59, 0.12);
    background: rgba(255, 255, 255, 0.72);
}
.sv-header-dual.is-scrolled .sv-dual-email i {
    background: #000000;
    color: var(--sv-accent, #74fcfd);
}
.sv-header-dual.is-scrolled .sv-dual-social a:hover {
    background: #000000;
    border-color: #000000;
    color: #fff;
}
.sv-header-dual.is-scrolled .sv-dual-brand-text strong {
    color: #0f172a;
}
.sv-header-dual.is-scrolled .sv-dual-brand-text em {
    color: #475569;
}
.sv-dual-top-inner {
    position: relative;
    z-index: 1;
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 12px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    transition: padding 0.28s ease;
    box-sizing: border-box;
}
.sv-dual-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-width: 0;
    justify-self: start;
    transition: opacity 0.28s ease, transform 0.28s ease;
}
/* Desktop: fade social / email chips away once the header compacts */
@media (min-width: 969px) {
    .sv-header-dual.is-scrolled .sv-dual-left {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
    }
}
.sv-dual-social {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sv-dual-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(65, 73, 87, 0.1);
    background: #f1f5f9;
    color: #414957;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.sv-dual-social a:hover {
    background: #000000;
    border-color: #000000;
    color: #fff;
    opacity: 1;
    transform: translateY(-1px);
}
.sv-dual-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #414957;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 12px 6px 6px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid rgba(65, 73, 87, 0.1);
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.sv-dual-email i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: var(--sv-accent, #74fcfd);
    font-size: 12px;
    flex-shrink: 0;
}
.sv-dual-email:hover {
    color: #0f172a;
    border-color: rgba(65, 73, 87, 0.18);
    background: #fff;
    transform: translateY(-1px);
}
.sv-dual-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
}
.sv-dual-brand .sv-logo-img {
    width: var(--sv-logo-w-desktop, 200px);
    max-height: var(--sv-logo-h-desktop, 80px);
    height: auto;
    object-fit: contain;
}
.sv-dual-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sv-dual-brand-text strong {
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111827;
    font-weight: 800;
}
.sv-dual-brand-text em {
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 500;
}
.sv-dual-right {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    justify-self: end;
    align-self: center;
    width: max-content;
    margin-left: auto;
    gap: 6px;
}
/* Portal (optional) + Instant Quote — accent CTA */
.sv-dual-right .sv-dual-cta,
.sv-dual-right .sv-dual-portal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;
    line-height: 1.2;
    box-sizing: border-box;
}
.sv-dual-right .sv-dual-cta i,
.sv-dual-right .sv-dual-portal i {
    font-size: 13px;
    line-height: 1;
}
.sv-dual-right .sv-dual-cta {
    background: var(--sv-accent, #74fcfd);
    color: #111827 !important;
    border: 1px solid var(--sv-accent, #74fcfd);
    transition: filter 0.15s ease, transform 0.15s ease;
}
.sv-dual-right .sv-dual-cta:hover {
    filter: brightness(1.06);
    color: #111827 !important;
    transform: translateY(-1px);
}
.sv-dual-right .sv-dual-portal {
    border: 1px solid rgba(65, 73, 87, 0.22);
    color: #414957 !important;
    background: #fff;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.sv-dual-right .sv-dual-portal i { color: inherit; }
.sv-dual-right .sv-dual-portal:hover {
    background: color-mix(in srgb, var(--sv-primary) 8%, #fff);
    border-color: color-mix(in srgb, var(--sv-primary) 35%, transparent);
    color: var(--sv-primary, #000000) !important;
}
/* Keep legacy single-class CTA usable on mobile bar */
.sv-dual-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sv-accent, #74fcfd);
    color: #111827 !important;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 6px;
    padding: 10px 16px;
    transition: filter 0.15s ease;
}
.sv-dual-cta:hover { filter: brightness(1.05); color: #111827 !important; }
.sv-dual-portal { display: none; }
.sv-dual-mobile-bar { display: none; width: 100%; box-sizing: border-box; }

/*
 * Floating nav — same content width as the white top bar (.sv-dual-top-inner).
 * Not viewport edge-to-edge. Accent line is on the bar itself so lengths match.
 */
.sv-dual-nav-shell {
    position: relative;
    z-index: 3;
    width: 80%; /* match .sv-dual-top-inner — Clear View tall bar width */
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    overflow: visible;
    /* Pull the hero up so it sits behind the lower half of the bar */
    margin-bottom: -30px;
    transition:
        transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
        opacity 0.35s ease,
        margin-bottom 0.45s cubic-bezier(0.32, 0.72, 0, 1);
    will-change: transform, opacity;
}
/* White only behind the menu (same width) — not a viewport-wide strange bar */
.sv-dual-nav-shell::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 30px; /* top half of menu — connection into white */
    background: #fff;
    border-radius: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.sv-dual-nav {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 60px; /* thicker dual menu bar — Clear View look */
    background: #000000; /* brand: black + aqua accent */
    position: relative;
    z-index: 1;
    border-radius: 0;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
    border-bottom: 2px solid var(--sv-accent, #74fcfd);
    transition: box-shadow 0.28s ease;
    overflow: visible;
}
/*
 * While scrolling: menu slides fully away; only a cyan line remains
 * under the white top. When scroll stops, .is-nav-tucked is removed
 * and the floating menu slides back down.
 */
.sv-header-dual.is-nav-tucked .sv-dual-top {
    --sv-dual-overlap: 0px;
    padding-bottom: 0;
    margin-bottom: 0;
    transition: background 0.35s ease, backdrop-filter 0.35s ease,
                padding-bottom 0.45s cubic-bezier(0.32, 0.72, 0, 1),
                margin-bottom 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
/* Only the cyan line remains — same width as the floating menu */
.sv-header-dual.is-nav-tucked .sv-dual-top::after {
    content: '';
    display: block;
    width: min(1100px, 80%);
    max-width: 100%;
    height: 2px;
    margin: 0 auto;
    background: var(--sv-accent, #74fcfd);
    border-radius: 1px;
    opacity: 0;
    animation: sv-dual-line-in 0.35s ease 0.12s forwards;
}
@keyframes sv-dual-line-in {
    from { opacity: 0; transform: scaleX(0.92); }
    to   { opacity: 1; transform: scaleX(1); }
}
.sv-header-dual.is-nav-tucked .sv-dual-nav-shell {
    transform: translateY(calc(-100% - 8px));
    opacity: 0;
    margin-bottom: 0;
    pointer-events: none;
}
.sv-header-dual.is-nav-tucked .sv-dual-nav {
    box-shadow: none;
}
.sv-header-dual.is-nav-tucked .sv-dual-nav-shell::before {
    opacity: 0;
    transition: opacity 0.2s ease;
}
.sv-dual-nav-inner {
    width: 100%;
    margin: 0;
    padding: 0 10px;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    box-sizing: border-box;
    background: transparent;
    min-height: 60px;
    overflow: visible;
}
.sv-header-dual .sv-nav-menu {
    width: 100% !important;
    flex: 1 1 auto;
    gap: 0 !important;
    position: relative;
    z-index: 5;
    display: flex !important;
    justify-content: space-between !important;
    align-items: stretch;
    min-height: 60px;
}
.sv-header-dual .sv-nav-menu > li {
    position: relative;
    z-index: 6;
    flex: 1 1 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-width: 0;
}
/*
 * Tall uppercase dual bar — Clear View look.
 * !important beats classic pill rules if they leak.
 */
.sv-header-dual .sv-nav-menu > li > a {
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 0 8px !important;
    width: 100% !important;
    min-height: 60px !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px;
    position: relative;
    opacity: 0.95;
    transition: opacity 0.15s ease, color 0.15s ease, background 0.15s ease !important;
    white-space: nowrap;
}
.sv-header-dual .sv-nav-menu > li > a:hover,
.sv-header-dual .sv-nav-menu > li.sv-nav-current > a,
.sv-header-dual .sv-nav-menu > li.is-mega-open > a,
.sv-header-dual .sv-nav-menu > li.sv-has-dropdown:hover > a {
    color: #fff !important;
    opacity: 1;
    background: transparent !important;
    box-shadow: none !important;
}
/* No underlines under dual nav items — accent line is on the bar itself */
.sv-header-dual .sv-nav-menu > li > a {
    text-decoration: none !important;
}
.sv-header-dual .sv-nav-menu > li > a::after,
.sv-header-dual .sv-nav-menu > li::after {
    content: none !important;
    display: none !important;
    background: none !important;
}
.sv-header-dual .sv-nav-menu > li > a .sv-dd-arrow {
    stroke: #fff;
    width: 10px;
    height: 6px;
}
/* Mega: same width as the floating navy bar (Clear View) */
.sv-header-dual .sv-dual-nav .sv-nav-menu li.sv-has-dropdown {
    position: static;
}
.sv-header-dual .sv-mega {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-left: 0 !important;
    max-width: none !important;
    z-index: 80;
    padding: 8px 0 0 !important;
    box-sizing: border-box;
}
.sv-header-dual .sv-mega-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 0 18px 18px !important;
    box-sizing: border-box;
    background: #fff !important;
    border: 1px solid rgba(65, 73, 87, 0.12) !important;
    border-top: 0 !important;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16) !important;
    overflow: hidden;
}
.sv-header-dual .sv-mega--payments .sv-mega-inner--payments,
.sv-header-dual .sv-mega-inner--contact {
    max-width: none !important;
    width: 100% !important;
    min-width: 0 !important;
}
/* Don't tuck the nav while mega is open */
.sv-header-dual.is-nav-tucked:has(.sv-has-dropdown.is-mega-open) .sv-dual-nav-shell,
.sv-header-dual.is-nav-tucked:has(.sv-has-dropdown:hover) .sv-dual-nav-shell,
.sv-header-dual.is-nav-tucked:has(.sv-has-dropdown:focus-within) .sv-dual-nav-shell {
    transform: none;
}
/* Hover bridge only fills the gap under the bar — never overlaps sibling links */
.sv-header-dual .sv-mega::before {
    height: 10px;
}
.sv-header-dual .sv-nav-menu li.sv-has-dropdown::after {
    display: none; /* full-width bridge blocked Home / Contact / DD */
}
.sv-dual-features {
    display: none;
    background: #000000;
    color: #fff;
    padding: 10px 14px;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.sv-dual-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.sv-dual-features span i {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #74fcfd;
    display: inline-block;
}

/*
 * Hero slides up under the floating nav (half-overlap).
 * Extra top padding clears the overlapping half of the bar + content breathing room.
 */
body.sv-header-dual .sv-hero,
body.sv-header-dual .sv-hero.sv-hero-mode-side.sv-hero-has-bg,
body.sv-header-dual .sv-hero.sv-hero-mode-background {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: clamp(56px, 8vh, 88px);
}

/* Ensure page can always scroll with dual header */
body.sv-header-dual {
    overflow-x: hidden;
    overflow-y: auto !important;
    height: auto !important;
    max-height: none !important;
}

@media (max-width: 968px) {
    .sv-dual-top {
        --sv-dual-overlap: 0px;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    /* Desktop tuck accent must never show above the mobile Instant Quote bar */
    .sv-header-dual.is-nav-tucked .sv-dual-top::after {
        display: none !important;
        content: none !important;
        animation: none !important;
    }
    .sv-header-dual.is-nav-tucked .sv-dual-nav-shell {
        transform: none; /* no tuck on mobile — desktop floating nav only */
        opacity: 1;
        pointer-events: auto;
    }
    /* Full-width bar: logo centered, social chips pinned to true left edge */
    .sv-dual-top-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 12px 16px;
        position: relative;
        transition: padding 0.3s ease;
        box-sizing: border-box;
    }
    .sv-dual-brand {
        justify-self: center;
        grid-column: 1;
        margin: 0 auto;
    }
    .sv-dual-brand .sv-logo-img {
        width: min(var(--sv-logo-w-mobile, 260px), 70vw);
        max-height: var(--sv-logo-h-mobile, 88px);
        transition: width 0.3s ease, max-height 0.3s ease;
    }
    .sv-dual-left {
        position: absolute;
        left: 12px;
        right: auto;
        top: 50%;
        transform: translateY(-50%);
        gap: 6px;
        z-index: 2;
        width: auto;
        max-width: none;
        margin: 0;
        padding: 0;
        justify-self: start;
        justify-content: flex-start;
        transition: opacity 0.28s ease, transform 0.28s ease;
    }
    .sv-dual-social {
        justify-content: flex-start;
        gap: 6px;
    }
    .sv-dual-left .sv-dual-social a {
        width: 32px;
        height: 32px;
        font-size: 13px;
        border-radius: 9px;
    }
    .sv-dual-email { display: none; }
    .sv-dual-right,
    .sv-dual-right .sv-dual-cta--desktop,
    .sv-dual-cta--desktop {
        display: none !important;
    }
    .sv-dual-portal { display: none !important; }
    /* Fade social chips away once the header compacts on scroll */
    .sv-header-dual.is-scrolled .sv-dual-left {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-50%) translateY(-6px);
    }
    .sv-dual-nav-shell {
        display: none !important;
        margin-bottom: 0;
    }
    .sv-dual-mobile-bar {
        display: flex;
        align-items: stretch;
        gap: 0;
        width: 100%;
        background: #000000;
        position: relative;
        z-index: 3;
        transition: min-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
    }
    .sv-dual-cta--mobile {
        flex: 1;
        border-radius: 0;
        padding: 12px 14px;
        font-size: 12px;
        letter-spacing: 0.05em;
        transition: padding 0.3s ease, font-size 0.3s ease;
    }
    .sv-dual-burger {
        display: inline-flex !important;
        width: 52px;
        height: auto;
        min-height: 44px;
        margin: 0;
        border-radius: 0;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-left: 0;
        background: #000000;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: width 0.3s ease, min-height 0.3s ease;
    }
    .sv-dual-burger .sv-burger span {
        background: #fff;
    }
    .sv-dual-features {
        display: flex;
        width: 100%;
        position: relative;
        z-index: 2;
        max-height: 48px;
        overflow: hidden;
        opacity: 1;
        transition: max-height 0.35s cubic-bezier(0.32, 0.72, 0, 1),
                    opacity 0.25s ease,
                    padding 0.35s ease;
    }

    /* Mobile scroll: hide features strip + compact quote/menu bar */
    .sv-header-dual.is-scrolled .sv-dual-features {
        max-height: 0;
        opacity: 0;
        padding-top: 0;
        padding-bottom: 0;
        pointer-events: none;
    }
    .sv-header-dual.is-scrolled .sv-dual-top-inner {
        padding: 8px 16px;
    }
    .sv-header-dual.is-scrolled .sv-dual-brand .sv-logo-img {
        width: min(var(--sv-logo-w-mobile-sm, 200px), 58vw);
        max-height: var(--sv-logo-h-mobile-sm, 64px);
    }
    .sv-header-dual.is-scrolled .sv-dual-cta--mobile {
        padding: 8px 12px;
        font-size: 11px;
    }
    .sv-header-dual.is-scrolled .sv-dual-burger {
        width: 44px;
        min-height: 36px;
    }

    /* Hide sticky quote/burger bar while the drawer menu is open */
    body.sv-mobile-menu-open .sv-dual-mobile-bar {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
    }
    body.sv-mobile-menu-open .sv-header-dual {
        z-index: 1;
    }

    body.sv-header-dual .sv-hero,
    body.sv-header-dual .sv-hero.sv-hero-mode-side.sv-hero-has-bg,
    body.sv-header-dual .sv-hero.sv-hero-mode-background {
        padding-top: 28px;
    }
}
/* Desktop dual: shrink logo on scroll (same CSS vars as classic) */
@media (min-width: 969px) {
    .sv-header-dual.is-scrolled .sv-dual-top-inner {
        padding: 12px 24px 10px;
    }
    .sv-header-dual.is-scrolled .sv-dual-brand .sv-logo-img {
        width: var(--sv-logo-w-desktop-sm, 156px);
        max-height: var(--sv-logo-h-desktop-sm, 62px);
        transition: width 0.28s ease, max-height 0.28s ease;
    }
}

@media (min-width: 969px) {
    .sv-header-dual .sv-mobile-toggle { display: none !important; }
    .sv-header-dual .sv-desktop-menu { display: flex !important; }
}

/* ═══════════════════════════════════════════════════════════
   Classic utility topbar + Clear View–style nav (height/font/pills)
   + Contact/Payments megas + header clearance
   ═══════════════════════════════════════════════════════════ */

/* Contact / Payments megas — full-width panels like Services (Clear View) */
.sv-nav-menu li.sv-has-contact-mega,
.sv-nav-menu li.sv-has-payments-mega {
    position: static;
}
.sv-nav-menu li.sv-has-contact-mega::after,
.sv-nav-menu li.sv-has-payments-mega::after {
    /* keep a short hover bridge under the bar only */
    height: 8px;
}
.sv-mega--payments .sv-mega-inner--payments {
    display: block !important;
    grid-template-columns: none !important;
    width: 100%;
    max-width: 1100px;
    min-width: 0;
    padding: 22px !important;
    margin: 0 auto !important;
    box-sizing: border-box;
}
.sv-mega--payments .sv-mega-contact-list {
    gap: 10px;
    max-width: 720px;
}

.sv-mega-inner--contact {
    grid-template-columns: minmax(280px, 1fr) 260px !important;
    align-items: stretch;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto !important;
    box-sizing: border-box;
}
.sv-mega-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}
.sv-mega-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    text-decoration: none !important;
    color: inherit !important;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.sv-mega-contact-row:hover {
    border-color: color-mix(in srgb, var(--sv-primary) 35%, transparent);
    background: #fff;
    transform: translateY(-1px);
}
.sv-mega-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sv-primary, #000000);
    color: #fff;
    font-size: 16px;
}
.sv-mega-contact-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}
.sv-mega-contact-copy strong {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}
.sv-mega-contact-copy span {
    font-size: 13px;
    color: #64748b;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sv-mega-contact-go {
    color: #94a3b8;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}
.sv-mega-contact-row:hover .sv-mega-contact-go {
    color: var(--sv-primary, #000000);
}
.sv-mega-promo--contact .sv-mega-promo-btn { gap: 8px; }
.sv-mega-promo--contact .sv-mega-promo-btn i { font-size: 12px; }

.sv-mobile-mega--contact,
.sv-mobile-mega--payments { padding: 8px 4px 4px; }
.sv-mega-contact-list--mobile { gap: 8px; }
.sv-mega-contact-list--mobile .sv-mega-contact-row {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}
.sv-mega-contact-list--mobile .sv-mega-contact-copy strong { color: #fff; }
.sv-mega-contact-list--mobile .sv-mega-contact-copy span { color: rgba(255, 255, 255, 0.7); }
.sv-mega-contact-list--mobile .sv-mega-contact-go { color: rgba(255, 255, 255, 0.45); }

/* Light-mode mobile contact rows */
.sv-light .sv-mega-contact-list--mobile .sv-mega-contact-row {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
}
.sv-light .sv-mega-contact-list--mobile .sv-mega-contact-copy strong { color: #0f172a; }
.sv-light .sv-mega-contact-list--mobile .sv-mega-contact-copy span { color: #64748b; }
.sv-light .sv-mega-contact-list--mobile .sv-mega-contact-go { color: #94a3b8; }

html { scroll-padding-top: 120px; }
body.admin-bar.sv-header-classic .sv-topbar { top: 32px; }
body.admin-bar.sv-header-classic .sv-nav { top: 74px !important; }

/* Utility top bar */
.sv-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    background: linear-gradient(90deg, var(--sv-secondary, #111827) 0%, var(--sv-primary, #000000) 55%, var(--sv-secondary, #111827) 100%);
    color: #fff;
    font-size: 13px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.sv-topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 40px;
    padding: 6px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.sv-topbar-left,
.sv-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 28px;
}
.sv-topbar a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}
.sv-topbar a:hover { color: #fff; }
.sv-topbar-icon {
    width: 28px; height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
}
.sv-topbar-icon:hover {
    background: color-mix(in srgb, var(--sv-accent, #EB9328) 90%, transparent);
    border-color: transparent;
    transform: translateY(-1px);
}
.sv-topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.01em;
    line-height: 1;
}
.sv-topbar-phone i { color: var(--sv-accent, #74FCFD); }
.sv-topbar-portal {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 5px 12px 5px 8px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.22) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
}
.sv-topbar-portal i {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: var(--sv-accent, #74FCFD) !important;
    color: var(--sv-secondary, #111827) !important;
    font-size: 12px !important;
    line-height: 1 !important;
}
.sv-topbar-portal:hover {
    background: rgba(255,255,255,0.2) !important;
}
.sv-topbar-portal:hover i {
    background: #ffffff !important;
    color: var(--sv-primary, #000000) !important;
}

/* ── Classic sticky nav: Clear View height + font + pill links ── */
body.sv-header-classic .sv-nav {
    top: 42px !important;
    z-index: 1000;
    background: #ffffff !important;
    opacity: 1 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    padding: 6px 20px !important;
}
body.sv-header-classic .sv-nav::after { display: none !important; }
body.sv-header-classic.sv-light .sv-nav,
body.sv-header-classic .sv-nav.scrolled,
body.sv-header-classic .sv-nav.scrolled-down,
body.sv-header-classic .sv-nav.scrolled-up {
    background: #ffffff !important;
    opacity: 1 !important;
}

body.sv-header-classic .sv-nav-inner {
    max-width: 1280px !important;
}
body.sv-header-classic .sv-nav-menu {
    gap: 6px !important;
}
body.sv-header-classic .sv-nav-menu > li > a {
    text-decoration: none !important;
    border-radius: 999px !important;
    padding: 9px 14px !important;
    color: var(--sv-secondary, #111827) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
    line-height: 1.2;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease !important;
}
body.sv-header-classic .sv-nav-menu > li > a::after {
    display: none !important;
}
body.sv-header-classic .sv-nav-menu > li > a:hover,
body.sv-header-classic .sv-nav-menu > li.sv-nav-current > a {
    background: color-mix(in srgb, var(--sv-primary) 10%, transparent) !important;
    color: var(--sv-primary, #000000) !important;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--sv-primary) 14%, transparent);
}
body.sv-header-classic .sv-nav-menu > li.sv-has-dropdown > a {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}
body.sv-header-classic .sv-nav-menu > li.sv-has-dropdown > a .sv-dd-arrow {
    width: 10px;
    height: 6px;
    stroke: currentColor;
    transition: transform 0.18s ease;
}
body.sv-header-classic .sv-nav-menu > li.sv-has-dropdown:hover > a,
body.sv-header-classic .sv-nav-menu > li.sv-has-dropdown.is-mega-open > a {
    background: var(--sv-primary, #000000) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--sv-primary) 28%, transparent);
}
body.sv-header-classic .sv-nav-menu > li.sv-has-dropdown:hover > a .sv-dd-arrow,
body.sv-header-classic .sv-nav-menu > li.sv-has-dropdown.is-mega-open > a .sv-dd-arrow {
    transform: rotate(180deg);
    stroke: #ffffff;
}

/* Classic CTA — clearer, tighter like Clear View */
body.sv-header-classic .sv-nav-cta {
    background: var(--sv-primary, #000000) !important;
    color: #fff !important;
    border-radius: 999px !important;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--sv-primary) 30%, transparent) !important;
    padding: 10px 18px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
}
body.sv-header-classic .sv-nav-cta::after { display: none !important; }
body.sv-header-classic .sv-nav-cta:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

/* All megas (Services / Contact / Payments) full-bleed under classic nav */
body.sv-header-classic .sv-nav-menu li.sv-has-dropdown {
    position: static;
}
body.sv-header-classic .sv-nav-menu li.sv-has-dropdown::after {
    height: 8px;
    pointer-events: none;
}
body.sv-header-classic .sv-mega {
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
    padding: 12px 20px 0;
}
body.sv-header-classic .sv-mega::before { display: none !important; }
body.sv-header-classic .sv-mega-inner {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}
body.sv-header-classic .sv-mega--payments .sv-mega-inner--payments,
body.sv-header-classic .sv-mega-inner--contact {
    max-width: 1100px;
    width: 100%;
}

@media (max-width: 768px) {
    .sv-topbar-inner { justify-content: space-between; gap: 8px; padding: 6px 14px; }
    .sv-topbar-right { display: flex !important; }
    .sv-topbar-portal span { display: none; }
    body.sv-header-classic .sv-nav { top: 40px !important; padding: 6px 14px !important; }
}

/* Dual header: never show classic topbar/nav if markup leaks */
body.sv-header-dual .sv-topbar,
body.sv-header-dual > .sv-nav { display: none !important; }

/* Instant Quote page — let the header scroll away so more form is visible */
body.sv-page-instant-quote .sv-topbar,
body.sv-page-instant-quote .sv-nav {
    position: relative !important;
    top: 0 !important;
}
body.sv-page-instant-quote .sv-nav { z-index: 10; }

@media (max-width: 968px) {
    body.sv-page-instant-quote .sv-header-dual {
        position: relative !important;
        top: auto !important;
    }
}

/* Page heroes — clear fixed topbar + sticky nav */
.sv-referral-hero,
.sv-gallery-hero,
.sv-reviews-hero,
.sv-legal-hero,
.sv-page-title-hero {
    padding-top: 150px !important;
}
@media (max-width: 768px) {
    .sv-referral-hero,
    .sv-gallery-hero,
    .sv-reviews-hero,
    .sv-legal-hero,
    .sv-page-title-hero {
        padding-top: 140px !important;
    }
}

/* FINAL: homepage hero clearance under sticky topbar + nav */
body.sv-header-classic .sv-hero.sv-hero-mode-side.sv-hero-has-bg {
    padding-top: 200px !important;
    align-items: flex-start !important;
}
body.sv-header-classic .sv-hero.sv-hero-mode-side.sv-hero-has-bg .sv-hero-inner {
    padding-top: 12px;
    width: 100%;
}
@media (min-width: 1024px) {
    body.sv-header-classic .sv-hero.sv-hero-mode-side.sv-hero-has-bg {
        padding-top: 220px !important;
    }
}
@media (max-width: 768px) {
    body.sv-header-classic .sv-hero.sv-hero-mode-side.sv-hero-has-bg {
        padding-top: 170px !important;
    }
}

/* Mobile menu logo in drawer header */
.sv-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.sv-mobile-menu-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.sv-mobile-menu-logo-img {
    display: block;
    max-height: 64px;
    width: auto;
    max-width: min(240px, 62vw);
    object-fit: contain;
}
.sv-mobile-menu-logo-text {
    font-weight: 700;
    font-size: 1.2rem;
}
