/* ═══════════════════════════════════════════════
CSS CUSTOM PROPERTIES
═══════════════════════════════════════════════ */
:root {
    --carbon: #16181E;
    --carbon-deep: #0B0C10;
    --carbon-mid: #12141A;
    --carbon-light: #1D2129;
    --silver: #C5CBD3;
    --silver-dim: #8F97A3;
    --silver-faint: rgba(197, 203, 211, 0.15);
    --accent: #2B313D;
    --accent-bright: #3B4452;
    --accent-glow: rgba(59, 68, 82, 0.35);
    --accent-faint: rgba(59, 68, 82, 0.12);
    --accent-border: rgba(78, 89, 106, 0.35);
    --white: #FFFFFF;
    --off-white: #EDEEF0;
    --text-body: #C8CDD3;
    --text-muted: #7A8694;
    --nav-height: 72px;
    --ff-display: 'Barlow Condensed', sans-serif;
    --ff-serif: 'Cormorant Garamond', serif;
    --ff-body: 'DM Sans', sans-serif;
}

/* ═══════════════════════════════════════════════
RESET & BASE
═══════════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ff-body);
    background:
        radial-gradient(circle at top right, rgba(59, 68, 82, 0.16), transparent 45%),
        radial-gradient(circle at top left, rgba(43, 49, 61, 0.2), transparent 40%),
        var(--carbon-deep);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ═══════════════════════════════════════════════
KEYFRAMES
═══════════════════════════════════════════════ */
@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 68, 82, 0.5), 0 4px 20px rgba(59, 68, 82, 0.3);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(59, 68, 82, 0), 0 4px 30px rgba(59, 68, 82, 0.5);
    }
}

@keyframes diamondPulse {

    0%,
    100% {
        transform: rotate(45deg) scale(1);
        box-shadow: 0 0 8px rgba(59, 68, 82, 0.4);
    }

    50% {
        transform: rotate(45deg) scale(1.35);
        box-shadow: 0 0 24px rgba(59, 68, 82, 0.8);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineReveal {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes inkFill {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

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

    100% {
        background-position: 200% center;
    }
}

@keyframes borderReveal {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ═══════════════════════════════════════════════
SECTION 1 — NAVBAR
═══════════════════════════════════════════════ */
nav#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(11, 12, 16, 0.97);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid rgba(78, 89, 106, 0.25);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 2.5rem;
    gap: 1rem;
}

.nav-logo {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 1.45rem;
    letter-spacing: 0.08em;
    color: var(--white);
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-logo span {
    color: var(--accent-bright);
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-links a {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--silver-dim);
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 60%;
}

.nav-cta-wrap {
    display: flex;
    justify-content: flex-end;
}

.btn-quote {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--carbon-deep);
    background: var(--accent);
    padding: 0.62rem 1.6rem;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    animation: ctaPulse 2.8s ease-in-out infinite;
    transition: background 0.25s, color 0.25s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-quote:hover {
    background: var(--accent-bright);
    animation: none;
    box-shadow: 0 6px 28px rgba(59, 68, 82, 0.5);
}

/* ═══════════════════════════════════════════════
SECTION 2 — HERO (Crosshair 4-Quadrant)
═══════════════════════════════════════════════ */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    overflow: hidden;
    margin-top: 0;
    padding-top: var(--nav-height);
}

.hero-q {
    position: relative;
    overflow: hidden;
}

.hero-q1 {
    background: #0B0C10;
}

.hero-q2 {
    background: #10131A;
}

.hero-q3 {
    background: #151922;
}

.hero-q4 {
    background: #0E1118;
}

/* Crosshair Lines */
.crosshair-v {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--accent);
    transform: translateX(-50%);
    box-shadow: 0 0 18px rgba(59, 68, 82, 0.45);
    z-index: 10;
    pointer-events: none;
}

.crosshair-h {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    width: 100%;
    background: var(--accent);
    transform: translateY(-50%);
    box-shadow: 0 0 18px rgba(59, 68, 82, 0.45);
    z-index: 10;
    pointer-events: none;
}

.crosshair-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: var(--accent-bright);
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 11;
    animation: diamondPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

/* Hero Content */
.hero-brand {
    position: absolute;
    top: calc(30% - 130px);
    left: 4%;
    z-index: 15;
    animation: fadeUp 1s ease 0.3s both;
}

.hero-brand h1 {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(52px, 6vw, 80px);
    line-height: 0.9;
    color: var(--white);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-brand h1 span {
    color: var(--accent-bright);
}

.hero-brand-sub {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 0.75rem;
    font-weight: 500;
}

.hero-img1 {
    position: absolute;
    top: calc(var(--nav-height));
    right: 0;
    width: 390px;
    height: 250px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
    z-index: 8;
}

.hero-img1 .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a12 0%, #2a2a18 40%, #1e1e10 100%);
    position: relative;
    overflow: hidden;
}

.hero-img1 .img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent, transparent 18px,
            rgba(59, 68, 82, 0.12) 18px, rgba(59, 68, 82, 0.12) 20px);
}

.hero-img1 .img-placeholder::after {
    content: '⬛';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    opacity: 0.05;
}

.hero-img1 svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img1 img,
.hero-img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 390px;
    height: 290px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 22%, 100% 100%, 0 100%);
    z-index: 8;
}

.hero-img2 .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #151922 0%, #212734 50%, #121722 100%);
    position: relative;
    overflow: hidden;
}

.hero-img2 .img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent, transparent 30px,
            rgba(59, 68, 82, 0.1) 30px, rgba(59, 68, 82, 0.1) 32px);
}

.hero-content-br {
    position: absolute;
    bottom: 4%;
    right: 3%;
    z-index: 15;
    max-width: 310px;
    text-align: right;
    animation: fadeUp 1s ease 0.6s both;
}

.hero-content-br h2 {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(22px, 2.8vw, 32px);
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-content-br h2 em {
    color: var(--accent-bright);
    font-style: normal;
}

.hero-tagline {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--silver-dim);
    margin: 0.75rem 0 1.2rem;
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
}

.btn-primary {
    display: inline-block;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--carbon-deep);
    background: var(--accent);
    padding: 0.7rem 1.8rem;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.25s;
}

.btn-primary:hover {
    background: var(--accent-bright);
    transform: translateX(-4px);
}

.btn-outline {
    display: inline-block;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent-border);
    padding: 0.65rem 1.6rem;
    transition: all 0.25s;
}

.btn-outline:hover {
    background: var(--accent-faint);
    border-color: var(--accent);
    color: var(--accent-bright);
}

/* Trust Badges on Crosshair Line */
.trust-badges {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    transform: translateY(-50%);
    z-index: 20;
    padding: 0 5%;
    pointer-events: none;
}

.trust-badge {
    font-family: var(--ff-body);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--silver);
    background: rgba(14, 20, 28, 0.92);
    border: 1px solid var(--accent-border);
    padding: 0.3rem 0.75rem;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    margin-top: 14px;
}

/* ═══════════════════════════════════════════════
SECTION 3 — ABOUT
═══════════════════════════════════════════════ */
#about {
    padding: 8rem 0;
    background: var(--carbon-deep);
    overflow: hidden;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-label {
    font-family: var(--ff-body);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-heading {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1.8rem;
}

.about-heading em {
    color: var(--accent-bright);
    font-style: normal;
    display: block;
}

.about-text {
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-body);
    font-weight: 400;
}

.about-feature::before {
    content: '◆';
    color: var(--accent);
    font-size: 0.6rem;
    margin-top: 0.28rem;
    flex-shrink: 0;
}

.about-images {
    position: relative;
    height: 480px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 340px;
    background: linear-gradient(135deg, #1a1e24 0%, #252d38 60%, #1c2430 100%);
    overflow: hidden;
}

.about-img-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent, transparent 24px,
            rgba(59, 68, 82, 0.12) 24px, rgba(59, 68, 82, 0.12) 26px);
}

.about-img-main::after {
    content: 'GARAGE DOOR\nSPECIALISTS';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--accent);
    opacity: 0.15;
    white-space: pre;
    line-height: 1;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    height: 240px;
    background: linear-gradient(135deg, #202830 0%, #2c3844 50%, #1e2830 100%);
    border: 2px solid var(--accent-border);
    overflow: hidden;
}

.about-img-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent, transparent 20px,
            rgba(59, 68, 82, 0.12) 20px, rgba(59, 68, 82, 0.12) 22px);
}

.about-img-main img,
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-accent-line {
    position: absolute;
    top: 30px;
    right: -12px;
    width: 3px;
    height: calc(100% - 60px);
    background: linear-gradient(to bottom, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
}

/* SVG Garage Door Illustrations */
.garage-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════
SECTION 4 — STATS BAR
═══════════════════════════════════════════════ */
#stats {
    background: #0A0E14;
    border-top: 1px solid rgba(78, 89, 106, 0.2);
    border-bottom: 1px solid rgba(78, 89, 106, 0.2);
    padding: 4rem 0;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    position: relative;
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: rgba(189, 195, 199, 0.12);
}

.stat-num {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(2.6rem, 4vw, 4rem);
    color: var(--accent-bright);
    line-height: 1;
    letter-spacing: -0.01em;
    display: block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 50%, #596375 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--silver-dim);
    margin-top: 0.5rem;
    display: block;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════
SECTION 5 — SERVICES (Sticky + Scroll)
═══════════════════════════════════════════════ */
#services {
    display: flex;
    background: var(--carbon-deep);
}

.services-sticky {
    position: sticky;
    top: var(--nav-height);
    width: 50%;
    height: calc(100vh - var(--nav-height));
    flex-shrink: 0;
    overflow: hidden;
    background: #0A0E14;
}

.sticky-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0D1219 0%, #141C24 60%, #0A0E14 100%);
    transition: background 0.8s ease;
}

.sticky-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(120px, 15vw, 180px);
    color: var(--accent);
    opacity: 0.07;
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    transition: opacity 0.5s;
    z-index: 1;
}

.sticky-band {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    clip-path: polygon(0 45%, 100% 0%, 100% 100%, 0% 100%);
    background: var(--accent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem 2rem;
    z-index: 2;
}

.sticky-service-name {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(22px, 2.8vw, 32px);
    color: var(--carbon-deep);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    transition: all 0.4s ease;
}

.sticky-indicators {
    position: absolute;
    bottom: 20px;
    right: 24px;
    display: flex;
    gap: 6px;
    z-index: 5;
}

.sticky-dot {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.3s, width 0.3s;
}

.sticky-dot.active {
    background: var(--white);
    width: 32px;
}

.sticky-label-top {
    position: absolute;
    top: 2.5rem;
    left: 2rem;
    font-family: var(--ff-body);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    z-index: 3;
}

.services-scroll {
    width: 50%;
    flex-shrink: 0;
}

.service-block {
    min-height: 90vh;
    padding: 6rem 3.5rem;
    border-bottom: 1px solid var(--accent-border);
    position: relative;
}

.service-label {
    font-family: var(--ff-body);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.service-heading {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(32px, 3.5vw, 46px);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.0;
    margin-bottom: 1.5rem;
}

.service-desc {
    color: var(--text-body);
    line-height: 1.75;
    font-size: 0.94rem;
    margin-bottom: 1.5rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.service-tag {
    font-family: var(--ff-body);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--silver-dim);
    border: 1px solid rgba(189, 195, 199, 0.15);
    padding: 0.3rem 0.75rem;
    transition: all 0.25s;
}

.service-tag:hover {
    border-color: var(--accent-border);
    color: var(--accent);
}

.service-process {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.process-num {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--carbon-deep);
    background: var(--accent);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
}

.process-text {
    font-size: 0.88rem;
    color: var(--text-body);
    padding-top: 0.2rem;
    line-height: 1.5;
}

.process-text strong {
    color: var(--silver);
    display: block;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.service-quote {
    border-left: 2px solid var(--accent);
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
    background: var(--accent-faint);
}

.service-quote p {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--silver);
    line-height: 1.6;
}

.service-quote cite {
    display: block;
    font-family: var(--ff-body);
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════
SECTION 6 — AREAS
═══════════════════════════════════════════════ */
#areas {
    padding: 7rem 0;
    background: var(--carbon-mid);
}

.section-header {
    max-width: 1200px;
    margin: 0 auto 3.5rem;
    padding: 0 2.5rem;
}

.section-label {
    font-family: var(--ff-body);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.section-heading {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(38px, 5vw, 62px);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.95;
}

.section-heading em {
    color: var(--accent-bright);
    font-style: normal;
}

.areas-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.area-cell {
    border: 1px solid rgba(78, 89, 106, 0.2);
    padding: 1.1rem 1rem;
    transition: all 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.area-cell::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.area-cell:hover {
    border-color: rgba(78, 89, 106, 0.5);
    background: var(--accent-faint);
}

.area-cell:hover::after {
    width: 100%;
}

.area-num {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--accent);
    opacity: 0.5;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}

.area-name {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: 0.02em;
    display: block;
    text-transform: uppercase;
    line-height: 1.1;
}

.area-zip {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════════
SECTION 7 — FEATURED SERVICES
═══════════════════════════════════════════════ */
#featured {
    padding: 7rem 0;
    background: var(--carbon-deep);
}

.featured-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.featured-card {
    background: #0E1420;
    border: 1px solid rgba(78, 89, 106, 0.2);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.featured-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.featured-card:hover {
    background: #111824;
    border-color: rgba(78, 89, 106, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.featured-card:hover::before {
    width: 100%;
}

.card-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.featured-card:hover .card-icon {
    background: var(--accent);
    border-color: var(--accent);
}

.card-title {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-link {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.25s, color 0.25s;
}

.card-link::after {
    content: '→';
}

.featured-card:hover .card-link {
    gap: 0.9rem;
    color: var(--accent-bright);
}

/* ═══════════════════════════════════════════════
SECTION 8 — CTA SECTION
═══════════════════════════════════════════════ */
#cta-section {
    padding: 7rem 0;
    background: #0A0E14;
    position: relative;
    overflow: hidden;
}

#cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 68, 82, 0.12) 50%, rgba(59, 68, 82, 0.06) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

#cta-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cta-heading {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(36px, 4.5vw, 56px);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin-bottom: 1rem;
}

.cta-heading em {
    color: var(--accent-bright);
    font-style: normal;
}

.cta-sub {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-info-block {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.cta-info-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.cta-info-text {
    border-left: 2px solid var(--accent-border);
    padding-left: 1rem;
}

.cta-info-label {
    font-family: var(--ff-body);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.cta-info-value {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.cta-info-value a {
    color: inherit;
    transition: color 0.25s;
}

.cta-info-value a:hover {
    color: var(--accent-bright);
}

.cta-info-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════════
SECTION 9 — FAQ
═══════════════════════════════════════════════ */
#faq {
    padding: 8rem 0;
    background: var(--off-white);
}

.faq-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.faq-header {
    margin-bottom: 4rem;
}

.faq-label {
    font-family: var(--ff-body);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.faq-heading {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(38px, 5vw, 60px);
    color: var(--carbon);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.95;
}

.faq-heading em {
    color: var(--accent);
    font-style: normal;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    position: relative;
    padding: 0 0 0 1.6rem;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.faq-ink-track {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(44, 62, 80, 0.15);
}

.faq-ink-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--accent);
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-ink-fill {
    height: 100%;
}

.faq-question {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.18rem;
    color: var(--carbon);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.25s;
    user-select: none;
    line-height: 1.2;
}

.faq-question:hover {
    color: var(--carbon-light);
}

.faq-item.open .faq-question {
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #4A5568;
    line-height: 1.75;
    font-size: 0.94rem;
}

/* ═══════════════════════════════════════════════
SECTION 10 — DETAIL SERVICE CARDS
═══════════════════════════════════════════════ */
#detail-cards {
    padding: 7rem 0;
    background: var(--carbon-mid);
}

.detail-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.detail-card {
    border: 1px solid rgba(78, 89, 106, 0.25);
    background: var(--carbon-deep);
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
}

.detail-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.detail-img {
    height: 220px;
    background: linear-gradient(135deg, #141C24 0%, #1E2A38 60%, #141C24 100%);
    position: relative;
    overflow: hidden;
}

.detail-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            transparent, transparent 12px,
            rgba(59, 68, 82, 0.1) 12px, rgba(59, 68, 82, 0.1) 14px);
}

.detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-img-label {
    position: absolute;
    bottom: 20px;
    left: 0;
    background: var(--accent);
    color: var(--carbon-deep);
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem 0.35rem 0.75rem;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}

.detail-body {
    padding: 2rem;
}

.detail-title {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.detail-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-detail {
    display: inline-block;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent-border);
    padding: 0.6rem 1.4rem;
    transition: all 0.25s;
}

.btn-detail:hover {
    background: var(--accent);
    color: var(--carbon-deep);
    border-color: var(--accent);
}

/* ═══════════════════════════════════════════════
SECTION 11 — CONTACT
═══════════════════════════════════════════════ */
#contact {
    background: var(--carbon-deep);
}

.contact-map-wrap {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.7) brightness(0.7);
    display: block;
}

.contact-map-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--carbon-deep));
    pointer-events: none;
}

.contact-info-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.contact-block {
    padding: 1.5rem 2rem;
    position: relative;
}

.contact-block+.contact-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(189, 195, 199, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-label {
    font-family: var(--ff-body);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.contact-value {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.contact-value a {
    color: inherit;
    transition: color 0.25s;
}

.contact-value a:hover {
    color: var(--accent-bright);
}

.contact-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════
SECTION 12 — FOOTER
═══════════════════════════════════════════════ */
footer {
    height: 180px;
    background: #0D1219;
    border-top: 1px solid rgba(78, 89, 106, 0.25);
    position: relative;
    overflow: hidden;
}

.footer-track-wrap {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.footer-fade-left,
.footer-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.footer-fade-left {
    left: 0;
    background: linear-gradient(to right, #0D1219, transparent);
}

.footer-fade-right {
    right: 0;
    background: linear-gradient(to left, #0D1219, transparent);
}

.footer-track {
    display: flex;
    align-items: center;
    height: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 100px;
    gap: 0;
}

.footer-track::-webkit-scrollbar {
    display: none;
}

.footer-divider {
    width: 1px;
    height: 60px;
    background: rgba(189, 195, 199, 0.1);
    flex-shrink: 0;
    margin: 0 2rem;
}

.footer-logo {
    flex-shrink: 0;
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.footer-logo span {
    color: var(--accent-bright);
}

.footer-tagline {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    white-space: nowrap;
    margin-top: 0.3rem;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
}

.footer-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.25s;
    white-space: nowrap;
}

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

.footer-contact {
    flex-shrink: 0;
}

.footer-contact-item {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    line-height: 1.6;
}

.footer-contact-item a {
    color: var(--silver-dim);
    transition: color 0.25s;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.social-icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(189, 195, 199, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.25s;
    cursor: pointer;
}

.social-icon:hover {
    border-color: var(--accent-border);
    color: var(--accent);
}

.footer-copy {
    flex-shrink: 0;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.footer-scroll-hint {
    position: absolute;
    right: 88px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.7;
    z-index: 11;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════
MOBILE RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
    :root {
        --nav-height: 60px;
    }

    nav#navbar {
        grid-template-columns: 1fr auto;
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    #hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        min-height: 100vh;
    }

    .hero-q {
        min-height: 50vh;
    }

    .hero-brand h1 {
        font-size: clamp(36px, 8vw, 52px);
    }

    .hero-img1 {
        width: 160px;
        height: 180px;
    }

    .hero-img2 {
        width: 180px;
        height: 160px;
    }

    .hero-content-br {
        bottom: 5%;
        right: 5%;
        max-width: 220px;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .trust-badge {
        font-size: 0.58rem;
        padding: 0.25rem 0.5rem;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-images {
        height: 320px;
    }

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

    .stat-item+.stat-item::before {
        display: none;
    }

    #services {
        flex-direction: column;
    }

    .services-sticky {
        position: relative;
        width: 100%;
        height: 280px;
        top: 0;
    }

    .services-scroll {
        width: 100%;
    }

    .service-block {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

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

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-bar {
        grid-template-columns: 1fr;
    }

    .contact-block+.contact-block::before {
        display: none;
    }

    .contact-block {
        border-top: 1px solid rgba(189, 195, 199, 0.1);
    }

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

    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* ═══════════════════════════════════════════════
SCROLL ANIMATION UTILITY
═══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}