:root {
    --navy: #001a57;
    --blue: #1a4dbd;
    --blue-light: #2d62d4;
    --gold: #f0a500;
    --dark: #080d1a;
    --darker: #050810;
    --white: #ffffff;
    --offwhite: #f4f6fa;
    --muted: rgba(255, 255, 255, 0.55);
    --easing: cubic-bezier(0.23, 1, 0.32, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ─── SCROLL PROGRESS ─── */
#progress-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s;
}

/* ─── CURSOR GLOW ─── */
#cursor-glow {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 77, 189, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: left 0.4s var(--easing), top 0.4s var(--easing);
}

/* ─── NAVBAR ─── */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 5%;
    transition: all 0.4s var(--easing);
    /* Always has a subtle dark base so logo is always visible */
    background: linear-gradient(180deg, rgba(5, 8, 16, 0.82) 0%, rgba(5, 8, 16, 0) 100%);
}

/* Animated gold accent line across the very top */
#navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--blue), var(--gold), var(--blue), var(--navy));
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

#navbar.scrolled {
    background: rgba(5, 8, 16, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 2px 32px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
}

/* ─── LOGO AREA ─── */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

/* Dark pill behind the logo so it pops on any background */
.nav-logo-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 8, 16, 0.72);
    border: 1px solid rgba(26, 77, 189, 0.35);
    border-radius: 8px;
    padding: 6px 10px 6px 10px;
    transition: all 0.35s var(--easing);
    /* Subtle inner glow */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 4px 24px rgba(26, 77, 189, 0.18);
}

.nav-logo-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(26, 77, 189, 0.12) 0%, rgba(240, 165, 0, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-logo:hover .nav-logo-badge {
    border-color: rgba(240, 165, 0, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 6px 32px rgba(240, 165, 0, 0.2);
}

.nav-logo:hover .nav-logo-badge::after {
    opacity: 1;
}

.nav-logo-badge img {
    height: 64px;
    width: auto;
    display: block;
    position: relative;
    z-index: 1;
    transition: height 0.35s var(--easing), filter 0.3s;
    /* White logo will show cleanly over the dark badge */
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.nav-logo:hover .nav-logo-badge img {
    filter: drop-shadow(0 2px 10px rgba(26, 77, 189, 0.5));
}

/* Tagline stacked next to logo */
.nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-logo-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

.nav-logo-sub {
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1;
}

/* Scrolled — shrink logo slightly */
#navbar.scrolled .nav-logo-badge img {
    height: 45px;
}

#navbar.scrolled .nav-inner {
    height: 72px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: block;
    padding: 28px 18px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links>li>a:hover {
    color: var(--gold);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--darker);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--blue);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--easing);
    padding: 8px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mega {
    width: 500px;
    left: 0;
    transform: translateX(0) translateY(10px);
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.nav-links>li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega:hover,
.nav-links>li:hover .mega {
    transform: translateX(0) translateY(0);
}

.nav-links>li:hover .mega {
    transform: translateX(0) translateY(0);
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

.nav-dropdown a i {
    color: var(--blue);
    font-size: 12px;
    width: 16px;
}

.nav-dropdown a:hover {
    color: #fff;
    background: rgba(26, 77, 189, 0.2);
    padding-left: 28px;
}

.nav-dropdown a:hover i {
    color: var(--gold);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-phone:hover {
    color: #fff;
}

.btn-cta {
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    padding: 12px 26px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Mobile toggle */
.mob-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #fff;
    font-size: 22px;
}

/* ─── MOBILE MENU ─── */
#mob-menu {
    position: fixed;
    inset: 0;
    background: var(--darker);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.5s var(--easing);
    padding: 0 6% 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

#mob-menu.open {
    transform: translateX(0);
}

.mob-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 86px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

/* Logo inside mobile drawer — same dark badge treatment */
.mob-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 77, 189, 0.12);
    border: 1px solid rgba(26, 77, 189, 0.3);
    border-radius: 6px;
    padding: 8px 12px 5px 8px;
}

.mob-logo-badge img {
    height: 45px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.mob-logo-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mob-logo-badge-text span:first-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

.mob-logo-badge-text span:last-child {
    font-family: 'Barlow', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1;
}

.mob-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

.mob-nav {
    list-style: none;
}

.mob-nav>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mob-nav>li>a,
.mob-acc-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    color: #fff;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
}

.mob-acc-trigger i {
    transition: transform 0.3s;
    font-size: 16px;
    color: var(--blue);
}

.mob-acc-trigger.open i {
    transform: rotate(45deg);
    color: var(--gold);
}

.mob-sub {
    display: none;
    padding: 0 0 15px 20px;
    border-left: 2px solid var(--blue);
    margin-left: 4px;
}

.mob-sub a {
    display: block;
    padding: 9px 0;
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.mob-sub a:hover {
    color: var(--gold);
}

.mob-cta {
    margin-top: 30px;
}

.mob-cta a {
    display: block;
    background: var(--blue);
    color: #fff;
    text-align: center;
    padding: 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 12px;
}

.mob-cta a:last-child {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ─── HERO ─── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translateX(0);
    }

    100% {
        transform: scale(1.08) translateX(-20px);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(5, 8, 16, 0.97) 0%,
            rgba(0, 26, 87, 0.75) 45%,
            rgba(5, 8, 16, 0.5) 100%);
    z-index: 1;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(26, 77, 189, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 77, 189, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(135deg, transparent 30%, rgba(0, 0, 0, 0.4) 60%, transparent 90%);
}

.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 90px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 77, 189, 0.15);
    border: 1px solid rgba(26, 77, 189, 0.4);
    padding: 8px 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    animation: fadeUp 0.8s var(--easing) both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.15s var(--easing) both;
}

.hero-title .line-white {
    display: block;
    color: #fff;
}

.hero-title .line-blue {
    display: block;
    -webkit-text-stroke: 2px var(--blue);
    color: transparent;
}

.hero-title .line-accent {
    display: block;
    background: linear-gradient(90deg, var(--gold) 0%, #ffcc55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: white;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 40px;
    animation: fadeUp 0.8s 0.3s var(--easing) both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s var(--easing) both;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    padding: 16px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    text-decoration: none;
    padding: 16px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero stats strip */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    animation: fadeUp 0.8s 0.6s var(--easing) both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--white);
}

.stat-number span {
    color: var(--gold);
}

.stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    margin-top: 4px;
}

/* Hero visual side */
.hero-visual {
    position: relative;
    animation: fadeIn 1s 0.4s var(--easing) both;
}

.hero-img-main {
    width: 100%;
    /* aspect-ratio: 4/3; */
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
}

.hero-img-tag {
    position: absolute;
    bottom: -20px;
    right: 0px;
    background: var(--blue);
    padding: 20px 24px;
    min-width: 160px;
}

.hero-img-tag .tag-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    line-height: 1;
    color: #fff;
}

.hero-img-tag .tag-text {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-badge-corner {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 90px;
    height: 90px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(240, 165, 0, 0.4);
}

.hero-badge-corner .bc-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--dark);
}

.hero-badge-corner .bc-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.2;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-hint span {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 8px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    margin: 0 auto;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ─── TRUST BAR ─── */
.trust-bar {
    background: var(--navy);
    padding: 28px 5%;
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--gold), var(--blue), transparent);
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: default;
    transition: transform 0.3s;
}

.trust-item:hover {
    transform: translateY(-3px);
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: rgba(26, 77, 189, 0.2);
    border: 1px solid rgba(26, 77, 189, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
}

.trust-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

/* ─── SECTION COMMONS ─── */
.section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1;
    letter-spacing: 2px;
}

.section-title .accent {
    color: var(--gold);
}

.divider-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    margin: 20px 0;
}

.divider-center {
    margin: 20px auto;
}

/* ─── SERVICES ─── */
#services {
    background: var(--offwhite);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.services-head {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.services-head .section-tag {
    color: var(--blue);
}

.services-head .section-title {
    color: #0a0f1e;
}

.services-head .divider-line {
    background: linear-gradient(90deg, var(--blue), var(--navy));
}

.view-all-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.view-all-link:hover {
    gap: 14px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2px;
}

.svc-card {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    cursor: pointer;
}

.svc-card a {
    text-decoration: none;
}

.svc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) grayscale(30%);
    transition: all 0.7s var(--easing);
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.svc-card:hover .svc-bg {
    filter: brightness(0.55) grayscale(0%);
    transform: scale(1.06);
}

.svc-body {
    position: relative;
    z-index: 2;
    padding: 36px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.svc-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.svc-icon {
    width: 52px;
    height: 52px;
    background: rgba(26, 77, 189, 0.2);
    border: 1px solid rgba(26, 77, 189, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 16px;
    transition: all 0.4s;
}

.svc-card:hover .svc-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}

.svc-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.svc-desc {
    font-size: 0.88rem;
    color: #fff;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--easing), opacity 0.5s;
    opacity: 0;
}

.svc-card:hover .svc-desc {
    max-height: 80px;
    opacity: 1;
}

.svc-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 14px;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.4s var(--easing);
}

.svc-card:hover .svc-arrow {
    transform: translateX(0);
    opacity: 1;
}

/* hidden cards */
.svc-hidden {
    display: none;
}

.services-more {
    max-width: 1400px;
    margin: 40px auto 0;
    text-align: center;
}

.btn-outline-dark {
    background: none;
    border: 2px solid #0a0f1e;
    padding: 16px 44px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0a0f1e;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-dark:hover {
    background: #0a0f1e;
    color: #fff;
}

/* ─── ABOUT ─── */
#about {
    padding: 110px 5%;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.about-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    width: 100%;
    max-height: 580px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-img-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 47%;
    aspect-ratio: 1;
    border: 4px solid var(--dark);
    overflow: hidden;
}

.about-img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--blue);
    padding: 24px 28px;
    text-align: center;
}

.aeb-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: #fff;
}

.aeb-text {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.about-content .section-tag {
    color: var(--blue);
}

.about-content .section-title {
    color: #fff;
}

.about-text {
    margin-top: 24px;
    color: white;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-list {
    list-style: none;
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.about-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    flex-shrink: 0;
}

.about-cta {
    margin-top: 42px;
    display: flex;
    gap: 16px;
}

/* ─── COMPARE SLIDER ─── */
#before-after {
    padding: 100px 5%;
    background: #0a0f1e;
}

.ba-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.ba-head {
    text-align: center;
    margin-bottom: 60px;
}

.ba-head .section-title {
    color: #fff;
}

.compare-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.compare-after {
    width: 100%;
    display: block;
}

.compare-before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    width: 50%;
}

.compare-before img {
    width: 900px;
    max-width: 900px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.compare-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transform: translateX(-50%);
    pointer-events: none;
}

.compare-handle::before,
.compare-handle::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid #fff;
}

.compare-handle::before {
    top: calc(50% - 22px);
}

.compare-handle::after {
    top: calc(50% - 22px);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231a4dbd' d='M8 5l-7 7 7 7V5zm8 0l7 7-7 7V5z'/%3E%3C/svg%3E") center/20px no-repeat;
}

.compare-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: ew-resize;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.ba-labels {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 16px auto 0;
}

.ba-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
}

/* ─── CTA BANNER ─── */
#cta-banner {
    padding: 90px 5%;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

#cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://d3p2r6ofnvoe67.cloudfront.net/fit-in/1500x1500/filters:strip_exif()/filters:no_upscale()/filters:format(webp)/media/7b82baf3-f15c-43c5-b3ba-f8235f5f05f3.jpeg') center/cover;
    opacity: 0.08;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-title .cta-gold {
    color: var(--gold);
}

.cta-sub {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── GALLERY ─── */
#gallery {
    padding: 100px 5%;
    background: #060b16;
}

.gallery-head {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-head .section-title {
    color: #fff;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 4px;
}

.gallery-grid .g-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.g-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--easing), filter 0.6s;
    filter: brightness(0.75);
}

.g-item:hover img {
    transform: scale(1.07);
    filter: brightness(1);
}

.g-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0);
    background: rgba(26, 77, 189, 0.3);
    transition: all 0.4s;
}

.g-item:hover::after {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(26, 77, 189, 0.4);
}

.gallery-hidden {
    display: none;
}

.gallery-more {
    max-width: 1400px;
    margin: 30px auto 0;
    text-align: center;
}

.btn-outline-light {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 16px 44px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── REVIEWS ─── */
#reviews {
    padding: 100px 5%;
    background: var(--offwhite);
    position: relative;
    overflow: hidden;
}

.reviews-head {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.reviews-head .section-tag {
    color: var(--blue);
}

.reviews-head .section-title {
    color: #0a0f1e;
}

body .sk-ww-google-reviews.sk-d-block {
    display: block !important;
    --widget-padding: 0px !important;
    border: none !important;
}

/* 
.swiper-reviews {
    max-width: 1400px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    padding: 40px 36px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}

.review-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.review-quote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--blue);
    line-height: 0.8;
    margin-bottom: 16px;
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 18px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 28px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #111;
}

.review-meta {
    font-size: 0.78rem;
    color: #888;
    margin-top: 2px;
}

.swiper-pagination-bullet {
    background: var(--blue) !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
} */

/* ─── FAQ ─── */
#faq {
    padding: 100px 5%;
    background: var(--dark);
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-head {
    margin-bottom: 50px;
}

.faq-head .section-title {
    color: #fff;
}

.acc-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.acc-trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    gap: 20px;
    text-align: left;
}

.acc-q {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
}

.acc-trigger:hover .acc-q {
    color: var(--gold);
}

.acc-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--blue);
    transition: all 0.3s;
}

.acc-item.open .acc-icon {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: rotate(45deg);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--easing);
}

.acc-body p {
    padding: 0 0 22px 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ─── LEAVE A REVIEW SECTION ─── */
#leave-review {
    position: relative;
    padding: 110px 5%;
    background: var(--dark);
    overflow: hidden;
    text-align: center;
}

/* Dark-navy radial glow behind content */
#leave-review::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(26, 77, 189, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* Floating decorative stars */
.review-star-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.review-star-deco i {
    position: absolute;
    color: var(--gold);
    opacity: 0.12;
    animation: floatStar 6s ease-in-out infinite;
}

.rs-1 {
    font-size: 2.5rem;
    top: 12%;
    left: 8%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.rs-2 {
    font-size: 1.2rem;
    top: 22%;
    right: 10%;
    animation-delay: 1.2s;
    animation-duration: 5s;
}

.rs-3 {
    font-size: 3rem;
    bottom: 18%;
    left: 15%;
    animation-delay: 0.6s;
    animation-duration: 8s;
}

.rs-4 {
    font-size: 1.5rem;
    bottom: 25%;
    right: 8%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.rs-5 {
    font-size: 2rem;
    top: 55%;
    left: 4%;
    animation-delay: 1.8s;
    animation-duration: 9s;
}

@keyframes floatStar {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.12;
    }

    50% {
        transform: translateY(-20px) rotate(20deg);
        opacity: 0.22;
    }
}

.lr-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

/* Top badge */
.lr-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 77, 189, 0.15);
    border: 1px solid rgba(26, 77, 189, 0.4);
    padding: 8px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.lr-badge i {
    color: #4caf50;
}

/* Title */
.lr-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.lr-title-accent {
    background: linear-gradient(90deg, var(--gold) 0%, #ffcc55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lr-sub {
    color: white;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 36px;
}

/* Stars display */
.lr-stars {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 52px;
}

.lr-stars i {
    color: var(--gold);
    font-size: 22px;
    filter: drop-shadow(0 0 6px rgba(240, 165, 0, 0.5));
}

.lr-stars-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: white;
    margin-left: 10px;
    text-transform: uppercase;
}

/* Platform cards container */
.lr-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

/* Individual card */
.lr-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 28px;
    border-radius: 4px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    text-align: left;
}

.lr-card:hover {
    transform: translateY(-5px);
}

/* Card glow blob */
.lr-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.lr-card:hover .lr-card-glow {
    opacity: 1;
}

/* Google glow */
.lr-glow-google {
    background: radial-gradient(circle, rgba(234, 67, 53, 0.2) 0%, transparent 70%);
}

/* Facebook glow */
.lr-glow-facebook {
    background: radial-gradient(circle, rgba(24, 119, 242, 0.25) 0%, transparent 70%);
}

/* Google card accent */
.lr-google {
    border-color: rgba(234, 67, 53, 0.2);
}

.lr-google:hover {
    box-shadow: 0 16px 50px rgba(234, 67, 53, 0.2), 0 2px 0 rgba(234, 67, 53, 0.4) inset;
    border-color: rgba(234, 67, 53, 0.45);
}

/* Facebook card accent */
.lr-facebook {
    border-color: rgba(24, 119, 242, 0.2);
}

.lr-facebook:hover {
    box-shadow: 0 16px 50px rgba(24, 119, 242, 0.25), 0 2px 0 rgba(24, 119, 242, 0.4) inset;
    border-color: rgba(24, 119, 242, 0.45);
}

/* Platform SVG icon */
.lr-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lr-card-icon svg {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s;
}

.lr-card:hover .lr-card-icon svg {
    transform: scale(1.08);
}

/* Card body */
.lr-card-body {
    flex: 1;
}

.lr-card-platform {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 4px;
}

.lr-card-action {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.lr-google:hover .lr-card-action {
    color: #EA4335;
}

.lr-facebook:hover .lr-card-action {
    color: #4a9bff;
}

.lr-card-mini-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lr-card-mini-stars i {
    color: var(--gold);
    font-size: 12px;
}

.lr-card-mini-stars span {
    font-size: 12px;
    color: white;
    font-weight: 600;
    margin-left: 4px;
}

/* Facebook thumbs-up colour */
.lr-facebook .lr-card-mini-stars i {
    color: #4a9bff;
}

/* Arrow */
.lr-card-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    transition: all 0.3s;
}

.lr-google:hover .lr-card-arrow {
    background: #EA4335;
    border-color: #EA4335;
    color: #fff;
}

.lr-facebook:hover .lr-card-arrow {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

/* Bottom note */
.lr-note {
    font-size: 0.8rem;
    color: white;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 600px) {
    .lr-platforms {
        grid-template-columns: 1fr;
    }

    .lr-card {
        padding: 20px;
    }

    .review-star-deco i {
        display: none;
    }
}

/* ─── FOOTER ─── */
footer {
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 5% 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand img {
    height: 65px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: white;
    font-size: 0.88rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: white;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 5%;
    text-align: center;
}

/* .footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
} */

.footer-bottom-inner p {
    color: white;
    font-size: 0.78rem;
}

.footer-bottom-inner a {
    color: white;
    text-decoration: none;
}

.footer-bottom-inner a:hover {
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   QUOTE MODAL
   ═══════════════════════════════════════════════════════════ */

/* Overlay */
.qm-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.qm-overlay[hidden] {
    display: none;
}

/* Dark backdrop */
.qm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 7, 18, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: qmFadeIn 0.3s ease both;
}

@keyframes qmFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes qmSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Panel */
.qm-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 540px;
    max-height: 92vh;
    background: #0d1326;
    border: 1px solid rgba(26, 77, 189, 0.35);
    border-top: 3px solid var(--blue);
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04);
    animation: qmSlideUp 0.38s cubic-bezier(0.23, 1, 0.32, 1) both;
    overflow: hidden;
}

/* ── Header ── */
.qm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(26, 77, 189, 0.08);
    flex-shrink: 0;
}

.qm-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.qm-header-icon {
    width: 40px;
    height: 40px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.qm-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.qm-subtitle {
    font-size: 11px;
    color: white;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.qm-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.qm-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ── Step progress ── */
.qm-steps {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 0;
    flex-shrink: 0;
}

.qm-step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.qm-step.active {
    opacity: 1;
}

.qm-step.done {
    opacity: 0.7;
}

.qm-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(26, 77, 189, 0.25);
    border: 1px solid rgba(26, 77, 189, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.qm-step.active .qm-step-num {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 0 12px rgba(26, 77, 189, 0.5);
}

.qm-step.done .qm-step-num {
    background: #2ecc71;
    border-color: #2ecc71;
    color: #fff;
}

.qm-step-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.qm-step-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 14px;
}

/* ── Scrollable body ── */
.qm-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px 24px 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(26, 77, 189, 0.4) transparent;
}

.qm-body::-webkit-scrollbar {
    width: 4px;
}

.qm-body::-webkit-scrollbar-track {
    background: transparent;
}

.qm-body::-webkit-scrollbar-thumb {
    background: rgba(26, 77, 189, 0.4);
    border-radius: 2px;
}

.qm-section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Fields ── */
.qm-field {
    margin-bottom: 18px;
}

.qm-field label {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 7px;
}

.qm-req {
    color: var(--gold);
    margin-left: 2px;
}

.qm-field input,
.qm-field textarea,
.qm-field select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 0.93rem;
    padding: 13px 15px;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.qm-field input::placeholder,
.qm-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.qm-field input:focus,
.qm-field textarea:focus,
.qm-field select:focus {
    border-color: var(--blue);
    background: rgba(26, 77, 189, 0.08);
}

.qm-field textarea {
    resize: vertical;
    min-height: 120px;
}

/* Phone with flag */
.qm-phone-wrap {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.25s;
}

.qm-phone-wrap:focus-within {
    border-color: var(--blue);
}

.qm-flag-select {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.qm-phone-wrap input {
    border: none;
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
}

.qm-phone-wrap input:focus {
    border: none;
    background: rgba(26, 77, 189, 0.08);
}

/* Date input wrapper */
.qm-date-wrap {
    position: relative;
}

.qm-date-wrap input {
    width: 100%;
    padding-right: 44px;
    color-scheme: dark;
}

.qm-date-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    font-size: 14px;
}

/* Select wrapper */
.qm-select-wrap {
    position: relative;
}

.qm-select-wrap select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    padding-right: 40px;
}

.qm-sel-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    font-size: 11px;
}

.qm-select-wrap select option {
    background: #0d1326;
    color: #fff;
}

/* ── Consent text ── */
.qm-consent {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.6;
    margin: 20px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.qm-consent a {
    color: var(--blue);
    text-decoration: none;
}

.qm-consent a:hover {
    color: var(--gold);
}

/* ── Buttons ── */
.qm-next-btn {
    width: 100%;
    margin-top: 8px;
    padding: 15px 24px;
    background: var(--blue);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s, transform 0.2s;
}

.qm-next-btn:hover {
    background: #1a56d4;
    transform: translateY(-1px);
}

.qm-btn-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.qm-back-btn {
    padding: 15px 22px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    flex-shrink: 0;
}

.qm-back-btn:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.qm-submit-btn {
    flex: 1;
    padding: 15px 24px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.qm-submit-btn:hover {
    background: #ffcc44;
    transform: translateY(-1px);
}

/* ── Success state ── */
.qm-success {
    text-align: center;
    padding: 20px 0 10px;
}

.qm-success-icon {
    font-size: 3.5rem;
    color: #2ecc71;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(46, 204, 113, 0.4));
}

.qm-success h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.qm-success p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 24px;
}

.qm-call-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    padding: 13px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.qm-call-link:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ── Trust strip ── */
.qm-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 28px;
    padding: 14px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.qm-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
}

.qm-trust span i {
    color: var(--blue);
    font-size: 11px;
}

/* Responsive */
@media (max-width: 560px) {
    .qm-panel {
        max-height: 98vh;
    }

    .qm-header {
        padding: 16px 18px;
    }

    .qm-body {
        padding: 20px 18px 16px;
    }

    .qm-trust {
        gap: 10px 16px;
    }

    .qm-trust span:nth-child(3),
    .qm-trust span:nth-child(4) {
        display: none;
    }

    .qm-step-label {
        display: none;
    }
}


/* ─── FLOATING CALL BUTTON ─── */
.float-call {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: var(--gold);
    color: var(--dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(240, 165, 0, 0.4);
    transition: all 0.3s;
    animation: float-pulse 3s ease-in-out infinite;
}

.float-call:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(240, 165, 0, 0.6);
}

@keyframes float-pulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(240, 165, 0, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(240, 165, 0, 0.7);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid .g-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mob-toggle {
        display: block;
    }

    /* Hide the text next to logo on tablet — logo badge alone is enough */
    .nav-logo-text {
        display: none;
    }

    #services,
    #about,
    #before-after,
    #gallery,
    #reviews,
    #faq,
    #leave-review {
        padding: 50px 5%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(3rem, 10vw, 4rem);
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-grid .g-featured {
        grid-column: span 2;
    }

    .trust-inner {
        gap: 16px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img-overlay {
        display: none;
    }

    .hero-img-tag {
        bottom: -10px;
        min-width: 100px;
    }

    .hero-img-tag .tag-num {
        font-size: 1.4rem;
    }

    .hero-img-tag .tag-text {
        font-size: 8px;
    }

    .hero-badge-corner {
        width: 72px;
        height: 72px;
        top: -10px;
        right: -10px;
    }

    .contact-form-wrap {
        padding: 30px 22px;
    }

    /* Smaller logo on mobile */
    .nav-logo-badge img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-experience-badge {
        left: 0px;
        padding: 6px 16px;
    }

    .aeb-num {
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   QUOTE POPUP NOTIFICATION
   ═══════════════════════════════════════════════════════════ */

#quotePopup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.qp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 7, 18, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: qmFadeIn 0.25s ease both;
}

/* Main popup box */
.qp-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    padding: 44px 40px 36px;
    text-align: center;
    animation: qmSlideUp 0.4s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* Success variant */
.qp-success {
    background: #0d1326;
    border: 1px solid rgba(46, 204, 113, 0.4);
    border-top: 4px solid #2ecc71;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(46, 204, 113, 0.1);
}

/* Error variant */
.qp-error {
    background: #0d1326;
    border: 1px solid rgba(231, 76, 60, 0.4);
    border-top: 4px solid #e74c3c;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(231, 76, 60, 0.1);
}

/* Icon / title */
.qp-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qp-success .qp-icon i {
    color: #2ecc71;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.6));
}

.qp-error .qp-icon i {
    color: #e74c3c;
    font-size: 1.6rem;
    filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.5));
}

/* Message */
.qp-msg {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Phone link (success only) */
.qp-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 77, 189, 0.15);
    border: 1px solid rgba(26, 77, 189, 0.35);
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.qp-phone:hover {
    background: var(--blue);
    border-color: var(--blue);
}

/* Close / confirm button */
.qp-close-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: 8px;
}

.qp-success .qp-close-btn {
    background: #2ecc71;
    color: #0a1a0a;
}

.qp-success .qp-close-btn:hover {
    background: #27ae60;
}

.qp-error .qp-close-btn {
    background: #e74c3c;
    color: #fff;
}

.qp-error .qp-close-btn:hover {
    background: #c0392b;
}

/* Countdown progress bar (success) */
.qp-countdown {
    margin-top: 18px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.qp-bar {
    height: 100%;
    background: #2ecc71;
    width: 100%;
    animation: qpCountdown 6s linear forwards;
}

@keyframes qpCountdown {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

/* Inline field error messages */
.qm-err-msg {
    display: block;
    font-size: 11px;
    color: #e74c3c;
    margin-top: 5px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@media (max-width: 480px) {
    .qp-box {
        padding: 32px 24px 28px;
    }

    .qp-icon {
        font-size: 1.4rem;
    }
}

/* ═══════════════════════════════════════════════
   GALLERY LIGHTBOX — "Site Inspection Viewer"
   Gold corner brackets snap onto each photo like a
   surveyor's viewfinder; a stamped tag tracks
   progress through the set; a filmstrip lets you
   jump straight to any shot.
   ═══════════════════════════════════════════════ */
.lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 9500;
    display: flex;
}

.lb-overlay[hidden] {
    display: none;
}

.lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 16, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: lbFadeIn 0.3s ease;
}

.lb-stage {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px clamp(16px, 4vw, 48px);
    animation: lbPanelIn 0.42s var(--easing);
}

@keyframes lbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lbPanelIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(8px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Top bar: tag + close */
.lb-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: min(900px, 90vw);
    margin: 0 auto 16px;
}

.lb-tag {
    background: var(--darker);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 2.5px;
    padding: 7px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: rotate(-1.5deg);
}

.lb-tag i {
    font-size: 11px;
    opacity: 0.75;
}

.lb-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.lb-close:hover {
    background: rgba(240, 165, 0, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

/* Main viewing area */
.lb-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.lb-frame {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: min(900px, 88vw);
    max-height: 68vh;
    min-width: 240px;
    min-height: 240px;
}

.lb-img {
    display: block;
    max-width: 100%;
    max-height: 68vh;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(1.04);
}

.lb-img.lb-img-in {
    animation: lbImgIn 0.42s var(--easing) forwards;
}

@keyframes lbImgIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading spinner while a slide preloads */
.lb-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.lb-loader.show {
    opacity: 1;
}

.lb-loader::before {
    content: '';
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--gold);
    animation: lbSpin 0.8s linear infinite;
}

@keyframes lbSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Viewfinder corner brackets — the signature touch */
.lb-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0;
    transform: scale(1.6);
    pointer-events: none;
}

.lb-corner-tl {
    top: -14px;
    left: -14px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    transform-origin: top left;
}

.lb-corner-tr {
    top: -14px;
    right: -14px;
    border-top: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    transform-origin: top right;
    animation-delay: 0.04s;
}

.lb-corner-bl {
    bottom: -14px;
    left: -14px;
    border-bottom: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    transform-origin: bottom left;
    animation-delay: 0.04s;
}

.lb-corner-br {
    bottom: -14px;
    right: -14px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    transform-origin: bottom right;
    animation-delay: 0.08s;
}

.lb-corners-in .lb-corner {
    animation-name: lbCornerIn;
    animation-duration: 0.45s;
    animation-timing-function: var(--easing);
    animation-fill-mode: forwards;
}

@keyframes lbCornerIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Prev/Next arrows — float over the frame edges at any viewport width */
.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(8, 13, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    z-index: 2;
    transition: all 0.2s;
}

.lb-arrow:hover {
    background: rgba(240, 165, 0, 0.18);
    border-color: var(--gold);
    color: var(--gold);
}

.lb-prev {
    left: clamp(4px, 2vw, 24px);
}

.lb-next {
    right: clamp(4px, 2vw, 24px);
}

/* Caption */
.lb-caption {
    text-align: center;
    color: white;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2px;
    margin: 16px auto 0;
    max-width: min(700px, 85vw);
}

/* Filmstrip */
.lb-filmstrip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 16px 4px 4px;
    margin: 0 auto;
    max-width: min(900px, 90vw);
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

.lb-filmstrip::-webkit-scrollbar {
    height: 4px;
}

.lb-filmstrip::-webkit-scrollbar-thumb {
    background: rgba(240, 165, 0, 0.5);
}

.lb-thumb {
    flex: 0 0 auto;
    width: 64px;
    height: 46px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    opacity: 0.45;
    transition: opacity 0.25s;
}

.lb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.4);
    transition: filter 0.25s;
}

.lb-thumb:hover {
    opacity: 0.8;
}

.lb-thumb.active {
    opacity: 1;
}

.lb-thumb.active img {
    filter: none;
}

.lb-thumb.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--gold);
}

/* Keyboard focus visibility */
.lb-close:focus-visible,
.lb-arrow:focus-visible,
.lb-thumb:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Mobile tuning */
@media (max-width: 600px) {
    .lb-tag {
        font-size: 11px;
        padding: 5px 11px;
        letter-spacing: 1.8px;
    }

    .lb-close,
    .lb-arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .lb-frame {
        min-width: 180px;
        min-height: 180px;
        max-height: 56vh;
    }

    .lb-img {
        max-height: 56vh;
    }

    .lb-corner {
        width: 18px;
        height: 18px;
    }

    .lb-corner-tl,
    .lb-corner-tr {
        top: -8px;
    }

    .lb-corner-bl,
    .lb-corner-br {
        bottom: -8px;
    }

    .lb-corner-tl,
    .lb-corner-bl {
        left: -8px;
    }

    .lb-corner-tr,
    .lb-corner-br {
        right: -8px;
    }

    .lb-thumb {
        width: 48px;
        height: 36px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .lb-backdrop,
    .lb-stage,
    .lb-img,
    .lb-corner {
        animation: none !important;
    }

    .lb-img,
    .lb-corner {
        opacity: 1 !important;
        transform: none !important;
    }
}

.sk-ww-google-reviews .sk_branding {
    display: none !important;
}

/* ============================================================
   ACTIVE NAV LINK STYLES
   Add these rules to your assets/css/style.css
   (or paste into a separate active-nav.css and link it
    after style.css in header.php)
   ============================================================ */

/* ── Desktop active link ───────────────────────────────────── */
.nav-links>li>a.nav-active {
    color: var(--gold);
}

/* Active underline bar — same animation as hover but always visible */
.nav-links>li>a.nav-active::after {
    transform: scaleX(1);
    background: var(--gold);
}

/* Active service dropdown item */
.nav-dropdown a.nav-active {
    color: var(--gold);
    background: rgba(240, 165, 0, 0.08);
    padding-left: 28px;
}

.nav-dropdown a.nav-active i {
    color: var(--gold);
}

/* ── Mobile active link ────────────────────────────────────── */
.mob-nav a.mob-active,
.mob-nav a.nav-active {
    color: var(--gold) !important;
}

/* Active service link inside the mobile accordion */
.mob-sub a.nav-active {
    color: var(--gold);
    padding-left: 6px;
}