﻿:root {
    --gold: #c5a14a;
    --gold-2: #b99131;
    --dark: #1b1b1b;
    --charcoal: #232323;
    --ink: #0f0f10;
    --muted: #8b8b8b;
    --paper: #f4f4f4;
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color: #191919;
    background: #ffffff;
    line-height: 1.6;
}

.container {
    width: min(1200px,92vw);
    margin-inline: auto;
}

/* ================= HEADER & NAV ================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(1.2) blur(8px);
    background: rgba(17,17,17,.4);
    transition: box-shadow .2s ease, background-color .2s ease, padding .2s ease;
    padding: 14px 0;
}

    .site-header.scrolled {
        box-shadow: 0 6px 24px rgba(0,0,0,.25);
        background: #121212cc;
    }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

    .brand .brand-mark {
        width: 28px;
        height: 28px;
        display: grid;
        place-items: center;
        border: 2px solid var(--gold);
        color: var(--gold);
        border-radius: 8px;
        font-weight: 700;
    }

    .brand .brand-text {
        display: flex;
        flex-direction: column;
        font-weight: 600;
        color: #fff;
    }

    .brand small {
        font-weight: 400;
        font-size: .8rem;
        color: #e6e6e6;
    }

/* main nav */

.nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}

    .nav-links a {
        color: #efefef;
        text-decoration: none;
        font-weight: 500;
    }

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

/* === Services mega dropdown (click-to-open) === */

.nav-services-dropdown {
    position: relative;
}

/* button behaves like a link */
.svc-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: 0;
    color: #efefef;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

    .svc-trigger:hover {
        color: var(--gold);
    }

.svc-caret {
    font-size: .7rem;
    opacity: .8;
}

/* outer mega menu panel */
.svc-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: #171716; /* black background like screenshot */
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    z-index: 80;
    min-width: 280px;
    /* smooth show/hide using .open class */
    opacity: 0;
    transform: translateY(6px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

/* when JS adds .open on wrapper */
.nav-services-dropdown.open > .svc-mega-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

/* optional header inside menu (for "All services →" link) */
.svc-mega-header {
    padding: 8px 18px 4px;
    border-bottom: 1px solid rgba(255,255,255,.16);
}

.svc-all-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #ffeaa7;
    font-weight: 600;
    text-decoration: none;
    font-size: .9rem;
}

    .svc-all-link:hover {
        color: #ffffff;
    }

/* left column (categories) */
.svc-mega-root {
    list-style: none;
    margin: 0;
    padding: 8px 0 10px;
    position: relative;
    min-width: 260px;
}

.svc-mega-item {
    position: relative;
    white-space: nowrap;
    padding: 8px 40px 8px 22px;
}

    .svc-mega-item > a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: .95rem;
    }

        .svc-mega-item > a:hover {
            color: #ffeaa7;
        }

/* arrow on categories that have children */
.svc-mega-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .8rem;
    opacity: .8;
}

/* right column (sub services) */
.svc-mega-sub {
    list-style: none;
    margin: 0;
    padding: 12px 22px;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 280px;
    background: #262523; /* slightly different black for sub column */
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transform: translateX(6px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s;
}

/* when hovering parent category, show its sub list on desktop */
.svc-mega-item.has-children:hover > .svc-mega-sub {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.svc-mega-sub li {
    margin: 4px 0;
}

.svc-mega-sub a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
    line-height: 1.4;
}

    .svc-mega-sub a:hover {
        color: #ffeaa7;
    }

/* remove old hover-based show rules (now handled by .open + JS) */
/* (intentionally no .nav-services-dropdown:hover .svc-mega-menu here) */

/* buttons */

.btn {
    display: inline-block;
    padding: .8rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.btn-cta {
    background: var(--gold);
    color: #111;
}

    .btn-cta:hover {
        background: var(--gold-2);
        color: #111;
    }

/* mobile nav toggle */

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: #282828;
    border: 0;
    border-radius: 10px;
}

    .nav-toggle span {
        display: block;
        height: 2px;
        background: #fff;
        margin: 7px 8px;
    }

/* mobile nav behavior */
/* mobile nav behavior */
@media (max-width:900px) {
    .nav-links {
        position: fixed;
        inset: 64px 16px auto 16px;
        background: #161616;
        border: 1px solid #2a2a2a;
        padding: 18px;
        border-radius: 16px;
        display: none;
        flex-direction: column;
        gap: 14px;
        max-height: calc(100vh - 88px);
        overflow-y: auto;
        z-index: 1000;
        /* LEFT align items */
        align-items: flex-start;
    }

        .nav-links.open {
            display: flex;
        }

    .nav-toggle {
        display: inline-block;
    }

    /* All menu items full width & left aligned */
    .nav-links > a,
    .nav-services-dropdown {
        width: 100%;
        text-align: left;
    }

    /* services menu inside mobile drawer */
    .nav-services-dropdown {
        /* width now controlled above, no need for 70% */
    }

    /* Mega menu container: hidden by default on mobile */
    .svc-mega-menu {
        position: static;
        margin-top: 6px;
        width: 100%;
        box-shadow: none;
        border-radius: 10px;
        background: #0f172a;
        padding-bottom: 8px;
        display: none; /* don't take space when closed */
    }

    /* When SERVICES (wrapper) has .open class from JS, show panel */
    .nav-services-dropdown.open .svc-mega-menu {
        display: block;
    }

    .svc-mega-root {
        min-width: 0;
        padding: 6px 12px 4px;
        text-align: left;
    }

    .svc-mega-item {
        padding: 6px 0;
    }

    /* no arrow on mobile */
    .svc-mega-arrow {
        display: none;
    }

    /* CHILD LIST (sub-services) – HIDE ON MOBILE */
    .svc-mega-sub {
        position: static;
        padding: 4px 0 4px 18px;
        background: none;
        opacity: 1;
        transform: none;
        visibility: visible;
        pointer-events: auto;
        display: none; /* hides all child items on mobile */
    }

        .svc-mega-sub a {
            font-weight: 400;
            font-size: .9rem;
            text-align: left;
        }
}
/*@media (max-width:900px) {
    .nav-links {
        position: fixed;
        inset: 64px 16px auto 16px;
        background: #161616;
        border: 1px solid #2a2a2a;
        padding: 18px;
        border-radius: 16px;
        display: none;
        flex-direction: column;
        gap: 14px;
        max-height: calc(100vh - 88px);
        overflow-y: auto;
    }

        .nav-links.open {
            display: flex;
        }

    .nav-toggle {
        display: inline-block;
    }*/

    /* services menu inside mobile drawer */
    /*.nav-services-dropdown {
        width: 100%;
    }

    .svc-mega-menu {
        position: static;
        margin-top: 6px;
        width: 100%;
        box-shadow: none;
        border-radius: 10px;
        background: #0f172a;
        padding-bottom: 8px;
    }

    .svc-mega-root {
        min-width: 0;
        padding: 6px 12px 4px;
    }

    .svc-mega-item {
        padding: 6px 0;
    }

    .svc-mega-arrow {
        display: none;
    }

    .svc-mega-sub {
        position: static;
        padding: 4px 0 4px 18px;
        background: none;
        opacity: 1;
        transform: none;
        visibility: visible;
        pointer-events: auto;
    }

        .svc-mega-sub a {
            font-weight: 400;
            font-size: .9rem;
        }
}*/

/* ================= HERO ================= */

.hero {
    position: relative;
    min-height: 68vh;
    display: grid;
    align-items: end;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 55%, #0d0d0d 100%);
}

.hero-inner {
    position: relative;
    padding: 16vh 0 8vh;
    color: #fff;
}

.eyebrow {
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #e8e8e8;
    font-size: .85rem;
}

.hero h1 {
    font-size: clamp(2.2rem,4.5vw,3.4rem);
    line-height: 1.1;
    margin: .35rem 0 1.2rem;
}

.btn-primary {
    background: var(--gold);
    color: #111;
    padding: 1rem 1.25rem;
    border-radius: 14px;
}

    .btn-primary:hover {
        background: var(--gold-2);
    }

/* ================= SECTIONS ================= */

.section {
    padding: 70px 0;
}

.section--dark {
    background: #232323;
    color: #f2f2f2;
}

.section--light {
    background: #efefef;
}

.section--gold {
    background: var(--gold);
    color: #141414;
}

.section-title {
    text-align: center;
    font-weight: 700;
    margin: 0 0 26px;
    font-size: clamp(1.5rem,2.6vw,2rem);
}

/* ================= CARDS ================= */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px;
}

@media (max-width:980px) {
    .card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:640px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.section--dark .card {
    background: #2c2c2c;
}

    .section--dark .card p {
        color: #cfcfcf;
    }

/* ================= SERVICES SHARED ================= */

.svc-hero--wide {
    min-height: 40vh;
}

.svc-hero--narrow {
    min-height: 30vh;
}

.crumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
    color: #ddd;
}

    .crumbs a {
        color: #fff;
        text-decoration: none;
    }

        .crumbs a:hover {
            color: var(--gold);
        }

/* image card grid */

.svc-grid-wrap--image {
    background: #f6f7f8;
    padding: 36px 0 52px;
}

.svc-grid-img {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

@media (max-width:980px) {
    .svc-grid-img {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:620px) {
    .svc-grid-img {
        grid-template-columns: 1fr;
    }
}

.svc-card-img {
    position: relative;
    height: 320px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0,0,0,.14);
    background: #222;
}

.svc-card-img__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform .25s ease;
}

.svc-card-img__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.25),rgba(0,0,0,.55) 55%,rgba(0,0,0,.7));
}

.svc-card-img__head {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(4px);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    text-decoration: none;
    font-weight: 700;
}

    .icon-btn:hover {
        background: rgba(255,255,255,.2);
    }

.svc-card-img__body {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    color: #fff;
}

    .svc-card-img__body h3 {
        margin: 0 0 6px;
        font-size: 1.05rem;
    }

    .svc-card-img__body p {
        margin: 0;
        color: #eee;
        opacity: .95;
    }

.svc-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.svc-card-img:hover .svc-card-img__bg {
    transform: scale(1.06);
}

/* why choose us */

.svc-why {
    padding: 28px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width:820px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 12px 26px rgba(0,0,0,.06);
}

    .why-item h3 {
        margin: .2rem 0 .25rem;
    }

.why-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #0f1719;
    color: #fff;
    flex: 0 0 36px;
}

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

/* skills */

.svc-skills {
    padding: 10px 0 44px;
}

.skills-title {
    margin: 0 0 10px;
}

.skills-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.skill-head {
    display: flex;
    justify-content: space-between;
    color: #444;
    font-weight: 600;
    margin-bottom: 6px;
}

.bar {
    height: 8px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}

    .bar span {
        display: block;
        height: 100%;
        background: linear-gradient(90deg,var(--gold),#d6b24f);
    }

/* ================= PROJECTS (HOME) ================= */

.projects .project {
    padding: 0;
    overflow: hidden;
}

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

.project-meta {
    padding: 18px 18px 22px;
}

    .project-meta h3 {
        margin: 0 0 6px;
        font-size: 1.05rem;
    }

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.btn-outline {
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
}

    .btn-outline:hover {
        border-color: var(--gold);
        box-shadow: 0 6px 16px rgba(0,0,0,.06);
    }

/* ================= TESTIMONIALS ================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

@media (max-width:820px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.t-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    background: #fff;
    color: #121212;
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

    .t-card .avatar {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #111;
        color: #fff;
        display: grid;
        place-items: center;
        font-weight: 700;
        overflow: hidden;
        flex: 0 0 56px;
    }

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

        .t-card .avatar span {
            line-height: 1;
        }

.section--gold .t-card {
    background: #f9f7f1;
}

/* ================= FOOTER (NEW STYLE) ================= */

.bld-footer {
    background: #0f1719;
    color: #d9e0e3;
    padding: 28px 0 8px;
}

    .bld-footer a {
        color: #d9e0e3;
        text-decoration: none;
    }

        .bld-footer a:hover {
            color: var(--gold);
        }

.bld-footer__socialbar {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    padding: 10px 0 18px;
}

.bld-footer__brand img {
    height: 52px;
}

.bld-footer__socials {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #d9e0e3;
}

.bld-socials {
    display: flex;
    gap: 12px;
}

    .bld-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: #132026;
        border: 1px solid #1f2e34;
        transition: transform .12s ease, background .12s ease;
    }

        .bld-socials a:hover {
            transform: translateY(-2px);
            background: #172b32;
        }

.bld-divider {
    height: 1px;
    background: #1d2a2f;
    margin: 8px 0 22px;
}

.bld-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr;
    gap: 28px;
}

@media (max-width:980px) {
    .bld-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .bld-grid {
        grid-template-columns: 1fr;
    }
}

.fcol h4 {
    margin: 0 0 10px;
    color: #fff;
}

.f-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .f-list li {
        margin: 10px 0;
    }

.f-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: .55rem 0;
}

    .f-row .ico {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: #132026;
        border: 1px solid #1f2e34;
        color: #bcd0d6;
        flex: 0 0 34px;
    }

.btn-map {
    display: inline-block;
    padding: .6rem 1rem;
    border-radius: 10px;
    background: #2c6df6;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(44,109,246,.25);
}

    .btn-map:hover {
        filter: brightness(1.05);
    }

.muted {
    color: #9fb1b8;
}

.nl {
    position: relative;
    margin-top: 8px;
}

.nl__input {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #1f2e34;
    background: #0e1518;
    color: #d9e0e3;
    padding: 0 48px 0 12px;
}

.nl__btn {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #1f2e34;
    background: #132026;
    color: #d9e0e3;
    cursor: pointer;
}

    .nl__btn:hover {
        background: #172b32;
    }

.nl__msg {
    margin-top: 6px;
    font-size: .85rem;
    color: #9fb1b8;
    min-height: 1em;
}

.bld-legal {
    border-top: 1px solid #1d2a2f;
    margin-top: 22px;
    padding: 12px 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #9fb1b8;
}

    .bld-legal a {
        color: #bcd0d6;
    }

    .bld-legal .sep {
        opacity: .6;
        margin: 0 .5rem;
    }

/* floating action buttons */

.fab-stack {
    position: fixed;
    right: 18px;
    bottom: 24px;
    display: grid;
    gap: 12px;
    z-index: 60;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
    transform: translateY(0);
    transition: transform .12s ease, filter .12s ease;
}

    .fab:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
    }

.fab-wa {
    background: #22c55e;
}

.fab-call {
    background: #10b981;
}

@media (max-width:520px) {
    .fab {
        width: 52px;
        height: 52px;
    }
}

/* ================= ADMIN DASHBOARD ================= */

.admin-subtitle {
    margin-top: -6px;
    color: #666;
    margin-bottom: 12px;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    margin: 16px 0 24px;
}

@media (max-width:1100px) {
    .dash-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:560px) {
    .dash-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    display: block;
    text-decoration: none;
    color: #111;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 12px 28px rgba(0,0,0,.06);
    padding: 18px 18px 16px;
    transition: transform .12s ease, box-shadow .12s ease;
}

    .stat-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(0,0,0,.08);
    }

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #141414;
    margin-bottom: 10px;
}

    .stat-icon svg {
        width: 24px;
        height: 24px;
        fill: var(--gold);
    }

.stat-number {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.stat-label {
    color: #666;
    font-weight: 600;
}

.chart-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,.06);
    padding: 14px 18px 18px;
    margin-bottom: 20px;
}

.chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

    .chart-head h3 {
        margin: 8px 0 6px;
    }

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 6px 0 16px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width:900px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

.panel {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,.06);
    padding: 12px 16px;
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

    .panel-head h3 {
        margin: 8px 0;
    }

    .panel-head a {
        text-decoration: none;
        color: var(--gold);
        font-weight: 600;
    }

.t-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

    .t-table thead th {
        font-size: .9rem;
        text-align: left;
        color: #666;
        border-bottom: 1px solid #eee;
        padding: 10px 6px;
    }

    .t-table tbody td {
        padding: 10px 6px;
        border-bottom: 1px solid #f0f0f0;
    }

/* ================= SERVICES PAGE HERO ================= */

.svc-hero {
    position: relative;
    min-height: 46vh;
    background-size: cover;
    background-position: center;
    display: grid;
    align-items: end;
}

.svc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
}

.svc-hero-inner {
    position: relative;
    color: #fff;
    padding: 12vh 0 6vh;
}

.svc-eyebrow {
    letter-spacing: .15em;
    text-transform: uppercase;
    opacity: .95;
    font-weight: 600;
}

.svc-title {
    margin: .25rem 0 0;
    font-weight: 700;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1.05;
}

/* services cards grid */

.svc-grid-wrap {
    background: #efefef;
    padding: 48px 0 72px;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

@media (max-width:980px) {
    .svc-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:640px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }
}

.svc-card {
    background: #36454F;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 36px rgba(0,0,0,.22);
    padding: 28px;
    position: relative;
    isolation: isolate;
}

.svc-card--ghost {
    opacity: .65;
}

.svc-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,.08);
}

.svc-svg {
    width: 34px;
    height: 34px;
    fill: #D4AF37;
}

.svc-name {
    margin: 4px 0 10px;
    font-weight: 700;
    font-size: 1.3rem;
}

.svc-summary {
    color: #eaeaea;
    opacity: .9;
    margin: 0 0 16px;
}

.svc-accent {
    color: #D4AF37;
    font-weight: 700;
    letter-spacing: .08em;
}

/* ================= PROJECTS PAGE ================= */

.prj-hero {
    position: relative;
    min-height: 38vh;
    background-size: cover;
    background-position: center;
    display: grid;
    align-items: end;
}

.prj-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.55));
}

.prj-hero-inner {
    position: relative;
    color: #fff;
    padding: 10vh 0 6vh;
}

.prj-eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 600;
    opacity: .95;
}

.prj-title {
    margin: .2rem 0;
    font-weight: 700;
    font-size: clamp(2.2rem,6vw,4rem);
}

.prj-wrap {
    background: #efefef;
    padding: 44px 0 70px;
}

.prj-filters {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 14px 16px 12px;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

    .prj-filters .row {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }

    .prj-filters label {
        display: block;
        font-size: .85rem;
        color: #666;
        margin-bottom: 4px;
    }

    .prj-filters .input {
        height: 40px;
        min-width: 220px;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 0 10px;
        background: #fff;
    }

    .prj-filters .grow {
        flex: 1 1 auto;
    }

.muted.sm {
    font-size: .9rem;
    color: #777;
    margin-top: 6px;
}

.prj-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 16px;
}

@media (max-width:980px) {
    .prj-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:640px) {
    .prj-grid {
        grid-template-columns: 1fr;
    }
}

.prj-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0,0,0,.12);
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.prj-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.prj-info {
    padding: 14px 16px 18px;
}

    .prj-info h3 {
        margin: 4px 0 8px;
        font-size: 1.12rem;
    }

    .prj-info p {
        margin: 0;
        color: #666;
    }

.chip {
    display: inline-block;
    background: #141414;
    color: #fff;
    border-radius: 999px;
    padding: .25rem .6rem;
    font-size: .75rem;
    margin-bottom: 6px;
}

.pager {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 18px;
}

    .pager .page {
        display: inline-block;
        padding: .5rem .8rem;
        border: 1px solid #ddd;
        border-radius: 10px;
        background: #fff;
        text-decoration: none;
        color: #222;
    }

        .pager .page.active {
            background: var(--gold);
            border-color: var(--gold);
            color: #111;
            font-weight: 700;
        }

        .pager .page.disabled {
            opacity: .45;
            pointer-events: none;
        }

/* ================= CONTACT PAGE ================= */

.contact-hero {
    padding-top: 42px;
}

.page-title {
    font-weight: 800;
    text-align: center;
    margin: 0;
}

.title-rule {
    width: 64px;
    height: 3px;
    background: var(--gold);
    margin: 10px auto 26px;
    border-radius: 2px;
}

.loc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px;
    text-align: center;
    margin-bottom: 16px;
}

@media (max-width:900px) {
    .loc-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.loc-col h4 {
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.loc-col p {
    margin: 0;
    color: #333;
}

.loc-col a {
    color: inherit;
    text-decoration: underline;
}

.map-wrap {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,.06);
}

.thanks {
    font-weight: 800;
    text-align: center;
    color: #0a4b3c;
    margin: 22px 0 0;
}

/* ================= ABOUT PAGE ================= */

.about-hero {
    position: relative;
    min-height: 44vh;
    background-size: cover;
    background-position: center;
    display: grid;
    align-items: end;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.2),rgba(0,0,0,.55));
}

.about-hero__inner {
    position: relative;
    color: #fff;
    padding: 12vh 0 6vh;
}

.about-hero .sub {
    opacity: .95;
    max-width: 720px;
}

.about-intro {
    background: #fff;
    padding: 44px 0;
}

.about-two {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
}

@media(max-width:900px) {
    .about-two {
        grid-template-columns: 1fr;
    }
}

.about-intro__img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    object-fit: cover;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin: 14px 0 8px;
}

@media(max-width:680px) {
    .stat-row {
        grid-template-columns: 1fr 1fr;
    }
}

.stat {
    background: #f6f7f8;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px;
}

.stat__value {
    font-size: 1.6rem;
    font-weight: 800;
}

.stat__label {
    color: #666;
}

.about-features {
    padding: 48px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

@media(max-width:980px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:560px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0,0,0,.06);
    padding: 18px;
}

    .feature-card h3 {
        margin: .2rem 0 .3rem;
    }

.about-mission {
    padding: 44px 0;
}

    .about-mission .two-col {
        grid-template-columns: 1fr 1fr;
    }

    .about-mission .note {
        background: #1a1a1a;
        border: 1px solid #2a2a2a;
        border-radius: 16px;
        padding: 16px;
        color: #dcdcdc;
    }

@media(max-width:900px) {
    .about-mission .two-col {
        grid-template-columns: 1fr;
        margin-top: 12px;
    }
}

.about-brands {
    background: #f4f6f7;
    padding: 24px 0;
}

.brands {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.brand-logo {
    display: grid;
    place-items: center;
    width: 140px;
    height: 64px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
}

    .brand-logo img {
        max-width: 100%;
        max-height: 42px;
        object-fit: contain;
        opacity: .9;
    }

.about-team {
    padding: 44px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

@media(max-width:980px) {
    .team-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:560px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0,0,0,.06);
    padding: 14px;
    text-align: center;
}

    .team-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 10px;
    }
