/*
 * Seraphim Removals - Main Design System & Styles
 */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-primary: #e6edf5;
    --bg-secondary: rgba(255, 255, 255, 0.34);
    --bg-tertiary: rgba(255, 255, 255, 0.2);

    --surface-fill: linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18));
    --surface-fill-strong: linear-gradient(145deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.22));
    --surface-fill-soft: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12));
    --areas-dropdown-fill: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 255, 0.9));

    --accent-primary: #1E88E5;
    --accent-primary-soft: rgba(30, 136, 229, 0.14);
    --accent-primary-glow: rgba(30, 136, 229, 0.28);
    --accent-gold: #F2C94C;

    --accent-secondary: #D62828;
    --accent-secondary-soft: rgba(214, 40, 40, 0.14);

    --text-high: #19202b;
    --text-mid: rgba(25, 32, 43, 0.76);
    --text-low: rgba(25, 32, 43, 0.52);

    --border-subtle: rgba(255, 255, 255, 0.42);
    --border-active: rgba(255, 255, 255, 0.62);

    --container-max: 1280px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 48px;
    --spacing-2xl: 80px;
    --spacing-3xl: 120px;

    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-full: 9999px;

    --blur-soft: 18px;
    --blur-strong: 28px;

    --shadow-soft:
        12px 12px 28px rgba(163, 177, 198, 0.32),
        -12px -12px 28px rgba(255, 255, 255, 0.7);
    --shadow-raised:
        20px 20px 42px rgba(163, 177, 198, 0.38),
        -18px -18px 40px rgba(255, 255, 255, 0.78);
    --shadow-pressed:
        inset 8px 8px 18px rgba(176, 187, 205, 0.22),
        inset -8px -8px 18px rgba(255, 255, 255, 0.52);

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

html.dark {
    --bg-primary: #09111f;
    --bg-secondary: rgba(14, 21, 37, 0.56);
    --bg-tertiary: rgba(22, 31, 52, 0.44);

    --surface-fill: linear-gradient(145deg, rgba(24, 35, 57, 0.84), rgba(10, 17, 31, 0.5));
    --surface-fill-strong: linear-gradient(145deg, rgba(28, 41, 66, 0.92), rgba(11, 18, 32, 0.62));
    --surface-fill-soft: linear-gradient(145deg, rgba(21, 31, 52, 0.62), rgba(12, 18, 31, 0.34));
    --areas-dropdown-fill: linear-gradient(145deg, rgba(20, 31, 50, 0.92), rgba(9, 17, 31, 0.9));

    --text-high: #f6f9ff;
    --text-mid: rgba(246, 249, 255, 0.78);
    --text-low: rgba(246, 249, 255, 0.58);

    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-active: rgba(255, 255, 255, 0.16);

    --shadow-soft:
        16px 16px 34px rgba(0, 0, 0, 0.4),
        -12px -12px 26px rgba(41, 65, 108, 0.18);
    --shadow-raised:
        22px 22px 48px rgba(0, 0, 0, 0.5),
        -18px -18px 40px rgba(46, 73, 121, 0.2);
    --radius-xl: 48px;
    --shadow-pressed:
        inset 10px 10px 22px rgba(0, 0, 0, 0.26),
        inset -10px -10px 22px rgba(56, 84, 135, 0.14);
}

/* Logo Enhancements for Dark Mode */
html.dark .brand-logo,
html.dark footer img[src*="logo.webp"] {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background: var(--bg-primary);
    color: var(--text-high);
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text-high);
    background:
        radial-gradient(circle at 0% 0%, rgba(30, 136, 229, 0.2), transparent 32%),
        radial-gradient(circle at 100% 10%, rgba(214, 40, 40, 0.12), transparent 26%),
        radial-gradient(circle at 50% 100%, rgba(30, 136, 229, 0.1), transparent 30%),
        linear-gradient(160deg, #edf3fa 0%, var(--bg-primary) 48%, #dde6f1 100%);
    position: relative;
}

html.dark body {
    background:
        radial-gradient(circle at 0% 0%, rgba(30, 136, 229, 0.18), transparent 28%),
        radial-gradient(circle at 100% 10%, rgba(214, 40, 40, 0.1), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(30, 136, 229, 0.08), transparent 28%),
        linear-gradient(165deg, #0c1423 0%, #09111f 48%, #0d182b 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: -1;
}

body::before {
    width: 22rem;
    height: 22rem;
    top: 4rem;
    right: -5rem;
    background: rgba(30, 136, 229, 0.16);
}

body::after {
    width: 18rem;
    height: 18rem;
    left: -4rem;
    bottom: 8rem;
    background: rgba(214, 40, 40, 0.12);
}

h1, h2, h3, h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text-high);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section-padding {
    padding: clamp(5rem, 9vw, 8rem) 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-high) 0%, rgba(30, 136, 229, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-accent,
.primary-accent {
    color: var(--accent-primary);
}

.secondary-accent {
    color: var(--accent-secondary);
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: var(--surface-fill);
    backdrop-filter: blur(var(--blur-strong)) saturate(150%);
    -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(150%);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    transition: background var(--transition-smooth), box-shadow var(--transition-smooth), padding var(--transition-smooth);
}

.header.is-scrolled {
    padding: 12px 0;
    background: var(--surface-fill-strong);
    box-shadow: var(--shadow-raised);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 0;
}

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

.brand-logo {
    flex-shrink: 0;
}

.brand-name {
    display: inline-block;
    font-size: clamp(1rem, 0.88rem + 0.5vw, 1.22rem);
    line-height: 1;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.65rem, 0.95vw, 1rem);
    flex-wrap: nowrap;
    margin-left: auto;
    min-width: 0;
}

.desktop-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.65rem, 0.95vw, 1rem);
    flex: 1 1 auto;
    min-width: 0;
}

.desktop-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 4px;
    flex-shrink: 0;
}

.desktop-nav > a,
.desktop-nav > button,
.desktop-nav > .dropdown > a,
.desktop-nav .cta-button,
.desktop-links > a,
.desktop-links > .dropdown > a {
    white-space: nowrap;
    flex-shrink: 0;
}

.header-quote {
    white-space: nowrap;
    min-width: fit-content;
    padding: 0.84rem 1.3rem !important;
    font-size: 0.94rem;
    box-shadow: 0 16px 28px rgba(214, 40, 40, 0.24);
}

.nav-link {
    position: relative;
    color: var(--text-mid) !important;
    font-weight: 600;
}

.desktop-links > a,
.desktop-links > .dropdown > a {
    font-size: clamp(0.9rem, 0.82rem + 0.22vw, 0.98rem);
}

.nav-link:hover {
    color: var(--accent-primary) !important;
}

.dropdown {
    position: relative;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu,
#mobile-menu {
    background: var(--areas-dropdown-fill) !important;
    border: 1px solid var(--border-subtle) !important;
    backdrop-filter: blur(var(--blur-strong)) saturate(150%);
    -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(150%);
    box-shadow: var(--shadow-raised);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 250px;
    padding: 10px 0;
    border-radius: 22px;
    z-index: 1200;
}

/* Invisible bridge to prevent dropdown closing when moving mouse over the gap */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
}

.dropdown-menu .dropdown-menu {
    top: -10px;
    left: calc(100% + 12px);
}

.dropdown-menu .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -12px;
    width: 12px;
    height: 100%;
}

.dropdown-menu a,
.mobile-dropdown-menu a,
#mobile-menu a {
    color: var(--text-mid) !important;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    white-space: nowrap;
}

.dropdown-menu a:hover,
.mobile-dropdown-menu a:hover,
#mobile-menu a:hover {
    color: var(--accent-primary) !important;
}

#mobile-menu.hidden,
.mobile-dropdown-menu.hidden {
    display: none !important;
}

#mobile-menu:not(.hidden) {
    display: block;
}

.mobile-dropdown-menu:not(.hidden) {
    display: block;
}

.mobile-menu-cta {
    padding: 0 24px 10px;
}

.mobile-quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.96), rgba(214, 40, 40, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 28px rgba(214, 40, 40, 0.2);
    font-weight: 800;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 0.98rem;
    cursor: pointer;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth), background var(--transition-smooth);
    border: 1px solid var(--border-active);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(var(--blur-soft));
    -webkit-backdrop-filter: blur(var(--blur-soft));
}

.btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.94), rgba(30, 136, 229, 0.74));
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-soft), 0 18px 34px rgba(214, 40, 40, 0.22);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised), 0 20px 36px rgba(30, 136, 229, 0.18);
}

.btn-ghost {
    background: var(--surface-fill-soft);
    color: var(--text-high);
    box-shadow: var(--shadow-soft);
}

.btn-ghost:hover {
    transform: translateY(-3px);
    border-color: rgba(30, 136, 229, 0.28);
    box-shadow: var(--shadow-raised);
}

.hero {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: clamp(6rem, 10vw, 8.5rem);
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
}

.hero::before {
    width: 26rem;
    height: 26rem;
    top: 5%;
    left: -8%;
    background: rgba(30, 136, 229, 0.15);
}

.hero::after {
    width: 18rem;
    height: 18rem;
    right: 6%;
    bottom: 10%;
    background: rgba(214, 40, 40, 0.12);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-content {
    max-width: 720px;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5.25rem);
    margin-bottom: var(--spacing-md);
}

.hero-content p {
    font-size: clamp(1.08rem, 2vw, 1.24rem);
    color: var(--text-mid);
    margin-bottom: var(--spacing-xl);
    font-weight: 500;
    max-width: 38rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.trust-split,
.trust-item,
.step-item,
.about-stats > div,
.about-badge,
.testimonial-card,
.branch-card {
    background: var(--surface-fill);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(var(--blur-soft)) saturate(140%);
    -webkit-backdrop-filter: blur(var(--blur-soft)) saturate(140%);
}

.trust-split {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 16px 20px;
    border-radius: var(--radius-full);
}

.trust-mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--surface-fill-soft);
    border: 1px solid var(--border-active);
    box-shadow: var(--shadow-pressed);
    flex-shrink: 0;
}

.trust-mark img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.trust-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trust-stars {
    display: inline-flex;
    gap: 4px;
}

.trust-text,
.trust-copy {
    font-size: 0.9rem;
    color: var(--text-mid);
}

.hero-visual {
    position: relative;
}

.video-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-raised);
    border: 1px solid var(--border-subtle);
    background: var(--surface-fill-strong);
    backdrop-filter: blur(var(--blur-strong)) saturate(140%);
    -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(140%);
    aspect-ratio: 4 / 5;
}

.video-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glow-effect {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -14%;
    height: 34%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.38) 0%, rgba(214, 40, 40, 0.14) 48%, transparent 72%);
    filter: blur(40px);
    z-index: 0;
}

.services-section {
    position: relative;
}

.services-stage {
    position: relative;
    padding: clamp(28px, 4vw, 42px);
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at top left, rgba(30, 136, 229, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(214, 40, 40, 0.14), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-raised);
    backdrop-filter: blur(var(--blur-strong)) saturate(150%);
    -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(150%);
    overflow: hidden;
    isolation: isolate;
}

.services-stage::before,
.services-stage::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(36px);
    opacity: 0.7;
}

.services-stage::before {
    width: 220px;
    height: 220px;
    top: -70px;
    right: 12%;
    background: rgba(30, 136, 229, 0.2);
}

.services-stage::after {
    width: 180px;
    height: 180px;
    bottom: -70px;
    left: 8%;
    background: rgba(214, 40, 40, 0.16);
}

.services-headline {
    position: relative;
    display: block;
    margin-bottom: clamp(32px, 5vw, 48px);
    z-index: 1;
}

.services-copy {
    max-width: 1000px;
}

.services-kicker,
.service-kicker,
.service-note__label,
.service-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.74rem;
    font-weight: 800;
}

.services-copy h2 {
    font-size: clamp(2.35rem, 4.4vw, 4.4rem);
    line-height: 0.96;
    margin-top: 12px;
    letter-spacing: -0.05em;
}

.services-lead {
    margin-top: 18px;
    color: var(--text-mid);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.8;
    max-width: 56ch;
}

.services-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.service-note {
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(var(--blur-soft)) saturate(145%);
    -webkit-backdrop-filter: blur(var(--blur-soft)) saturate(145%);
}

.service-note__label {
    color: var(--accent-primary);
}

.service-note p {
    margin-top: 10px;
    color: var(--text-mid);
    line-height: 1.6;
}

.services-showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 22px;
    z-index: 1;
}

.service-spotlight,
.service-card,
.services-footer-note {
    text-decoration: none;
    color: inherit;
}

.service-spotlight {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.85fr);
    gap: 24px;
    min-height: 560px;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(10, 18, 32, 0.78), rgba(24, 32, 50, 0.56)),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow-raised);
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.service-spotlight::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 38%);
    pointer-events: none;
}

.service-spotlight:hover,
.service-card:hover,
.services-footer-note:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-raised);
    border-color: rgba(30, 136, 229, 0.28);
}

.service-spotlight__copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-kicker {
    color: rgba(255, 255, 255, 0.72);
    margin-top: 8px;
}

.service-spotlight h3 {
    font-size: clamp(2rem, 3.1vw, 3.35rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 10ch;
}

.service-spotlight p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    max-width: 36ch;
}

.service-spotlight__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.service-spotlight__list span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    font-weight: 700;
}

.service-spotlight__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.service-spotlight__visual {
    position: relative;
    display: grid;
    min-height: 100%;
    align-items: end;
}

.service-spotlight__visual img {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-orbit {
    grid-area: 1 / 1;
    align-self: start;
    justify-self: start;
    margin: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(11, 18, 32, 0.72);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(var(--blur-soft));
    -webkit-backdrop-filter: blur(var(--blur-soft));
    box-shadow: var(--shadow-soft);
}

.service-orbit--two {
    align-self: end;
    justify-self: end;
}

.service-side-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 220px;
    padding: 22px;
    border-radius: 28px;
    border: 1px solid var(--border-subtle);
    background: var(--surface-fill);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(var(--blur-soft)) saturate(145%);
    -webkit-backdrop-filter: blur(var(--blur-soft)) saturate(145%);
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth), background var(--transition-smooth);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%);
    pointer-events: none;
}

.service-card--house {
    grid-column: span 2;
    min-height: 290px;
}

.service-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.service-card__tag {
    color: var(--accent-primary);
}

.service-card__arrow {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--text-high);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-pressed);
}

.service-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.service-card__body--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
    gap: 22px;
    align-items: end;
}

.service-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--accent-primary);
    font-size: 1.35rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-pressed);
}

.service-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.42rem;
    line-height: 1.1;
}

.service-card p {
    position: relative;
    z-index: 1;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 30ch;
}

.service-card__image {
    width: 100%;
    max-height: 230px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.tag-popular {
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.92), rgba(30, 136, 229, 0.72));
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(30, 136, 229, 0.24);
}

.services-footer-note {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    padding: 20px 22px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(var(--blur-soft)) saturate(145%);
    -webkit-backdrop-filter: blur(var(--blur-soft)) saturate(145%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.services-footer-note p {
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 62ch;
}

.services-footer-note a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text-high);
    font-weight: 800;
    white-space: nowrap;
    box-shadow: var(--shadow-pressed);
}

.nav-link.active {
    color: var(--accent-primary) !important;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.page-hero {
    position: relative;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: clamp(24px, 4vw, 44px);
    align-items: center;
}

.page-hero__content,
.page-hero__frame,
.metric-card,
.value-card,
.process-card,
.quote-copy-panel,
.contact-card {
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(var(--blur-soft)) saturate(145%);
    -webkit-backdrop-filter: blur(var(--blur-soft)) saturate(145%);
}

.page-hero__content {
    position: relative;
    padding: clamp(28px, 4vw, 42px);
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(30, 136, 229, 0.16), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    overflow: hidden;
}

.page-hero__content::before,
.page-hero__frame::before,
.value-card::before,
.process-card::before,
.quote-copy-panel::before,
.contact-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 38%);
    pointer-events: none;
}

.page-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 800;
}

.page-hero__content h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    margin-top: 14px;
}

.page-hero__content p {
    margin-top: 20px;
    max-width: 56ch;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.82;
    color: var(--text-mid);
}

.page-hero__actions,
.page-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.page-hero__actions {
    margin-top: 28px;
}

.page-pill-row {
    margin-top: 24px;
}

.page-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text-high);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: var(--shadow-pressed);
}

.page-hero__visual {
    display: grid;
    gap: 18px;
}

.page-hero__frame {
    position: relative;
    padding: clamp(14px, 2vw, 18px);
    border-radius: 34px;
    background: var(--surface-fill-strong);
    overflow: hidden;
}

.page-hero__frame img {
    width: 100%;
    min-height: 460px;
    object-fit: cover;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-soft);
}

.page-hero__caption {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 28px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(9, 17, 31, 0.62);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-raised);
}

html:not(.dark) .page-hero__caption {
    background: rgba(19, 28, 45, 0.72);
}

.page-hero__caption strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.page-hero__caption span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
}

.metric-stack,
.value-grid,
.process-grid,
.contact-grid {
    display: grid;
    gap: 18px;
}

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

.metric-card,
.value-card,
.process-card,
.quote-copy-panel,
.contact-card {
    position: relative;
    border-radius: 28px;
    background: var(--surface-fill);
    overflow: hidden;
}

.metric-card {
    padding: 20px 22px;
}

.metric-card strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-high);
}

.metric-card span {
    display: block;
    margin-top: 8px;
    color: var(--text-mid);
    line-height: 1.65;
}

.section-header {
    margin: 0 auto clamp(28px, 4vw, 42px);
    max-width: 720px;
}

.section-header--center {
    text-align: center;
}

.section-header h2 {
    margin-top: 12px;
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.section-header p {
    margin-top: 16px;
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.82;
}

.page-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.page-breadcrumbs a,
.page-breadcrumbs span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-breadcrumbs a {
    color: var(--text-mid);
}

.page-breadcrumbs span {
    color: var(--accent-primary);
}

.page-breadcrumbs i {
    color: rgba(30, 136, 229, 0.72);
    font-size: 0.72rem;
}

.destination-explorer {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 22px;
    align-items: start;
}

.destination-sidebar,
.destination-stage__shell,
.destination-detail-card {
    position: relative;
    border-radius: 28px;
    background: var(--surface-fill);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(var(--blur-soft)) saturate(145%);
    -webkit-backdrop-filter: blur(var(--blur-soft)) saturate(145%);
    overflow: hidden;
}

.destination-sidebar,
.destination-stage__shell {
    padding: clamp(24px, 3vw, 32px);
}

.destination-sidebar::before,
.destination-stage__shell::before,
.destination-detail-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 38%);
    pointer-events: none;
}

.destination-sidebar__intro h3 {
    margin-top: 14px;
    font-size: clamp(1.7rem, 2.6vw, 2.55rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.destination-sidebar__intro p {
    margin-top: 14px;
    color: var(--text-mid);
    line-height: 1.82;
}

.destination-selector-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.destination-selector {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-pressed);
    text-align: left;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth), background var(--transition-smooth);
    cursor: pointer;
}

.destination-selector:hover,
.destination-selector:focus-visible,
.destination-selector.is-active {
    transform: translateY(-4px);
    border-color: rgba(30, 136, 229, 0.36);
    box-shadow: var(--shadow-raised);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
}

.destination-selector:focus-visible {
    outline: none;
}

.destination-selector img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-soft);
}

.destination-selector strong,
.destination-selector span {
    display: block;
}

.destination-selector strong {
    color: var(--text-high);
    font-size: 1rem;
    line-height: 1.25;
}

.destination-selector span {
    margin-top: 6px;
    color: var(--text-mid);
    font-size: 0.87rem;
    line-height: 1.55;
}

.destination-selector.is-active strong {
    color: var(--accent-primary);
}

.destination-stage {
    position: sticky;
    top: 110px;
}

.destination-stage__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.destination-stage__header h3 {
    margin-top: 12px;
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.destination-stage__header p {
    margin-top: 12px;
    color: var(--text-mid);
    line-height: 1.76;
}

.destination-stage__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.destination-stage__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-pressed);
    color: var(--text-high);
    font-size: 0.86rem;
    font-weight: 700;
}

.destination-detail-card {
    display: none;
    padding: 18px;
    border-radius: 26px;
    background: var(--surface-fill-strong);
}

.destination-detail-card.active {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 20px;
    align-items: stretch;
}

.destination-detail-card__media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: 22px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-soft);
}

.destination-detail-card__content {
    display: flex;
    flex-direction: column;
}

.destination-detail-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.76rem;
    font-weight: 800;
}

.destination-detail-card__content h4 {
    margin-top: 14px;
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.destination-detail-card__lede {
    margin-top: 16px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-high);
}

.destination-detail-card__content p {
    margin-top: 18px;
    color: var(--text-mid);
    line-height: 1.86;
}

.destination-detail-card__actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.destination-anchor {
    position: relative;
    display: block;
    top: -130px;
    visibility: hidden;
    height: 0;
}

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

.value-card,
.process-card,
.contact-card {
    padding: 24px;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.value-card:hover,
.process-card:hover,
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-raised);
    border-color: rgba(30, 136, 229, 0.22);
}

.value-card__icon,
.contact-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 1.35rem;
    color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-pressed);
}

.value-card h3,
.process-card h3,
.contact-card h3 {
    margin-top: 18px;
    font-size: 1.42rem;
    line-height: 1.12;
}

.value-card p,
.process-card p,
.contact-card p {
    margin-top: 12px;
    color: var(--text-mid);
    line-height: 1.8;
}

.services-stage--expanded .service-card p {
    max-width: none;
}

.services-stage--expanded .service-card {
    min-height: 260px;
}

.services-stage--expanded .service-card--house {
    min-height: 320px;
}

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

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.92), rgba(214, 40, 40, 0.76));
    box-shadow: 0 14px 24px rgba(30, 136, 229, 0.18);
    font-size: 0.92rem;
    font-weight: 800;
}

.faq-stack {
    display: grid;
    gap: 16px;
}

.faq-item {
    border-radius: 26px;
    background: var(--surface-fill);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(var(--blur-soft)) saturate(145%);
    -webkit-backdrop-filter: blur(var(--blur-soft)) saturate(145%);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: none;
    background: transparent;
    color: var(--text-high);
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.faq-question span {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.5;
}

.faq-question i {
    color: var(--accent-primary);
    transition: transform var(--transition-smooth);
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 24px 22px;
    color: var(--text-mid);
    line-height: 1.82;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 22px;
    align-items: start;
}

.quote-copy-panel {
    padding: clamp(26px, 4vw, 34px);
}

.quote-copy-panel p {
    margin-top: 18px;
    color: var(--text-mid);
    line-height: 1.8;
}

.quote-benefits {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.quote-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-high);
    font-weight: 700;
}

.quote-form-panel {
    width: 100%;
}

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

.form-error {
    margin-top: 8px;
    color: var(--accent-secondary);
    font-size: 0.84rem;
}

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

.contact-card a {
    color: var(--accent-primary);
}

.services-areas__shell {
    text-align: center;
}

.services-areas__shell > p {
    max-width: 760px;
    margin: 16px auto 0;
    color: var(--text-mid);
    line-height: 1.82;
}

.services-areas-grid {
    margin-top: 34px;
}

.services-areas .suburb-dropdown > p,
.services-areas .suburb-dropdown-menu > p,
.services-areas .suburb-dropdown-menu li {
    color: var(--text-mid) !important;
}

.services-areas .suburb-dropdown h3,
.services-areas .suburb-dropdown-menu a {
    color: var(--accent-primary) !important;
}

.floating-action-buttons {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.45rem;
    box-shadow: var(--shadow-raised);
    pointer-events: auto;
}

.fab-phone {
    background: linear-gradient(135deg, #1E88E5, #1668b5);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25d366, #149a46);
}

.step-item,
.about-stats > div,
.about-badge,
.testimonial-card,
.branch-card {
    border-radius: var(--radius-md);
}

.step-item {
    padding: 24px 20px;
}

.about-stats > div {
    padding: 16px;
}

.about-badge {
    padding: var(--spacing-md);
}

#areas-we-serve {
    position: relative;
    z-index: 60;
    overflow: visible;
    isolation: isolate;
}

#areas-we-serve .container,
#areas-we-serve .grid {
    position: relative;
    overflow: visible;
    z-index: 2;
    isolation: isolate;
}

.suburb-dropdown {
    position: relative;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    background: var(--surface-fill) !important;
    border: 1px solid var(--border-subtle) !important;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(var(--blur-soft)) saturate(140%);
    -webkit-backdrop-filter: blur(var(--blur-soft)) saturate(140%);
    overflow: visible;
    z-index: 1;
    isolation: isolate;
}

.suburb-dropdown:hover,
.suburb-dropdown.active {
    transform: translateY(-6px);
    box-shadow: var(--shadow-raised);
    z-index: 260;
}

.suburb-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 320;
    max-height: 85vh;
    overflow-y: auto;
    padding: 18px;
    border-radius: 22px;
    background: var(--areas-dropdown-fill);
    border: 1px solid var(--border-active);
    box-shadow: var(--shadow-raised);
    backdrop-filter: blur(var(--blur-strong)) saturate(150%);
    -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(150%);
}

#testimonials,
#quote,
#contact,
.final-cta {
    position: relative;
    z-index: 1;
}

.suburb-dropdown:hover .suburb-dropdown-menu,
.suburb-dropdown.active .suburb-dropdown-menu {
    display: block;
}

.suburb-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

.suburb-dropdown-menu ul {
    columns: 2;
    column-gap: 1rem;
    padding-left: 0;
    text-align: left;
    list-style: none;
}

.suburb-dropdown-menu li {
    text-align: left;
    margin-bottom: 8px;
    break-inside: avoid-column;
    white-space: normal;
    color: var(--text-mid);
}

.form-container {
    background: var(--surface-fill-strong);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-subtle);
    max-width: 640px;
    margin: 0 auto;
    box-shadow: var(--shadow-raised);
    backdrop-filter: blur(var(--blur-strong)) saturate(145%);
    -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(145%);
}

.form-container label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-family: 'Raleway', sans-serif !important;
    font-weight: 700 !important;
    color: var(--text-high);
}

.form-container input,
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-active) !important;
    background: var(--surface-fill-soft) !important;
    color: var(--text-high) !important;
    box-shadow: var(--shadow-pressed);
    outline: none;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
    border-color: rgba(30, 136, 229, 0.4) !important;
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.12), var(--shadow-pressed);
    transform: translateY(-1px);
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.form-step.active {
    display: block;
}

.testimonial-card,
.branch-card {
    padding: var(--spacing-xl);
}

.final-cta,
.final-cta h2 {
    color: #ffffff !important;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.82) !important;
}

.footer-meta {
    gap: 18px;
    flex-wrap: wrap;
}

.footer-meta a:hover {
    color: var(--accent-primary);
}

footer {
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(var(--blur-strong)) saturate(140%);
    -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(140%);
}

html.dark footer {
    background: rgba(9, 17, 31, 0.72);
}

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

@media (max-width: 1279px) {
    .page-hero__grid,
    .quote-layout,
    .destination-explorer {
        grid-template-columns: 1fr;
    }

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

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

    .services-headline {
        grid-template-columns: 1fr;
    }

    .services-copy {
        max-width: none;
    }

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

    .services-showcase {
        grid-template-columns: 1fr;
    }

    .service-spotlight {
        min-height: auto;
    }

    .destination-stage {
        position: static;
    }
}

@media (max-width: 1024px) {
    .page-hero__content {
        text-align: center;
    }

    .page-hero__content p {
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero__actions,
    .page-pill-row {
        justify-content: center;
    }

    .page-hero__frame img {
        min-height: 360px;
    }

    .page-hero__caption {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .metric-stack,
    .form-grid {
        grid-template-columns: 1fr;
    }

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

    .destination-detail-card.active {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-bottom: var(--spacing-2xl);
    }

    .hero {
        min-height: auto;
        text-align: center;
    }

    .hero-ctas,
    .trust-split {
        justify-content: center;
    }

    .hero-visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .service-spotlight {
        grid-template-columns: 1fr;
    }

    .service-spotlight h3 {
        max-width: none;
    }

    .service-spotlight__visual {
        min-height: 320px;
    }

    .service-spotlight__visual img {
        min-height: 320px;
    }

    .suburb-dropdown:hover .suburb-dropdown-menu {
        display: none;
    }

    .suburb-dropdown-menu {
        position: static;
        margin-top: 16px;
        max-height: none;
        box-shadow: none;
    }

    .suburb-dropdown.active .suburb-dropdown-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 72px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .trust-split {
        width: 100%;
        justify-content: center;
        border-radius: 24px;
    }

    .page-hero__content,
    .page-hero__frame,
    .value-card,
    .process-card,
    .quote-copy-panel,
    .contact-card,
    .faq-question {
        padding-left: 22px;
        padding-right: 22px;
    }

    .page-hero__actions {
        flex-direction: column;
    }

    .page-hero__actions .btn,
    .quote-form-panel .btn {
        width: 100%;
    }

    .value-grid,
    .process-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-hero__frame img {
        min-height: 300px;
    }

    .page-hero__caption {
        position: static;
        margin-top: 16px;
        padding: 14px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .form-container {
        padding: 28px 22px;
    }

    .services-stage {
        padding: 24px;
    }

    .services-highlights {
        grid-template-columns: 1fr;
    }

    .page-breadcrumbs {
        justify-content: center;
    }

    .destination-selector-grid {
        grid-template-columns: 1fr;
    }

    .destination-selector {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .destination-selector img {
        width: 64px;
        height: 64px;
    }

    .destination-stage__header {
        flex-direction: column;
    }

    .destination-stage__meta {
        justify-content: flex-start;
    }

    .destination-detail-card__media img {
        min-height: 280px;
    }

    .service-side-grid {
        grid-template-columns: 1fr;
    }

    .service-card--house {
        grid-column: span 1;
    }

    .service-card__body--split {
        grid-template-columns: 1fr;
    }

    .services-footer-note {
        flex-direction: column;
        align-items: stretch;
    }

    .services-footer-note a {
        width: 100%;
    }

    .nav-shell {
        gap: 16px;
    }

    .brand-logo {
        height: 32px !important;
    }

    .brand-name {
        font-size: 1rem;
    }

    .footer-meta {
        justify-content: center !important;
        text-align: center;
    }

    .floating-action-buttons {
        right: 16px;
        bottom: 16px;
    }

    .fab-btn {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}

@media (max-width: 640px) {
    .service-spotlight__visual {
        min-height: 260px;
    }

    .service-spotlight__visual img {
        min-height: 260px;
    }

    .service-orbit {
        font-size: 0.72rem;
        margin: 12px;
    }

    .suburb-dropdown-menu ul {
        columns: 1;
    }
}

/* ============================================================
   SERVICES PAGE – PAGE HERO (two-column layout)
   ============================================================ */
.page-hero {
    overflow: hidden;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.page-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: var(--spacing-md);
}

@media (max-width: 900px) {
    .page-hero__grid {
        grid-template-columns: 1fr;
    }
    .page-hero__visual {
        order: -1;
    }
}

/* ============================================================
   SERVICES PAGE – BENTO GRID
   ============================================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 1.25rem;
}

/* Default bento item – icon + text card */
.bento-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--surface-fill-elevated);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text-high);
    min-height: 220px;
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-primary);
}

/* Large – spans 2 columns, 2 rows */
.bento-item--large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 460px;
}

/* Wide – spans 2 columns */
.bento-item--wide {
    grid-column: span 2;
    min-height: 260px;
}

/* Bento visual (image layer) */
.bento-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bento-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bento-item:hover .bento-visual img {
    transform: scale(1.04);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.2) 100%);
}

/* Bento content (always on top of visual) */
.bento-content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    height: 100%;
    justify-content: flex-end;
}

/* Icon-only bento variant */
.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(30, 136, 229, 0.12);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-bottom: var(--spacing-sm);
}

/* Image bento – dark text becomes light */
.bento-item--large .bento-content,
.bento-item--wide .bento-content {
    justify-content: flex-end;
}

.bento-item--large h3,
.bento-item--large p,
.bento-item--large .bento-cta,
.bento-item--large .tag-popular,
.bento-item--wide h3,
.bento-item--wide p,
.bento-item--wide .bento-cta {
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.bento-text h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
    color: var(--text-high);
    transition: color 0.2s;
}

.bento-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-mid);
    margin-bottom: 0.75rem;
}

.bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.bento-item:hover .bento-cta {
    gap: 12px;
}

/* Popular tag */
.bento-item .tag-popular {
    display: inline-block;
    background: var(--accent-secondary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: var(--spacing-sm);
    width: fit-content;
}

/* Dark mode bento icon */
html.dark .bento-icon {
    background: rgba(30, 136, 229, 0.2);
}

/* Responsive bento */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-item--large {
        grid-column: span 2;
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-item--large,
    .bento-item--wide {
        grid-column: 1;
        min-height: 280px;
    }
}

/* ============================================================
   SERVICES PAGE – PROCESS ITEMS
   ============================================================ */
.process-item {
    padding-top: 36px;
}

/* ============================================================
   PREMIUM SERVICE CARDS & SHARED COMPONENTS
   ============================================================ */
.premium-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface-fill-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    text-decoration: none;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-raised);
    border-color: var(--accent-primary);
}

.service-card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-service-card:hover .service-card-visual img {
    transform: scale(1.1);
}

.service-card-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--surface-fill);
    backdrop-filter: blur(var(--blur-soft));
    -webkit-backdrop-filter: blur(var(--blur-soft));
}

.service-card-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-high);
    margin-bottom: var(--spacing-sm);
    font-family: 'Raleway', sans-serif;
}

.service-card-content p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    transition: gap 0.3s ease;
}

.premium-service-card:hover .service-card-cta {
    gap: 12px;
}

.tag-popular-card {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: var(--accent-secondary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.3);
}

/* Redesigning hero title gradient for premium feel */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #64B5F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

