/* --- styles.css --- */
:root {
    color-scheme: dark;
    --color-black: #050505;
    --color-ink: #ffffff;
    --color-muted: rgba(255, 255, 255, 0.74);
    --color-soft: rgba(255, 255, 255, 0.1);
    --color-line: rgba(255, 255, 255, 0.1);
    --color-glass: rgba(15, 15, 15, 0.35);
    --color-glass-dark: rgba(5, 5, 5, 0.62);
    --shadow-glass: 0 28px 80px rgba(0, 0, 0, 0.34);
    --font-sans: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --nav-height: 82px;
    --nav-top: 30px;
    --radius-pill: 999px;
    --radius-panel: 28px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    color: var(--color-ink);
    background: var(--color-black);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

html.nav-is-open body {
    overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.45);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 200;
    transform: translateY(-150%);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--color-black);
    background: #ffffff;
    font-weight: 800;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-main {
    min-height: 100vh;
}

.shell {
    width: min(100% - 3rem, 1400px);
    margin-inline: auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .shell {
        width: min(100% - 2rem, 100%);
        padding-inline: 1rem;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    clip-path: inset(50%);
}


/* --- navbar.css --- */
.site-header {
    position: fixed;
    top: var(--nav-top);
    left: 50%;
    z-index: 100;
    width: 95%;
    max-width: 1780px;
    height: var(--nav-height);
    transform: translateX(-50%);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-pill);
    background: var(--color-glass);
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(25px);
    animation: navFadeDown 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
    transition: height 300ms ease, background-color 300ms ease, backdrop-filter 300ms ease, top 300ms ease;
}

.site-header.is-scrolled {
    top: 18px;
    height: 72px;
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(32px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    width: 100%;
    height: 100%;
    padding: 0 clamp(1rem, 2.4vw, 3rem);
}

.brand {
    position: relative;
    z-index: 102;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: max-content;
    font-size: clamp(0.82rem, 1vw, 1rem);
    font-weight: 700;
    line-height: 1;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2.35vw, 3rem);
}

.primary-nav > a {
    position: relative;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.88rem, 0.96vw, 1rem);
    font-weight: 700;
    transition: color 220ms ease;
}

.primary-nav > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.68rem;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: var(--radius-pill);
    background: #ffffff;
    transition: transform 220ms ease;
}

.primary-nav > a:hover,
.primary-nav > a[aria-current="page"] {
    color: #ffffff;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 56px;
    min-width: 206px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: var(--radius-pill);
    padding: 0 1.55rem;
    color: #ffffff;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.nav-cta span:last-child {
    transition: transform 220ms ease;
}

.nav-cta:hover {
    color: var(--color-black);
    background: #ffffff;
    transform: translateY(-1px);
}

.nav-cta:hover span:last-child {
    transform: translateX(5px);
}

.nav-toggle {
    position: relative;
    z-index: 102;
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 2px;
    border-radius: var(--radius-pill);
    background: currentColor;
    transition: transform 260ms ease, top 260ms ease;
}

.nav-toggle span:first-child {
    top: 18px;
}

.nav-toggle span:last-child {
    top: 27px;
}

.nav-toggle.is-active span:first-child {
    top: 23px;
    transform: rotate(45deg);
}

.nav-toggle.is-active span:last-child {
    top: 23px;
    transform: rotate(-45deg);
}

@keyframes navFadeDown {
    from {
        opacity: 0;
        transform: translate(-50%, -18px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .primary-nav {
        position: fixed;
        inset: -30px -2.5vw auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 100vh;
        overflow-y: auto;
        padding-top: 100px;
        padding-bottom: 60px;
        gap: 1.2rem;
        transform: translateY(-105%);
        background: rgba(18, 18, 24, 0.96);
        opacity: 0;
        pointer-events: none;
        backdrop-filter: blur(35px);
        transition: transform 320ms ease, opacity 320ms ease;
    }

    .primary-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .primary-nav > a {
        font-size: clamp(1.9rem, 9vw, 4rem);
        text-align: center;
    }

    .primary-nav > a::after {
        bottom: -0.2rem;
    }
}

@media (max-width: 560px) {
    :root {
        --nav-top: 16px;
        --nav-height: 68px;
    }

    .site-header {
        width: calc(100% - 24px);
    }

    .header-inner {
        padding: 0 0.72rem 0 1rem;
    }

    .brand {
        gap: 10px;
        font-size: 0.74rem;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }
}

/* ========================================================
   SERVICES MEGA MENU
   ======================================================== */

.nav-services-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.88rem, 0.96vw, 1rem);
    font-weight: 700;
    cursor: pointer;
    transition: color 220ms ease;
    font-family: var(--font-sans);
}

.nav-services-trigger:hover,
.nav-services-trigger.is-active {
    color: #ffffff;
}

.trigger-chevron {
    display: grid;
    place-items: center;
    width: 14px;
    height: 14px;
    color: currentColor;
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.trigger-chevron svg {
    width: 100%;
    height: 100%;
}

/* Active states chevron rotation */
.nav-services-trigger.is-active .trigger-chevron {
    transform: rotate(180deg);
}

/* Mega Menu Panel (Desktop default) */
.mega-menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: min(100vw - 2.5rem, 1140px);
    background: rgba(25, 25, 32, 0.85); /* Black theme with glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px; /* Border radius: 22px as required */
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45); /* Soft premium shadow */
    opacity: 0;
    pointer-events: none;
    z-index: 99;
    transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Open Animation trigger */
.mega-menu-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
    padding: 3rem 3rem 2.5rem;
}

/* Columns header styling */
.mega-menu-col-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.85rem;
    margin-bottom: 1.25rem;
}

.mega-menu-col-icon {
    display: grid;
    place-items: center;
    color: #075dbc; /* Brand blue only for highlights/icons */
}

.mega-menu-col-icon svg {
    width: 20px;
    height: 20px;
}

.mega-menu-col-header h3 {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mega-menu-links li {
    display: block;
}

/* Link item list */
.mega-menu-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.item-icon {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: color 220ms ease, transform 220ms ease;
}

.item-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.item-label {
    flex-grow: 1;
    line-height: 1.2;
}

.item-arrow {
    display: inline-block;
    color: #075dbc;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
                opacity 220ms ease;
}

/* Hover state: blue highlight and arrow slide animation */
.mega-menu-links a:hover {
    background-color: rgba(7, 93, 188, 0.08); /* Blue highlight background */
    color: #ffffff;
}

.mega-menu-links a:hover .item-icon {
    color: #075dbc; /* Icon highlights blue */
    transform: scale(1.05);
}

.mega-menu-links a:hover .item-arrow {
    opacity: 1;
    transform: translateX(0); /* Arrow slides right */
}

/* Mega Menu CTA footer bar */
.mega-menu-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(5, 5, 5, 0.36);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mega-menu-cta-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.mega-menu-cta-phone-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease, color 260ms ease;
    text-decoration: none;
}

.mega-menu-cta-phone-icon svg {
    width: 20px;
    height: 20px;
}

.mega-menu-cta-phone-icon:hover {
    transform: translateY(-2px);
    background: rgba(7, 93, 188, 0.15);
    border-color: rgba(7, 93, 188, 0.35);
    color: #075dbc;
}

.mega-menu-cta-text {
    display: flex;
    flex-direction: column;
}

.cta-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.15rem;
}

.cta-number {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.1;
    transition: color 220ms ease;
}

.cta-number:hover {
    color: #075dbc;
}

.cta-subtext {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.2rem 0 0;
}

.mega-menu-cta-right {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.view-all-services-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #075dbc;
    text-decoration: none;
    transition: color 220ms ease;
}

.view-all-services-link:hover {
    color: #054a96;
}

.view-all-services-link .arrow-symbol {
    transition: transform 220ms ease;
}

.view-all-services-link:hover .arrow-symbol {
    transform: translateX(4px);
}

/* ========================================================
   RESPONSIVE BREAKDOWN (Mobile Accordion Drawer)
   ======================================================== */
@media (max-width: 1100px) {
    .nav-services-trigger {
        font-size: clamp(1.9rem, 9vw, 4rem);
        text-align: center;
        padding: 0.5rem 0;
        width: 100%;
        justify-content: center;
        gap: 16px;
    }

    .nav-services-trigger .trigger-chevron {
        width: clamp(20px, 4.5vw, 36px);
        height: clamp(20px, 4.5vw, 36px);
    }

    /* Transitioning to mobile nesting */
    .mega-menu-panel {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 480px;
        margin-inline: auto;
        background: transparent;
        border: none;
        border-radius: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        opacity: 1; /* keep opacity 1, visibility toggled by max-height on mobile wrapper if wanted, but simpler to let it stretch */
        pointer-events: auto;
        display: none; /* controlled by primaryNav state or js toggle */
        padding: 0.5rem 0;
        transition: none;
    }

    /* Show under mobile toggle */
    .mega-menu-panel.is-open {
        display: block !important;
        transform: none !important;
        position: relative !important;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    /* Accordion headers */
    .mega-menu-col-header {
        cursor: pointer;
        padding: 0.75rem 0;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        justify-content: space-between;
    }

    .mega-menu-col-header h3 {
        font-size: 0.95rem;
        flex-grow: 1;
        text-align: left;
    }

    /* Chevron for mobile accordion */
    .mega-menu-col-header::after {
        content: "";
        display: block;
        width: 16px;
        height: 16px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>') no-repeat center center;
        background-size: contain;
        opacity: 0.5;
        transition: transform 260ms ease;
    }

    .mega-menu-col.is-active .mega-menu-col-header::after {
        transform: rotate(180deg);
        opacity: 1;
    }

    /* Nested link lists collapsing */
    .mega-menu-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 320ms cubic-bezier(0.16, 1, 0.3, 1);
        gap: 0.25rem;
    }

    .mega-menu-col.is-active .mega-menu-links {
        max-height: 380px;
        padding: 0.5rem 0;
    }

    .mega-menu-links a {
        padding: 0.6rem 0.75rem;
        font-size: 0.88rem;
    }

    .item-icon svg {
        width: 16px;
        height: 16px;
    }

    /* Mobile CTA stack hide/simplify in menu */
    .mega-menu-cta {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem 0;
        background: transparent;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 1rem;
    }

    .mega-menu-cta-left {
        width: 100%;
        justify-content: center;
    }

    .mega-menu-cta-right {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .mega-menu-cta-right .btn,
    .mega-menu-cta-right .view-all-services-link {
        width: 100%;
        justify-content: center;
    }
}



/* --- hero.css --- */
.hero-slider {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    background: #0d0d12;
}

.hero-media,
.hero-slide,
.hero-slide img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: -3;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1300ms ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-slide.is-active img {
    animation: kenBurns 6500ms ease forwards;
}

.hero-overlay {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(15, 15, 20, 0.75) 0%, rgba(15, 15, 20, 0.65) 28%, rgba(0, 0, 0, 0.34) 62%, rgba(0, 0, 0, 0.24) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(15, 15, 20, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 100svh;
    align-items: center;
    width: min(100% - 2rem, 1760px);
    margin-inline: auto;
    padding-top: calc(var(--nav-top) + var(--nav-height) + 2rem);
    padding-bottom: 11rem;
}

.hero-copy {
    grid-area: 1 / 1;
    max-width: 760px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.hero-copy.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-label {
    margin: 0 0 1.35rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.78rem, 1.4vw, 1.08rem);
    font-weight: 800;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0;
    max-width: 12ch;
    color: #ffffff;
    font-size: clamp(2.625rem, 7vw, 4.5rem);
    line-height: 1.06;
    letter-spacing: 0;
    font-weight: 800;
    animation: fadeUp 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-description {
    max-width: 690px;
    margin: 1.7rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.45vw, 1.25rem);
    line-height: 1.65;
    animation: fadeUp 780ms 80ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.25rem;
    animation: scaleUp 760ms 150ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 62px;
    border-radius: 8px;
    padding: 0 1.85rem;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 220ms ease, color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.button span:last-child {
    transition: transform 220ms ease;
}

.button:hover {
    transform: scale(1.04);
}

.button:hover span:last-child {
    transform: translateX(5px);
}

.button-primary {
    border: 1px solid #ffffff;
    color: #050505;
    background: #ffffff;
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.86);
    color: #ffffff;
    background: transparent;
}

.button-secondary:hover {
    color: #050505;
    background: #ffffff;
}

.hero-stat-card,
.trust-bar,
.hero-controls button {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(20, 20, 20, 0.34);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(24px);
}

.hero-stat-card {
    position: absolute;
    right: clamp(1rem, 5vw, 6.5rem);
    bottom: clamp(6.8rem, 10vw, 10rem);
    z-index: 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1.35rem;
    align-items: center;
    width: min(345px, calc(100% - 2rem));
    border-radius: 28px;
    padding: 2rem;
    animation: blurFade 850ms 350ms ease both;
}

.hero-stat-card.is-changing {
    animation: blurFade 360ms ease both;
}

.stat-icon {
    grid-row: span 3;
    width: 64px;
    color: #ffffff;
}

.stat-kicker {
    font-size: 1.02rem;
    font-weight: 800;
}

.hero-stat-card strong {
    font-size: clamp(1.7rem, 2.2vw, 2.1rem);
    line-height: 1.05;
}

.hero-stat-card span:last-child {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.45;
}

.trust-bar {
    position: absolute;
    bottom: clamp(1.2rem, 3vw, 2.25rem);
    left: clamp(1rem, 3.5vw, 4rem);
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 0;
    overflow: hidden;
    max-width: calc(100% - 10rem);
    border-radius: 28px;
    animation: blurFade 850ms 460ms ease both;
}

.trust-item {
    display: grid;
    grid-template-columns: 42px minmax(78px, 120px);
    gap: 0 1rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
}

.trust-item + .trust-item {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item > span {
    grid-row: span 2;
    width: 36px;
    color: #ffffff;
}

.trust-item strong {
    font-size: 1.05rem;
    line-height: 1.05;
}

.trust-item p {
    margin: 0.2rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    line-height: 1.25;
}

.slider-index {
    position: absolute;
    top: 50%;
    right: clamp(1.25rem, 3vw, 4rem);
    z-index: 4;
    display: grid;
    gap: 1.35rem;
    transform: translateY(-50%);
}

.slider-index button {
    position: relative;
    display: grid;
    min-width: 2.3rem;
    border: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
    font-size: 1rem;
    font-weight: 800;
    text-align: right;
    transition: color 220ms ease;
}

.slider-index button span {
    position: absolute;
    top: 2rem;
    right: 0.55rem;
    width: 2px;
    height: 0;
    border-radius: var(--radius-pill);
    background: #ffffff;
    opacity: 0;
}

.slider-index button.is-active {
    color: #ffffff;
}

.slider-index button.is-active span {
    height: 48px;
    opacity: 1;
    animation: progressLine 6000ms linear both;
}

.hero-controls {
    position: absolute;
    right: clamp(1rem, 4vw, 4.5rem);
    bottom: clamp(1.2rem, 3vw, 2.25rem);
    z-index: 5;
    display: flex;
    gap: 0.8rem;
}

.hero-controls button {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.hero-controls button:hover {
    color: #050505;
    background: #ffffff;
    transform: translateY(-2px);
}

@keyframes kenBurns {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.12);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes blurFade {
    from {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes progressLine {
    from {
        transform: scaleY(0);
        transform-origin: top;
    }

    to {
        transform: scaleY(1);
        transform-origin: top;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding-bottom: 17rem;
    }

    .hero-stat-card {
        right: 2rem;
        bottom: 8rem;
    }

    .trust-bar {
        max-width: calc(100% - 4rem);
    }

    .slider-index {
        display: none;
    }
}

@media (max-width: 900px) {
    .hero-content {
        align-items: start;
        padding-top: calc(var(--nav-top) + var(--nav-height) + 5rem);
        padding-bottom: 23rem;
    }

    .hero-copy {
        max-width: 650px;
    }

    .hero-stat-card {
        right: 1rem;
        bottom: 11.25rem;
        width: min(330px, calc(100% - 2rem));
        padding: 1.35rem;
    }

    .trust-bar {
        right: 1rem;
        bottom: 5rem;
        left: 1rem;
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }

    .trust-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .trust-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .hero-controls {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 68%, rgba(0, 0, 0, 0.48) 100%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.12) 44%, rgba(0, 0, 0, 0.9) 100%);
    }

    .hero-content {
        width: min(100% - 1.5rem, 1760px);
        padding-top: calc(var(--nav-top) + var(--nav-height) + 4rem);
        padding-bottom: 28rem;
    }

    .hero-label {
        margin-bottom: 1rem;
        font-size: 0.72rem;
    }

    .hero-copy h1 {
        max-width: 11ch;
        font-size: 2.625rem;
    }

    .hero-description {
        margin-top: 1.25rem;
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-actions {
        display: grid;
        gap: 0.8rem;
        margin-top: 1.6rem;
    }

    .button {
        min-height: 56px;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-stat-card {
        bottom: 13rem;
        grid-template-columns: 48px 1fr;
        border-radius: 22px;
    }

    .stat-icon {
        width: 46px;
    }

    .trust-bar {
        bottom: 4.8rem;
        border-radius: 22px;
    }

    .trust-item {
        grid-template-columns: 32px minmax(0, 1fr);
        padding: 0.95rem;
        gap: 0 0.7rem;
    }

    .trust-item > span {
        width: 30px;
    }

    .trust-item strong {
        font-size: 0.9rem;
    }

    .trust-item p {
        font-size: 0.76rem;
    }

    .hero-controls button {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 390px) {
    .hero-copy h1 {
        font-size: 2.35rem;
    }

    .hero-content {
        padding-bottom: 30rem;
    }
}


/* --- expertise.css --- */
.expertise-section {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: 100px 0 120px;
    color: #070b12;
    background: #ffffff;
}

.expertise-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.expertise-top {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: clamp(2rem, 5vw, 5.5rem);
    align-items: start;
}

.expertise-eyebrow {
    margin: 0 0 1.9rem;
    color: #075dbc;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.expertise-intro h2 {
    margin: 0;
    color: #05070c;
    font-size: clamp(2.75rem, 4.65vw, 4rem);
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 800;
}

.expertise-intro h2 span {
    color: #3e73cf;
}

.expertise-categories {
    margin: 2rem 0 0;
    color: rgba(7, 11, 18, 0.72);
    font-size: clamp(1rem, 1.35vw, 1.125rem);
}

.expertise-list {
    display: grid;
}

.expertise-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 0 0 1.35rem;
    border-bottom: 1px solid rgba(7, 11, 18, 0.15);
}

.expertise-row + .expertise-row {
    padding-top: 1.35rem;
}

.expertise-row-icon,
.service-card-icon,
.expertise-trust-icon {
    display: grid;
    place-items: center;
    color: #06101f;
    background: linear-gradient(145deg, #ffffff, #eef0f3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 14px 32px rgba(7, 11, 18, 0.08);
}

.expertise-row-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
}

.expertise-row svg,
.service-card-icon svg,
.expertise-trust-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.expertise-row p {
    margin: 0;
    color: rgba(7, 11, 18, 0.78);
    font-size: clamp(1rem, 1.32vw, 1.125rem);
    line-height: 1.45;
}

.expertise-row strong {
    color: #075dbc;
    font-weight: 800;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.6rem);
    margin-top: 4.2rem;
}

.service-card {
    position: relative;
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(7, 11, 18, 0.04);
    border-radius: 26px;
    color: #070b12;
    background: #ffffff;
    box-shadow: 0 22px 70px rgba(7, 11, 18, 0.08);
    cursor: pointer;
    transition: transform 400ms ease, box-shadow 400ms ease, border-color 400ms ease, background 400ms ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 38% -18% -22%;
    opacity: 0;
    background: radial-gradient(circle at 18% 0%, rgba(17, 111, 214, 0.15), transparent 48%);
    transition: opacity 400ms ease;
    pointer-events: none;
}

.service-card-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 1.48 / 1;
    border-radius: 26px 26px 0 0;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.service-card-icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    margin: -31px 0 0 30px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #0d79da, #3f72cf);
    box-shadow: 0 16px 30px rgba(13, 121, 218, 0.34);
    transition: transform 400ms ease;
}

.service-card-body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
    padding: 1.15rem 30px 30px;
}

.service-card-body > strong {
    color: #05070c;
    font-size: clamp(1.45rem, 2.15vw, 2.25rem);
    line-height: 1.08;
    font-weight: 800;
    transition: color 400ms ease;
}

.service-card-body > span:not(.learn-more) {
    color: rgba(7, 11, 18, 0.72);
    font-size: 1rem;
    line-height: 1.55;
}

.learn-more {
    position: relative;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.25rem;
    color: #075dbc;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.learn-more::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.22rem;
    left: 2.1rem;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: currentColor;
    transition: transform 400ms ease;
}

.learn-more span {
    transition: transform 400ms ease;
}

.service-card:hover,
.service-card:focus-visible {
    transform: translateY(-12px);
    border-color: rgba(13, 121, 218, 0.36);
    box-shadow: 0 32px 90px rgba(7, 11, 18, 0.14);
}

.service-card:hover::after,
.service-card:focus-visible::after {
    opacity: 1;
}

.service-card:hover .service-card-media img,
.service-card:focus-visible .service-card-media img {
    transform: scale(1.08);
}

.service-card:hover .service-card-icon,
.service-card:focus-visible .service-card-icon {
    transform: rotate(-5deg) scale(1.04);
}

.service-card:hover .service-card-body > strong,
.service-card:focus-visible .service-card-body > strong {
    color: #075dbc;
}

.service-card:hover .learn-more::after,
.service-card:focus-visible .learn-more::after {
    transform: scaleX(1);
}

.service-card:hover .learn-more span,
.service-card:focus-visible .learn-more span {
    transform: translateX(6px);
}

.expertise-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 3.4rem;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 22px 70px rgba(7, 11, 18, 0.08);
}

.expertise-trust-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.35rem;
    align-items: center;
    padding: 1.75rem 1.8rem;
    transition: transform 300ms ease;
}

.expertise-trust-item + .expertise-trust-item {
    border-left: 1px solid rgba(7, 11, 18, 0.12);
}

.expertise-trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #0d79da, #5378d1);
    transition: transform 300ms ease;
}

.expertise-trust-item h3 {
    margin: 0;
    color: #05070c;
    font-size: 1.08rem;
    line-height: 1.25;
    font-weight: 800;
    transition: color 300ms ease;
}

.expertise-trust-item p {
    margin: 0.38rem 0 0;
    color: rgba(7, 11, 18, 0.68);
    font-size: 0.9rem;
    line-height: 1.35;
}

.expertise-trust-item:hover {
    transform: translateY(-4px);
}

.expertise-trust-item:hover .expertise-trust-icon {
    transform: scale(1.08);
}

.expertise-trust-item:hover h3 {
    color: #075dbc;
}

[data-expertise-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-row[data-expertise-animate] {
    transform: translateX(28px);
}

[data-expertise-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.service-card:nth-child(2) {
    transition-delay: 80ms;
}

.service-card:nth-child(3) {
    transition-delay: 160ms;
}

@media (max-width: 1100px) {
    .expertise-section {
        padding-top: 86px;
    }

    .expertise-top {
        grid-template-columns: 1fr;
    }

    .service-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .expertise-trust-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .expertise-trust-item:nth-child(3) {
        border-left: 0;
    }

    .expertise-trust-item:nth-child(n + 3) {
        border-top: 1px solid rgba(7, 11, 18, 0.12);
    }
}

@media (max-width: 720px) {
    .expertise-section {
        padding: 72px 0 90px;
    }

    .expertise-shell {
        width: min(100% - 1.25rem, 1400px);
    }

    .expertise-intro {
        text-align: center;
    }

    .expertise-eyebrow {
        margin-bottom: 1.25rem;
        font-size: 0.74rem;
    }

    .expertise-intro h2 {
        font-size: clamp(2.45rem, 11vw, 3.25rem);
    }

    .expertise-row {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .service-card-grid,
    .expertise-trust-bar {
        grid-template-columns: 1fr;
    }

    .service-card-body {
        padding: 1.1rem 1.3rem 1.5rem;
    }

    .service-card-icon {
        margin-left: 1.3rem;
    }

    .expertise-trust-item {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .expertise-trust-item + .expertise-trust-item,
    .expertise-trust-item:nth-child(n + 3) {
        border-left: 0;
        border-top: 1px solid rgba(7, 11, 18, 0.12);
    }
}


/* --- about.css --- */
/* About GlassfinityUSA Section Styles */

.about-section {
    position: relative;
    z-index: 1;
    padding: 100px 0 120px;
    background: #ffffff;
    color: #070b12;
    overflow: hidden;
}

.about-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 46% 54%;
    gap: clamp(2rem, 5vw, 5.5rem);
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-eyebrow {
    margin: 0 0 1.5rem;
    color: #075dbc; /* Brand blue only for small highlights/labels */
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.about-heading {
    margin: 0 0 2rem;
    color: #05070c;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-heading .highlight-blue {
    color: #075dbc; /* Brand blue active/highlight */
}

.about-copy {
    margin-bottom: 2.5rem;
}

.about-copy p {
    margin: 0 0 1.25rem;
    color: rgba(7, 11, 18, 0.76);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.6;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

/* Global / Shared Button System style for new sections */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 56px;
    border-radius: 14px; /* Border radius: 14px as required */
    padding: 0 2rem;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                background-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
}

.btn-arrow svg {
    width: 18px;
    height: 18px;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Button Hovers: Lift and Arrow Slide */
.btn:hover {
    transform: translateY(-4px); /* Button Lift */
}

.btn:hover .btn-arrow svg {
    transform: translateX(5px); /* Arrow Slide */
}

/* Button Variations */
.btn-brand-blue {
    background: #075dbc;
    color: #ffffff;
    border: 1px solid #075dbc;
}

.btn-brand-blue:hover {
    background: #054a96;
    border-color: #054a96;
    box-shadow: 0 10px 25px rgba(7, 93, 188, 0.25);
}

.btn-outline-dark {
    background: #ffffff;
    color: #070b12;
    border: 1px solid rgba(7, 11, 18, 0.18);
}

.btn-outline-dark:hover {
    background: #05070c;
    color: #ffffff;
    border-color: #05070c;
    box-shadow: 0 10px 25px rgba(7, 11, 18, 0.08);
}

/* Primary Button style - Dark background / white text */
.btn-primary-dark {
    background: #05070c;
    color: #ffffff;
    border: 1px solid #05070c;
}

.btn-primary-dark:hover {
    background: #23272f;
    border-color: #23272f;
    box-shadow: 0 10px 25px rgba(5, 7, 12, 0.15);
}

/* Secondary Button style - Outline light/dark depending on contrast */
.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #050505;
    border-color: #ffffff;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Right Media column styling */
.about-media {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 28px; /* Large Images: 28px */
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 50px rgba(7, 11, 18, 0.06); /* Soft premium shadow */
    background: #eef0f3;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                filter 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Image Hover Animation: Scale 1.05, Brightness 102%, Rotate 0.3deg */
.about-image-wrapper:hover .about-img {
    transform: scale(1.05) rotate(0.3deg);
    filter: brightness(1.02);
}

/* Scroll reveal animations support */
[data-about-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-about-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive breakdowns */
@media (max-width: 1100px) {
    .about-section {
        padding: 80px 0 100px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-content {
        align-items: center;
        text-align: center;
    }

    .about-actions {
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .about-section {
        padding: 60px 0 80px;
    }

    .about-eyebrow {
        margin-bottom: 1rem;
        font-size: 0.75rem;
    }

    .about-heading {
        margin-bottom: 1.5rem;
    }

    .about-copy {
        margin-bottom: 2rem;
    }

    .btn {
        width: 100%; /* full width on mobile */
    }
}


/* --- why-choose-us.css --- */
/* Why Choose Us Section Styles */

.why-section {
    position: relative;
    z-index: 1;
    padding: 100px 0 120px;
    background: #F8F9FB; /* Light gray background as required */
    color: #070b12;
    overflow: hidden;
}

.why-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.why-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.why-eyebrow {
    margin: 0 0 1.25rem;
    color: #075dbc; /* Brand blue only for highlights */
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.why-heading {
    margin: 0;
    color: #05070c;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Why Cards: 24px border radius, soft shadow, transitions */
.why-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px; /* Border radius: 24px as required */
    padding: 3rem 2rem 2.5rem;
    border: 1px solid rgba(7, 11, 18, 0.04);
    box-shadow: 0 16px 40px rgba(7, 11, 18, 0.03); /* Soft premium shadow */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(7, 93, 188, 0.06); /* Brand blue light background */
    color: #075dbc; /* Brand blue icon stroke */
    display: grid;
    place-items: center;
    margin-bottom: 2rem;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                background-color 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card-icon-container svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.8;
}

.why-card-metric {
    font-size: clamp(2.5rem, 3.5vw, 3.25rem);
    font-weight: 800;
    color: #05070c;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.why-card-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #05070c;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.why-card-desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(7, 11, 18, 0.65);
}

/* Card Hover Animation: translateY(-8px), increase shadow, subtle blue border, icon scale, very light glow, transition 300ms */
.why-card:hover {
    transform: translateY(-8px); /* Card Lift */
    border-color: rgba(7, 93, 188, 0.35); /* Subtle blue border */
    box-shadow: 0 24px 60px rgba(7, 11, 18, 0.08), 
                0 0 20px rgba(7, 93, 188, 0.08); /* Increased shadow & very light glow */
}

.why-card:hover .why-card-icon-container {
    transform: scale(1.08); /* Icon Scale */
    background: rgba(7, 93, 188, 0.1);
}

/* Scroll Reveal */
[data-why-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-why-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive breakdowns */
@media (max-width: 1100px) {
    .why-section {
        padding: 80px 0 100px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 720px) {
    .why-section {
        padding: 60px 0 80px;
    }

    .why-intro {
        margin-bottom: 2.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .why-card {
        padding: 2.5rem 1.5rem 2rem;
    }
}


/* --- areas-we-serve.css --- */
/* Areas We Serve Section Styles */

.areas-section {
    position: relative;
    z-index: 1;
    padding: 100px 0 120px;
    background: #0d0d12; /* Dark background as required */
    color: #ffffff;
    overflow: hidden;
}

.areas-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: 43% 57%;
    gap: clamp(2rem, 5vw, 5.5rem);
    align-items: center;
    margin-bottom: 5rem;
}

.areas-content {
    display: flex;
    flex-direction: column;
}

.areas-eyebrow {
    margin: 0 0 1.5rem;
    color: #075dbc; /* Brand blue only for highlights */
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.areas-heading {
    margin: 0 0 2rem;
    color: #ffffff;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.areas-desc {
    margin: 0 0 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.6;
}

/* Locations List */
.areas-locations {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.75rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.location-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #075dbc; /* Brand blue only for icon highlight */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-icon svg {
    width: 20px;
    height: 20px;
}

.location-details {
    display: flex;
    flex-direction: column;
}

.location-name {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.location-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    transition: color 250ms ease;
    text-decoration: none;
}

.location-phone:hover {
    color: #075dbc;
}

/* Call Us Anytime Large Button */
.areas-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px; /* Buttons: 14px */
    color: #ffffff;
    text-decoration: none;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                background-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
}

.areas-call-icon {
    color: #075dbc;
    transition: color 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.areas-call-icon svg {
    width: 24px;
    height: 24px;
}

.areas-call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.areas-call-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.15rem;
}

.areas-call-number {
    font-size: 1.2rem;
    font-weight: 800;
}

.areas-call-arrow svg {
    width: 20px;
    height: 20px;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover: Blue Background, Arrow animation, Button Lift */
.areas-call-btn:hover {
    transform: translateY(-4px); /* Button Lift */
    background: #075dbc; /* Blue background */
    border-color: #075dbc;
    box-shadow: 0 10px 30px rgba(7, 93, 188, 0.25);
}

.areas-call-btn:hover .areas-call-icon {
    color: #ffffff;
}

.areas-call-btn:hover .areas-call-arrow svg {
    transform: translateX(6px); /* Arrow slide */
}

/* Right Map Column */
.areas-map {
    position: relative;
}

.map-image-wrapper {
    position: relative;
    border-radius: 28px; /* Large Images: 28px */
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                filter 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Map hover: Scale 1.05, Brightness 102%, slight rotation 0.3deg */
.map-image-wrapper:hover .map-img {
    transform: scale(1.05) rotate(0.3deg);
    filter: brightness(1.02);
}

/* Bottom Feature Cards */
.areas-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03); /* Glassmorphism background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px; /* Cards: 24px */
    padding: 2rem;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(7, 93, 188, 0.1);
    color: #075dbc; /* Brand blue only for highlights */
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

/* Card Hover Animation: translateY(-8px), increase shadow, subtle blue border, icon scale, very light glow, transition 300ms */
.feature-card:hover {
    transform: translateY(-8px); /* Card Lift */
    border-color: rgba(7, 93, 188, 0.35); /* Subtle blue border */
    box-shadow: 0 16px 40px rgba(7, 93, 188, 0.15),
                0 0 20px rgba(7, 93, 188, 0.08); /* Glow & increased shadow */
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
}

/* Scroll reveal animations */
[data-areas-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-areas-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive breakdowns */
@media (max-width: 1100px) {
    .areas-section {
        padding: 80px 0 100px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-bottom: 4rem;
    }

    .areas-content {
        align-items: center;
        text-align: center;
    }

    .areas-locations {
        align-items: center;
    }

    .areas-call-btn {
        margin-inline: auto;
    }

    .areas-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 720px) {
    .areas-section {
        padding: 60px 0 80px;
    }

    .areas-grid {
        gap: 2.5rem;
    }

    .location-phone {
        font-size: 1.15rem;
    }

    .areas-call-btn {
        width: 100%;
        justify-content: center;
    }

    .areas-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}


/* --- testimonials.css --- */
/* Testimonials Section Styles */

.testimonials-section {
    position: relative;
    z-index: 1;
    padding: 100px 0 120px;
    background: #ffffff; /* White background as required */
    color: #070b12;
    overflow: hidden;
}

.testimonials-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-eyebrow {
    margin: 0 0 1.25rem;
    color: #075dbc; /* Brand blue active highlight/label */
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.testimonials-heading {
    margin: 0;
    color: #05070c;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Slider Layout & Navigation Buttons */
.testimonials-carousel-wrapper {
    position: relative;
    padding: 0 4.5rem; /* space for navigation arrows */
}

.testimonials-slider {
    padding: 1rem 0.5rem 4rem !important; /* bottom padding for pagination and shadows */
    position: relative;
    overflow: hidden;
}

/* Testimonial Card: 24px border radius, soft shadow, lift hover */
.testimonial-card {
    background: #ffffff;
    border-radius: 24px; /* Cards: 24px */
    border: 1px solid rgba(7, 11, 18, 0.05);
    padding: 3rem 2.5rem;
    box-shadow: 0 16px 40px rgba(7, 11, 18, 0.03); /* Soft premium shadow */
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.testimonial-quote-mark {
    color: rgba(7, 93, 188, 0.15); /* Soft blue quote icon */
    display: block;
}

.testimonial-quote-mark svg {
    width: 32px;
    height: 32px;
}

.testimonial-stars {
    color: #ffc107; /* Gold rating stars */
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.testimonial-quote {
    margin: 0 0 2.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(7, 11, 18, 0.8);
    font-style: normal;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.testimonial-avatar-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: #eef0f3;
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #05070c;
    font-style: normal;
    margin-bottom: 0.15rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: rgba(7, 11, 18, 0.55);
}

/* Card Hover Animation: translateY(-8px), increase shadow, subtle blue border, icon scale, very light glow, transition 300ms */
.testimonial-card:hover {
    transform: translateY(-8px); /* Card Lift */
    border-color: rgba(7, 93, 188, 0.35); /* Subtle blue border */
    box-shadow: 0 24px 60px rgba(7, 11, 18, 0.08),
                0 0 20px rgba(7, 93, 188, 0.08); /* Glow & increased shadow */
}

/* Custom Swiper Controls */
.testimonials-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(7, 11, 18, 0.12);
    color: rgba(7, 11, 18, 0.7);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 10;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                background-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-nav-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-btn-prev {
    left: 0;
}

.testimonials-btn-next {
    right: 0;
}

/* Hover: Lift, Blue border transition */
.testimonials-nav-btn:hover {
    transform: translateY(-50%) scale(1.08);
    border-color: #075dbc;
    color: #075dbc;
    box-shadow: 0 8px 24px rgba(7, 93, 188, 0.1);
}

.testimonials-btn-prev:hover svg {
    transform: translateX(-4px);
}

.testimonials-btn-next:hover svg {
    transform: translateX(4px);
}

/* Pagination Dots */
.testimonials-pagination {
    bottom: 0.5rem !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(7, 11, 18, 0.2);
    opacity: 1;
    margin: 0 6px !important;
    transition: width 300ms ease, background-color 300ms ease, border-radius 300ms ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 4px;
    background: #075dbc !important; /* Brand Blue active state */
}

/* Scroll reveal support */
[data-testimonials-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-testimonials-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive breakdowns */
@media (max-width: 1100px) {
    .testimonials-section {
        padding: 80px 0 100px;
    }

    .testimonials-carousel-wrapper {
        padding: 0 3.5rem;
    }

    .testimonial-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 720px) {
    .testimonials-section {
        padding: 60px 0 80px;
    }

    .testimonials-carousel-wrapper {
        padding: 0; /* stack navigation */
    }

    .testimonials-nav-btn {
        display: none; /* hide navigation buttons on mobile, swipe is sufficient */
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
}


/* --- cta.css --- */
/* Final CTA Section Styles */

.cta-section {
    position: relative;
    z-index: 1;
    padding: 0 0 100px;
    background: #ffffff; /* White background around the banner to blend with Testimonials */
    overflow: hidden;
}

.cta-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

/* Banner container: 24px border radius, background cover, dark overlay */
.cta-banner {
    position: relative;
    border-radius: 24px; /* Cards/Banners: 24px */
    overflow: hidden;
    padding: 5rem 4.5rem;
    background: #0d0d12 url('assets/images/about/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    box-shadow: var(--shadow-glass);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.78) 100%);
    z-index: 1;
}

.cta-grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

/* Left Content side */
.cta-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-phone-icon-box {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                background-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                color 300ms cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    text-decoration: none;
}

.cta-phone-icon-box svg {
    width: 28px;
    height: 28px;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Phone icon box hover: lift and highlight */
.cta-phone-icon-box:hover {
    transform: translateY(-4px);
    background: rgba(7, 93, 188, 0.15);
    border-color: rgba(7, 93, 188, 0.4);
    color: #075dbc;
}

.cta-phone-icon-box:hover svg {
    transform: rotate(15deg) scale(1.08);
}

.cta-heading {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-heading span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Right buttons side */
.cta-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

/* Scroll reveal support */
[data-cta-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-cta-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive breakdowns */
@media (max-width: 1200px) {
    .cta-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
        text-align: center;
    }

    .cta-left {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .cta-right {
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .cta-section {
        padding-bottom: 60px;
    }

    .cta-banner {
        padding: 3.5rem 2rem;
    }

    .cta-right {
        flex-direction: column;
        width: 100%;
    }

    .cta-right .btn {
        width: 100%;
    }
}


/* --- footer.css --- */
.site-footer {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #0d0d12;
    isolation: isolate;
}

.footer-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -3;
    width: min(48vw, 760px);
    height: 62%;
    object-fit: cover;
    object-position: right center;
    opacity: 0.42;
    filter: saturate(0.72) contrast(1.1);
}

.footer-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, #050505 0%, #050505 50%, rgba(5, 5, 5, 0.82) 70%, rgba(5, 5, 5, 0.62) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.08), #050505 66%);
}

.footer-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
    padding: clamp(4.5rem, 8vw, 7.5rem) 0 2.4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.05fr 0.85fr 1.25fr;
    gap: clamp(2rem, 4vw, 5rem);
    align-items: start;
}

.footer-reveal {
    animation: footerFadeUp 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    color: #ffffff;
    font-size: clamp(1.2rem, 1.7vw, 1.58rem);
    font-weight: 500;
    letter-spacing: 0.22em;
}

.footer-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.footer-logo span span {
    color: #168fff;
}

.footer-brand p,
.footer-estimate > p,
.newsletter p,
.trust-card p {
    color: rgba(255, 255, 255, 0.72);
}

.footer-brand > p {
    max-width: 370px;
    margin: 2rem 0 2.6rem;
    font-size: 1.05rem;
    line-height: 1.72;
}

.footer-socials {
    display: flex;
    gap: 1.55rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-socials a,
.footer-square-icon {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.025);
    transition: transform 300ms ease, border-color 300ms ease, color 300ms ease, background-color 300ms ease;
}

.footer-socials a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.footer-socials svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-socials a:hover,
.trust-card:hover .footer-square-icon,
.footer-square-icon:hover {
    color: #168fff;
    border-color: rgba(22, 143, 255, 0.74);
    transform: translateY(-4px) scale(1.04);
}

.footer-column h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1.55;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-rule {
    width: 42px;
    height: 2px;
    margin: 1.1rem 0 2.1rem;
    background: #168fff;
}

.footer-contact address {
    display: grid;
    gap: 1.75rem;
    font-style: normal;
}

.contact-block {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 1.25rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    color: #168fff;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-block p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.98rem;
    line-height: 1.7;
}

.contact-block a {
    display: block;
    width: fit-content;
    transition: color 300ms ease;
}

.contact-block a:hover {
    color: #168fff;
}

.footer-links ul {
    display: grid;
    gap: 1.35rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a,
.footer-bottom a {
    position: relative;
    color: rgba(255, 255, 255, 0.84);
    transition: color 300ms ease;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 1.05rem;
    font-size: 1rem;
}

.footer-links a::before {
    content: ">";
    color: #ffffff;
    font-weight: 500;
    transition: transform 300ms ease, color 300ms ease;
}

.footer-links a::after,
.footer-bottom a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.28rem;
    left: 2rem;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: currentColor;
    transition: transform 300ms ease;
}

.footer-bottom a::after {
    left: 0;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: #ffffff;
}

.footer-links a:hover::before {
    color: #168fff;
    transform: translateX(4px);
}

.footer-links a:hover::after,
.footer-bottom a:hover::after {
    transform: scaleX(1);
}

.footer-feature-heading {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.footer-square-icon {
    flex: 0 0 auto;
    width: 66px;
    height: 66px;
    border-radius: 14px;
}

.footer-square-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-estimate > p {
    max-width: 330px;
    margin: 1.55rem 0 1.9rem;
    line-height: 1.72;
}

.footer-button {
    position: relative;
    display: inline-flex;
    min-height: 64px;
    min-width: 280px;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 8px;
    padding: 0 1.5rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 300ms ease, background-color 300ms ease, transform 300ms ease;
}

.footer-button::before,
.newsletter-form button::before {
    content: "";
    position: absolute;
    inset: auto auto 50% 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    transform: translate(-50%, 50%);
    transition: width 420ms ease, height 420ms ease;
}

.footer-button span,
.newsletter-form button span {
    position: relative;
    z-index: 1;
}

.footer-button span:last-child {
    font-size: 1.8rem;
    font-weight: 400;
    transition: transform 300ms ease;
}

.footer-button:hover {
    color: #050505;
    background: #ffffff;
    transform: translateY(-3px);
}

.footer-button:hover::before,
.newsletter-form button:hover::before {
    width: 340px;
    height: 340px;
}

.footer-button:hover span:last-child {
    transform: translateX(5px);
}

.newsletter {
    margin-top: 2.3rem;
    padding-top: 2.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.newsletter .footer-feature-heading {
    align-items: flex-start;
}

.newsletter h3 {
    line-height: 1.15;
}

.newsletter p {
    max-width: 300px;
    margin: 0.6rem 0 0;
    line-height: 1.6;
}

.newsletter-form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 64px;
    margin-top: 1.9rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 9px;
    background: rgba(5, 5, 5, 0.42);
}

.newsletter-form input {
    min-width: 0;
    height: 64px;
    border: 0;
    padding: 0 1.25rem;
    color: #ffffff;
    background: transparent;
    outline: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.newsletter-form button {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    color: #050505;
    background: #ffffff;
    font-size: 2rem;
    transition: transform 300ms ease;
}

.newsletter-form button:hover {
    transform: scale(1.02);
}

.newsletter-status {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
}

.newsletter-form.has-error {
    border-color: rgba(255, 87, 87, 0.78);
}

.newsletter-form.has-success {
    border-color: rgba(22, 143, 255, 0.78);
}

.footer-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(4rem, 7vw, 6.3rem);
    padding: 3.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-card {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    min-height: 82px;
    padding: 0 2rem;
    transition: transform 300ms ease;
}

.trust-card + .trust-card {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-card h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
}

.trust-card p {
    margin: 0.45rem 0 0;
    line-height: 1.35;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    padding-top: 2.4rem;
    color: rgba(255, 255, 255, 0.58);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:last-child {
    justify-self: end;
}

.footer-bottom nav {
    display: flex;
    gap: 2rem;
}

@keyframes footerFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-card {
        padding: 1.4rem;
    }

    .trust-card:nth-child(3) {
        border-left: 0;
    }

    .trust-card:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom nav,
    .footer-bottom p:last-child {
        justify-self: center;
    }
}

@media (max-width: 720px) {
    .footer-bg-image {
        width: 100%;
        height: 38%;
        opacity: 0.26;
    }

    .footer-bg-overlay {
        background:
            linear-gradient(180deg, rgba(5, 5, 5, 0.82) 0%, #050505 48%),
            linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.72) 100%);
    }

    .footer-shell {
        padding-top: 4rem;
    }

    .footer-grid,
    .footer-trust {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-column,
    .footer-estimate {
        text-align: center;
    }

    .footer-logo,
    .footer-socials,
    .footer-feature-heading {
        justify-content: center;
    }

    .footer-brand > p,
    .footer-estimate > p,
    .newsletter p {
        margin-inline: auto;
    }

    .footer-rule {
        margin-inline: auto;
    }

    .contact-block {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .contact-block a {
        width: auto;
        margin-inline: auto;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-button {
        width: min(100%, 340px);
    }

    .newsletter-form {
        width: min(100%, 420px);
        margin-inline: auto;
    }

    .footer-trust {
        padding: 2rem 0;
    }

    .trust-card {
        justify-content: center;
        text-align: center;
    }

    .trust-card + .trust-card,
    .trust-card:nth-child(n + 3) {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .footer-bottom nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.6rem;
    }
}

@media (max-width: 430px) {
    .footer-shell {
        width: min(100% - 1.25rem, 1400px);
    }

    .footer-logo {
        gap: 0.85rem;
        font-size: 1rem;
        letter-spacing: 0.16em;
    }

    .footer-logo img {
        width: 58px;
        height: 58px;
    }

    .footer-socials {
        gap: 0.9rem;
    }

    .footer-feature-heading,
    .trust-card {
        flex-direction: column;
    }

    .newsletter-form {
        grid-template-columns: 1fr 58px;
    }
}


/* --- about-page.css --- */
/* About Us Page Specific Styles */

/* 1. Hero Banner */
.about-hero-section {
    position: relative;
    height: 650px;
    background: #0d0d12 url('assets/images/services/commercial.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.96) 0%, rgba(5, 5, 5, 0.65) 100%);
    z-index: 1;
}

.about-hero-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 720px;
}

/* Breadcrumbs */
.breadcrumb-nav {
    margin-bottom: 2.5rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 220ms ease;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 700;
}

.about-hero-eyebrow {
    color: #075dbc; /* Brand blue only for highlights */
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.about-hero-heading {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 2rem;
}

.about-hero-heading .highlight-blue {
    color: #075dbc; /* Brand blue active state */
}

.about-hero-desc {
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    line-height: 1.55;
    margin: 0;
}

/* 2. Who We Are */
.who-we-are-section {
    padding: 120px 0;
    background: #ffffff; /* White background */
    color: #070b12;
}

.who-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.who-grid {
    display: grid;
    grid-template-columns: 46% 54%;
    gap: clamp(2.5rem, 6vw, 6.5rem);
    align-items: center;
}

.who-left {
    display: flex;
    flex-direction: column;
}

.who-eyebrow {
    color: #075dbc;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.who-heading {
    color: #05070c;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 2rem;
}

.who-copy p {
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    line-height: 1.6;
    color: rgba(7, 11, 18, 0.76);
    margin: 0 0 1.5rem;
}

.who-copy p:last-child {
    margin-bottom: 0;
}

.who-right {
    position: relative;
}

/* Right Media Container */
.who-media-container {
    position: relative;
    border-radius: 28px; /* Large Images: 28px */
    overflow: visible; /* to allow floating card to overlap without clipping */
    box-shadow: 0 20px 50px rgba(7, 11, 18, 0.05);
    background: #eef0f3;
}

.who-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px; /* Large Images: 28px */
    object-fit: cover;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                filter 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.who-media-container:hover .who-img {
    transform: scale(1.03) rotate(0.3deg);
    filter: brightness(1.02);
}

/* Floating Metrics Card overlapping the bottom of image */
.who-floating-card {
    position: absolute;
    bottom: -40px;
    left: 5%;
    right: 5%;
    background: rgba(255, 255, 255, 0.9); /* Premium white glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px; /* Cards: 24px */
    padding: 2.25rem 1.5rem;
    box-shadow: 0 24px 60px rgba(7, 11, 18, 0.1);
    z-index: 5;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.who-floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(7, 11, 18, 0.15);
}

.floating-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.floating-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(7, 11, 18, 0.1);
}

.floating-card-item:last-child {
    border-right: none;
}

.floating-card-icon {
    color: #075dbc; /* Brand blue only for highlights/icons */
    margin-bottom: 0.75rem;
    display: grid;
    place-items: center;
}

.floating-card-icon svg {
    width: 24px;
    height: 24px;
}

.floating-card-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #05070c;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.floating-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(7, 11, 18, 0.55);
    line-height: 1.3;
}

/* 3. Our Values */
.values-section {
    padding: 140px 0;
    background: #0d0d12; /* Dark Background */
    color: #ffffff;
    overflow: hidden;
}

.values-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.values-intro {
    text-align: center;
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: 5rem;
}

.values-eyebrow {
    color: #075dbc;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.values-heading {
    color: #ffffff;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
}

.values-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    line-height: 1.6;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

/* Value Cards: Glassmorphism, 24px border radius */
.value-card {
    background: rgba(255, 255, 255, 0.03); /* Glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px; /* Cards: 24px */
    padding: 3rem 2rem;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-card-icon {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(7, 93, 188, 0.1);
    color: #075dbc; /* Blue Icons */
    margin-bottom: 2rem;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card-icon svg {
    width: 28px;
    height: 28px;
}

.value-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.value-card-copy {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
}

/* Value card hover: Lift, Glow, Blue Accent details */
.value-card:hover {
    transform: translateY(-8px); /* Hover Lift */
    border-color: rgba(7, 93, 188, 0.35);
    box-shadow: 0 20px 45px rgba(7, 93, 188, 0.15),
                0 0 25px rgba(7, 93, 188, 0.08); /* Glow */
}

.value-card:hover .value-card-icon {
    transform: scale(1.08);
}

/* 4. Areas We Serve */
.about-areas-section {
    padding: 120px 0;
    background: #ffffff; /* White background */
    color: #070b12;
    overflow: hidden;
}

.about-areas-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.about-areas-intro {
    text-align: center;
    margin-bottom: 4.5rem;
}

.about-areas-eyebrow {
    color: #075dbc;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.about-areas-heading {
    color: #05070c;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.about-areas-subheading {
    color: rgba(7, 11, 18, 0.62);
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    margin: 0;
}

.about-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4.5rem;
}

/* Location Cards: Glass style, 24px border radius */
.location-card {
    background: #ffffff;
    border: 1px solid rgba(7, 11, 18, 0.06);
    border-radius: 24px; /* Cards: 24px */
    padding: 2.25rem;
    box-shadow: 0 16px 40px rgba(7, 11, 18, 0.03);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.location-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.location-card-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(7, 93, 188, 0.06);
    color: #075dbc; /* Blue pin icon */
    flex-shrink: 0;
}

.location-card-icon svg {
    width: 20px;
    height: 20px;
}

.location-card-info {
    display: flex;
    flex-direction: column;
}

.location-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #05070c;
    margin: 0 0 0.25rem;
}

.location-card-phone {
    font-size: 0.95rem;
    color: rgba(7, 11, 18, 0.65);
    font-weight: 700;
    text-decoration: none;
    transition: color 220ms ease;
}

.location-card-phone:hover {
    color: #075dbc;
}

/* Map Mockup wrapper inside cards */
.location-card-map-wrapper {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background: #eef0f3;
    border: 1px solid rgba(7, 11, 18, 0.08);
}

.location-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Map Mockup UI Controls */
.map-mockup-ui {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.map-tabs {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    display: flex;
    font-size: 0.7rem;
    font-weight: 700;
    overflow: hidden;
    pointer-events: auto;
}

.map-tabs span {
    padding: 6px 10px;
    cursor: pointer;
    color: #555555;
    background: #ffffff;
}

.map-tabs span.active {
    background: #f1f1f1;
    color: #000000;
}

.map-controls-right {
    position: absolute;
    top: 10px;
    right: 10px;
    pointer-events: auto;
}

.map-controls-right button {
    width: 28px;
    height: 28px;
    background: #ffffff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23555555" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7"/></svg>') no-repeat center center;
    background-size: 14px;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border-radius: 4px;
    cursor: pointer;
}

.map-pin-indicator {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #e53935;
    border: 2px solid #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.map-pin-indicator::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 4px 0 4px;
    border-style: solid;
    border-color: #e53935 transparent transparent transparent;
}

.map-zoom-buttons {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: auto;
}

.map-zoom-buttons button {
    width: 28px;
    height: 28px;
    border: none;
    background: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    color: #555555;
    cursor: pointer;
}

.map-zoom-buttons button:first-child {
    border-bottom: 1px solid #eaeaea;
}

/* Location card hover: lift, blue border */
.location-card:hover {
    transform: translateY(-8px); /* Hover Lift */
    border-color: rgba(7, 93, 188, 0.35); /* Blue Border */
    box-shadow: 0 24px 60px rgba(7, 11, 18, 0.08);
}

.location-card:hover .location-map-img {
    transform: scale(1.03);
}

/* Bottom CTA Bar */
.about-areas-cta {
    position: relative;
    max-width: 860px;
    margin-inline: auto;
}

.areas-cta-inner {
    background: #ffffff;
    border: 1px solid rgba(7, 11, 18, 0.07);
    border-radius: 24px; /* CTA Card border radius: 24px */
    padding: 1.75rem 2.5rem;
    box-shadow: 0 20px 50px rgba(7, 11, 18, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.areas-cta-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.areas-cta-phone-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(7, 93, 188, 0.06);
    color: #075dbc;
    flex-shrink: 0;
}

.areas-cta-phone-icon svg {
    width: 24px;
    height: 24px;
}

.areas-cta-text {
    margin: 0;
    color: #070b12;
    line-height: 1.35;
}

.areas-cta-text strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: #05070c;
}

.areas-cta-text span {
    font-size: 0.95rem;
    color: rgba(7, 11, 18, 0.65);
}

.areas-cta-right {
    flex-shrink: 0;
}

/* Scroll reveal support */
[data-about-page-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-about-page-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakdowns */
@media (max-width: 1200px) {
    .who-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .who-left {
        align-items: center;
        text-align: center;
    }

    .who-right {
        max-width: 720px;
        margin-inline: auto;
        width: 100%;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-areas-grid > .location-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin-inline: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        height: 520px;
    }

    .who-we-are-section {
        padding: 80px 0;
    }

    .who-floating-card {
        position: static;
        margin-top: 1.5rem;
        width: 100%;
        left: 0;
        right: 0;
        padding: 1.75rem 1rem;
    }

    .floating-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0.5rem;
    }

    .floating-card-item:nth-child(even) {
        border-right: none;
    }

    .values-section {
        padding: 90px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-areas-section {
        padding: 80px 0;
    }

    .about-areas-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-areas-grid > .location-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .areas-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem 1.5rem;
        gap: 1.5rem;
    }

    .areas-cta-left {
        flex-direction: column;
        gap: 1rem;
    }

    .areas-cta-right {
        width: 100%;
    }

    .areas-cta-right .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        height: 465px;
    }

    .breadcrumb-nav {
        margin-bottom: 1.5rem;
    }

    .about-hero-heading {
        margin-bottom: 1.25rem;
    }

    .who-we-are-section {
        padding: 60px 0;
    }

    .floating-card-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .floating-card-item {
        border-right: none;
        border-bottom: 1px solid rgba(7, 11, 18, 0.08);
        padding-bottom: 1rem;
    }

    .floating-card-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .value-card {
        padding: 2.25rem 1.5rem;
    }

    .location-card {
        padding: 1.5rem;
    }
}


/* --- services-page.css --- */
/* Services Page Specific Styles */

/* 1. Hero Banner */
.services-hero-section {
    position: relative;
    height: 650px;
    background: #0d0d12 url('assets/images/services/commercial.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.96) 0%, rgba(5, 5, 5, 0.65) 100%);
    z-index: 1;
}

.services-hero-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

.services-hero-content {
    max-width: 720px;
}

.services-hero-eyebrow {
    color: #075dbc; /* Brand blue active highlights/label */
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.services-hero-heading {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 2rem;
}

.services-hero-heading .highlight-blue {
    color: #075dbc;
}

.services-hero-desc {
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    line-height: 1.55;
    margin: 0 0 2.5rem;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

/* 2. Premium Services Grid */
.services-grid-section {
    padding: 120px 0;
    background: #ffffff; /* White background */
    color: #070b12;
}

.services-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.services-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.services-eyebrow {
    color: #075dbc;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.services-heading {
    color: #05070c;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

/* Service Detail Cards: 24px border radius, soft shadow, lift hover */
.service-detail-card {
    background: #ffffff;
    border: 1px solid rgba(7, 11, 18, 0.05);
    border-radius: 24px; /* Cards: 24px */
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(7, 11, 18, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef0f3;
}

.service-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                filter 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Icon badge floating over the bottom edge of image */
.service-detail-icon-badge {
    position: absolute;
    bottom: 16px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ffffff;
    color: #075dbc;
    box-shadow: 0 8px 24px rgba(7, 11, 18, 0.08);
    display: grid;
    place-items: center;
    z-index: 3;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                background-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                color 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-icon-badge svg {
    width: 22px;
    height: 22px;
}

/* Emergency Pill Tag */
.emergency-pill-tag {
    position: absolute;
    top: 16px;
    right: 20px;
    background: #e53935;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
    z-index: 3;
}

.emergency-pill-dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.service-detail-body {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #05070c;
    margin: 0 0 0.85rem;
    line-height: 1.25;
}

.service-detail-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(7, 11, 18, 0.65);
    margin: 0 0 1.75rem;
    flex-grow: 0;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-grow: 1;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(7, 11, 18, 0.78);
    font-weight: 500;
}

.checkmark-icon {
    color: #075dbc; /* Checkmark accent blue */
    font-weight: 800;
    font-size: 0.85rem;
}

.service-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #075dbc;
    text-decoration: none;
    transition: transform 300ms ease, color 300ms ease;
    width: fit-content;
}

.arrow-symbol {
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card hover interactions: Lift, glow, zoom, icon shift */
.service-detail-card:hover {
    transform: translateY(-8px); /* Card Lift */
    border-color: rgba(7, 93, 188, 0.35); /* Subtle blue border */
    box-shadow: 0 24px 60px rgba(7, 11, 18, 0.08), 
                0 0 20px rgba(7, 93, 188, 0.08); /* Glow */
}

.service-detail-card:hover .service-detail-img {
    transform: scale(1.05) rotate(0.3deg); /* Image zoom, rotation */
    filter: brightness(1.02); /* Brightness 102% */
}

.service-detail-card:hover .service-detail-icon-badge {
    background: #075dbc;
    color: #ffffff;
    transform: translateY(-2px);
}

.service-detail-card:hover .service-detail-link {
    color: #054a96;
}

.service-detail-card:hover .arrow-symbol {
    transform: translateX(4px);
}

/* 3. Why Choose Us */
.services-why-section {
    padding: 120px 0;
    background: #0d0d12; /* Dark Theme */
    color: #ffffff;
    overflow: hidden;
}

.why-choose-eyebrow {
    color: #075dbc;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.why-choose-heading {
    color: #ffffff;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

/* Why cards: glassmorphism */
.why-choose-card {
    background: rgba(255, 255, 255, 0.03); /* Glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px; /* Cards: 24px */
    padding: 3rem 2rem;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(7, 93, 188, 0.1);
    color: #075dbc; /* Blue Icons */
    margin-bottom: 2rem;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-icon svg {
    width: 26px;
    height: 26px;
}

.why-choose-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #ffffff;
}

.why-choose-desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
}

/* Why cards hover: Lift & Glow */
.why-choose-card:hover {
    transform: translateY(-8px); /* Lift */
    border-color: rgba(7, 93, 188, 0.35);
    box-shadow: 0 20px 45px rgba(7, 93, 188, 0.15),
                0 0 25px rgba(7, 93, 188, 0.08); /* Glow */
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.08);
}

/* 4. Our Service Process Timeline */
.services-process-section {
    padding: 120px 0;
    background: #ffffff; /* White background */
    color: #070b12;
    overflow: hidden;
}

.process-eyebrow {
    color: #075dbc;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.process-heading {
    color: #05070c;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.timeline-container {
    position: relative;
    padding: 3rem 0 1rem;
    margin-top: 2rem;
}

/* Timeline Connecting Line */
.timeline-line-base {
    position: absolute;
    top: 68px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(7, 11, 18, 0.08);
    z-index: 1;
}

.timeline-line-active {
    position: absolute;
    top: 68px;
    left: 10%;
    width: 0%; /* Animate on scroll reveal JS */
    height: 2px;
    background: #075dbc;
    z-index: 2;
    transition: width 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    z-index: 3;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.step-badge {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(7, 11, 18, 0.12);
    color: rgba(7, 11, 18, 0.4);
    display: grid;
    place-items: center;
    margin-bottom: 2rem;
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(7, 11, 18, 0.06);
    color: rgba(7, 11, 18, 0.7);
    font-size: 0.75rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    border: 2px solid #ffffff;
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #05070c;
    margin: 0 0 0.65rem;
    line-height: 1.3;
}

.step-desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(7, 11, 18, 0.6);
}

/* Timeline Step Hover */
.timeline-step:hover .step-badge {
    transform: translateY(-4px);
    border-color: #075dbc;
    background: #075dbc;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(7, 93, 188, 0.2);
}

.timeline-step:hover .step-number {
    background: #075dbc;
    color: #ffffff;
    border-color: #075dbc;
}

.timeline-container.is-visible .timeline-line-active {
    width: 80%; /* Active lines reach the last dot (step 5) */
}

/* 5. Premium FAQ Accordion */
.services-faq-section {
    padding: 120px 0;
    background: #0d0d12; /* Dark background */
    color: #ffffff;
    overflow: hidden;
}

.faq-eyebrow {
    color: #075dbc;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.faq-heading {
    color: #ffffff;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.faq-accordion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
    margin-top: 4rem;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
}

/* FAQ Item Cards: Glassmorphism */
.faq-item {
    background: rgba(255, 255, 255, 0.02); /* Minimal glass */
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: border-color 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    gap: 1.5rem;
    outline: none;
}

.faq-icon-indicator {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                background-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                color 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon-indicator svg {
    width: 16px;
    height: 16px;
}

.line-v {
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                opacity 300ms ease;
    transform-origin: center;
}

/* Active FAQ Item state */
.faq-item.is-open {
    border-color: rgba(7, 93, 188, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-item.is-open .faq-icon-indicator {
    background: #075dbc; /* Brand blue highlight active state */
    color: #ffffff;
}

.faq-item.is-open .line-v {
    transform: rotate(90deg) scaleY(0); /* Plus transforms smoothly into minus */
    opacity: 0;
}

.faq-content {
    max-height: 0; /* Smooth accordion transition height */
    overflow: hidden;
    transition: max-height 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-inner-body {
    padding: 0 2rem 1.75rem;
}

.faq-inner-body p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

/* 6. Final CTA Banner */
.services-cta-section {
    position: relative;
    z-index: 1;
    padding: 0 0 100px;
    background: #0d0d12; /* Blends with FAQ background */
    overflow: hidden;
}

.services-cta-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.services-cta-banner {
    position: relative;
    border-radius: 24px; /* Cards: 24px */
    overflow: hidden;
    padding: 5rem 4.5rem;
    background: #0d0d12 url('assets/images/about/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    box-shadow: var(--shadow-glass);
}

.services-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.78) 100%);
    z-index: 1;
}

.services-cta-grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.services-cta-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.services-cta-phone-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                background-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                color 300ms cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.services-cta-phone-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.services-cta-phone-icon:hover {
    transform: translateY(-4px);
    background: rgba(7, 93, 188, 0.15);
    border-color: rgba(7, 93, 188, 0.4);
    color: #075dbc;
}

.services-cta-phone-icon:hover svg {
    transform: rotate(15deg) scale(1.08);
}

.services-cta-heading {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.services-cta-heading span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
}

.services-cta-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

/* Scroll reveal support */
[data-services-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-services-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive breakdowns */
@media (max-width: 1200px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .service-detail-card.emergency-card {
        grid-column: span 2;
        max-width: 50%;
        margin-inline: auto;
        width: 100%;
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .timeline-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 0;
    }
    .timeline-line-base,
    .timeline-line-active {
        display: none; /* hide connection lines when steps wrap */
    }
    .faq-accordion-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .services-cta-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
        text-align: center;
    }
    .services-cta-left {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .services-cta-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        height: 550px;
    }
    .services-grid-section,
    .services-why-section,
    .services-process-section,
    .services-faq-section {
        padding: 80px 0;
    }
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-detail-card.emergency-card {
        grid-column: span 1;
        max-width: 100%;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .step-badge {
        margin-bottom: 1rem;
    }
    .faq-trigger {
        padding: 1.5rem;
    }
    .faq-inner-body {
        padding: 0 1.5rem 1.5rem;
    }
    .services-cta-banner {
        padding: 3.5rem 2rem;
    }
    .services-cta-right {
        flex-direction: column;
        width: 100%;
    }
    .services-cta-right .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero-section {
        height: 480px;
    }
    .services-grid-section,
    .services-why-section,
    .services-process-section,
    .services-faq-section {
        padding: 60px 0;
    }
    .services-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .services-hero-actions .btn {
        width: 100%;
    }
    .why-choose-card {
        padding: 2.25rem 1.5rem;
    }
}

/* --- DARK THEME SERVICE DETAIL PAGES --- */
.service-detail-hero {
    position: relative;
    padding: 180px 0 100px;
    background-color: var(--color-black);
    overflow: hidden;
}
.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent, black 30%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 30%);
}
.service-hero-box h1 {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    margin-bottom: 1.5rem;
    color: var(--color-ink);
    font-weight: 800;
}
.service-hero-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--color-muted);
}

.service-detail-content {
    padding: 100px 0;
    background: var(--color-black);
}
.service-detail-inner {
    max-width: 900px;
    margin: 0 auto;
}
.service-detail-inner h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--color-ink);
}
.service-detail-inner h3 {
    font-size: 1.6rem;
    margin-top: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    border-bottom: 1px solid var(--color-line);
    padding-bottom: 0.5rem;
}
.service-detail-inner p, .service-detail-inner ul {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-muted);
}
.service-detail-inner ul {
    padding-left: 1.5rem;
}
.service-detail-inner li {
    margin-bottom: 0.75rem;
}

.service-gallery {
    padding: 0 0 100px;
    background: var(--color-black);
}
.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.service-gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* --- DARK THEME EXCLUSIVE SERVICES PAGE --- */
.services-exclusive-hero {
    position: relative;
    padding: 180px 0 100px;
    background-color: var(--color-black);
    overflow: hidden;
}
.services-exclusive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 60%;
    background-image: url('../images/services/commercial.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    mask-image: linear-gradient(to left, transparent, black 30%);
    -webkit-mask-image: linear-gradient(to left, transparent, black 30%);
}

.services-exclusive-hero .hero-box {
    position: relative;
    z-index: 2;
    background: var(--color-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--color-line);
    padding: 4rem;
    max-width: 600px;
    margin-left: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
}

.services-exclusive-hero .hero-box h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--color-ink);
}
.services-exclusive-hero .hero-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-muted);
}

.services-cards-section {
    padding: 120px 0;
    background: var(--color-black);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 3rem 2.5rem;
    width: 100%;
}

.exclusive-service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
    box-sizing: border-box;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 300ms cubic-bezier(0.16, 1, 0.3, 1), 
                background 300ms cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.exclusive-service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(7, 93, 188, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.exclusive-service-card-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.exclusive-service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.exclusive-service-card:hover .exclusive-service-card-media img {
    transform: scale(1.04);
}

.exclusive-service-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.exclusive-service-card-content h3 {
    font-size: 1.5rem;
    font-weight: 750;
    line-height: 1.25;
    color: #ffffff;
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
}

.exclusive-service-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 2rem 0;
    /* Limit description visually to 3-4 lines maximum */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.exclusive-service-card-btn {
    margin-top: auto;
    font-size: 0.95rem;
    font-weight: 700;
    color: #075dbc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 300ms ease, gap 300ms ease;
    align-self: flex-start;
}

.exclusive-service-card:hover .exclusive-service-card-btn {
    color: #ffffff;
    gap: 0.75rem;
}

/* Tablet & Mobile Grid Fixes */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .exclusive-service-card {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .exclusive-service-card {
        padding: 1.75rem;
    }
}


.faq-section {
    background: var(--color-black);
    padding: 100px 0;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-line);
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--color-ink);
}

.faq-search {
    border-bottom: 1px solid var(--color-line);
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

.faq-search input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: var(--color-ink);
}

.faq-search input::placeholder {
    color: var(--color-muted);
}

.faq-accordion {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-line);
    margin-bottom: 15px;
    border-radius: 12px;
    background: rgba(20, 20, 20, 0.4);
}

.faq-item summary {
    padding: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-ink);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-content {
    padding: 0 20px 20px;
    border-top: 1px solid var(--color-line);
    padding-top: 15px;
}

.faq-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0;
}

.faq-item summary::after {
    content: '\25BC';
    font-size: 0.9rem;
    color: var(--color-muted);
}
.faq-item[open] summary::after {
    content: '\25B2';
}

.faq-item .faq-content { max-height: none !important; overflow: visible !important; }

@media (max-width: 992px) {
    .service-detail-hero::before {
        width: 100%;
        mask-image: linear-gradient(to bottom, transparent, black 30%);
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%);
        opacity: 0.3;
    }
    .service-hero-box, .services-exclusive-hero .hero-box {
        max-width: 100%;
        padding: 2rem;
        margin: 0 auto;
    }
    .service-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .service-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --- TRUST ELEMENTS --- */
.trusted-by-section {
    padding: 3.5rem 0;
    background: rgba(10, 10, 15, 0.6);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-by-section h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
}

.trusted-brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.5rem;
    align-items: center;
    opacity: 0.85;
}

.trusted-brands-grid span {
    display: inline-block;
    filter: grayscale(100%) brightness(200%);
    transition: filter 250ms ease, transform 250ms ease;
}

.trusted-brands-grid span:hover {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.05);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(7, 93, 188, 0.15);
    border: 1px solid rgba(7, 93, 188, 0.3);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    color: #075dbc;
}

/* Footer specific trust badges */
.footer-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-trust-badges .trust-badge {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    justify-content: center;
}

/* Fix for Testimonial Cards Height */
.swiper-slide {
    height: auto !important;
}
.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-quote {
    flex-grow: 1;
}

/* ==========================================================================
   NEW COMMERCIAL SECTIONS (GLASS & HARDWARE)
   ========================================================================== */

/* 1. Commercial Hardware Expertise */
.hardware-expertise-section {
    padding: 120px 0;
    background: #09090d;
    position: relative;
    overflow: hidden;
}

.hardware-expertise-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.hardware-expertise-header {
    max-width: 800px;
    margin-bottom: 5rem;
    text-align: center;
    margin-inline: auto;
}

.hardware-eyebrow {
    color: #075dbc;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hardware-expertise-header h2 {
    color: #ffffff;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hardware-expertise-header h2 span {
    color: #075dbc;
}

.hardware-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.hardware-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hardware-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(7, 93, 188, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hardware-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.hardware-icon {
    width: 48px;
    height: 48px;
    background: rgba(7, 93, 188, 0.1);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #075dbc;
    flex-shrink: 0;
    transition: all 300ms ease;
}

.hardware-icon svg {
    width: 24px;
    height: 24px;
}

.hardware-card:hover .hardware-icon {
    background: #075dbc;
    color: #ffffff;
    transform: scale(1.05);
}

.hardware-card-header h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 750;
    color: #ffffff;
}

.hardware-card-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.hardware-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.hardware-common {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.5);
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.hardware-common strong {
    color: #ffffff;
    font-weight: 600;
}

.hardware-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: #075dbc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 300ms ease, gap 300ms ease;
}

.hardware-card:hover .hardware-link {
    color: #ffffff;
    gap: 0.75rem;
}

/* Scroll reveal helper classes */
[data-hardware-animate],
[data-repair-animate],
[data-brand-animate],
[data-residential-animate],
[data-illustration-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-hardware-animate].is-visible,
[data-repair-animate].is-visible,
[data-brand-animate].is-visible,
[data-residential-animate].is-visible,
[data-illustration-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delayed grid reveal */
.hardware-grid > div:nth-child(2) { transition-delay: 100ms; }
.hardware-grid > div:nth-child(3) { transition-delay: 150ms; }
.hardware-grid > div:nth-child(4) { transition-delay: 200ms; }
.hardware-grid > div:nth-child(5) { transition-delay: 250ms; }

/* 2. Commercial Repair Capabilities */
.repair-capabilities-section {
    padding: 120px 0;
    background: #0d0d12;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.repair-capabilities-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.repair-capabilities-header {
    max-width: 800px;
    margin-bottom: 5rem;
    text-align: center;
    margin-inline: auto;
}

.repair-eyebrow {
    color: #075dbc;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.repair-capabilities-header h2 {
    color: #ffffff;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.repair-capabilities-header h2 span {
    color: #075dbc;
}

.repair-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.repair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.repair-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 2.25rem;
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.repair-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.repair-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    color: #ffffff;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    transition: all 300ms ease;
}

.repair-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.repair-card:hover .repair-icon-wrapper {
    background: rgba(7, 93, 188, 0.15);
    color: #075dbc;
}

.repair-card h3 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.repair-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* 3. Residential Services Section */
.residential-services-section {
    padding: 120px 0;
    background: #09090d;
}

.residential-services-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.residential-services-header {
    max-width: 800px;
    margin-bottom: 5rem;
    text-align: center;
    margin-inline: auto;
}

.residential-eyebrow {
    color: #075dbc;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.residential-services-header h2 {
    color: #ffffff;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.residential-services-header h2 span {
    color: #075dbc;
}

.residential-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.residential-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.residential-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.residential-card-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.residential-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.residential-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 9, 13, 0.95) 0%, rgba(9, 9, 13, 0.4) 60%, transparent 100%);
    z-index: 2;
    transition: opacity 400ms ease;
}

.residential-card-content {
    position: relative;
    z-index: 3;
    padding: 3rem;
    width: 100%;
}

.residential-card h3 {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 1rem;
}

.residential-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 480px;
}

.residential-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: gap 300ms ease, color 300ms ease;
}

.residential-btn:hover {
    color: #075dbc;
    gap: 0.75rem;
}

.residential-card:hover {
    transform: translateY(-8px);
    border-color: rgba(7, 93, 188, 0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.residential-card:hover .residential-card-media img {
    transform: scale(1.05);
}

/* 4. Brand Completed Projects / Trusted Brands */
.brand-projects-section {
    padding: 120px 0;
    background: #0d0d12;
}

.brand-projects-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.brand-projects-header {
    max-width: 800px;
    margin-bottom: 5rem;
    text-align: center;
    margin-inline: auto;
}

.brand-eyebrow {
    color: #075dbc;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.brand-projects-header h2 {
    color: #ffffff;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.brand-projects-header h2 span {
    color: #075dbc;
}

.brand-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.brand-projects-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.brand-project-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.brand-project-info {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.01);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.brand-badge {
    align-self: flex-start;
    padding: 0.4rem 1rem;
    background: rgba(7, 93, 188, 0.15);
    border: 1px solid rgba(7, 93, 188, 0.3);
    color: #075dbc;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.brand-project-info h3 {
    margin: 0 0 0.5rem;
    font-size: 2.25rem;
    font-weight: 850;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.brand-category {
    font-size: 1.05rem;
    font-weight: 600;
    color: #075dbc;
    margin: 0 0 1.5rem;
}

.brand-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.brand-project-gallery {
    position: relative;
    background: rgba(0,0,0,0.2);
}

.gallery-scroller {
    display: flex;
    gap: 15px;
    padding: 2.5rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.gallery-scroller::-webkit-scrollbar {
    height: 6px;
}

.gallery-scroller::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.gallery-item {
    flex: 0 0 320px;
    height: 240px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-placeholder {
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    gap: 1.25rem;
}

.placeholder-icon svg {
    width: 48px;
    height: 48px;
    color: rgba(255,255,255,0.2);
}

.gallery-placeholder p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* 5. Entrance Door Terminology Diagram Section */
.hardware-illustration-section {
    padding: 120px 0;
    background: #09090d;
}

.hardware-illustration-shell {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.hardware-illustration-header {
    max-width: 800px;
    margin-bottom: 5rem;
    text-align: center;
    margin-inline: auto;
}

.illustration-eyebrow {
    color: #075dbc;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hardware-illustration-header h2 {
    color: #ffffff;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hardware-illustration-header h2 span {
    color: #075dbc;
}

.illustration-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.illustration-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.door-diagram-wrapper {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.door-diagram {
    position: relative;
    width: 100%;
    max-width: 360px;
}

.door-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* interactive hotspots styling */
.hotspot-pin {
    cursor: pointer;
    outline: none;
}

.pulse-ring {
    animation: pulseGlow 2.5s infinite;
    transform-origin: center;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

.hotspot-pin circle:last-child {
    transition: fill 200ms ease, r 200ms ease;
}

.hotspot-pin:hover circle:last-child,
.hotspot-pin.is-active circle:last-child {
    fill: #ffffff;
    r: 8px;
}

.illustration-details {
    display: flex;
    flex-direction: column;
}

.terminology-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.terminology-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 300ms ease;
}

.terminology-marker {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(7, 93, 188, 0.15);
    color: #075dbc;
    font-size: 0.85rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 300ms ease;
}

.terminology-body h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.terminology-body p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.5);
}

.terminology-item.is-highlighted {
    background: rgba(7, 93, 188, 0.12);
    border-color: rgba(7, 93, 188, 0.4);
    transform: scale(1.02);
}

.terminology-item.is-highlighted .terminology-marker {
    background: #075dbc;
    color: #ffffff;
}

.terminology-item:hover {
    border-color: rgba(7, 93, 188, 0.3);
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 1200px) {
    .brand-project-card {
        grid-template-columns: 1fr;
    }
    .brand-project-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        padding: 3rem;
    }
    .illustration-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .residential-grid {
        grid-template-columns: 1fr;
    }
    .residential-card {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .hardware-expertise-section,
    .repair-capabilities-section,
    .residential-services-section,
    .brand-projects-section,
    .hardware-illustration-section {
        padding: 80px 0;
    }
    .terminology-list {
        grid-template-columns: 1fr;
    }
}

/* Global Lightbox Modal Styling */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox-modal.is-open {
    display: flex;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}
.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 2.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Lightbox Clickable Triggers pointer cursor */
.service-gallery-item img,
.gallery-item img,
.exclusive-service-card-media img,
.residential-card-media img {
    cursor: pointer;
}



