:root {
    --black: #151515;
    --black-2: #1f1f1f;
    --dark-panel: rgba(24, 24, 24, .72);
    --white: #ffffff;
    --paper: #f8f8f6;
    --soft: #efefec;
    --text: #333333;
    --muted: #777777;
    --line: rgba(0, 0, 0, .12);
    --line-light: rgba(255, 255, 255, .22);
    --heading-font: "Century Gothic", "Montserrat", Arial, sans-serif;
    --body-font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    --serif-font: "Cinzel", "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: .01em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button, input, textarea, select {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 56px));
    margin-inline: auto;
}

.section-pad {
    padding: 104px 0;
}

.no-top-pad {
    padding-top: 0;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #121212;
    transition: opacity .55s ease, visibility .55s ease;
}

    .preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .preloader span {
        width: 54px;
        height: 54px;
        border: 1px solid rgba(255,255,255,.25);
        border-top-color: #fff;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 92px;
    padding: 0 64px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    color: var(--white);
    transition: background .35s ease, height .35s ease, padding .35s ease;
}

    .site-header.scrolled {
        height: 74px;
        background: rgba(20,20,20,.9);
        backdrop-filter: blur(14px);
    }

.brand, .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.brand-mark {
    width: 66px;
    height: 38px;
    position: relative;
    display: inline-block;
}

    .brand-mark::before, .brand-mark::after, .brand-mark i {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        height: 3px;
        background: currentColor;
        transform-origin: center;
    }

    .brand-mark::before {
        width: 62px;
        top: 20px;
        transform: skewY(-20deg);
    }

    .brand-mark::after {
        width: 49px;
        top: 11px;
        transform: skewY(-20deg);
    }

    .brand-mark i:nth-child(1) {
        width: 37px;
        top: 2px;
        transform: skewY(-20deg);
    }

    .brand-mark i:nth-child(2) {
        width: 62px;
        top: 29px;
    }

    .brand-mark i:nth-child(3) {
        display: none;
    }

.brand-text {
    display: grid;
    line-height: 1;
    font-family: var(--serif-font);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

    .brand-text small {
        margin-top: 5px;
        font-family: var(--heading-font);
        font-size: 7px;
        letter-spacing: .26em;
        font-weight: 600;
    }

.main-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 29px;
}

    .main-nav a {
        position: relative;
        padding: 8px 0;
        font-family: var(--heading-font);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .18em;
        font-weight: 500;
        color: rgba(255,255,255,.84);
        transition: color .25s ease;
    }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background: #fff;
            transform: scaleX(0);
            transform-origin: center;
            transition: .25s ease;
        }

        .main-nav a:hover, .main-nav a.active {
            color: #fff;
        }

            .main-nav a:hover::after, .main-nav a.active::after {
                transform: scaleX(1);
            }

.nav-toggle {
    display: none;
    width: 42px;
    height: 36px;
    background: transparent;
    border: 0;
    padding: 0;
}

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

.exact-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #101010;
    color: #fff;
}

.hero-slider .hero-slide, .page-hero .hero-media {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease, transform 8s ease;
}

    .hero-slider .hero-slide.active {
        opacity: 1;
        transform: scale(1.035);
    }

.hero-slide img, .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-media {
    opacity: 1;
    transform: scale(1.02);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.14) 42%, rgba(0,0,0,.34));
}

.hero-title-panel {
    position: relative;
    z-index: 2;
    width: min(760px, 72vw);
    min-height: 136px;
    display: grid;
    place-items: center;
    background: var(--dark-panel);
    padding: 34px 44px;
    transform: translateY(20px);
}

    .hero-title-panel h1 {
        margin: 0;
        font-family: var(--heading-font);
        font-weight: 300;
        font-size: clamp(2rem, 5.3vw, 5.15rem);
        line-height: 1.05;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: .095em;
        color: rgba(255,255,255,.94);
    }

.scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    justify-items: center;
    gap: 9px;
    font-family: var(--heading-font);
    font-size: 10px;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: rgba(255,255,255,.88);
}

    .scroll-cue span {
        width: 30px;
        height: 30px;
        border-right: 1px solid rgba(255,255,255,.82);
        border-bottom: 1px solid rgba(255,255,255,.82);
        transform: rotate(45deg);
        animation: bounce 1.6s ease-in-out infinite;
    }

@keyframes bounce {
    0%,100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(8px) rotate(45deg);
    }
}

.intro-block {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(360px, 1fr);
    gap: 74px;
    align-items: center;
}

.intro-photo img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    background: #ddd;
}

.intro-text h2, .text-large h2, .section-heading h2, .project-copy h2, .contact-band h2, .simple-page h1 {
    margin: 0 0 25px;
    font-family: var(--heading-font);
    color: #2a2a2a;
    font-weight: 400;
    text-transform: none;
    letter-spacing: .02em;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.16;
}

.intro-text h3 {
    margin: 0 0 20px;
    font-weight: 500;
    line-height: 1.7;
    font-size: 1.02rem;
    color: #303030;
}

.intro-text p, .text-large p, .project-copy p, .section-heading p, .simple-page p, .contact-band p {
    color: var(--muted);
    line-height: 2;
    margin: 0 0 20px;
}

.thin-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: #222;
}

    .thin-link::after {
        content: "";
        width: 42px;
        height: 1px;
        background: currentColor;
        transition: width .25s ease;
    }

    .thin-link:hover::after {
        width: 70px;
    }

    .thin-link.light {
        color: #fff;
    }

.rule-section hr {
    border: 0;
    height: 1px;
    background: var(--line);
}

.text-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.stacked-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

    .stacked-photos img {
        height: 360px;
        width: 100%;
        object-fit: cover;
    }

        .stacked-photos img:first-child {
            margin-top: 54px;
        }

.service-names {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    margin-bottom: 92px;
}

.service-name {
    min-height: 148px;
    padding: 26px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    align-content: space-between;
    transition: .28s ease;
}

    .service-name span {
        color: #999;
        font-size: .78rem;
    }

    .service-name strong {
        font-family: var(--heading-font);
        font-size: .85rem;
        line-height: 1.45;
        text-transform: uppercase;
        letter-spacing: .13em;
        font-weight: 500;
    }

    .service-name:hover {
        background: #fff;
        transform: translateY(-4px);
    }

.project-pride {
    background: var(--black);
    color: #fff;
}

.project-layout {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center;
}

.project-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
    gap: 16px;
}

    .project-collage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .96;
        filter: saturate(.82);
    }

        .project-collage img:first-child {
            grid-row: span 2;
        }

        .project-collage img:last-child {
            grid-column: span 2;
        }

.project-copy h2 {
    color: #fff;
}

.project-copy p {
    color: rgba(255,255,255,.66);
}

.news-preview {
    background: var(--paper);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 46px;
}

    .section-heading h2 {
        margin-bottom: 0;
    }

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

.news-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 34px;
    min-height: 245px;
    display: grid;
    align-content: start;
    gap: 16px;
}

    .news-card span {
        font-size: .72rem;
        color: #888;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .news-card h3 {
        margin: 0;
        font-size: 1.22rem;
        line-height: 1.35;
        font-weight: 500;
        color: #242424;
    }

    .news-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.8;
    }

.contact-band {
    padding: 88px 0;
    background: #fff;
    text-align: center;
    border-top: 1px solid var(--line);
}

    .contact-band h2 {
        margin-bottom: 10px;
    }

.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 20px;
    padding: 0 34px;
    border: 1px solid #222;
    font-family: var(--heading-font);
    font-size: 11px;
    letter-spacing: .17em;
    text-transform: uppercase;
    transition: .25s ease;
}

    .outline-button:hover {
        background: #222;
        color: #fff;
    }

.service-detail-list {
    display: grid;
    gap: 28px;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 80px 1fr 250px;
    gap: 34px;
    align-items: center;
    padding: 34px 0;
    border-top: 1px solid var(--line);
}

    .service-detail-row:last-child {
        border-bottom: 1px solid var(--line);
    }

.service-number {
    font-family: var(--heading-font);
    color: #aaa;
    letter-spacing: .12em;
}

.service-detail-row h2 {
    margin: 0 0 12px;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.4vw, 2.25rem);
}

.service-detail-row p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.service-detail-row img {
    width: 250px;
    height: 160px;
    object-fit: cover;
}

.category-wrap {
    padding-bottom: 60px;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .category-pills a {
        padding: 12px 16px;
        border: 1px solid var(--line);
        font-size: .72rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        transition: .25s ease;
        background: transparent;
    }

        .category-pills a.active, .category-pills a:hover {
            background: #222;
            color: #fff;
            border-color: #222;
        }

.project-list {
    display: grid;
    gap: 42px;
}

.project-list-card {
    display: grid;
    grid-template-columns: 44% 1fr;
    gap: 42px;
    padding-bottom: 42px;
    border-bottom: 1px solid var(--line);
}

    .project-list-card img {
        width: 100%;
        min-height: 290px;
        object-fit: cover;
    }

    .project-list-card span, .project-list-card .location {
        color: #888;
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .72rem;
    }

    .project-list-card h3 {
        margin: 14px 0;
        font-family: var(--heading-font);
        font-size: clamp(1.5rem, 2.7vw, 2.55rem);
        font-weight: 400;
    }

    .project-list-card p {
        color: var(--muted);
        line-height: 1.85;
    }

.badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

    .badge-row em {
        font-style: normal;
        padding: 7px 11px;
        background: #fff;
        border: 1px solid var(--line);
        font-size: .72rem;
    }

.leader-list {
    display: grid;
    gap: 50px;
}

.leader-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 44px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

    .leader-row img {
        width: 260px;
        height: 300px;
        object-fit: cover;
    }

    .leader-row h3 {
        margin: 0 0 6px;
        font-size: 1.65rem;
        font-family: var(--heading-font);
        font-weight: 400;
    }

    .leader-row span {
        display: block;
        margin-bottom: 20px;
        color: #888;
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .72rem;
    }

    .leader-row p {
        line-height: 1.9;
        color: var(--muted);
    }

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.client-logo {
    min-height: 96px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: #777;
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: #fff;
}

.featured-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--line);
}

    .featured-news img {
        width: 100%;
        min-height: 330px;
        object-fit: cover;
    }

    .featured-news span, .news-row em {
        font-style: normal;
        color: #888;
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .72rem;
    }

    .featured-news h2 {
        margin: 12px 0 18px;
        font-family: var(--heading-font);
        font-weight: 400;
        font-size: clamp(1.8rem, 3vw, 3rem);
    }

    .featured-news p {
        color: var(--muted);
        line-height: 1.9;
    }

.news-list {
    display: grid;
    gap: 0;
}

.news-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 34px;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
}

.date-box {
    display: grid;
    justify-items: center;
    align-content: center;
    height: 96px;
    border: 1px solid var(--line);
    background: #fff;
}

    .date-box strong {
        font-family: var(--heading-font);
        font-size: 2rem;
        font-weight: 400;
    }

    .date-box span {
        font-size: .64rem;
        text-transform: uppercase;
        letter-spacing: .12em;
        color: #888;
    }

.news-row h3 {
    margin: 10px 0;
    font-size: 1.4rem;
    font-weight: 500;
}

.news-row p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

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

.opening-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
    min-height: 230px;
    display: grid;
    gap: 12px;
    align-content: start;
}

    .opening-card span, .opening-card em {
        font-style: normal;
        color: #888;
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .7rem;
    }

    .opening-card h3 {
        margin: 0;
        font-size: 1.35rem;
        font-weight: 500;
    }

    .opening-card p {
        margin: 0;
        color: var(--muted);
    }

    .opening-card a {
        margin-top: 12px;
        font-size: .76rem;
        text-transform: uppercase;
        letter-spacing: .12em;
        text-decoration: underline;
    }

.address-box {
    margin-top: 26px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
}

    .address-box h3 {
        margin: 0 0 14px;
        font-weight: 500;
    }

.contact-form-section {
    max-width: 960px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 42px;
}

    .contact-form label {
        display: grid;
        gap: 8px;
        font-weight: 500;
        color: #444;
    }

    .contact-form .full, .success-box, .validation-summary {
        grid-column: 1 / -1;
    }

    .contact-form input, .contact-form textarea, .contact-form select {
        width: 100%;
        border: 1px solid var(--line);
        background: #f8f8f6;
        padding: 14px 14px;
        outline: none;
        color: #222;
    }

        .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
            border-color: #222;
        }

    .contact-form small, .validation-summary {
        color: #b33c2d;
    }

    .contact-form button {
        grid-column: 1 / -1;
        border: 1px solid #222;
        background: #222;
        color: #fff;
        min-height: 52px;
        text-transform: uppercase;
        letter-spacing: .17em;
        cursor: pointer;
        transition: .25s ease;
    }

        .contact-form button:hover {
            background: #fff;
            color: #222;
        }

.success-box {
    padding: 14px 16px;
    border: 1px solid rgba(40,130,65,.25);
    background: #edf8f0;
    color: #26763f;
}

.check-list {
    padding-left: 20px;
    color: var(--muted);
    line-height: 2;
}

.first-simple {
    padding-top: 160px;
    min-height: 58vh;
}

.simple-page {
    max-width: 860px;
}

.site-footer {
    background: #151515;
    color: #fff;
    padding: 66px 0 26px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: start;
}

.footer-brand {
    color: #fff;
}

.footer-left p {
    max-width: 560px;
    color: rgba(255,255,255,.58);
    line-height: 1.9;
}

.footer-links {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: end;
}

    .footer-links a {
        font-size: 11px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: rgba(255,255,255,.72);
    }

.footer-bottom {
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.15);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.46);
    font-size: .8rem;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s ease, transform .8s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 1050px) {
    .site-header {
        padding: 0 28px;
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 76px;
        left: 24px;
        right: 24px;
        display: grid;
        gap: 0;
        background: rgba(20,20,20,.96);
        padding: 18px 22px;
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        transition: .25s ease;
    }

        .main-nav.open {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .main-nav a {
            padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,.12);
        }

            .main-nav a::after {
                display: none;
            }

    .intro-block, .text-image-section, .project-layout, .featured-news, .project-list-card {
        grid-template-columns: 1fr;
    }

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

    .service-detail-row {
        grid-template-columns: 54px 1fr;
    }

        .service-detail-row img {
            grid-column: 1 / -1;
            width: 100%;
            height: 240px;
        }

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

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

@media (max-width: 680px) {
    .container {
        width: min(100% - 30px, 1160px);
    }

    .site-header {
        height: 82px;
        padding: 0 18px;
    }

    .brand-mark {
        width: 48px;
        transform: scale(.78);
        transform-origin: left center;
    }

    .brand-text {
        font-size: 20px;
    }

        .brand-text small {
            font-size: 6px;
        }

    .hero-title-panel {
        width: calc(100% - 38px);
        min-height: 104px;
        padding: 25px 20px;
    }

        .hero-title-panel h1 {
            font-size: clamp(1.8rem, 10vw, 3rem);
            letter-spacing: .07em;
        }

    .section-pad {
        padding: 74px 0;
    }

    .intro-photo img {
        min-height: 280px;
    }

    .stacked-photos, .news-grid, .openings-grid, .client-grid, .service-names {
        grid-template-columns: 1fr;
    }

        .stacked-photos img:first-child {
            margin-top: 0;
        }

    .project-collage {
        grid-template-columns: 1fr;
    }

        .project-collage img:first-child, .project-collage img:last-child {
            grid-column: auto;
            grid-row: auto;
        }

    .leader-row {
        grid-template-columns: 1fr;
    }

        .leader-row img {
            width: 100%;
            height: auto;
        }

    .news-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .footer-inner, .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .footer-links {
        justify-content: start;
    }
}

.construction-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

    .construction-hero .hero-bg {
        position: absolute;
        inset: 0;
        background-image: url('/images/hero/hero-construction-4k.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transform: scale(1.04);
        animation: heroZoom 12s ease-in-out infinite alternate;
        z-index: 1;
    }

    .construction-hero .hero-shade {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.55) 100%);
        z-index: 2;
    }

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title-box {
    max-width: 680px;
    padding: 46px 50px;
    background: rgba(12, 18, 24, 0.78);
    border-left: 6px solid #d79b34;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(2px);
    animation: heroTextUp 900ms ease forwards;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: #d79b34;
}

.hero-title-box h1 {
    margin: 0;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -3px;
    color: #fff;
}

.hero-title-box p {
    margin: 22px 0 0;
    max-width: 540px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.hero-btn-primary {
    background: #d79b34;
    color: #111;
}

    .hero-btn-primary:hover {
        background: #f0b24b;
        color: #111;
        transform: translateY(-2px);
    }

.hero-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: #fff;
}

    .hero-btn-outline:hover {
        background: #fff;
        color: #111;
        transform: translateY(-2px);
    }

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 4;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

    .scroll-cue i {
        width: 1px;
        height: 54px;
        background: rgba(255, 255, 255, 0.78);
        position: relative;
        overflow: hidden;
    }

        .scroll-cue i::after {
            content: "";
            position: absolute;
            left: 0;
            top: -20px;
            width: 1px;
            height: 20px;
            background: #d79b34;
            animation: scrollLine 1.5s ease-in-out infinite;
        }

@keyframes heroZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.10);
    }
}

@keyframes heroTextUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

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

@keyframes scrollLine {
    0% {
        top: -20px;
    }

    100% {
        top: 60px;
    }
}

@media (max-width: 768px) {
    .construction-hero {
        min-height: 100svh;
        align-items: flex-end;
        padding-bottom: 95px;
    }

        .construction-hero .hero-bg {
            background-position: center top;
        }

    .hero-title-box {
        padding: 30px 24px;
        margin: 0 12px;
    }

        .hero-title-box h1 {
            font-size: 52px;
            letter-spacing: -2px;
        }

        .hero-title-box p {
            font-size: 15px;
        }

    .hero-actions {
        margin-top: 26px;
    }

    .hero-btn {
        width: 100%;
    }
}

.hero-clean {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

    .hero-clean .hero-bg {
        position: absolute;
        inset: 0;
        background-image: url('/images/hero/hero-construction-4k.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transform: scale(1.04);
        animation: heroZoom 14s ease-in-out infinite alternate;
        z-index: 1;
    }

    .hero-clean .hero-shade {
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.08) 100% );
        z-index: 2;
    }

/* Only buttons, no card */
.hero-side-actions {
    position: absolute;
    left: 70px;
    bottom: 95px;
    z-index: 5;
    display: flex;
    gap: 16px;
    align-items: center;
    animation: heroButtonsUp 800ms ease forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.hero-btn-primary {
    background: #d79b34;
    color: #111;
    border: 1px solid #d79b34;
}

    .hero-btn-primary:hover {
        background: #f0b24b;
        color: #111;
        transform: translateY(-3px);
    }

.hero-btn-outline {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.82);
    color: #fff;
    backdrop-filter: blur(4px);
}

    .hero-btn-outline:hover {
        background: #fff;
        color: #111;
        transform: translateY(-3px);
    }

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

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

@keyframes heroZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.10);
    }
}

@media (max-width: 768px) {
    .hero-side-actions {
        left: 18px;
        right: 18px;
        bottom: 90px;
        flex-direction: column;
        gap: 12px;
    }

        .hero-side-actions .hero-btn {
            width: 100%;
        }
}

.intro-photo {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    background: #d8d8d8;
}

    .intro-photo .intro-real-img {
        width: 100%;
        height: 420px;
        display: block;
        object-fit: cover;
        object-position: center center;
        transition: transform 0.8s ease, filter 0.8s ease;
    }

    .intro-photo:hover .intro-real-img {
        transform: scale(1.06);
        filter: brightness(0.92);
    }

    .intro-photo::after {
        content: "PROJECT";
        position: absolute;
        left: 0;
        bottom: 24px;
        z-index: 2;
        padding: 10px 26px 10px 0;
        color: rgba(255,255,255,0.78);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 6px;
        text-transform: uppercase;
    }

    .intro-photo::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient( 180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.12) 55%, rgba(0,0,0,0.48) 100% );
        pointer-events: none;
    }

@media (max-width: 768px) {
    .intro-photo {
        min-height: 300px;
    }

        .intro-photo .intro-real-img {
            height: 300px;
        }
}


.about-story-photo {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    background: #ddd;
}

    .about-story-photo .intro-real-img {
        width: 100%;
        height: 420px;
        display: block;
        object-fit: cover;
        object-position: center center;
        transition: transform 0.8s ease, filter 0.8s ease;
    }

    .about-story-photo:hover .intro-real-img {
        transform: scale(1.06);
        filter: brightness(0.92);
    }

    .about-story-photo::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient( 180deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.10) 50%, rgba(0,0,0,0.45) 100% );
        pointer-events: none;
    }

    .about-story-photo::after {
        content: "BUILDCRAFT";
        position: absolute;
        left: 0;
        bottom: 24px;
        z-index: 2;
        padding-left: 4px;
        color: rgba(255,255,255,0.78);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 6px;
        text-transform: uppercase;
    }

@media (max-width: 768px) {
    .about-story-photo {
        min-height: 300px;
    }

        .about-story-photo .intro-real-img {
            height: 300px;
        }
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--heroImage);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    z-index: 1;
}

html,
body {
    overflow-x: hidden;
}

.page-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #080808;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: var(--pageHeroImage);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.03);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(0,0,0,0.48), rgba(0,0,0,0.15)), linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.55));
}

.page-hero-title-box {
    position: relative;
    z-index: 3;
    max-width: 760px;
    padding: 42px 76px;
    background: rgba(10, 12, 14, 0.62);
    text-align: center;
    backdrop-filter: blur(2px);
}

    .page-hero-title-box h1 {
        margin: 0;
        color: #fff;
        font-size: clamp(46px, 6.6vw, 86px);
        line-height: 1.08;
        font-weight: 300;
        letter-spacing: 10px;
        text-transform: uppercase;
    }

.page-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 4;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

    .page-scroll-cue i {
        width: 32px;
        height: 32px;
        border-right: 1px solid rgba(255,255,255,0.85);
        border-bottom: 1px solid rgba(255,255,255,0.85);
        transform: rotate(45deg);
    }

@media (max-width: 768px) {
    .page-hero {
        min-height: 86vh;
    }

    .page-hero-title-box {
        margin: 0 18px;
        padding: 34px 24px;
    }

        .page-hero-title-box h1 {
            font-size: 40px;
            letter-spacing: 5px;
        }
}

/* =========================================================
   ABOUT / INNER PAGE HERO - PREMIUM BRIGHT OVERRIDE
   Paste this at the END of wwwroot/css/site.css
========================================================= */

html,
body {
    overflow-x: hidden;
}

/* Main hero wrapper */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #080808;
}

/* Background image */
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: var(--pageHeroImage);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.03);
    filter: brightness(1.18) saturate(1.12) contrast(1.04);
}

/* Fresh premium overlay - not too dark */
.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(8, 12, 18, 0.28) 0%, rgba(8, 12, 18, 0.10) 45%, rgba(8, 12, 18, 0.04) 100% ), linear-gradient( 180deg, rgba(255, 190, 90, 0.08) 0%, rgba(0, 0, 0, 0.04) 48%, rgba(0, 0, 0, 0.24) 100% );
}

/* Soft sunlight glow */
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient( circle at 18% 22%, rgba(255, 214, 135, 0.18), transparent 34% ), radial-gradient( circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 28% );
    pointer-events: none;
}

/* Premium title glass box */
.page-hero-title-box {
    position: relative;
    z-index: 4;
    max-width: 760px;
    padding: 42px 76px;
    background: rgba(12, 18, 24, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    text-align: center;
}

    /* Hero title */
    .page-hero-title-box h1 {
        margin: 0;
        color: #ffffff;
        font-size: clamp(46px, 6.6vw, 86px);
        line-height: 1.08;
        font-weight: 300;
        letter-spacing: 10px;
        text-transform: uppercase;
        text-shadow: 0 4px 18px rgba(0, 0, 0, 0.30), 0 0 26px rgba(255, 255, 255, 0.08);
    }

/* Scroll cue */
.page-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

    .page-scroll-cue i {
        width: 32px;
        height: 32px;
        border-right: 1px solid rgba(255, 255, 255, 0.90);
        border-bottom: 1px solid rgba(255, 255, 255, 0.90);
        transform: rotate(45deg);
    }

/* Mobile */
@media (max-width: 768px) {
    .page-hero {
        min-height: 86vh;
    }

    .page-hero-bg {
        background-position: center center;
        transform: scale(1.02);
        filter: brightness(1.15) saturate(1.08) contrast(1.03);
    }

    .page-hero-title-box {
        margin: 0 18px;
        padding: 34px 24px;
    }

        .page-hero-title-box h1 {
            font-size: 40px;
            letter-spacing: 5px;
        }
}

/* =========================================================
   SERVICES HERO - CUSTOM PREMIUM SIDE PANEL
   Paste at END of site.css
========================================================= */

.services-custom-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #081018;
    display: flex;
    align-items: center;
}

.services-custom-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('/images/services/services-factory-clean-4k.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.03);
    filter: brightness(1.08) saturate(1.12) contrast(1.04);
    animation: servicesHeroZoom 13s ease-in-out infinite alternate;
}

.services-custom-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(5, 10, 16, 0.34) 0%, rgba(5, 10, 16, 0.08) 48%, rgba(5, 10, 16, 0.04) 100%), linear-gradient(180deg, rgba(255, 190, 90, 0.05) 0%, rgba(0, 0, 0, 0.02) 55%, rgba(0, 0, 0, 0.22) 100%);
}

.services-hero-panel {
    position: relative;
    z-index: 4;
    width: min(520px, calc(100% - 40px));
    margin-left: clamp(28px, 6vw, 86px);
    padding: 54px 56px;
    background: rgba(12, 18, 24, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    animation: servicesPanelSlide 950ms cubic-bezier(.2,.8,.2,1) forwards;
}

.services-orange-line {
    position: absolute;
    left: 28px;
    top: 38px;
    width: 3px;
    height: 92px;
    background: #e29b2d;
    transform: rotate(-14deg);
    box-shadow: 0 0 18px rgba(226, 155, 45, 0.45);
}

.services-hero-panel h1 {
    margin: 0;
    padding-left: 34px;
    color: #ffffff;
    font-size: clamp(44px, 4.8vw, 72px);
    line-height: 1.18;
    font-weight: 300;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-shadow: 0 5px 22px rgba(0, 0, 0, 0.32);
}

.services-small-line {
    width: 74px;
    height: 2px;
    margin: 34px 0 26px 34px;
    background: #e29b2d;
}

.services-hero-panel p {
    margin: 0;
    padding-left: 34px;
    max-width: 310px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
}

.services-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    margin-left: 34px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

    .services-hero-link span {
        color: #e29b2d;
        font-size: 22px;
        line-height: 1;
        transition: transform 0.25s ease;
    }

    .services-hero-link:hover {
        color: #e29b2d;
    }

        .services-hero-link:hover span {
            transform: translateX(6px);
        }

.services-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

    .services-scroll-cue i {
        width: 32px;
        height: 32px;
        border-right: 1px solid rgba(255, 255, 255, 0.90);
        border-bottom: 1px solid rgba(255, 255, 255, 0.90);
        transform: rotate(45deg);
    }

@keyframes servicesPanelSlide {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

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

@keyframes servicesHeroZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.08);
    }
}

@media (max-width: 768px) {
    .services-custom-hero {
        align-items: flex-end;
        padding-bottom: 110px;
    }

    .services-custom-bg {
        background-position: center center;
    }

    .services-hero-panel {
        margin: 0 18px;
        padding: 36px 28px;
        width: calc(100% - 36px);
    }

    .services-orange-line {
        left: 22px;
        top: 30px;
        height: 74px;
    }

    .services-hero-panel h1 {
        padding-left: 28px;
        font-size: 40px;
        letter-spacing: 6px;
    }

    .services-small-line,
    .services-hero-panel p,
    .services-hero-link {
        margin-left: 28px;
        padding-left: 0;
    }
}

/* =========================================================
   PROJECTS HERO - PREMIUM SIDE PANEL
   Paste at END of site.css
========================================================= */

.projects-custom-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #081018;
    display: flex;
    align-items: center;
}

.projects-custom-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('/images/projects/projects-hero-clean-4k1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.03);
    filter: brightness(1.10) saturate(1.14) contrast(1.04);
    animation: projectsHeroZoom 13s ease-in-out infinite alternate;
}

.projects-custom-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(5, 10, 16, 0.32) 0%, rgba(5, 10, 16, 0.10) 46%, rgba(5, 10, 16, 0.03) 100% ), linear-gradient( 180deg, rgba(255, 185, 75, 0.06) 0%, rgba(0, 0, 0, 0.02) 54%, rgba(0, 0, 0, 0.24) 100% );
}

.projects-hero-panel {
    position: relative;
    z-index: 4;
    width: min(540px, calc(100% - 40px));
    margin-left: clamp(28px, 6vw, 86px);
    padding: 56px 58px;
    background: rgba(10, 14, 18, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: projectsPanelSlide 950ms cubic-bezier(.2,.8,.2,1) forwards;
}

.projects-orange-line {
    position: absolute;
    left: 28px;
    top: 42px;
    width: 3px;
    height: 100px;
    background: #e29b2d;
    transform: rotate(-14deg);
    box-shadow: 0 0 18px rgba(226, 155, 45, 0.48);
}

.projects-hero-panel h1 {
    margin: 0;
    padding-left: 36px;
    color: #ffffff;
    font-size: clamp(42px, 4.7vw, 72px);
    line-height: 1.18;
    font-weight: 300;
    letter-spacing: 9px;
    text-transform: uppercase;
    text-shadow: 0 5px 22px rgba(0, 0, 0, 0.34);
}

.projects-small-line {
    width: 74px;
    height: 2px;
    margin: 34px 0 26px 36px;
    background: #e29b2d;
}

.projects-hero-panel p {
    margin: 0;
    padding-left: 36px;
    max-width: 340px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
}

.projects-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    margin-left: 36px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

    .projects-hero-link span {
        color: #e29b2d;
        font-size: 22px;
        line-height: 1;
        transition: transform 0.25s ease;
    }

    .projects-hero-link:hover {
        color: #e29b2d;
    }

        .projects-hero-link:hover span {
            transform: translateX(6px);
        }

.projects-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

    .projects-scroll-cue i {
        width: 32px;
        height: 32px;
        border-right: 1px solid rgba(255, 255, 255, 0.90);
        border-bottom: 1px solid rgba(255, 255, 255, 0.90);
        transform: rotate(45deg);
    }

@keyframes projectsPanelSlide {
    from {
        opacity: 0;
        transform: translateX(-85px);
    }

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

@keyframes projectsHeroZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.08);
    }
}

@media (max-width: 768px) {
    .projects-custom-hero {
        align-items: flex-end;
        padding-bottom: 110px;
    }

    .projects-custom-bg {
        background-position: center center;
    }

    .projects-hero-panel {
        margin: 0 18px;
        padding: 36px 28px;
        width: calc(100% - 36px);
    }

    .projects-orange-line {
        left: 22px;
        top: 30px;
        height: 74px;
    }

    .projects-hero-panel h1 {
        padding-left: 28px;
        font-size: 38px;
        letter-spacing: 5px;
    }

    .projects-small-line,
    .projects-hero-panel p,
    .projects-hero-link {
        margin-left: 28px;
        padding-left: 0;
    }
}


/* =========================================================
   NEWS HERO - PREMIUM SIDE PANEL
   Paste at END of site.css
========================================================= */

.news-custom-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #081018;
    display: flex;
    align-items: center;
}

.news-custom-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('/images/news/news-hero-clean-4k.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.03);
    filter: brightness(1.10) saturate(1.12) contrast(1.04);
    animation: newsHeroZoom 13s ease-in-out infinite alternate;
}

.news-custom-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(5, 10, 16, 0.34) 0%, rgba(5, 10, 16, 0.10) 46%, rgba(5, 10, 16, 0.03) 100% ), linear-gradient( 180deg, rgba(255, 185, 75, 0.06) 0%, rgba(0, 0, 0, 0.02) 54%, rgba(0, 0, 0, 0.24) 100% );
}

.news-hero-panel {
    position: relative;
    z-index: 4;
    width: min(540px, calc(100% - 40px));
    margin-left: clamp(28px, 6vw, 86px);
    padding: 56px 58px;
    background: rgba(10, 14, 18, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: newsPanelSlide 950ms cubic-bezier(.2,.8,.2,1) forwards;
}

.news-orange-line {
    position: absolute;
    left: 28px;
    top: 42px;
    width: 3px;
    height: 100px;
    background: #e29b2d;
    transform: rotate(-14deg);
    box-shadow: 0 0 18px rgba(226, 155, 45, 0.48);
}

.news-hero-panel h1 {
    margin: 0;
    padding-left: 36px;
    color: #ffffff;
    font-size: clamp(42px, 4.7vw, 72px);
    line-height: 1.18;
    font-weight: 300;
    letter-spacing: 9px;
    text-transform: uppercase;
    text-shadow: 0 5px 22px rgba(0, 0, 0, 0.34);
}

.news-small-line {
    width: 74px;
    height: 2px;
    margin: 34px 0 26px 36px;
    background: #e29b2d;
}

.news-hero-panel p {
    margin: 0;
    padding-left: 36px;
    max-width: 340px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
}

.news-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    margin-left: 36px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

    .news-hero-link span {
        color: #e29b2d;
        font-size: 22px;
        line-height: 1;
        transition: transform 0.25s ease;
    }

    .news-hero-link:hover {
        color: #e29b2d;
    }

        .news-hero-link:hover span {
            transform: translateX(6px);
        }

.news-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

    .news-scroll-cue i {
        width: 32px;
        height: 32px;
        border-right: 1px solid rgba(255, 255, 255, 0.90);
        border-bottom: 1px solid rgba(255, 255, 255, 0.90);
        transform: rotate(45deg);
    }

@keyframes newsPanelSlide {
    from {
        opacity: 0;
        transform: translateX(-85px);
    }

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

@keyframes newsHeroZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.08);
    }
}

@media (max-width: 768px) {
    .news-custom-hero {
        align-items: flex-end;
        padding-bottom: 110px;
    }

    .news-custom-bg {
        background-position: center center;
    }

    .news-hero-panel {
        margin: 0 18px;
        padding: 36px 28px;
        width: calc(100% - 36px);
    }

    .news-orange-line {
        left: 22px;
        top: 30px;
        height: 74px;
    }

    .news-hero-panel h1 {
        padding-left: 28px;
        font-size: 38px;
        letter-spacing: 5px;
    }

    .news-small-line,
    .news-hero-panel p,
    .news-hero-link {
        margin-left: 28px;
        padding-left: 0;
    }
}

/* =========================================================
   CAREERS HERO - PREMIUM SIDE PANEL
   Paste at END of site.css
========================================================= */

.careers-custom-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #081018;
    display: flex;
    align-items: center;
}

.careers-custom-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('/images/careers/careers-hero-clean-4k.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.03);
    filter: brightness(1.10) saturate(1.12) contrast(1.04);
    animation: careersHeroZoom 13s ease-in-out infinite alternate;
}

.careers-custom-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(5, 10, 16, 0.34) 0%, rgba(5, 10, 16, 0.10) 46%, rgba(5, 10, 16, 0.03) 100% ), linear-gradient( 180deg, rgba(255, 185, 75, 0.06) 0%, rgba(0, 0, 0, 0.02) 54%, rgba(0, 0, 0, 0.24) 100% );
}

.careers-hero-panel {
    position: relative;
    z-index: 4;
    width: min(540px, calc(100% - 40px));
    margin-left: clamp(28px, 6vw, 86px);
    padding: 56px 58px;
    background: rgba(10, 14, 18, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: careersPanelSlide 950ms cubic-bezier(.2,.8,.2,1) forwards;
}

.careers-orange-line {
    position: absolute;
    left: 28px;
    top: 42px;
    width: 3px;
    height: 100px;
    background: #e29b2d;
    transform: rotate(-14deg);
    box-shadow: 0 0 18px rgba(226, 155, 45, 0.48);
}

.careers-hero-panel h1 {
    margin: 0;
    padding-left: 36px;
    color: #ffffff;
    font-size: clamp(42px, 4.7vw, 72px);
    line-height: 1.18;
    font-weight: 300;
    letter-spacing: 9px;
    text-transform: uppercase;
    text-shadow: 0 5px 22px rgba(0, 0, 0, 0.34);
}

.careers-small-line {
    width: 74px;
    height: 2px;
    margin: 34px 0 26px 36px;
    background: #e29b2d;
}

.careers-hero-panel p {
    margin: 0;
    padding-left: 36px;
    max-width: 340px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
}

.careers-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    margin-left: 36px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

    .careers-hero-link span {
        color: #e29b2d;
        font-size: 22px;
        line-height: 1;
        transition: transform 0.25s ease;
    }

    .careers-hero-link:hover {
        color: #e29b2d;
    }

        .careers-hero-link:hover span {
            transform: translateX(6px);
        }

.careers-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

    .careers-scroll-cue i {
        width: 32px;
        height: 32px;
        border-right: 1px solid rgba(255, 255, 255, 0.90);
        border-bottom: 1px solid rgba(255, 255, 255, 0.90);
        transform: rotate(45deg);
    }

@keyframes careersPanelSlide {
    from {
        opacity: 0;
        transform: translateX(-85px);
    }

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

@keyframes careersHeroZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.08);
    }
}

@media (max-width: 768px) {
    .careers-custom-hero {
        align-items: flex-end;
        padding-bottom: 110px;
    }

    .careers-custom-bg {
        background-position: center center;
    }

    .careers-hero-panel {
        margin: 0 18px;
        padding: 36px 28px;
        width: calc(100% - 36px);
    }

    .careers-orange-line {
        left: 22px;
        top: 30px;
        height: 74px;
    }

    .careers-hero-panel h1 {
        padding-left: 28px;
        font-size: 38px;
        letter-spacing: 5px;
    }

    .careers-small-line,
    .careers-hero-panel p,
    .careers-hero-link {
        margin-left: 28px;
        padding-left: 0;
    }
}

/* =========================================================
   CONTACT HERO - PREMIUM SIDE PANEL
   Paste at END of site.css
========================================================= */

.contact-custom-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #081018;
    display: flex;
    align-items: center;
}

.contact-custom-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('/images/contact/contact-hero-clean-4k.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.03);
    filter: brightness(1.10) saturate(1.12) contrast(1.04);
    animation: contactHeroZoom 13s ease-in-out infinite alternate;
}

.contact-custom-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(5, 10, 16, 0.34) 0%, rgba(5, 10, 16, 0.10) 46%, rgba(5, 10, 16, 0.03) 100% ), linear-gradient( 180deg, rgba(255, 185, 75, 0.06) 0%, rgba(0, 0, 0, 0.02) 54%, rgba(0, 0, 0, 0.24) 100% );
}

.contact-hero-panel {
    position: relative;
    z-index: 4;
    width: min(540px, calc(100% - 40px));
    margin-left: clamp(28px, 6vw, 86px);
    padding: 56px 58px;
    background: rgba(10, 14, 18, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: contactPanelSlide 950ms cubic-bezier(.2,.8,.2,1) forwards;
}

.contact-orange-line {
    position: absolute;
    left: 28px;
    top: 42px;
    width: 3px;
    height: 100px;
    background: #e29b2d;
    transform: rotate(-14deg);
    box-shadow: 0 0 18px rgba(226, 155, 45, 0.48);
}

.contact-hero-panel h1 {
    margin: 0;
    padding-left: 36px;
    color: #ffffff;
    font-size: clamp(42px, 4.7vw, 72px);
    line-height: 1.18;
    font-weight: 300;
    letter-spacing: 9px;
    text-transform: uppercase;
    text-shadow: 0 5px 22px rgba(0, 0, 0, 0.34);
}

.contact-small-line {
    width: 74px;
    height: 2px;
    margin: 34px 0 26px 36px;
    background: #e29b2d;
}

.contact-hero-panel p {
    margin: 0;
    padding-left: 36px;
    max-width: 340px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
}

.contact-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    margin-left: 36px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

    .contact-hero-link span {
        color: #e29b2d;
        font-size: 22px;
        line-height: 1;
        transition: transform 0.25s ease;
    }

    .contact-hero-link:hover {
        color: #e29b2d;
    }

        .contact-hero-link:hover span {
            transform: translateX(6px);
        }

.contact-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

    .contact-scroll-cue i {
        width: 32px;
        height: 32px;
        border-right: 1px solid rgba(255, 255, 255, 0.90);
        border-bottom: 1px solid rgba(255, 255, 255, 0.90);
        transform: rotate(45deg);
    }

@keyframes contactPanelSlide {
    from {
        opacity: 0;
        transform: translateX(-85px);
    }

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

@keyframes contactHeroZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.08);
    }
}

@media (max-width: 768px) {
    .contact-custom-hero {
        align-items: flex-end;
        padding-bottom: 110px;
    }

    .contact-custom-bg {
        background-position: center center;
    }

    .contact-hero-panel {
        margin: 0 18px;
        padding: 36px 28px;
        width: calc(100% - 36px);
    }

    .contact-orange-line {
        left: 22px;
        top: 30px;
        height: 74px;
    }

    .contact-hero-panel h1 {
        padding-left: 28px;
        font-size: 38px;
        letter-spacing: 5px;
    }

    .contact-small-line,
    .contact-hero-panel p,
    .contact-hero-link {
        margin-left: 28px;
        padding-left: 0;
    }
}


/* =========================================================
   HEADER - HARPER STYLE POSITION + FONT
   Paste at END of site.css
========================================================= */

.bc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 118px;
    z-index: 9999;
    background: transparent;
    pointer-events: none;
}

.bc-header-inner {
    width: 100%;
    height: 100%;
    padding: 38px 78px 0 78px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    pointer-events: auto;
}

/* Logo left side */
.bc-brand {
    display: inline-flex;
    align-items: flex-start;
    text-decoration: none;
}

    .bc-brand img {
        width: 176px;
        height: auto;
        display: block;
        filter: brightness(0) invert(1);
    }

/* Menu right side */
.bc-nav {
    display: flex;
    align-items: center;
    gap: 31px;
    padding-top: 10px;
}

    .bc-nav a {
        position: relative;
        color: #ffffff;
        text-decoration: none;
        font-family: 'Montserrat', Arial, sans-serif;
        font-size: 13px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 2.1px;
        text-transform: uppercase;
        opacity: 0.96;
        transition: color 0.25s ease, opacity 0.25s ease;
    }

        .bc-nav a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -12px;
            width: 0;
            height: 1px;
            background: #ffffff;
            transform: translateX(-50%);
            transition: width 0.25s ease;
        }

        .bc-nav a:hover {
            color: #ffffff;
            opacity: 1;
        }

            .bc-nav a:hover::after {
                width: 100%;
            }

/* Active menu underline */
body.home-page .bc-nav a[href="/"],
body.about-page .bc-nav a[href="/Home/About"],
body.services-page .bc-nav a[href="/Home/Services"],
body.projects-page .bc-nav a[href="/Home/Projects"],
body.news-page .bc-nav a[href="/Home/News"],
body.careers-page .bc-nav a[href="/Home/Careers"],
body.contact-page .bc-nav a[href="/Home/Contact"] {
    opacity: 1;
}

    body.home-page .bc-nav a[href="/"]::after,
    body.about-page .bc-nav a[href="/Home/About"]::after,
    body.services-page .bc-nav a[href="/Home/Services"]::after,
    body.projects-page .bc-nav a[href="/Home/Projects"]::after,
    body.news-page .bc-nav a[href="/Home/News"]::after,
    body.careers-page .bc-nav a[href="/Home/Careers"]::after,
    body.contact-page .bc-nav a[href="/Home/Contact"]::after {
        width: 100%;
    }

/* Optional: header visible on light images */
.bc-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 150px;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 52%, rgba(0, 0, 0, 0) 100% );
    pointer-events: none;
}

/* Mobile */
@media (max-width: 992px) {
    .bc-header {
        height: auto;
    }

    .bc-header-inner {
        padding: 26px 22px 0 22px;
        align-items: flex-start;
        gap: 18px;
    }

    .bc-brand img {
        width: 150px;
    }

    .bc-nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: flex-end;
        padding-top: 8px;
    }

        .bc-nav a {
            font-size: 11px;
            letter-spacing: 1.5px;
        }
}

@media (max-width: 576px) {
    .bc-header-inner {
        flex-direction: column;
    }

    .bc-nav {
        justify-content: flex-start;
    }
}


/* =========================================================
   HARPER STYLE HEADER + HERO OVERRIDE
   Paste at END of site.css
========================================================= */

.harper-header,
.bc-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 150px !important;
    z-index: 99999 !important;
    background: transparent !important;
    pointer-events: none !important;
}

    .harper-header::before,
    .bc-header::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 180px;
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0) 100% );
        pointer-events: none;
    }

.harper-header-inner {
    width: 100%;
    height: 100%;
    padding: 52px 78px 0 78px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    pointer-events: auto;
}

/* Logo */
.harper-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
    color: #fff;
}

.brand-mark {
    position: relative;
    width: 66px;
    height: 48px;
    display: inline-block;
    margin-top: 2px;
}

    .brand-mark i {
        position: absolute;
        left: 0;
        height: 6px;
        background: #fff;
        display: block;
        transform: skewY(-21deg);
        transform-origin: left center;
    }

        .brand-mark i:nth-child(1) {
            top: 0;
            width: 66px;
        }

        .brand-mark i:nth-child(2) {
            top: 15px;
            width: 66px;
        }

        .brand-mark i:nth-child(3) {
            top: 30px;
            width: 66px;
        }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

    .brand-text strong {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 34px;
        font-weight: 500;
        letter-spacing: 3px;
        color: #fff;
    }

    .brand-text small {
        margin-top: 7px;
        font-family: Arial, sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.6px;
        color: #fff;
    }

/* Navigation */
.harper-nav {
    display: flex;
    align-items: center;
    gap: 31px;
    padding-top: 8px;
}

    .harper-nav a {
        position: relative;
        color: #fff;
        text-decoration: none;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        line-height: 1;
        text-transform: uppercase;
        opacity: 0.96;
    }

        .harper-nav a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -13px;
            width: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.9);
            transform: translateX(-50%);
            transition: width 0.25s ease;
        }

        .harper-nav a:hover::after {
            width: 100%;
        }

/* Remove old logo white block if old img exists */
.bc-brand,
.bc-brand img {
    display: none !important;
}

/* Hero image should start from top */
.page-hero,
.projects-custom-hero,
.services-custom-hero,
.news-custom-hero,
.careers-custom-hero,
.contact-custom-hero {
    min-height: 100vh !important;
    padding-top: 0 !important;
}

/* Center title box like reference */
.page-hero-title-box {
    max-width: 920px !important;
    width: auto !important;
    padding: 48px 96px !important;
    background: rgba(20, 28, 34, 0.56) !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

    .page-hero-title-box h1 {
        font-family: Arial, Helvetica, sans-serif !important;
        font-size: clamp(48px, 5.2vw, 76px) !important;
        font-weight: 300 !important;
        line-height: 1.12 !important;
        letter-spacing: 10px !important;
        color: #fff !important;
        text-transform: uppercase !important;
    }

/* Background slightly less dark */
.page-hero-bg {
    filter: brightness(1.08) saturate(1.05) contrast(1.02) !important;
}

.page-hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.06) 45%, rgba(0,0,0,0.22) 100%) !important;
}

/* Scroll same style */
.page-scroll-cue {
    bottom: 34px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
}

/* Mobile */
@media (max-width: 992px) {
    .harper-header {
        height: auto !important;
    }

    .harper-header-inner {
        padding: 28px 22px 0 22px;
        gap: 20px;
    }

    .brand-mark {
        width: 48px;
        height: 36px;
    }

        .brand-mark i {
            height: 4px;
        }

            .brand-mark i:nth-child(1),
            .brand-mark i:nth-child(2),
            .brand-mark i:nth-child(3) {
                width: 48px;
            }

            .brand-mark i:nth-child(2) {
                top: 12px;
            }

            .brand-mark i:nth-child(3) {
                top: 24px;
            }

    .brand-text strong {
        font-size: 24px;
    }

    .brand-text small {
        font-size: 12px;
    }

    .harper-nav {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

        .harper-nav a {
            font-size: 20px;
            letter-spacing: 2.0px;
        }

    .page-hero-title-box {
        margin: 0 18px !important;
        padding: 34px 26px !important;
    }

        .page-hero-title-box h1 {
            font-size: 38px !important;
            letter-spacing: 5px !important;
        }
}

/* =========================================================
   HEADER FONT SIZE INCREASE OVERRIDE
   Paste at END of site.css
========================================================= */

/* Logo main text मोठा */
.brand-text strong {
    font-size: 42px !important;
    letter-spacing: 3.5px !important;
}

/* Logo subtitle मोठा */
.brand-text small {
    font-size: 12px !important;
    letter-spacing: 1.9px !important;
    margin-top: 8px !important;
}

/* Menu font मोठा */
.harper-nav a {
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 2.3px !important;
}

/* Menu spacing थोडं वाढव */
.harper-nav {
    gap: 34px !important;
    padding-top: 10px !important;
}

/* Logo mark थोडा मोठा */
.brand-mark {
    width: 78px !important;
    height: 56px !important;
}

    .brand-mark i {
        height: 7px !important;
    }

        .brand-mark i:nth-child(1),
        .brand-mark i:nth-child(2),
        .brand-mark i:nth-child(3) {
            width: 78px !important;
        }

        .brand-mark i:nth-child(1) {
            top: 0 !important;
        }

        .brand-mark i:nth-child(2) {
            top: 18px !important;
        }

        .brand-mark i:nth-child(3) {
            top: 36px !important;
        }

/* Header position adjust */
.harper-header-inner {
    padding: 48px 78px 0 78px !important;
}

/* Mobile adjust */
@media (max-width: 992px) {
    .brand-text strong {
        font-size: 28px !important;
    }

    .brand-text small {
        font-size: 9px !important;
    }

    .harper-nav a {
        font-size: 11px !important;
        letter-spacing: 1.5px !important;
    }

    .harper-nav {
        gap: 16px !important;
    }

    .brand-mark {
        width: 52px !important;
        height: 38px !important;
    }

        .brand-mark i {
            height: 4px !important;
        }

            .brand-mark i:nth-child(1),
            .brand-mark i:nth-child(2),
            .brand-mark i:nth-child(3) {
                width: 52px !important;
            }

            .brand-mark i:nth-child(2) {
                top: 12px !important;
            }

            .brand-mark i:nth-child(3) {
                top: 24px !important;
            }
}

/* =========================================================
   HOME COMPLETED PROJECTS GRID - HARPER STYLE
   Paste at END of site.css
========================================================= */

.home-completed-projects {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #0d1116;
}

.completed-project-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    isolation: isolate;
}

    .completed-project-card.large-card {
        min-height: 520px;
    }

    .completed-project-card.small-card {
        min-height: 460px;
    }

    .completed-project-card::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: rgba(5, 8, 12, 0.20);
        transition: background 0.45s ease;
    }

    .completed-project-card::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.16) 50%, rgba(0, 0, 0, 0.36) 100% );
        transition: opacity 0.45s ease;
    }

.completed-project-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

    .completed-project-overlay span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 280px;
        min-height: 76px;
        padding: 0 36px;
        background: rgba(12, 18, 24, 0.58);
        color: #ffffff;
        font-family: Arial, Helvetica, sans-serif;
        font-size: clamp(28px, 3vw, 46px);
        font-weight: 300;
        letter-spacing: 5px;
        line-height: 1;
        text-transform: uppercase;
        text-align: center;
        transition: all 0.45s ease;
    }

.completed-project-card:hover::before {
    background: rgba(5, 8, 12, 0.42);
}

.completed-project-card:hover .completed-project-overlay span {
    background: rgba(12, 18, 24, 0.78);
    transform: translateY(-8px);
    letter-spacing: 6px;
}

/* Image zoom hover */
.completed-project-card {
    transition: transform 0.6s ease, filter 0.6s ease;
}

    .completed-project-card:hover {
        filter: saturate(1.08) contrast(1.04);
    }

    /* Optional reveal animation */
    .completed-project-card.reveal {
        opacity: 0;
        transform: translateY(34px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

        .completed-project-card.reveal.active,
        .completed-project-card.reveal.show {
            opacity: 1;
            transform: translateY(0);
        }

/* If reveal JS not active, still show after small delay */
.home-completed-projects .completed-project-card {
    animation: completedProjectFade 0.9s ease forwards;
}

    .home-completed-projects .completed-project-card:nth-child(2) {
        animation-delay: 0.08s;
    }

    .home-completed-projects .completed-project-card:nth-child(3) {
        animation-delay: 0.14s;
    }

    .home-completed-projects .completed-project-card:nth-child(4) {
        animation-delay: 0.20s;
    }

@keyframes completedProjectFade {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

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

/* Mobile */
@media (max-width: 768px) {
    .home-completed-projects {
        grid-template-columns: 1fr;
    }

    .completed-project-card,
    .completed-project-card.large-card,
    .completed-project-card.small-card {
        min-height: 360px;
    }

    .completed-project-overlay span {
        min-width: 220px;
        min-height: 64px;
        font-size: 26px;
        letter-spacing: 3px;
        padding: 0 24px;
    }
}

/* =========================================================
   HOME SERVICES + NEWS PREMIUM DYNAMIC OVERRIDE
   Paste at END of site.css
========================================================= */

.home-services-pro {
    position: relative;
    padding: 150px 0 130px;
    overflow: hidden;
    background: radial-gradient(circle at 82% 18%, rgba(226, 155, 45, 0.12), transparent 30%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 45%, #f2efe8 100%);
}

    .home-services-pro::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(12, 18, 24, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 18, 24, 0.045) 1px, transparent 1px);
        background-size: 64px 64px;
        opacity: 0.8;
        pointer-events: none;
    }

.services-bg-text {
    position: absolute;
    left: -18px;
    bottom: 20px;
    font-size: clamp(86px, 12vw, 210px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 18px;
    color: rgba(12, 18, 24, 0.045);
    text-transform: uppercase;
    pointer-events: none;
}

.services-pro-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.25fr;
    gap: 70px;
    align-items: start;
}

.services-pro-left {
    position: sticky;
    top: 140px;
    padding-top: 10px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #d89525;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.services-pro-left h2,
.news-pro-head h2 {
    margin: 0;
    color: #111821;
    font-size: clamp(42px, 4vw, 72px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -1.8px;
}

.services-pro-left p {
    margin: 28px 0 0;
    max-width: 520px;
    color: #66717d;
    font-size: 17px;
    line-height: 1.9;
}

.premium-line-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
    color: #111821;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

    .premium-line-link span {
        width: 72px;
        height: 1px;
        background: #111821;
        transition: width 0.3s ease, background 0.3s ease;
    }

    .premium-line-link:hover span {
        width: 110px;
        background: #d89525;
    }

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

.service-pro-card {
    position: relative;
    min-height: 250px;
    padding: 34px 32px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 18px 55px rgba(17, 24, 33, 0.08);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

    .service-pro-card::before {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 4px;
        background: #d89525;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }

    .service-pro-card::after {
        content: "→";
        position: absolute;
        right: 30px;
        bottom: 26px;
        color: #d89525;
        font-size: 30px;
        line-height: 1;
        opacity: 0;
        transform: translateX(-14px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .service-pro-card:hover {
        transform: translateY(-12px);
        background: #111821;
        box-shadow: 0 30px 80px rgba(17, 24, 33, 0.22);
    }

        .service-pro-card:hover::before {
            transform: scaleX(1);
        }

        .service-pro-card:hover::after {
            opacity: 1;
            transform: translateX(0);
        }

.service-no {
    display: block;
    margin-bottom: 34px;
    color: #d89525;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.service-pro-card h3 {
    margin: 0;
    max-width: 260px;
    color: #111821;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.service-pro-card p {
    margin: 18px 0 0;
    max-width: 290px;
    color: #66717d;
    font-size: 14px;
    line-height: 1.8;
}

.service-pro-card:hover h3,
.service-pro-card:hover p {
    color: #fff;
}

/* NEWS SECTION */
.home-news-pro {
    position: relative;
    padding: 125px 0 145px;
    background: #ffffff;
    overflow: hidden;
}

    .home-news-pro::before {
        content: "";
        position: absolute;
        right: -160px;
        top: -180px;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: rgba(226, 155, 45, 0.09);
        pointer-events: none;
    }

.news-pro-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 46px;
}

.news-pro-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.news-pro-card {
    position: relative;
    min-height: 300px;
    padding: 34px 34px 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,246,241,0.96));
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 18px 55px rgba(17, 24, 33, 0.07);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

    .news-pro-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 0;
        background: #d89525;
        transition: height 0.35s ease;
    }

    .news-pro-card:hover {
        transform: translateY(-12px);
        border-color: rgba(216, 149, 37, 0.45);
        box-shadow: 0 32px 85px rgba(17, 24, 33, 0.16);
    }

        .news-pro-card:hover::before {
            height: 100%;
        }

.news-date {
    margin-bottom: 18px;
    color: #d89525;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.news-pro-card h3 {
    margin: 0;
    color: #111821;
    font-size: 23px;
    line-height: 1.28;
    font-weight: 800;
}

.news-pro-card p {
    margin: 18px 0 0;
    color: #66717d;
    font-size: 14px;
    line-height: 1.8;
}

.news-pro-card a {
    position: absolute;
    left: 34px;
    bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111821;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .news-pro-card a span {
        color: #d89525;
        font-size: 20px;
        transition: transform 0.25s ease;
    }

    .news-pro-card a:hover span {
        transform: translateX(6px);
    }

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal.active,
    .reveal.show {
        opacity: 1;
        transform: translateY(0);
    }

.service-pro-card:nth-child(2),
.news-pro-card:nth-child(2) {
    transition-delay: 0.08s;
}

.service-pro-card:nth-child(3),
.news-pro-card:nth-child(3) {
    transition-delay: 0.14s;
}

.service-pro-card:nth-child(4) {
    transition-delay: 0.20s;
}

.service-pro-card:nth-child(5) {
    transition-delay: 0.26s;
}

.service-pro-card:nth-child(6) {
    transition-delay: 0.32s;
}

/* Responsive */
@media (max-width: 992px) {
    .services-pro-wrap {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .services-pro-left {
        position: relative;
        top: auto;
    }

    .news-pro-grid {
        grid-template-columns: 1fr;
    }

    .news-pro-head {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .home-services-pro,
    .home-news-pro {
        padding: 90px 0;
    }

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

    .service-pro-card {
        min-height: 220px;
    }

    .services-pro-left h2,
    .news-pro-head h2 {
        font-size: 40px;
    }
}

/* =========================================================
   HOME STORY + PROJECT PRIDE PREMIUM OVERRIDE
========================================================= */

.home-story-premium {
    position: relative;
    padding: 145px 0 125px;
    background: radial-gradient(circle at 18% 18%, rgba(226, 155, 45, 0.08), transparent 30%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 52%, #f3efe7 100%);
    overflow: hidden;
}

    .home-story-premium::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(15, 20, 27, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 20, 27, 0.045) 1px, transparent 1px);
        background-size: 70px 70px;
        pointer-events: none;
    }

.home-story-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 82px;
    align-items: center;
}

.story-image-box {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(17, 24, 33, 0.18);
    background: #111821;
}

    .story-image-box::before {
        content: "";
        position: absolute;
        inset: 18px;
        z-index: 3;
        border: 1px solid rgba(255, 255, 255, 0.22);
        pointer-events: none;
    }

    .story-image-box::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.14) 48%, rgba(0,0,0,0.55) 100%), linear-gradient(90deg, rgba(216,149,37,0.18), transparent 38%);
        pointer-events: none;
    }

    .story-image-box img {
        width: 100%;
        height: 470px;
        display: block;
        object-fit: cover;
        object-position: center center;
        transform: scale(1.03);
        filter: brightness(1.04) saturate(1.08) contrast(1.04);
        transition: transform 0.8s ease, filter 0.8s ease;
    }

    .story-image-box:hover img {
        transform: scale(1.10);
        filter: brightness(1.08) saturate(1.15) contrast(1.05);
    }

.story-image-label {
    position: absolute;
    left: 0;
    bottom: 34px;
    z-index: 4;
    padding: 13px 28px 13px 24px;
    background: rgba(10, 14, 18, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

    .story-image-label span {
        color: #ffffff;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 5px;
        text-transform: uppercase;
    }

.story-content {
    max-width: 690px;
}

.story-kicker {
    display: inline-block;
    margin-bottom: 20px;
    color: #d89525;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

    .story-kicker.light {
        color: #e7a33a;
    }

.story-content h2 {
    margin: 0;
    color: #101820;
    font-size: clamp(44px, 4.6vw, 74px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -2px;
}

.story-content p {
    margin: 28px 0 0;
    max-width: 600px;
    color: #66717d;
    font-size: 17px;
    line-height: 1.9;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
    color: #101820;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

    .story-link span {
        width: 78px;
        height: 1px;
        background: #101820;
        transition: width 0.3s ease, background 0.3s ease;
    }

    .story-link:hover span {
        width: 118px;
        background: #d89525;
    }

/* PROJECT PRIDE SECTION */
.home-project-pride {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #0b1016;
}

.project-pride-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('/images/projects/projects-hero-clean-4k1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.65) saturate(1.1) contrast(1.05);
    transform: scale(1.04);
    animation: prideBgZoom 14s ease-in-out infinite alternate;
}

.project-pride-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(5, 8, 12, 0.92) 0%, rgba(5, 8, 12, 0.72) 42%, rgba(5, 8, 12, 0.28) 100%), radial-gradient(circle at 18% 30%, rgba(216, 149, 37, 0.22), transparent 28%);
}

.project-pride-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 70px;
    align-items: center;
}

.project-pride-text {
    max-width: 720px;
}

    .project-pride-text h2 {
        margin: 0;
        color: #ffffff;
        font-size: clamp(46px, 4.8vw, 76px);
        line-height: 1.06;
        font-weight: 400;
        letter-spacing: -1.8px;
    }

    .project-pride-text p {
        margin: 28px 0 0;
        max-width: 580px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 17px;
        line-height: 1.9;
    }

.project-pride-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 38px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

    .project-pride-link span {
        color: #e7a33a;
        font-size: 25px;
        transition: transform 0.25s ease;
    }

    .project-pride-link:hover span {
        transform: translateX(7px);
    }

.project-pride-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

    .project-pride-stats div {
        position: relative;
        padding: 30px 32px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: transform 0.35s ease, background 0.35s ease;
    }

        .project-pride-stats div:hover {
            transform: translateX(-12px);
            background: rgba(255, 255, 255, 0.14);
        }

    .project-pride-stats strong {
        display: block;
        color: #e7a33a;
        font-size: 48px;
        line-height: 1;
        font-weight: 800;
    }

    .project-pride-stats span {
        display: block;
        margin-top: 12px;
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

@keyframes prideBgZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.10);
    }
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

    .reveal.active,
    .reveal.show {
        opacity: 1;
        transform: translateY(0);
    }

/* Mobile */
@media (max-width: 992px) {
    .home-story-wrap,
    .project-pride-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .home-story-premium {
        padding: 90px 0;
    }

    .story-image-box,
    .story-image-box img {
        min-height: 330px;
        height: 330px;
    }

    .story-content h2,
    .project-pride-text h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .home-project-pride {
        min-height: auto;
        padding: 95px 0;
    }

    .project-pride-content {
        gap: 38px;
    }

    .project-pride-stats {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   HOME STORY FULLSCREEN PHOTO SECTION
   Paste at END of site.css
========================================================= */

.home-story-fullscreen {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #081018;
}

.home-story-fullscreen-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('/images/home/intro-site-engineers.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    filter: brightness(1.08) saturate(1.12) contrast(1.05);
    animation: storyFullZoom 14s ease-in-out infinite alternate;
}

.home-story-fullscreen-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(5, 8, 12, 0.86) 0%, rgba(5, 8, 12, 0.58) 42%, rgba(5, 8, 12, 0.16) 100% ), radial-gradient( circle at 18% 28%, rgba(216, 149, 37, 0.20), transparent 30% );
}

.home-story-fullscreen-content {
    position: relative;
    z-index: 3;
}

.story-full-panel {
    width: min(720px, 100%);
    padding: 58px 62px;
    background: rgba(10, 14, 18, 0.66);
    border-left: 5px solid #d89525;
    box-shadow: 0 32px 95px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: storyPanelSlide 950ms cubic-bezier(.2,.8,.2,1) forwards;
}

    .story-full-panel .story-kicker {
        display: inline-block;
        margin-bottom: 18px;
        color: #e7a33a;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .story-full-panel h2 {
        margin: 0;
        color: #ffffff;
        font-size: clamp(42px, 4.4vw, 70px);
        line-height: 1.08;
        font-weight: 400;
        letter-spacing: -1.8px;
    }

    .story-full-panel p {
        margin: 24px 0 0;
        max-width: 610px;
        color: rgba(255, 255, 255, 0.80);
        font-size: 16px;
        line-height: 1.85;
    }

.story-full-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

    .story-full-link span {
        color: #e7a33a;
        font-size: 24px;
        transition: transform 0.25s ease;
    }

    .story-full-link:hover {
        color: #e7a33a;
    }

        .story-full-link:hover span {
            transform: translateX(7px);
        }

@keyframes storyFullZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.10);
    }
}

@keyframes storyPanelSlide {
    from {
        opacity: 0;
        transform: translateX(-85px);
    }

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

/* Mobile */
@media (max-width: 768px) {
    .home-story-fullscreen {
        min-height: auto;
        padding: 120px 0 90px;
    }

    .home-story-fullscreen-bg {
        background-position: center center;
    }

    .story-full-panel {
        margin: 0 18px;
        padding: 38px 28px;
    }

        .story-full-panel h2 {
            font-size: 38px;
            letter-spacing: -1px;
        }

        .story-full-panel p {
            font-size: 15px;
        }
}

/* =========================================================
   STORY CARD SLIDER + COUNTER PREMIUM OVERRIDE
========================================================= */

.story-slider-card {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.story-slider-track {
    position: relative;
    min-height: 420px;
}

.story-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(55px);
    transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.65s ease;
}

    .story-slide.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

.story-slider-controls {
    position: absolute;
    left: 62px;
    right: 62px;
    bottom: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
}

.story-slider-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .story-slider-btn:hover {
        background: #d89525;
        border-color: #d89525;
        color: #111821;
        transform: translateY(-3px);
    }

.story-slider-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: all 0.25s ease;
}

    .story-dot.active {
        width: 34px;
        background: #d89525;
    }

/* Counter premium pulse */
.project-pride-stats strong {
    display: block;
    color: #e7a33a;
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 0 24px rgba(231, 163, 58, 0.18);
}

.project-pride-stats div:hover strong {
    transform: scale(1.04);
}

.count-up {
    display: inline-block;
}

/* Mobile */
@media (max-width: 768px) {
    .story-slider-card {
        min-height: 620px;
    }

    .story-slider-track {
        min-height: 470px;
    }

    .story-slider-controls {
        left: 28px;
        right: 28px;
        bottom: 24px;
    }

    .story-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}

/* =========================================================
   STORY CARD - BOTTOM SLIDER OVERRIDE
========================================================= */

.story-slider-card {
    position: relative;
    min-height: 560px;
    padding-bottom: 96px !important;
    overflow: hidden;
}

.story-slider-track {
    position: relative;
    min-height: 390px;
}

.story-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.65s ease;
}

    .story-slide.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* Bottom slider area */
.story-bottom-slider {
    position: absolute;
    left: 58px;
    right: 58px;
    bottom: 32px;
    z-index: 10;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 18px;
}

/* Prev / Next buttons */
.story-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .story-nav-btn:hover {
        background: #d89525;
        border-color: #d89525;
        color: #111821;
        transform: translateY(-3px);
    }

/* Progress + dots */
.story-progress-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-progress-track {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.story-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #d89525;
    box-shadow: 0 0 18px rgba(216, 149, 37, 0.55);
}

    .story-progress-fill.running {
        animation: storyProgress 4.5s linear forwards;
    }

@keyframes storyProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.story-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.story-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: all 0.25s ease;
}

    .story-dot.active {
        width: 36px;
        background: #d89525;
    }

/* Mobile */
@media (max-width: 768px) {
    .story-slider-card {
        min-height: 650px;
        padding-bottom: 96px !important;
    }

    .story-slider-track {
        min-height: 470px;
    }

    .story-bottom-slider {
        left: 28px;
        right: 28px;
        bottom: 24px;
        grid-template-columns: 40px 1fr 40px;
        gap: 12px;
    }

    .story-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }
}


/* =========================================================
   SERVICES PAGE PREMIUM CONTENT
========================================================= */

.services-premium-intro {
    position: relative;
    padding: 145px 0 125px;
    overflow: hidden;
    background: radial-gradient(circle at 15% 18%, rgba(226, 155, 45, 0.10), transparent 30%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 52%, #f3efe7 100%);
}

    .services-premium-intro::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(15, 20, 27, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 20, 27, 0.045) 1px, transparent 1px);
        background-size: 70px 70px;
        pointer-events: none;
    }

.services-intro-bg-text {
    position: absolute;
    right: -32px;
    bottom: 15px;
    font-size: clamp(90px, 14vw, 230px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 18px;
    color: rgba(17, 24, 33, 0.045);
    text-transform: uppercase;
    pointer-events: none;
}

.services-intro-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 82px;
    align-items: center;
}

.services-intro-image {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #101820;
    box-shadow: 0 35px 90px rgba(17, 24, 33, 0.18);
}

    .services-intro-image::before {
        content: "";
        position: absolute;
        inset: 18px;
        z-index: 3;
        border: 1px solid rgba(255, 255, 255, 0.22);
        pointer-events: none;
    }

    .services-intro-image::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.12) 48%, rgba(0,0,0,0.52) 100%), linear-gradient(90deg, rgba(216,149,37,0.18), transparent 42%);
        pointer-events: none;
    }

    .services-intro-image img {
        width: 100%;
        height: 520px;
        display: block;
        object-fit: cover;
        object-position: center center;
        transform: scale(1.03);
        filter: brightness(1.05) saturate(1.12) contrast(1.04);
        transition: transform 0.8s ease, filter 0.8s ease;
    }

    .services-intro-image:hover img {
        transform: scale(1.10);
        filter: brightness(1.10) saturate(1.18) contrast(1.05);
    }

.services-intro-badge {
    position: absolute;
    left: 0;
    bottom: 36px;
    z-index: 4;
    padding: 18px 32px;
    background: rgba(10, 14, 18, 0.72);
    border-left: 4px solid #d89525;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .services-intro-badge strong {
        display: block;
        color: #e7a33a;
        font-size: 34px;
        line-height: 1;
        font-weight: 900;
    }

    .services-intro-badge span {
        display: block;
        margin-top: 8px;
        color: #ffffff;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

.services-intro-content {
    max-width: 720px;
}

.premium-kicker {
    display: inline-block;
    margin-bottom: 20px;
    color: #d89525;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

    .premium-kicker.light {
        color: #e7a33a;
    }

.services-intro-content h2,
.services-section-head h2,
.services-process-head h2,
.services-cta-inner h2 {
    margin: 0;
    color: #101820;
    font-size: clamp(44px, 4.6vw, 74px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -2px;
}

.services-intro-content p {
    margin: 28px 0 0;
    max-width: 620px;
    color: #66717d;
    font-size: 17px;
    line-height: 1.9;
}

.services-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 38px;
}

    .services-mini-stats div {
        padding: 24px 22px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(17, 24, 33, 0.10);
        box-shadow: 0 18px 45px rgba(17, 24, 33, 0.07);
    }

    .services-mini-stats strong {
        display: block;
        color: #d89525;
        font-size: 34px;
        line-height: 1;
        font-weight: 900;
    }

    .services-mini-stats span {
        display: block;
        margin-top: 10px;
        color: #101820;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.8px;
        text-transform: uppercase;
    }

.services-premium-grid-section {
    position: relative;
    padding: 135px 0 145px;
    background: #ffffff;
    overflow: hidden;
}

.services-section-head {
    max-width: 850px;
    margin-bottom: 56px;
}

    .services-section-head p {
        margin: 24px 0 0;
        max-width: 680px;
        color: #66717d;
        font-size: 17px;
        line-height: 1.85;
    }

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

.premium-service-card {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: #111821;
    box-shadow: 0 24px 70px rgba(17, 24, 33, 0.14);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .premium-service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 36px 95px rgba(17, 24, 33, 0.22);
    }

.service-card-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .service-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.72;
        filter: brightness(0.78) saturate(1.05) contrast(1.06);
        transform: scale(1.04);
        transition: transform 0.7s ease, opacity 0.7s ease;
    }

.premium-service-card:hover .service-card-image img {
    transform: scale(1.12);
    opacity: 0.88;
}

.premium-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(5,8,12,0.05) 0%, rgba(5,8,12,0.50) 48%, rgba(5,8,12,0.92) 100%), linear-gradient(90deg, rgba(216,149,37,0.22), transparent 42%);
    pointer-events: none;
}

.service-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 38px 42px 40px;
}

.service-card-number {
    display: inline-block;
    margin-bottom: 18px;
    color: #e7a33a;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2.4px;
}

.service-card-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 2.8vw, 46px);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.8px;
}

.service-card-content p {
    margin: 18px 0 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 15px;
    line-height: 1.75;
}

.service-card-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.3px;
    text-transform: uppercase;
}

    .service-card-content a span {
        color: #e7a33a;
        font-size: 22px;
        transition: transform 0.25s ease;
    }

    .service-card-content a:hover span {
        transform: translateX(7px);
    }

.services-process-premium {
    position: relative;
    padding: 130px 0;
    background: #0b1016;
    overflow: hidden;
}

    .services-process-premium::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 25%, rgba(216, 149, 37, 0.18), transparent 30%), linear-gradient(135deg, #0b1016 0%, #101820 100%);
        pointer-events: none;
    }

.services-process-head {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-bottom: 56px;
}

    .services-process-head h2 {
        color: #ffffff;
    }

.services-process-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.process-step {
    min-height: 285px;
    padding: 34px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.35s ease, transform 0.35s ease;
}

    .process-step:hover {
        background: rgba(255, 255, 255, 0.10);
        transform: translateY(-8px);
    }

    .process-step span {
        display: block;
        margin-bottom: 38px;
        color: #e7a33a;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 2.5px;
    }

    .process-step h3 {
        margin: 0;
        color: #ffffff;
        font-size: 28px;
        font-weight: 500;
    }

    .process-step p {
        margin: 18px 0 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 14px;
        line-height: 1.8;
    }

.services-cta-premium {
    padding: 105px 0;
    background: radial-gradient(circle at 85% 18%, rgba(226, 155, 45, 0.12), transparent 28%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 58%, #f2efe8 100%);
}

.services-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 56px 62px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 24px 80px rgba(17, 24, 33, 0.10);
}

    .services-cta-inner h2 {
        font-size: clamp(36px, 3.6vw, 58px);
    }

    .services-cta-inner p {
        margin: 18px 0 0;
        color: #66717d;
        font-size: 16px;
        line-height: 1.8;
    }

.services-cta-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 30px;
    background: #101820;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}

    .services-cta-btn span {
        color: #e7a33a;
        font-size: 22px;
        transition: transform 0.25s ease;
    }

    .services-cta-btn:hover {
        background: #d89525;
        color: #101820;
        transform: translateY(-4px);
    }

        .services-cta-btn:hover span {
            color: #101820;
            transform: translateX(6px);
        }

@media (max-width: 992px) {
    .services-intro-wrap {
        grid-template-columns: 1fr;
        gap: 52px;
    }

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

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

    .services-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .services-premium-intro,
    .services-premium-grid-section,
    .services-process-premium {
        padding: 90px 0;
    }

    .services-intro-image,
    .services-intro-image img {
        min-height: 330px;
        height: 330px;
    }

    .services-intro-content h2,
    .services-section-head h2,
    .services-process-head h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

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

    .premium-service-card {
        min-height: 420px;
    }

    .service-card-content {
        padding: 30px 26px;
    }

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

    .services-cta-inner {
        padding: 38px 26px;
    }

    .services-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   ABOUT PAGE PREMIUM DESIGN
========================================================= */

.about-premium-story {
    position: relative;
    padding: 145px 0 130px;
    overflow: hidden;
    background: radial-gradient(circle at 82% 18%, rgba(226, 155, 45, 0.10), transparent 30%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 52%, #f3efe7 100%);
}

    .about-premium-story::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(15, 20, 27, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 20, 27, 0.045) 1px, transparent 1px);
        background-size: 70px 70px;
        pointer-events: none;
    }

.about-bg-text {
    position: absolute;
    left: -22px;
    bottom: 12px;
    font-size: clamp(90px, 14vw, 230px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 18px;
    color: rgba(17, 24, 33, 0.045);
    text-transform: uppercase;
    pointer-events: none;
}

.about-story-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 82px;
    align-items: center;
}

.about-story-content {
    max-width: 720px;
}

    .about-story-content h2,
    .about-values-head h2,
    .about-section-heading h2,
    .about-cta-content h2 {
        margin: 0;
        color: #101820;
        font-size: clamp(44px, 4.6vw, 74px);
        line-height: 1.08;
        font-weight: 400;
        letter-spacing: -2px;
    }

    .about-story-content p,
    .about-section-heading p {
        margin: 26px 0 0;
        max-width: 640px;
        color: #66717d;
        font-size: 17px;
        line-height: 1.9;
    }

.about-story-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}

    .about-story-points div {
        padding: 24px 22px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(17, 24, 33, 0.10);
        box-shadow: 0 18px 45px rgba(17, 24, 33, 0.07);
    }

    .about-story-points strong {
        display: block;
        color: #d89525;
        font-size: 34px;
        line-height: 1;
        font-weight: 900;
    }

    .about-story-points span {
        display: block;
        margin-top: 10px;
        color: #101820;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.8px;
        text-transform: uppercase;
    }

.about-story-image {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: #101820;
    box-shadow: 0 35px 90px rgba(17, 24, 33, 0.18);
}

    .about-story-image::before {
        content: "";
        position: absolute;
        inset: 18px;
        z-index: 3;
        border: 1px solid rgba(255, 255, 255, 0.22);
        pointer-events: none;
    }

    .about-story-image::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.12) 48%, rgba(0,0,0,0.55) 100%), linear-gradient(90deg, rgba(216,149,37,0.18), transparent 42%);
        pointer-events: none;
    }

    .about-story-image img {
        width: 100%;
        height: 540px;
        display: block;
        object-fit: cover;
        object-position: center center;
        transform: scale(1.03);
        filter: brightness(1.05) saturate(1.12) contrast(1.04);
        transition: transform 0.8s ease, filter 0.8s ease;
    }

    .about-story-image:hover img {
        transform: scale(1.10);
        filter: brightness(1.10) saturate(1.18) contrast(1.05);
    }

.about-image-badge {
    position: absolute;
    left: 0;
    bottom: 36px;
    z-index: 4;
    padding: 18px 32px;
    background: rgba(10, 14, 18, 0.72);
    border-left: 4px solid #d89525;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .about-image-badge strong {
        display: block;
        color: #e7a33a;
        font-size: 22px;
        line-height: 1;
        font-weight: 900;
    }

    .about-image-badge span {
        display: block;
        margin-top: 8px;
        color: #ffffff;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

/* VALUES */
.about-values-premium {
    position: relative;
    padding: 130px 0;
    background: #0b1016;
    overflow: hidden;
}

    .about-values-premium::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 18% 25%, rgba(216, 149, 37, 0.18), transparent 30%), linear-gradient(135deg, #0b1016 0%, #101820 100%);
        pointer-events: none;
    }

.about-values-head {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin-bottom: 58px;
}

    .about-values-head h2 {
        color: #ffffff;
    }

.about-values-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.about-value-card {
    min-height: 300px;
    padding: 34px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.35s ease, transform 0.35s ease;
}

    .about-value-card:hover {
        background: rgba(255, 255, 255, 0.10);
        transform: translateY(-8px);
    }

    .about-value-card span {
        display: block;
        margin-bottom: 40px;
        color: #e7a33a;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 2.5px;
    }

    .about-value-card h3 {
        margin: 0;
        color: #ffffff;
        font-size: 28px;
        font-weight: 500;
    }

    .about-value-card p {
        margin: 18px 0 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 14px;
        line-height: 1.8;
    }

/* LEADERSHIP */
.leadership-premium-section {
    padding: 135px 0;
    background: #ffffff;
}

.about-section-heading {
    max-width: 840px;
    margin-bottom: 58px;
}

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

.premium-leader-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 260px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 22px 70px rgba(17, 24, 33, 0.09);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .premium-leader-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 34px 90px rgba(17, 24, 33, 0.16);
    }

.leader-photo {
    position: relative;
    background: #101820;
    overflow: hidden;
}

    .leader-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(1.02) saturate(1.05);
        transform: scale(1.04);
        transition: transform 0.7s ease;
    }

.premium-leader-card:hover .leader-photo img {
    transform: scale(1.12);
}

.leader-info {
    padding: 34px 32px;
}

    .leader-info h3 {
        margin: 0;
        color: #101820;
        font-size: 26px;
        line-height: 1.15;
        font-weight: 700;
    }

    .leader-info span {
        display: block;
        margin-top: 10px;
        color: #d89525;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .leader-info p {
        margin: 18px 0 0;
        color: #66717d;
        font-size: 14px;
        line-height: 1.8;
    }

/* CLIENTS */
.clients-premium-section {
    position: relative;
    padding: 120px 0 135px;
    background: radial-gradient(circle at 85% 18%, rgba(226, 155, 45, 0.12), transparent 28%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 58%, #f2efe8 100%);
}

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

.premium-client-logo {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 18px 45px rgba(17, 24, 33, 0.06);
    color: #101820;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    transition: transform 0.35s ease, background 0.35s ease;
}

    .premium-client-logo:hover {
        transform: translateY(-8px);
        background: #101820;
        color: #ffffff;
    }

/* CTA */
.about-cta-premium {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0b1016;
}

.about-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('/images/projects/projects-hero-clean-4k.png');
    background-size: cover;
    background-position: center center;
    transform: scale(1.04);
    filter: brightness(0.62) saturate(1.1) contrast(1.05);
    animation: aboutCtaZoom 14s ease-in-out infinite alternate;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(5, 8, 12, 0.92) 0%, rgba(5, 8, 12, 0.70) 45%, rgba(5, 8, 12, 0.28) 100%), radial-gradient(circle at 18% 30%, rgba(216, 149, 37, 0.22), transparent 28%);
}

.about-cta-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

    .about-cta-content h2 {
        color: #ffffff;
    }

    .about-cta-content p {
        margin: 26px 0 0;
        max-width: 580px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 17px;
        line-height: 1.9;
    }

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    min-height: 58px;
    padding: 0 30px;
    background: #d89525;
    color: #101820;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}

    .about-cta-btn span {
        font-size: 22px;
        transition: transform 0.25s ease;
    }

    .about-cta-btn:hover {
        background: #ffffff;
        color: #101820;
        transform: translateY(-4px);
    }

        .about-cta-btn:hover span {
            transform: translateX(6px);
        }

@keyframes aboutCtaZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.10);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-story-wrap {
        grid-template-columns: 1fr;
        gap: 52px;
    }

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

    .premium-leader-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .about-premium-story,
    .about-values-premium,
    .leadership-premium-section,
    .clients-premium-section {
        padding: 90px 0;
    }

    .about-story-content h2,
    .about-values-head h2,
    .about-section-heading h2,
    .about-cta-content h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

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

    .about-story-image,
    .about-story-image img {
        min-height: 340px;
        height: 340px;
    }

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

    .premium-leader-card {
        grid-template-columns: 1fr;
    }

    .leader-photo {
        height: 290px;
    }

    .premium-client-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-premium {
        min-height: auto;
        padding: 95px 0;
    }
}

/* =========================================================
   PROJECTS PAGE PREMIUM DESIGN
========================================================= */

.projects-premium-intro {
    position: relative;
    padding: 145px 0 125px;
    overflow: hidden;
    background: radial-gradient(circle at 82% 18%, rgba(226, 155, 45, 0.10), transparent 30%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 52%, #f3efe7 100%);
}

    .projects-premium-intro::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(15, 20, 27, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 20, 27, 0.045) 1px, transparent 1px);
        background-size: 70px 70px;
        pointer-events: none;
    }

.projects-bg-text {
    position: absolute;
    left: -22px;
    bottom: 12px;
    font-size: clamp(86px, 13vw, 220px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 18px;
    color: rgba(17, 24, 33, 0.045);
    text-transform: uppercase;
    pointer-events: none;
}

.projects-intro-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
}

.projects-intro-content h2,
.projects-gallery-head h2,
.projects-showcase-content h2 {
    margin: 0;
    color: #101820;
    font-size: clamp(44px, 4.6vw, 74px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -2px;
}

.projects-intro-content p {
    margin: 28px 0 0;
    max-width: 680px;
    color: #66717d;
    font-size: 17px;
    line-height: 1.9;
}

.projects-intro-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

    .projects-intro-stats div {
        padding: 30px 32px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(17, 24, 33, 0.10);
        box-shadow: 0 22px 65px rgba(17, 24, 33, 0.08);
        transition: transform 0.35s ease, background 0.35s ease;
    }

        .projects-intro-stats div:hover {
            transform: translateX(-10px);
            background: #101820;
        }

    .projects-intro-stats strong {
        display: block;
        color: #d89525;
        font-size: 48px;
        line-height: 1;
        font-weight: 900;
    }

    .projects-intro-stats span {
        display: block;
        margin-top: 12px;
        color: #101820;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .projects-intro-stats div:hover span {
        color: #ffffff;
    }

/* GALLERY */
.projects-premium-gallery {
    position: relative;
    padding: 135px 0 145px;
    background: #ffffff;
    overflow: hidden;
}

.projects-gallery-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 58px;
}

.project-filter-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.project-filter-btn {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(17, 24, 33, 0.14);
    background: #ffffff;
    color: #101820;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .project-filter-btn:hover,
    .project-filter-btn.active {
        background: #101820;
        border-color: #101820;
        color: #ffffff;
    }

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

.premium-project-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #101820;
    box-shadow: 0 24px 75px rgba(17, 24, 33, 0.14);
    transition: transform 0.45s ease, box-shadow 0.45s ease, opacity 0.35s ease;
}

    .premium-project-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 38px 100px rgba(17, 24, 33, 0.22);
    }

    .premium-project-card.hide-project {
        display: none;
    }

.premium-project-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .premium-project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.82;
        filter: brightness(0.80) saturate(1.08) contrast(1.06);
        transform: scale(1.04);
        transition: transform 0.85s ease, opacity 0.85s ease, filter 0.85s ease;
    }

.premium-project-card:hover .premium-project-image img {
    transform: scale(1.13);
    opacity: 0.95;
    filter: brightness(0.88) saturate(1.15) contrast(1.07);
}

.premium-project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(5,8,12,0.04) 0%, rgba(5,8,12,0.34) 45%, rgba(5,8,12,0.92) 100%), linear-gradient(90deg, rgba(216,149,37,0.24), transparent 42%);
    pointer-events: none;
}

.premium-project-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
    text-decoration: none;
    color: #ffffff;
}

.project-category {
    display: inline-block;
    width: fit-content;
    margin-bottom: 18px;
    color: #e7a33a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.premium-project-overlay h3 {
    margin: 0;
    max-width: 560px;
    color: #ffffff;
    font-size: clamp(32px, 3.2vw, 54px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -1px;
}

.premium-project-overlay p {
    margin: 18px 0 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.75;
}

.project-view-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

    .project-view-link span {
        color: #e7a33a;
        font-size: 22px;
        transition: transform 0.25s ease;
    }

.premium-project-card:hover .project-view-link span {
    transform: translateX(7px);
}

/* CTA */
.projects-showcase-cta {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0b1016;
}

.projects-showcase-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('/images/projects/projects-hero-clean-4k.png');
    background-size: cover;
    background-position: center center;
    transform: scale(1.04);
    filter: brightness(0.62) saturate(1.1) contrast(1.05);
    animation: projectsShowcaseZoom 14s ease-in-out infinite alternate;
}

.projects-showcase-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(5, 8, 12, 0.92) 0%, rgba(5, 8, 12, 0.70) 45%, rgba(5, 8, 12, 0.28) 100%), radial-gradient(circle at 18% 30%, rgba(216, 149, 37, 0.22), transparent 28%);
}

.projects-showcase-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

    .projects-showcase-content h2 {
        color: #ffffff;
    }

    .projects-showcase-content p {
        margin: 26px 0 0;
        max-width: 580px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 17px;
        line-height: 1.9;
    }

.projects-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    min-height: 58px;
    padding: 0 30px;
    background: #d89525;
    color: #101820;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}

    .projects-showcase-btn span {
        font-size: 22px;
        transition: transform 0.25s ease;
    }

    .projects-showcase-btn:hover {
        background: #ffffff;
        color: #101820;
        transform: translateY(-4px);
    }

        .projects-showcase-btn:hover span {
            transform: translateX(6px);
        }

@keyframes projectsShowcaseZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.10);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .projects-intro-wrap {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .projects-gallery-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-filter-bar {
        justify-content: flex-start;
    }

    .projects-premium-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .projects-premium-intro,
    .projects-premium-gallery {
        padding: 90px 0;
    }

    .projects-intro-content h2,
    .projects-gallery-head h2,
    .projects-showcase-content h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .premium-project-card {
        min-height: 430px;
    }

    .premium-project-overlay {
        padding: 30px 26px;
    }

    .projects-showcase-cta {
        min-height: auto;
        padding: 95px 0;
    }
}

/* =========================================================
   NEWS PAGE PREMIUM DESIGN
========================================================= */

.news-premium-intro {
    position: relative;
    padding: 145px 0 125px;
    overflow: hidden;
    background: radial-gradient(circle at 82% 18%, rgba(226, 155, 45, 0.10), transparent 30%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 52%, #f3efe7 100%);
}

    .news-premium-intro::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(15, 20, 27, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 20, 27, 0.045) 1px, transparent 1px);
        background-size: 70px 70px;
        pointer-events: none;
    }

.news-bg-text {
    position: absolute;
    left: -18px;
    bottom: 12px;
    font-size: clamp(90px, 14vw, 230px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 18px;
    color: rgba(17, 24, 33, 0.045);
    text-transform: uppercase;
    pointer-events: none;
}

.news-intro-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
}

.news-intro-content h2,
.news-list-head h2,
.featured-news-content h2,
.news-cta-content h2 {
    margin: 0;
    color: #101820;
    font-size: clamp(44px, 4.6vw, 74px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -2px;
}

.news-intro-content p {
    margin: 28px 0 0;
    max-width: 670px;
    color: #66717d;
    font-size: 17px;
    line-height: 1.9;
}

.news-intro-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

    .news-intro-stats div {
        padding: 30px 32px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(17, 24, 33, 0.10);
        box-shadow: 0 22px 65px rgba(17, 24, 33, 0.08);
        transition: transform 0.35s ease, background 0.35s ease;
    }

        .news-intro-stats div:hover {
            transform: translateX(-10px);
            background: #101820;
        }

    .news-intro-stats strong {
        display: block;
        color: #d89525;
        font-size: 48px;
        line-height: 1;
        font-weight: 900;
    }

    .news-intro-stats span {
        display: block;
        margin-top: 12px;
        color: #101820;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .news-intro-stats div:hover span {
        color: #ffffff;
    }

/* FEATURED NEWS */
.news-featured-premium {
    padding: 130px 0;
    background: #ffffff;
}

.featured-news-premium {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 540px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 30px 95px rgba(17, 24, 33, 0.12);
    overflow: hidden;
}

.featured-news-image {
    position: relative;
    background: #101820;
    overflow: hidden;
}

    .featured-news-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.34)), linear-gradient(90deg, rgba(216,149,37,0.16), transparent 46%);
        pointer-events: none;
    }

    .featured-news-image img {
        width: 100%;
        height: 100%;
        min-height: 540px;
        object-fit: cover;
        transform: scale(1.04);
        filter: brightness(1.04) saturate(1.08) contrast(1.04);
        transition: transform 0.8s ease;
    }

.featured-news-premium:hover .featured-news-image img {
    transform: scale(1.12);
}

.featured-news-content {
    padding: 70px 66px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-date {
    margin-bottom: 22px;
    color: #d89525;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.featured-news-content p {
    margin: 26px 0 0;
    color: #66717d;
    font-size: 17px;
    line-height: 1.9;
}

.featured-news-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin-top: 34px;
    color: #101820;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

    .featured-news-link span {
        color: #d89525;
        font-size: 23px;
        transition: transform 0.25s ease;
    }

    .featured-news-link:hover span {
        transform: translateX(7px);
    }

/* NEWS LIST */
.news-list-premium {
    position: relative;
    padding: 135px 0 145px;
    background: radial-gradient(circle at 85% 18%, rgba(226, 155, 45, 0.10), transparent 28%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 58%, #f2efe8 100%);
    overflow: hidden;
}

.news-list-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 58px;
}

.news-filter-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.news-filter-btn {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(17, 24, 33, 0.14);
    background: #ffffff;
    color: #101820;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .news-filter-btn:hover,
    .news-filter-btn.active {
        background: #101820;
        border-color: #101820;
        color: #ffffff;
    }

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

.premium-news-card {
    position: relative;
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: 260px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 22px 65px rgba(17, 24, 33, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

    .premium-news-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 34px 90px rgba(17, 24, 33, 0.16);
        background: #ffffff;
    }

    .premium-news-card.hide-news {
        display: none;
    }

.premium-news-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    background: #101820;
    color: #ffffff;
    text-align: center;
}

    .premium-news-date strong {
        display: block;
        color: #e7a33a;
        font-size: 56px;
        line-height: 1;
        font-weight: 900;
    }

    .premium-news-date span {
        display: block;
        margin-top: 12px;
        color: #ffffff;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

.premium-news-body {
    padding: 36px 36px 34px;
}

    .premium-news-body em {
        display: inline-block;
        margin-bottom: 14px;
        color: #d89525;
        font-size: 11px;
        font-style: normal;
        font-weight: 900;
        letter-spacing: 2.3px;
        text-transform: uppercase;
    }

    .premium-news-body h3 {
        margin: 0;
        color: #101820;
        font-size: 26px;
        line-height: 1.22;
        font-weight: 800;
    }

    .premium-news-body p {
        margin: 17px 0 0;
        color: #66717d;
        font-size: 14px;
        line-height: 1.8;
    }

    .premium-news-body a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 24px;
        color: #101820;
        text-decoration: none;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 2.2px;
        text-transform: uppercase;
    }

        .premium-news-body a span {
            color: #d89525;
            font-size: 22px;
            transition: transform 0.25s ease;
        }

        .premium-news-body a:hover span {
            transform: translateX(7px);
        }

/* CTA */
.news-cta-premium {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0b1016;
}

.news-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('/images/news/news-hero-clean-4k.png');
    background-size: cover;
    background-position: center center;
    transform: scale(1.04);
    filter: brightness(0.62) saturate(1.1) contrast(1.05);
    animation: newsCtaZoom 14s ease-in-out infinite alternate;
}

.news-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(5, 8, 12, 0.92) 0%, rgba(5, 8, 12, 0.70) 45%, rgba(5, 8, 12, 0.28) 100%), radial-gradient(circle at 18% 30%, rgba(216, 149, 37, 0.22), transparent 28%);
}

.news-cta-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

    .news-cta-content h2 {
        color: #ffffff;
    }

    .news-cta-content p {
        margin: 26px 0 0;
        max-width: 580px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 17px;
        line-height: 1.9;
    }

.news-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    min-height: 58px;
    padding: 0 30px;
    background: #d89525;
    color: #101820;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}

    .news-cta-btn span {
        font-size: 22px;
        transition: transform 0.25s ease;
    }

    .news-cta-btn:hover {
        background: #ffffff;
        color: #101820;
        transform: translateY(-4px);
    }

        .news-cta-btn:hover span {
            transform: translateX(6px);
        }

@keyframes newsCtaZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.10);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .news-intro-wrap {
        grid-template-columns: 1fr;
        gap: 52px;
    }

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

    .news-list-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-filter-bar {
        justify-content: flex-start;
    }

    .news-premium-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .news-premium-intro,
    .news-featured-premium,
    .news-list-premium {
        padding: 90px 0;
    }

    .news-intro-content h2,
    .news-list-head h2,
    .featured-news-content h2,
    .news-cta-content h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .premium-news-card {
        grid-template-columns: 1fr;
    }

    .premium-news-date {
        min-height: 130px;
    }

    .featured-news-content {
        padding: 40px 28px;
    }

    .news-cta-premium {
        min-height: auto;
        padding: 95px 0;
    }
}

careers-premium-intro {
    position: relative;
    padding: 145px 0 125px;
    overflow: hidden;
    background: radial-gradient(circle at 82% 18%, rgba(226, 155, 45, 0.10), transparent 30%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 52%, #f3efe7 100%);
}

.careers-premium-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 20, 27, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 20, 27, 0.045) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
}

.careers-bg-text {
    position: absolute;
    left: -22px;
    bottom: 12px;
    font-size: clamp(86px, 13vw, 220px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 18px;
    color: rgba(17, 24, 33, 0.045);
    text-transform: uppercase;
    pointer-events: none;
}

.careers-intro-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
}

.careers-intro-content h2, .careers-section-head h2, .open-roles-head h2, .careers-culture-content h2 {
    margin: 0;
    color: #101820;
    font-size: clamp(44px, 4.6vw, 74px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -2px;
}

.careers-intro-content p, .open-roles-head p {
    margin: 26px 0 0;
    max-width: 660px;
    color: #66717d;
    font-size: 17px;
    line-height: 1.9;
}

.careers-intro-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

    .careers-intro-stats div {
        padding: 30px 32px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(17, 24, 33, 0.10);
        box-shadow: 0 22px 65px rgba(17, 24, 33, 0.08);
        transition: transform 0.35s ease, background 0.35s ease;
    }

        .careers-intro-stats div:hover {
            transform: translateX(-10px);
            background: #101820;
        }

    .careers-intro-stats strong {
        display: block;
        color: #d89525;
        font-size: 48px;
        line-height: 1;
        font-weight: 900;
    }

    .careers-intro-stats span {
        display: block;
        margin-top: 12px;
        color: #101820;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .careers-intro-stats div:hover span {
        color: #ffffff;
    }
/* BENEFITS */

.careers-benefits-premium {
    position: relative;
    padding: 130px 0;
    background: #0b1016;
    overflow: hidden;
}

    .careers-benefits-premium::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 18% 25%, rgba(216, 149, 37, 0.18), transparent 30%), linear-gradient(135deg, #0b1016 0%, #101820 100%);
        pointer-events: none;
    }

.careers-section-head {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 58px;
}

    .careers-section-head h2 {
        color: #ffffff;
    }

.careers-benefit-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.career-benefit-card {
    min-height: 310px;
    padding: 34px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.35s ease, transform 0.35s ease;
}

    .career-benefit-card:hover {
        background: rgba(255, 255, 255, 0.10);
        transform: translateY(-8px);
    }

    .career-benefit-card span {
        display: block;
        margin-bottom: 40px;
        color: #e7a33a;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 2.5px;
    }

    .career-benefit-card h3 {
        margin: 0;
        color: #ffffff;
        font-size: 27px;
        line-height: 1.15;
        font-weight: 500;
    }

    .career-benefit-card p {
        margin: 18px 0 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 14px;
        line-height: 1.8;
    }
/* OPEN ROLES */

.open-roles-premium {
    position: relative;
    padding: 135px 0 145px;
    background: radial-gradient(circle at 85% 18%, rgba(226, 155, 45, 0.10), transparent 28%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 58%, #f2efe8 100%);
    overflow: hidden;
}

.open-roles-head {
    max-width: 860px;
    margin-bottom: 58px;
}

.open-role-list {
    display: grid;
    gap: 22px;
}

.open-role-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 34px;
    padding: 34px 38px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 22px 65px rgba(17, 24, 33, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

    .open-role-card:hover {
        transform: translateY(-8px);
        background: #ffffff;
        box-shadow: 0 34px 90px rgba(17, 24, 33, 0.16);
    }

.role-number {
    color: #d89525;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
}

.role-content span {
    display: block;
    margin-bottom: 10px;
    color: #d89525;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.role-content h3 {
    margin: 0;
    color: #101820;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
}

.role-content p {
    margin: 14px 0 0;
    max-width: 680px;
    color: #66717d;
    font-size: 15px;
    line-height: 1.8;
}

.role-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    background: #101820;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.3px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}

    .role-apply-btn span {
        color: #e7a33a;
        font-size: 22px;
        transition: transform 0.25s ease;
    }

    .role-apply-btn:hover {
        background: #d89525;
        color: #101820;
        transform: translateY(-4px);
    }

        .role-apply-btn:hover span {
            color: #101820;
            transform: translateX(6px);
        }
/* CULTURE CTA */

.careers-culture-premium {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0b1016;
}

.careers-culture-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('/images/careers/careers-hero-clean-4k.png');
    background-size: cover;
    background-position: center center;
    transform: scale(1.04);
    filter: brightness(0.62) saturate(1.1) contrast(1.05);
    animation: careersCultureZoom 14s ease-in-out infinite alternate;
}

.careers-culture-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(5, 8, 12, 0.92) 0%, rgba(5, 8, 12, 0.70) 45%, rgba(5, 8, 12, 0.28) 100%), radial-gradient(circle at 18% 30%, rgba(216, 149, 37, 0.22), transparent 28%);
}

.careers-culture-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

    .careers-culture-content h2 {
        color: #ffffff;
    }

    .careers-culture-content p {
        margin: 26px 0 0;
        max-width: 590px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 17px;
        line-height: 1.9;
    }

.careers-culture-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    min-height: 58px;
    padding: 0 30px;
    background: #d89525;
    color: #101820;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}

    .careers-culture-btn span {
        font-size: 22px;
        transition: transform 0.25s ease;
    }

    .careers-culture-btn:hover {
        background: #ffffff;
        color: #101820;
        transform: translateY(-4px);
    }

        .careers-culture-btn:hover span {
            transform: translateX(6px);
        }

@keyframes careersCultureZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.10);
    }
}
/* RESPONSIVE */

@media (max-width: 992px) {
    .careers-intro-wrap {
        grid-template-columns: 1fr;
        gap: 52px;
    }

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

    .open-role-card {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .role-apply-btn {
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .careers-premium-intro, .careers-benefits-premium, .open-roles-premium {
        padding: 90px 0;
    }

    .careers-intro-content h2, .careers-section-head h2, .open-roles-head h2, .careers-culture-content h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .careers-benefit-grid {
        grid-template-columns: 1fr;
    }

    .open-role-card {
        padding: 30px 24px;
    }

    .role-apply-btn {
        width: 100%;
    }

    .careers-culture-premium {
        min-height: auto;
        padding: 95px 0;
    }
}

.contact-premium-intro {
    position: relative;
    padding: 145px 0 125px;
    overflow: hidden;
    background: radial-gradient(circle at 82% 18%, rgba(226, 155, 45, 0.10), transparent 30%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 52%, #f3efe7 100%);
}

    .contact-premium-intro::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(15, 20, 27, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 20, 27, 0.045) 1px, transparent 1px);
        background-size: 70px 70px;
        pointer-events: none;
    }

.contact-bg-text {
    position: absolute;
    left: -22px;
    bottom: 12px;
    font-size: clamp(86px, 13vw, 220px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 18px;
    color: rgba(17, 24, 33, 0.045);
    text-transform: uppercase;
    pointer-events: none;
}

.contact-intro-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
}

.contact-intro-content h2, .contact-form-panel h2, .contact-map-content h2 {
    margin: 0;
    color: #101820;
    font-size: clamp(44px, 4.6vw, 74px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -2px;
}

.contact-intro-content p, .contact-map-content p {
    margin: 26px 0 0;
    max-width: 660px;
    color: #66717d;
    font-size: 17px;
    line-height: 1.9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.contact-info-card {
    padding: 30px 32px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 22px 65px rgba(17, 24, 33, 0.08);
    transition: transform 0.35s ease, background 0.35s ease;
}

    .contact-info-card:hover {
        transform: translateX(-10px);
        background: #101820;
    }

    .contact-info-card span {
        display: block;
        margin-bottom: 18px;
        color: #d89525;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 2.5px;
    }

    .contact-info-card h3 {
        margin: 0;
        color: #101820;
        font-size: 28px;
        font-weight: 800;
    }

    .contact-info-card p {
        margin: 12px 0 0;
        color: #66717d;
        font-size: 15px;
        line-height: 1.7;
    }

    .contact-info-card:hover h3, .contact-info-card:hover p {
        color: #ffffff;
    }
/* FORM SECTION */

.contact-form-premium-section {
    position: relative;
    padding: 135px 0 145px;
    background: #ffffff;
}

.contact-form-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: stretch;
}

.contact-form-panel {
    padding: 58px 62px;
    background: radial-gradient(circle at 90% 10%, rgba(226, 155, 45, 0.10), transparent 28%), linear-gradient(135deg, #ffffff 0%, #f8f6f1 100%);
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 30px 95px rgba(17, 24, 33, 0.12);
}

.premium-contact-form {
    margin-top: 34px;
}

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

.form-group {
    margin-bottom: 22px;
}

    .form-group label {
        display: block;
        margin-bottom: 10px;
        color: #101820;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        border: 1px solid rgba(17, 24, 33, 0.14);
        background: rgba(255, 255, 255, 0.86);
        color: #101820;
        font-size: 15px;
        outline: none;
        transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .form-group input, .form-group select {
        height: 56px;
        padding: 0 18px;
    }

    .form-group textarea {
        resize: vertical;
        padding: 18px;
        min-height: 150px;
    }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: #d89525;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(216, 149, 37, 0.12);
        }

.premium-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 32px;
    border: 0;
    background: #101820;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

    .premium-submit-btn span {
        color: #e7a33a;
        font-size: 22px;
        transition: transform 0.25s ease;
    }

    .premium-submit-btn:hover {
        background: #d89525;
        color: #101820;
        transform: translateY(-4px);
    }

        .premium-submit-btn:hover span {
            color: #101820;
            transform: translateX(6px);
        }
/* SIDE PANEL */

.contact-side-panel {
    position: relative;
    min-height: 100%;
    background: #101820;
    overflow: hidden;
    box-shadow: 0 30px 95px rgba(17, 24, 33, 0.14);
}

.contact-side-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .contact-side-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.78;
        filter: brightness(0.72) saturate(1.12) contrast(1.05);
        transform: scale(1.04);
        transition: transform 0.8s ease;
    }

.contact-side-panel:hover .contact-side-image img {
    transform: scale(1.12);
}

.contact-side-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(5,8,12,0.10) 0%, rgba(5,8,12,0.52) 48%, rgba(5,8,12,0.95) 100%), linear-gradient(90deg, rgba(216,149,37,0.20), transparent 42%);
}

.contact-side-card {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 3;
    padding: 34px;
    background: rgba(10, 14, 18, 0.72);
    border-left: 4px solid #d89525;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .contact-side-card span {
        display: block;
        margin-bottom: 14px;
        color: #e7a33a;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 2.5px;
        text-transform: uppercase;
    }

    .contact-side-card h3 {
        margin: 0;
        color: #ffffff;
        font-size: 30px;
        line-height: 1.15;
        font-weight: 600;
    }

    .contact-side-card p {
        margin: 16px 0 0;
        color: rgba(255, 255, 255, 0.76);
        font-size: 15px;
        line-height: 1.8;
    }
/* MAP SECTION */

.contact-map-premium {
    position: relative;
    padding: 120px 0 135px;
    background: radial-gradient(circle at 85% 18%, rgba(226, 155, 45, 0.12), transparent 28%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 58%, #f2efe8 100%);
}

.contact-map-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 470px;
    background: #101820;
    overflow: hidden;
    box-shadow: 0 30px 95px rgba(17, 24, 33, 0.14);
}

.contact-map-content {
    padding: 60px 62px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .contact-map-content h2 {
        color: #ffffff;
    }

    .contact-map-content p {
        color: rgba(255, 255, 255, 0.76);
    }

.map-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin-top: 34px;
    min-height: 56px;
    padding: 0 28px;
    background: #d89525;
    color: #101820;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.3px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}

    .map-direction-btn span {
        font-size: 22px;
        transition: transform 0.25s ease;
    }

    .map-direction-btn:hover {
        background: #ffffff;
        color: #101820;
        transform: translateY(-4px);
    }

        .map-direction-btn:hover span {
            transform: translateX(6px);
        }

.contact-map-placeholder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px), radial-gradient(circle at 50% 50%, rgba(216,149,37,0.20), transparent 32%), #151d26;
    background-size: 48px 48px, 48px 48px, auto, auto;
}

    .contact-map-placeholder div {
        padding: 34px 42px;
        background: rgba(10, 14, 18, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.16);
        text-align: center;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .contact-map-placeholder strong {
        display: block;
        color: #ffffff;
        font-size: 32px;
        letter-spacing: 3px;
    }

    .contact-map-placeholder span {
        display: block;
        margin-top: 10px;
        color: #e7a33a;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 2.4px;
        text-transform: uppercase;
    }
/* RESPONSIVE */

@media (max-width: 992px) {
    .contact-intro-wrap, .contact-form-wrap, .contact-map-card {
        grid-template-columns: 1fr;
    }

    .contact-side-panel {
        min-height: 520px;
    }
}

@media (max-width: 768px) {
    .contact-premium-intro, .contact-form-premium-section, .contact-map-premium {
        padding: 90px 0;
    }

    .contact-intro-content h2, .contact-form-panel h2, .contact-map-content h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .contact-form-panel, .contact-map-content {
        padding: 38px 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .premium-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-side-card {
        left: 22px;
        right: 22px;
        bottom: 22px;
        padding: 26px;
    }
}

.admin-page {
    min-height: 100vh;
    padding: 150px 0 80px;
    background: radial-gradient(circle at 15% 15%, rgba(216,149,37,0.12), transparent 30%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 50%, #f2efe8 100%);
}

.admin-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.admin-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

    .admin-head span {
        display: block;
        margin-bottom: 12px;
        color: #d89525;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .admin-head h1 {
        margin: 0;
        color: #101820;
        font-size: clamp(40px, 4vw, 64px);
        line-height: 1;
        font-weight: 500;
    }

    .admin-head p {
        margin: 16px 0 0;
        color: #66717d;
        font-size: 16px;
        line-height: 1.7;
    }

.admin-alert {
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #101820;
    color: #ffffff;
    border-left: 5px solid #d89525;
    font-size: 14px;
    font-weight: 700;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.admin-stat-card, .admin-action-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 22px 65px rgba(17, 24, 33, 0.08);
}

.admin-stat-card {
    padding: 28px;
}

    .admin-stat-card strong {
        display: block;
        color: #d89525;
        font-size: 44px;
        line-height: 1;
        font-weight: 900;
    }

    .admin-stat-card span {
        display: block;
        margin-top: 12px;
        color: #101820;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

.admin-action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.admin-action-card {
    display: block;
    padding: 34px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

    .admin-action-card:hover {
        transform: translateY(-8px);
        background: #101820;
    }

    .admin-action-card h2 {
        margin: 0;
        color: #101820;
        font-size: 28px;
    }

    .admin-action-card p {
        margin: 14px 0 0;
        color: #66717d;
        line-height: 1.7;
    }

    .admin-action-card span {
        display: inline-block;
        margin-top: 22px;
        color: #d89525;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .admin-action-card:hover h2, .admin-action-card:hover p {
        color: #ffffff;
    }

.admin-btn, .admin-small-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}

.admin-btn {
    min-height: 54px;
    padding: 0 26px;
    background: #101820;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2.3px;
}

    .admin-btn:hover {
        background: #d89525;
        color: #101820;
        transform: translateY(-3px);
    }

    .admin-btn.secondary {
        background: #e9e5db;
        color: #101820;
    }

.admin-table-card, .admin-form-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 24px 80px rgba(17, 24, 33, 0.10);
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-table th {
        padding: 18px 18px;
        background: #101820;
        color: #ffffff;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: left;
    }

    .admin-table td {
        padding: 18px;
        border-bottom: 1px solid rgba(17, 24, 33, 0.08);
        color: #101820;
        vertical-align: middle;
    }

        .admin-table td strong {
            display: block;
            font-size: 15px;
        }

        .admin-table td small {
            display: block;
            margin-top: 7px;
            color: #66717d;
            max-width: 320px;
            line-height: 1.5;
        }

.admin-thumb {
    width: 86px;
    height: 60px;
    object-fit: cover;
    display: block;
}

.admin-no-img {
    width: 86px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ede6;
    color: #66717d;
    font-size: 11px;
    font-weight: 800;
}

    .admin-no-img.wide {
        width: 100%;
        height: 120px;
    }

.admin-preview-img {
    max-width: 260px;
    height: 160px;
    object-fit: cover;
    display: block;
}

.admin-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

    .admin-status.active {
        background: rgba(40, 167, 69, 0.12);
        color: #198754;
    }

    .admin-status.inactive {
        background: rgba(220, 53, 69, 0.12);
        color: #dc3545;
    }

.admin-small-btn {
    min-height: 34px;
    padding: 0 12px;
    background: #101820;
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 1.4px;
}

    .admin-small-btn.muted {
        background: #e9e5db;
        color: #101820;
    }

    .admin-small-btn.danger {
        background: #dc3545;
        color: #ffffff;
    }

.inline-form {
    display: inline-flex;
    margin-left: 6px;
}

.text-right {
    text-align: right;
}

.admin-form-card {
    padding: 36px;
}

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

.admin-field.full {
    grid-column: 1 / -1;
}

.admin-field label {
    display: block;
    margin-bottom: 10px;
    color: #101820;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.admin-field input, .admin-field textarea {
    width: 100%;
    border: 1px solid rgba(17, 24, 33, 0.14);
    background: #ffffff;
    color: #101820;
    font-size: 15px;
    outline: none;
}

.admin-field input {
    height: 54px;
    padding: 0 16px;
}

.admin-field textarea {
    resize: vertical;
    padding: 16px;
}

.admin-field span {
    display: block;
    margin-top: 8px;
    color: #dc3545;
    font-size: 12px;
}

.admin-checks {
    grid-column: 1 / -1;
    display: flex;
    gap: 22px;
    align-items: center;
}

    .admin-checks label {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #101820;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

.admin-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.admin-back-link {
    display: inline-block;
    margin-top: 26px;
    color: #101820;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 992px) {
    .admin-stat-grid, .admin-action-grid, .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-table-card {
        overflow-x: auto;
    }

    .admin-table {
        min-width: 960px;
    }

    .admin-head {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================================
   ADMIN NEWS LIST PAGE
========================================================= */

.admin-page {
    min-height: 100vh;
    padding: 150px 0 80px;
    background: radial-gradient(circle at 15% 15%, rgba(216,149,37,0.12), transparent 30%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 50%, #f2efe8 100%);
}

.admin-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.admin-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

    .admin-head span {
        display: block;
        margin-bottom: 12px;
        color: #d89525;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .admin-head h1 {
        margin: 0;
        color: #101820;
        font-size: clamp(40px, 4vw, 64px);
        line-height: 1;
        font-weight: 500;
    }

    .admin-head p {
        margin: 16px 0 0;
        color: #66717d;
        font-size: 16px;
        line-height: 1.7;
    }

.admin-alert {
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #101820;
    color: #ffffff;
    border-left: 5px solid #d89525;
    font-size: 14px;
    font-weight: 700;
}

.admin-btn {
    min-height: 54px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #101820;
    color: #ffffff;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.3px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}

    .admin-btn:hover {
        background: #d89525;
        color: #101820;
        transform: translateY(-3px);
    }

.admin-table-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 24px 80px rgba(17, 24, 33, 0.10);
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-table th {
        padding: 18px;
        background: #101820;
        color: #ffffff;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: left;
        white-space: nowrap;
    }

    .admin-table td {
        padding: 18px;
        border-bottom: 1px solid rgba(17, 24, 33, 0.08);
        color: #101820;
        vertical-align: middle;
    }

        .admin-table td strong {
            display: block;
            font-size: 15px;
            line-height: 1.4;
        }

        .admin-table td small {
            display: block;
            margin-top: 7px;
            max-width: 360px;
            color: #66717d;
            font-size: 13px;
            line-height: 1.5;
        }

.admin-thumb {
    width: 92px;
    height: 64px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(17, 24, 33, 0.10);
}

.admin-no-img {
    width: 92px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ede6;
    color: #66717d;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.admin-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

    .admin-status.active {
        background: rgba(40, 167, 69, 0.12);
        color: #198754;
    }

    .admin-status.inactive {
        background: rgba(220, 53, 69, 0.12);
        color: #dc3545;
    }

.admin-small-btn {
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #101820;
    color: #ffffff;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

    .admin-small-btn.muted {
        background: #e9e5db;
        color: #101820;
    }

    .admin-small-btn.danger {
        background: #dc3545;
        color: #ffffff;
    }

.inline-form {
    display: inline-flex;
    margin-left: 6px;
}

.text-right {
    text-align: right;
    white-space: nowrap;
}

.admin-empty {
    padding: 34px;
    text-align: center;
    color: #66717d;
    font-size: 15px;
}

.admin-back-link {
    display: inline-block;
    margin-top: 26px;
    color: #101820;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 992px) {
    .admin-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-table-card {
        overflow-x: auto;
    }

    .admin-table {
        min-width: 980px;
    }
}

/* =========================================================
   ADMIN NEWS CREATE FORM
========================================================= */

.admin-form-card {
    padding: 38px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 24px 80px rgba(17, 24, 33, 0.10);
}

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

.admin-field.full {
    grid-column: 1 / -1;
}

.admin-field label {
    display: block;
    margin-bottom: 10px;
    color: #101820;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.admin-field input,
.admin-field textarea {
    width: 100%;
    border: 1px solid rgba(17, 24, 33, 0.14);
    background: #ffffff;
    color: #101820;
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.admin-field input {
    height: 54px;
    padding: 0 16px;
}

.admin-field textarea {
    resize: vertical;
    padding: 16px;
    line-height: 1.7;
}

    .admin-field input:focus,
    .admin-field textarea:focus {
        border-color: #d89525;
        box-shadow: 0 0 0 4px rgba(216, 149, 37, 0.12);
    }

.admin-field span {
    display: block;
    margin-top: 8px;
    color: #dc3545;
    font-size: 12px;
    font-weight: 700;
}

.admin-help-text {
    display: block;
    margin-top: 8px;
    color: #66717d;
    font-size: 12px;
    line-height: 1.5;
}

.admin-checks {
    grid-column: 1 / -1;
    display: flex;
    gap: 22px;
    align-items: center;
    padding-top: 4px;
}

    .admin-checks label {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #101820;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .admin-checks input {
        width: 18px;
        height: 18px;
        accent-color: #d89525;
    }

.admin-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.admin-btn.secondary {
    background: #e9e5db;
    color: #101820;
}

    .admin-btn.secondary:hover {
        background: #d89525;
        color: #101820;
    }

@media (max-width: 768px) {
    .admin-form-card {
        padding: 28px 22px;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-checks {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-form-actions {
        flex-direction: column;
    }

        .admin-form-actions .admin-btn {
            width: 100%;
        }
}

/* =========================================================
   ADMIN NEWS EDIT IMAGE PREVIEW
========================================================= */

.admin-preview-img {
    width: 280px;
    height: 170px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(17, 24, 33, 0.12);
    box-shadow: 0 14px 35px rgba(17, 24, 33, 0.10);
}

.admin-no-img.wide {
    width: 280px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ede6;
    color: #66717d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(17, 24, 33, 0.10);
}

@media (max-width: 768px) {
    .admin-preview-img,
    .admin-no-img.wide {
        width: 100%;
        height: 220px;
    }
}

/* =========================================================
   ADMIN COMPLETED PROJECTS LIST PAGE
========================================================= */

.admin-table td:nth-child(2) small + small {
    margin-top: 6px;
    color: #8a929b;
}

.admin-table td:nth-child(4) {
    max-width: 180px;
    line-height: 1.5;
}

.admin-table td:nth-child(5),
.admin-table td:nth-child(6),
.admin-table td:nth-child(8) {
    font-weight: 800;
    color: #101820;
}

.admin-table tr:hover td {
    background: rgba(216, 149, 37, 0.035);
}

.admin-table tr:hover .admin-thumb {
    transform: scale(1.04);
}

.admin-thumb {
    transition: transform 0.25s ease;
}

@media (max-width: 992px) {
    .admin-table {
        min-width: 1120px;
    }
}

/* =========================================================
   ADMIN COMPLETED PROJECT CREATE FORM
========================================================= */

.admin-form-card {
    padding: 38px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 33, 0.10);
    box-shadow: 0 24px 80px rgba(17, 24, 33, 0.10);
}

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

.admin-field.full {
    grid-column: 1 / -1;
}

.admin-field label {
    display: block;
    margin-bottom: 10px;
    color: #101820;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.admin-field input,
.admin-field textarea {
    width: 100%;
    border: 1px solid rgba(17, 24, 33, 0.14);
    background: #ffffff;
    color: #101820;
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.admin-field input {
    height: 54px;
    padding: 0 16px;
}

.admin-field textarea {
    resize: vertical;
    padding: 16px;
    line-height: 1.7;
}

    .admin-field input:focus,
    .admin-field textarea:focus {
        border-color: #d89525;
        box-shadow: 0 0 0 4px rgba(216, 149, 37, 0.12);
    }

.admin-field span {
    display: block;
    margin-top: 8px;
    color: #dc3545;
    font-size: 12px;
    font-weight: 700;
}

.admin-help-text {
    display: block;
    margin-top: 8px;
    color: #66717d;
    font-size: 12px;
    line-height: 1.5;
}

.admin-checks {
    grid-column: 1 / -1;
    display: flex;
    gap: 22px;
    align-items: center;
    padding-top: 4px;
}

    .admin-checks label {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #101820;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .admin-checks input {
        width: 18px;
        height: 18px;
        accent-color: #d89525;
    }

.admin-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.admin-btn.secondary {
    background: #e9e5db;
    color: #101820;
}

    .admin-btn.secondary:hover {
        background: #d89525;
        color: #101820;
    }

@media (max-width: 768px) {
    .admin-form-card {
        padding: 28px 22px;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-checks {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-form-actions {
        flex-direction: column;
    }

        .admin-form-actions .admin-btn {
            width: 100%;
        }
}


/* =========================================================
   ADMIN COMPLETED PROJECT EDIT IMAGE PREVIEW
========================================================= */

.admin-preview-img {
    width: 320px;
    height: 190px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(17, 24, 33, 0.12);
    box-shadow: 0 14px 35px rgba(17, 24, 33, 0.10);
}

.admin-no-img.wide {
    width: 320px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ede6;
    color: #66717d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(17, 24, 33, 0.10);
}

@media (max-width: 768px) {
    .admin-preview-img,
    .admin-no-img.wide {
        width: 100%;
        height: 220px;
    }
}


/* =========================================================
   HOME DB COMPLETED PROJECTS SECTION
========================================================= */

.home-completed-projects-db {
    position: relative;
    padding: 110px 0;
    background: radial-gradient(circle at 10% 15%, rgba(216, 149, 37, 0.12), transparent 30%), linear-gradient(135deg, #101820 0%, #182430 55%, #101820 100%);
    overflow: hidden;
}

.home-completed-head {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 48px;
}

    .home-completed-head span {
        display: block;
        margin-bottom: 14px;
        color: #d89525;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .home-completed-head h2 {
        max-width: 820px;
        margin: 0;
        color: #ffffff;
        font-size: clamp(38px, 4vw, 66px);
        line-height: 1;
        font-weight: 500;
    }

    .home-completed-head p {
        max-width: 650px;
        margin: 22px 0 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 16px;
        line-height: 1.8;
    }

.home-completed-grid-db {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-completed-card-db {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

    .home-completed-card-db:hover {
        transform: translateY(-10px);
        border-color: rgba(216, 149, 37, 0.55);
    }

.home-completed-img-db {
    position: relative;
    height: 360px;
    overflow: hidden;
    background: #26313b;
}

    .home-completed-img-db img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1.02);
        transition: transform 0.7s ease;
    }

.home-completed-card-db:hover .home-completed-img-db img {
    transform: scale(1.12);
}

.home-completed-img-db::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.78) 100%);
    pointer-events: none;
}

.home-completed-overlay-db {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}

    .home-completed-overlay-db span {
        display: inline-flex;
        margin-bottom: 12px;
        padding: 8px 12px;
        background: #d89525;
        color: #101820;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.8px;
        text-transform: uppercase;
    }

    .home-completed-overlay-db h3 {
        margin: 0;
        color: #ffffff;
        font-size: 24px;
        line-height: 1.15;
        font-weight: 600;
    }

    .home-completed-overlay-db p {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.78);
        font-size: 14px;
    }

.home-completed-info-db {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

    .home-completed-info-db div {
        padding: 18px 20px;
    }

        .home-completed-info-db div + div {
            border-left: 1px solid rgba(255, 255, 255, 0.10);
        }

    .home-completed-info-db small {
        display: block;
        margin-bottom: 7px;
        color: rgba(255, 255, 255, 0.52);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .home-completed-info-db strong {
        display: block;
        color: #ffffff;
        font-size: 14px;
        line-height: 1.4;
    }

.home-completed-no-img-db {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #26313b;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-completed-empty-db {
    grid-column: 1 / -1;
    padding: 60px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

    .home-completed-empty-db h3 {
        margin: 0;
        color: #ffffff;
        font-size: 28px;
    }

    .home-completed-empty-db p {
        margin: 12px 0 0;
        color: rgba(255, 255, 255, 0.65);
    }

@media (max-width: 992px) {
    .home-completed-grid-db {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .home-completed-projects-db {
        padding: 80px 0;
    }

    .home-completed-grid-db {
        grid-template-columns: 1fr;
    }

    .home-completed-img-db {
        height: 310px;
    }
}

/* =========================================================
   HOME COMPLETED PROJECTS - BIG PREMIUM UPDATE
========================================================= */

.home-completed-projects-db {
    padding: 130px 0 120px;
    background: linear-gradient(90deg, rgba(16,24,32,0.96), rgba(16,24,32,0.88)), radial-gradient(circle at 15% 20%, rgba(216,149,37,0.22), transparent 32%), linear-gradient(135deg, #101820 0%, #192633 55%, #101820 100%);
}

.home-completed-head {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto 58px;
}

    .home-completed-head span {
        color: #f2a51f;
        font-size: 13px;
        letter-spacing: 4px;
    }

    .home-completed-head h2 {
        max-width: 980px;
        font-size: clamp(54px, 6vw, 92px);
        line-height: 0.98;
        letter-spacing: -2px;
    }

    .home-completed-head p {
        max-width: 760px;
        font-size: 19px;
        line-height: 1.9;
        color: rgba(255, 255, 255, 0.78);
    }

.home-completed-grid-db {
    width: min(1240px, calc(100% - 56px));
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr));
    gap: 30px;
}

.home-completed-card-db {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.38);
}

    .home-completed-card-db:only-child {
        max-width: 980px;
        width: 100%;
    }

.home-completed-img-db {
    height: 520px;
}

    .home-completed-img-db::after {
        background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.22) 55%, rgba(0,0,0,0.10) 100%), linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.85) 100%);
    }

.home-completed-overlay-db {
    left: 36px;
    right: 36px;
    bottom: 36px;
}

    .home-completed-overlay-db span {
        padding: 10px 16px;
        font-size: 11px;
        letter-spacing: 2.5px;
        background: linear-gradient(135deg, #f5b041, #d89525);
        box-shadow: 0 14px 35px rgba(216,149,37,0.28);
    }

    .home-completed-overlay-db h3 {
        max-width: 720px;
        font-size: clamp(34px, 4vw, 58px);
        line-height: 1.02;
        letter-spacing: -1px;
    }

    .home-completed-overlay-db p {
        margin-top: 14px;
        font-size: 18px;
        color: rgba(255,255,255,0.86);
    }

.home-completed-info-db {
    background: rgba(255,255,255,0.04);
}

    .home-completed-info-db div {
        padding: 24px 28px;
    }

    .home-completed-info-db small {
        font-size: 11px;
        letter-spacing: 2.4px;
        color: rgba(255,255,255,0.54);
    }

    .home-completed-info-db strong {
        font-size: 18px;
        color: #ffffff;
    }

.home-completed-card-db:hover {
    transform: translateY(-14px);
    border-color: rgba(216,149,37,0.75);
}

    .home-completed-card-db:hover .home-completed-img-db img {
        transform: scale(1.1);
    }

@media (max-width: 768px) {
    .home-completed-projects-db {
        padding: 95px 0;
    }

    .home-completed-head,
    .home-completed-grid-db {
        width: min(100% - 30px, 1240px);
    }

        .home-completed-head h2 {
            font-size: 44px;
        }

    .home-completed-img-db {
        height: 380px;
    }

    .home-completed-overlay-db {
        left: 22px;
        right: 22px;
        bottom: 24px;
    }

        .home-completed-overlay-db h3 {
            font-size: 34px;
        }
}

/* =========================================================
   PROJECT IMAGE LIGHTBOX
========================================================= */

.project-image-open {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
}

    .project-image-open img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1.02);
        transition: transform 0.7s ease;
    }

    .project-image-open span {
        position: absolute;
        top: 24px;
        right: 24px;
        z-index: 4;
        padding: 11px 15px;
        background: rgba(16, 24, 32, 0.88);
        color: #ffffff;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .project-image-open:hover span {
        opacity: 1;
        transform: translateY(0);
    }

.home-completed-card-db:hover .project-image-open img {
    transform: scale(1.12);
}

.project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
}

    .project-lightbox.active {
        display: flex;
    }

.project-lightbox-content {
    width: min(1100px, 96vw);
    max-height: 92vh;
    position: relative;
    animation: lightboxZoom 0.35s ease both;
}

    .project-lightbox-content img {
        width: 100%;
        max-height: 82vh;
        object-fit: contain;
        display: block;
        background: #101820;
        box-shadow: 0 45px 120px rgba(0, 0, 0, 0.65);
    }

    .project-lightbox-content h3 {
        margin: 18px 0 0;
        color: #ffffff;
        font-size: 24px;
        font-weight: 600;
        text-align: center;
    }

.project-lightbox-close {
    position: fixed;
    top: 28px;
    right: 34px;
    z-index: 100000;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(16, 24, 32, 0.88);
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
}

    .project-lightbox-close:hover {
        background: #d89525;
        color: #101820;
    }

@keyframes lightboxZoom {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =========================================================
   HOME DB NEWS SECTION
========================================================= */

.home-news-db {
    padding: 120px 0;
    background: radial-gradient(circle at 90% 10%, rgba(216,149,37,0.13), transparent 32%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 50%, #eee9df 100%);
}

.home-news-db-wrap {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}

.home-news-db-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 52px;
}

    .home-news-db-head span {
        display: block;
        margin-bottom: 14px;
        color: #d89525;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 3.5px;
        text-transform: uppercase;
    }

    .home-news-db-head h2 {
        max-width: 780px;
        margin: 0;
        color: #101820;
        font-size: clamp(44px, 5vw, 78px);
        line-height: 0.98;
        font-weight: 500;
        letter-spacing: -1.8px;
    }

.home-news-db-link {
    min-height: 54px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #101820;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

    .home-news-db-link:hover {
        background: #d89525;
        color: #101820;
        transform: translateY(-4px);
    }

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

.home-news-db-card {
    background: #ffffff;
    border: 1px solid rgba(16, 24, 32, 0.10);
    box-shadow: 0 28px 80px rgba(16, 24, 32, 0.10);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .home-news-db-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 42px 110px rgba(16, 24, 32, 0.16);
    }

.home-news-db-img {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #101820;
}

    .home-news-db-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1.02);
        transition: transform 0.65s ease;
    }

.home-news-db-card:hover .home-news-db-img img {
    transform: scale(1.12);
}

.home-news-db-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.62) 100%);
}

.home-news-db-img span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    padding: 9px 13px;
    background: linear-gradient(135deg, #f5b041, #d89525);
    color: #101820;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-news-db-no-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.home-news-db-body {
    padding: 30px;
}

    .home-news-db-body small {
        display: block;
        margin-bottom: 14px;
        color: #d89525;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2.4px;
        text-transform: uppercase;
    }

    .home-news-db-body h3 {
        margin: 0;
        color: #101820;
        font-size: 25px;
        line-height: 1.15;
        font-weight: 650;
    }

    .home-news-db-body p {
        margin: 16px 0 0;
        color: #66717d;
        font-size: 15px;
        line-height: 1.75;
    }

.home-news-db-empty {
    grid-column: 1 / -1;
    padding: 60px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 32, 0.10);
    text-align: center;
}

    .home-news-db-empty h3 {
        margin: 0;
        color: #101820;
        font-size: 30px;
    }

    .home-news-db-empty p {
        margin: 12px 0 0;
        color: #66717d;
    }

@media (max-width: 992px) {
    .home-news-db-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-news-db-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .home-news-db {
        padding: 85px 0;
    }

    .home-news-db-wrap {
        width: min(100% - 30px, 1240px);
    }

    .home-news-db-grid {
        grid-template-columns: 1fr;
    }

    .home-news-db-head h2 {
        font-size: 42px;
    }

    .home-news-db-img {
        height: 240px;
    }
}


/* =========================================================
   PUBLIC NEWS PAGE - DB PREMIUM
========================================================= */

.news-db-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #101820;
}

.news-db-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16,24,32,0.94), rgba(16,24,32,0.70), rgba(16,24,32,0.34)), url('/images/news/news-hero-clean-4k.png') center/cover no-repeat;
    transform: scale(1.04);
}

.news-db-hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
    padding-top: 80px;
}

    .news-db-hero-content span,
    .news-db-top span {
        display: block;
        margin-bottom: 16px;
        color: #d89525;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 3.5px;
        text-transform: uppercase;
    }

    .news-db-hero-content h1 {
        max-width: 980px;
        margin: 0;
        color: #ffffff;
        font-size: clamp(54px, 6vw, 94px);
        line-height: 0.98;
        font-weight: 500;
        letter-spacing: -2px;
    }

    .news-db-hero-content p {
        max-width: 720px;
        margin: 26px 0 0;
        color: rgba(255,255,255,0.76);
        font-size: 19px;
        line-height: 1.85;
    }

.news-db-page {
    padding: 120px 0;
    background: radial-gradient(circle at 90% 12%, rgba(216,149,37,0.13), transparent 32%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 52%, #eee9df 100%);
}

.news-db-wrap {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}

.news-db-top {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 54px;
}

    .news-db-top h2 {
        margin: 0;
        color: #101820;
        font-size: clamp(44px, 5vw, 78px);
        line-height: 0.98;
        font-weight: 500;
        letter-spacing: -1.8px;
    }

    .news-db-top p {
        margin: 0;
        color: #66717d;
        font-size: 17px;
        line-height: 1.85;
    }

.news-db-featured {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    margin-bottom: 60px;
    background: #101820;
    box-shadow: 0 40px 120px rgba(16,24,32,0.20);
    overflow: hidden;
}

.news-db-featured-img {
    min-height: 520px;
    background: #26313b;
}

    .news-db-featured-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.75s ease;
    }

.news-db-featured:hover .news-db-featured-img img {
    transform: scale(1.08);
}

.news-db-featured-content {
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .news-db-featured-content span,
    .news-db-card-img span {
        display: inline-flex;
        width: fit-content;
        padding: 10px 15px;
        background: linear-gradient(135deg, #f5b041, #d89525);
        color: #101820;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .news-db-featured-content small,
    .news-db-card-body small {
        display: block;
        margin-top: 20px;
        color: #d89525;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2.4px;
        text-transform: uppercase;
    }

    .news-db-featured-content h3 {
        margin: 18px 0 0;
        color: #ffffff;
        font-size: clamp(34px, 4vw, 54px);
        line-height: 1.02;
        font-weight: 600;
        letter-spacing: -1px;
    }

    .news-db-featured-content p {
        margin: 22px 0 0;
        color: rgba(255,255,255,0.74);
        font-size: 17px;
        line-height: 1.8;
    }

.news-db-description {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.66);
    font-size: 15px;
    line-height: 1.8;
}

.news-db-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 38px;
}

.news-db-filter-btn {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(16,24,32,0.14);
    background: #ffffff;
    color: #101820;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

    .news-db-filter-btn:hover,
    .news-db-filter-btn.active {
        background: #101820;
        color: #ffffff;
        border-color: #101820;
    }

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

.news-db-card {
    background: #ffffff;
    border: 1px solid rgba(16,24,32,0.10);
    box-shadow: 0 28px 80px rgba(16,24,32,0.10);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .news-db-card.hide-news {
        display: none;
    }

    .news-db-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 42px 110px rgba(16,24,32,0.16);
    }

.news-db-card-img {
    position: relative;
    height: 285px;
    overflow: hidden;
    background: #101820;
}

    .news-db-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1.02);
        transition: transform 0.65s ease;
    }

.news-db-card:hover .news-db-card-img img {
    transform: scale(1.12);
}

.news-db-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.62) 100%);
}

.news-db-card-img span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
}

.news-db-card-body {
    padding: 30px;
}

    .news-db-card-body h3 {
        margin: 14px 0 0;
        color: #101820;
        font-size: 25px;
        line-height: 1.15;
        font-weight: 650;
    }

    .news-db-card-body p {
        margin: 16px 0 0;
        color: #66717d;
        font-size: 15px;
        line-height: 1.75;
    }

.news-db-no-img {
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #26313b;
    color: rgba(255,255,255,0.75);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

    .news-db-no-img.small {
        min-height: 285px;
        font-size: 28px;
    }

.news-db-empty {
    grid-column: 1 / -1;
    padding: 70px;
    background: #ffffff;
    border: 1px solid rgba(16,24,32,0.10);
    text-align: center;
}

    .news-db-empty h3 {
        margin: 0;
        color: #101820;
        font-size: 34px;
    }

    .news-db-empty p {
        margin: 14px 0 0;
        color: #66717d;
    }

@media (max-width: 992px) {
    .news-db-top,
    .news-db-featured {
        grid-template-columns: 1fr;
    }

    .news-db-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-db-featured-img {
        min-height: 420px;
    }
}

@media (max-width: 650px) {
    .news-db-hero-content,
    .news-db-wrap {
        width: min(100% - 30px, 1240px);
    }

        .news-db-hero-content h1 {
            font-size: 46px;
        }

    .news-db-page {
        padding: 85px 0;
    }

    .news-db-grid {
        grid-template-columns: 1fr;
    }

    .news-db-featured-content {
        padding: 34px 24px;
    }

    .news-db-featured-img {
        min-height: 320px;
    }
}

/* =========================================================
   PUBLIC PROJECTS PAGE - DB PREMIUM
========================================================= */

.projects-db-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #101820;
}

.projects-db-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16,24,32,0.96), rgba(16,24,32,0.72), rgba(16,24,32,0.34)), url('/images/projects/projects-hero-clean-4k.png') center/cover no-repeat;
    transform: scale(1.04);
}

.projects-db-hero-content {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
    padding-top: 80px;
}

    .projects-db-hero-content span,
    .projects-db-top span {
        display: block;
        margin-bottom: 16px;
        color: #d89525;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 3.5px;
        text-transform: uppercase;
    }

    .projects-db-hero-content h1 {
        max-width: 1050px;
        margin: 0;
        color: #ffffff;
        font-size: clamp(54px, 6vw, 96px);
        line-height: 0.98;
        font-weight: 500;
        letter-spacing: -2px;
    }

    .projects-db-hero-content p {
        max-width: 740px;
        margin: 26px 0 0;
        color: rgba(255,255,255,0.76);
        font-size: 19px;
        line-height: 1.85;
    }

.projects-db-page {
    padding: 120px 0;
    background: radial-gradient(circle at 88% 8%, rgba(216,149,37,0.13), transparent 32%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 52%, #eee9df 100%);
}

.projects-db-wrap {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}

.projects-db-top {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 48px;
}

    .projects-db-top h2 {
        margin: 0;
        color: #101820;
        font-size: clamp(44px, 5vw, 78px);
        line-height: 0.98;
        font-weight: 500;
        letter-spacing: -1.8px;
    }

    .projects-db-top p {
        margin: 0;
        color: #66717d;
        font-size: 17px;
        line-height: 1.85;
    }

.projects-db-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 42px;
}

.projects-db-filter-btn {
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16,24,32,0.14);
    background: #ffffff;
    color: #101820;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

    .projects-db-filter-btn:hover,
    .projects-db-filter-btn.active {
        background: #101820;
        color: #ffffff;
        border-color: #101820;
        transform: translateY(-3px);
    }

.projects-db-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.projects-db-card {
    background: #ffffff;
    border: 1px solid rgba(16,24,32,0.10);
    box-shadow: 0 30px 95px rgba(16,24,32,0.12);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .projects-db-card:hover {
        transform: translateY(-14px);
        box-shadow: 0 46px 125px rgba(16,24,32,0.18);
    }

.projects-db-img {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #101820;
}

    .projects-db-img img,
    .projects-db-img-btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1.02);
        transition: transform 0.75s ease;
    }

.projects-db-card:hover .projects-db-img img,
.projects-db-card:hover .projects-db-img-btn img {
    transform: scale(1.12);
}

.projects-db-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.62), rgba(0,0,0,0.14)), linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.82) 100%);
    pointer-events: none;
}

.projects-db-img-btn {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

    .projects-db-img-btn > span {
        position: absolute;
        top: 26px;
        right: 26px;
        z-index: 4;
        padding: 11px 15px;
        background: rgba(16,24,32,0.88);
        color: #ffffff;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .projects-db-img-btn:hover > span {
        opacity: 1;
        transform: translateY(0);
    }

.projects-db-overlay {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 3;
}

    .projects-db-overlay span {
        display: inline-flex;
        margin-bottom: 14px;
        padding: 10px 15px;
        background: linear-gradient(135deg, #f5b041, #d89525);
        color: #101820;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .projects-db-overlay h3 {
        max-width: 680px;
        margin: 0;
        color: #ffffff;
        font-size: clamp(32px, 3.5vw, 54px);
        line-height: 1.02;
        font-weight: 650;
        letter-spacing: -1px;
    }

    .projects-db-overlay p {
        margin: 12px 0 0;
        color: rgba(255,255,255,0.82);
        font-size: 17px;
    }

.projects-db-body {
    padding: 34px;
}

    .projects-db-body > p {
        margin: 0;
        color: #66717d;
        font-size: 16px;
        line-height: 1.8;
    }

.projects-db-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
    border-top: 1px solid rgba(16,24,32,0.10);
}

    .projects-db-meta div {
        padding-top: 20px;
    }

        .projects-db-meta div + div {
            padding-left: 22px;
            border-left: 1px solid rgba(16,24,32,0.10);
        }

    .projects-db-meta small {
        display: block;
        margin-bottom: 8px;
        color: #d89525;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 2.2px;
        text-transform: uppercase;
    }

    .projects-db-meta strong {
        display: block;
        color: #101820;
        font-size: 16px;
        line-height: 1.4;
    }

.projects-db-no-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #26313b;
    color: rgba(255,255,255,0.75);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.projects-db-empty {
    grid-column: 1 / -1;
    padding: 70px;
    background: #ffffff;
    border: 1px solid rgba(16,24,32,0.10);
    text-align: center;
}

    .projects-db-empty h3 {
        margin: 0;
        color: #101820;
        font-size: 34px;
    }

    .projects-db-empty p {
        margin: 14px 0 0;
        color: #66717d;
    }

@media (max-width: 992px) {
    .projects-db-top {
        grid-template-columns: 1fr;
    }

    .projects-db-grid {
        grid-template-columns: 1fr;
    }

    .projects-db-img {
        height: 460px;
    }
}

@media (max-width: 650px) {
    .projects-db-hero-content,
    .projects-db-wrap {
        width: min(100% - 30px, 1240px);
    }

        .projects-db-hero-content h1 {
            font-size: 46px;
        }

    .projects-db-page {
        padding: 85px 0;
    }

    .projects-db-img {
        height: 340px;
    }

    .projects-db-overlay {
        left: 22px;
        right: 22px;
        bottom: 24px;
    }

        .projects-db-overlay h3 {
            font-size: 32px;
        }

    .projects-db-body {
        padding: 26px;
    }
}

/* =========================================================
   FIX PROJECTS HERO IMAGE VISIBILITY
========================================================= */

.projects-db-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #101820;
}

.projects-db-hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(16,24,32,0.82) 0%, rgba(16,24,32,0.45) 48%, rgba(16,24,32,0.12) 100%), url('/images/projects/projects-hero-clean-4k1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.03);
}

.projects-db-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(180deg, transparent, rgba(16,24,32,0.95));
    z-index: 1;
    pointer-events: none;
}

.projects-db-hero-content {
    position: relative;
    z-index: 3;
}

/* =========================================================
   PROJECTS HERO FULL SCREEN FIX
========================================================= */

.projects-db-hero {
    min-height: 100vh !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    background: #101820 !important;
    overflow: hidden !important;
}

.projects-db-hero-bg {
    position: absolute !important;
    inset: 0 !important;
    background-image: linear-gradient(90deg, rgba(16,24,32,0.84) 0%, rgba(16,24,32,0.46) 48%, rgba(16,24,32,0.12) 100%), url('/images/projects/projects-hero-clean-4k1.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transform: scale(1.03) !important;
}

.projects-db-hero-content {
    position: relative !important;
    z-index: 3 !important;
    width: min(1240px, calc(100% - 56px)) !important;
    margin: 0 auto !important;
    padding-top: 70px !important;
}

    .projects-db-hero-content h1 {
        max-width: 1120px !important;
        font-size: clamp(62px, 7vw, 112px) !important;
        line-height: 0.95 !important;
    }

    .projects-db-hero-content p {
        max-width: 780px !important;
        font-size: 21px !important;
        line-height: 1.8 !important;
    }

.projects-db-page {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .projects-db-hero {
        min-height: 100svh !important;
        height: auto !important;
        padding: 140px 0 80px !important;
    }

    .projects-db-hero-content h1 {
        font-size: 48px !important;
    }

    .projects-db-hero-content p {
        font-size: 16px !important;
    }
}
/* =========================================================
   NEWS HERO FULL SCREEN FIX
========================================================= */

.news-db-hero {
    min-height: 100vh !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    background: #101820 !important;
    overflow: hidden !important;
}

.news-db-hero-bg {
    position: absolute !important;
    inset: 0 !important;
    background-image: linear-gradient(90deg, rgba(16,24,32,0.86) 0%, rgba(16,24,32,0.52) 48%, rgba(16,24,32,0.16) 100%), url('/images/news/news-hero-clean-4k.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transform: scale(1.03) !important;
}

.news-db-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(180deg, transparent, rgba(16,24,32,0.95));
    z-index: 1;
    pointer-events: none;
}

.news-db-hero-content {
    position: relative !important;
    z-index: 3 !important;
    width: min(1240px, calc(100% - 56px)) !important;
    margin: 0 auto !important;
    padding-top: 70px !important;
}

    .news-db-hero-content h1 {
        max-width: 1120px !important;
        font-size: clamp(62px, 7vw, 112px) !important;
        line-height: 0.95 !important;
        letter-spacing: -2.5px !important;
    }

    .news-db-hero-content p {
        max-width: 780px !important;
        font-size: 21px !important;
        line-height: 1.8 !important;
    }

.news-db-page {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .news-db-hero {
        min-height: 100svh !important;
        height: auto !important;
        padding: 140px 0 80px !important;
    }

    .news-db-hero-content {
        width: min(100% - 30px, 1240px) !important;
    }

        .news-db-hero-content h1 {
            font-size: 46px !important;
        }

        .news-db-hero-content p {
            font-size: 16px !important;
        }
}


/* =========================================================
   GLOBAL HARPER STYLE HERO CARD FOR ALL INNER PAGES
========================================================= */

.projects-db-hero-content,
.news-db-hero-content,
.services-hero-panel,
.careers-hero-panel,
.contact-hero-panel {
    position: relative !important;
    z-index: 5 !important;
    width: min(920px, calc(100% - 48px)) !important;
    margin: 0 auto !important;
    padding: 58px 70px !important;
    text-align: center !important;
    background: rgba(16, 24, 32, 0.54) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34) !important;
    backdrop-filter: blur(5px) !important;
    animation: harperHeroCardIn 1.1s ease both !important;
}

    .projects-db-hero-content::before,
    .news-db-hero-content::before,
    .services-hero-panel::before,
    .careers-hero-panel::before,
    .contact-hero-panel::before {
        content: "";
        position: absolute;
        inset: 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        pointer-events: none;
        opacity: 0;
        animation: harperHeroBorderIn 1.2s ease 0.45s both;
    }

    .projects-db-hero-content span,
    .news-db-hero-content span,
    .services-hero-panel span,
    .careers-hero-panel span,
    .contact-hero-panel span {
        color: #f2a51f !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        letter-spacing: 4px !important;
        text-transform: uppercase !important;
        animation: harperHeroTextUp 0.9s ease 0.35s both !important;
    }

    .projects-db-hero-content h1,
    .news-db-hero-content h1,
    .services-hero-panel h1,
    .careers-hero-panel h1,
    .contact-hero-panel h1 {
        max-width: 100% !important;
        margin: 18px auto 0 !important;
        color: #ffffff !important;
        font-size: clamp(48px, 5.4vw, 82px) !important;
        line-height: 1.03 !important;
        font-weight: 400 !important;
        letter-spacing: 8px !important;
        text-transform: uppercase !important;
        animation: harperHeroTitleIn 1s ease 0.55s both !important;
    }

    .projects-db-hero-content p,
    .news-db-hero-content p,
    .services-hero-panel p,
    .careers-hero-panel p,
    .contact-hero-panel p {
        max-width: 720px !important;
        margin: 24px auto 0 !important;
        color: rgba(255, 255, 255, 0.78) !important;
        font-size: 17px !important;
        line-height: 1.8 !important;
        animation: harperHeroTextUp 0.9s ease 0.8s both !important;
    }

/* hero background थोडं cinematic */
.projects-db-hero-bg,
.news-db-hero-bg,
.services-custom-bg,
.careers-custom-bg,
.contact-custom-bg {
    animation: harperHeroImageZoom 8s ease-out both !important;
}

/* scroll indicator common */
.projects-db-hero::before,
.news-db-hero::before,
.services-custom-hero::before,
.careers-custom-hero::before,
.contact-custom-hero::before {
    content: "SCROLL";
    position: absolute;
    left: 50%;
    bottom: 54px;
    transform: translateX(-50%);
    z-index: 6;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.5px;
    animation: harperScrollFade 1.2s ease 1.2s both;
}

.projects-db-hero::after,
.news-db-hero::after,
.services-custom-hero::after,
.careers-custom-hero::after,
.contact-custom-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 6;
    width: 34px;
    height: 34px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.9);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.9);
    transform: translateX(-50%) rotate(45deg);
    animation: harperArrowMove 1.3s ease-in-out infinite;
}

/* full screen consistency */
.projects-db-hero,
.news-db-hero,
.services-custom-hero,
.careers-custom-hero,
.contact-custom-hero {
    min-height: 100vh !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

/* animations */
@keyframes harperHeroCardIn {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.96);
    }

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

@keyframes harperHeroBorderIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes harperHeroTextUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

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

@keyframes harperHeroTitleIn {
    from {
        opacity: 0;
        letter-spacing: 18px;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        letter-spacing: 8px;
        transform: translateY(0);
    }
}

@keyframes harperHeroImageZoom {
    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1.03);
    }
}

@keyframes harperScrollFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes harperArrowMove {
    0%, 100% {
        transform: translateX(-50%) rotate(45deg) translate(0, 0);
        opacity: 0.75;
    }

    50% {
        transform: translateX(-50%) rotate(45deg) translate(8px, 8px);
        opacity: 1;
    }
}

/* mobile */
@media (max-width: 768px) {
    .projects-db-hero,
    .news-db-hero,
    .services-custom-hero,
    .careers-custom-hero,
    .contact-custom-hero {
        height: auto !important;
        min-height: 100svh !important;
        padding: 140px 0 90px !important;
    }

    .projects-db-hero-content,
    .news-db-hero-content,
    .services-hero-panel,
    .careers-hero-panel,
    .contact-hero-panel {
        width: min(100% - 30px, 920px) !important;
        padding: 42px 26px !important;
    }

        .projects-db-hero-content h1,
        .news-db-hero-content h1,
        .services-hero-panel h1,
        .careers-hero-panel h1,
        .contact-hero-panel h1 {
            font-size: 38px !important;
            letter-spacing: 4px !important;
        }

        .projects-db-hero-content p,
        .news-db-hero-content p,
        .services-hero-panel p,
        .careers-hero-panel p,
        .contact-hero-panel p {
            font-size: 15px !important;
        }
}

/* =========================================================
   HARPER HERO FINAL PREMIUM FIX
========================================================= */

.harper-page-hero {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #101820 !important;
}

.harper-page-bg {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transform: scale(1.12);
    animation: harperBgPremiumZoom 8s ease forwards !important;
}

.harper-page-shade {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(90deg, rgba(16,24,32,0.18), rgba(16,24,32,0.03), rgba(16,24,32,0.16)), linear-gradient(180deg, rgba(16,24,32,0.22), rgba(16,24,32,0.08) 42%, rgba(16,24,32,0.50)) !important;
}

.harper-page-content {
    position: relative !important;
    z-index: 3 !important;
    width: min(1180px, calc(100% - 56px)) !important;
    margin: 0 auto !important;
    padding-top: 90px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.harper-page-eyebrow {
    display: block !important;
    margin-bottom: 24px !important;
    color: #f2a51f !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 5px !important;
    text-transform: uppercase !important;
    animation: harperEyebrowDrop 0.9s ease both !important;
}

.harper-page-card {
    width: min(920px, 100%) !important;
    min-height: 250px !important;
    padding: 56px 70px !important;
    background: rgba(16, 24, 32, 0.46) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    backdrop-filter: blur(4px) !important;
    box-shadow: 0 42px 120px rgba(0,0,0,0.28) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    text-align: center !important;
    animation: harperCardPremiumIn 1.1s cubic-bezier(.2,.8,.2,1) both !important;
}

    .harper-page-card h1 {
        margin: 0 !important;
        color: #ffffff !important;
        font-size: clamp(46px, 5.4vw, 84px) !important;
        line-height: 1.16 !important;
        font-weight: 400 !important;
        letter-spacing: 13px !important;
        text-transform: uppercase !important;
        text-shadow: 0 18px 45px rgba(0,0,0,0.32) !important;
    }

        .harper-page-card h1 span {
            display: block !important;
            opacity: 0;
            transform: translateY(22px);
            animation: harperTitleLineIn 0.9s ease forwards !important;
        }

            .harper-page-card h1 span:nth-child(1) {
                animation-delay: 0.35s !important;
            }

            .harper-page-card h1 span:nth-child(2) {
                animation-delay: 0.52s !important;
            }

            .harper-page-card h1 span:nth-child(3) {
                animation-delay: 0.69s !important;
            }

    .harper-page-card p {
        max-width: 760px !important;
        margin: 24px auto 0 !important;
        color: rgba(255,255,255,0.86) !important;
        font-size: 17px !important;
        line-height: 1.8 !important;
        letter-spacing: 0.4px !important;
        animation: harperSubtitleIn 0.9s ease 0.85s both !important;
    }

.harper-scroll-indicator {
    position: absolute !important;
    left: 50% !important;
    bottom: 28px !important;
    z-index: 4 !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    flex-direction: column !important;
    gap: 12px !important;
    color: #ffffff !important;
    animation: harperScrollIn 1s ease 1s both !important;
}

    .harper-scroll-indicator span {
        font-size: 11px !important;
        font-weight: 900 !important;
        letter-spacing: 3px !important;
        text-transform: uppercase !important;
    }

    .harper-scroll-indicator i {
        width: 34px !important;
        height: 34px !important;
        border-right: 1px solid rgba(255,255,255,0.9) !important;
        border-bottom: 1px solid rgba(255,255,255,0.9) !important;
        transform: rotate(45deg) !important;
        animation: harperArrowPremiumMove 1.4s ease-in-out infinite !important;
    }

/* old project/news hero hide if accidentally still present */
.projects-db-hero,
.news-db-hero {
    display: none !important;
}

@keyframes harperBgPremiumZoom {
    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1.02);
    }
}

@keyframes harperCardPremiumIn {
    from {
        opacity: 0;
        transform: translateY(58px) scale(0.96);
    }

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

@keyframes harperTitleLineIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

@keyframes harperEyebrowDrop {
    from {
        opacity: 0;
        transform: translateY(-22px);
    }

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

@keyframes harperSubtitleIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes harperScrollIn {
    from {
        opacity: 0;
        transform: translate(-50%, 22px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes harperArrowPremiumMove {
    0%, 100% {
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        transform: rotate(45deg) translate(8px, 8px);
    }
}

@media (max-width: 768px) {
    .harper-page-hero {
        height: 100svh !important;
        min-height: 100svh !important;
    }

    .harper-page-content {
        width: min(100% - 30px, 1180px) !important;
        padding-top: 70px !important;
    }

    .harper-page-card {
        padding: 42px 26px !important;
        min-height: 230px !important;
    }

        .harper-page-card h1 {
            font-size: 40px !important;
            letter-spacing: 7px !important;
            line-height: 1.22 !important;
        }

        .harper-page-card p {
            font-size: 15px !important;
        }
}

/* =========================================================
   HARPER HERO IMAGE RESTORE FINAL FIX
========================================================= */

.harper-page-hero {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #101820 !important;
}

.harper-page-bg {
    position: absolute !important;
    inset: 0 !important;
    background-image: var(--harperHeroImage) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transform: scale(1.12) !important;
    animation: harperBgPremiumZoom 8s ease forwards !important;
    z-index: 0 !important;
}

.harper-page-shade {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(90deg, rgba(16,24,32,0.18), rgba(16,24,32,0.03), rgba(16,24,32,0.16)), linear-gradient(180deg, rgba(16,24,32,0.22), rgba(16,24,32,0.08) 42%, rgba(16,24,32,0.50)) !important;
}

.harper-page-content {
    position: relative !important;
    z-index: 3 !important;
    width: min(1180px, calc(100% - 56px)) !important;
    margin: 0 auto !important;
    padding-top: 90px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.harper-page-card {
    width: min(920px, 100%) !important;
    min-height: 250px !important;
    padding: 56px 70px !important;
    background: rgba(16, 24, 32, 0.46) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    backdrop-filter: blur(4px) !important;
    box-shadow: 0 42px 120px rgba(0,0,0,0.28) !important;
    text-align: center !important;
}

    .harper-page-card h1 {
        margin: 0 !important;
        color: #ffffff !important;
        font-size: clamp(46px, 5.4vw, 84px) !important;
        line-height: 1.16 !important;
        font-weight: 400 !important;
        letter-spacing: 13px !important;
        text-transform: uppercase !important;
    }

        .harper-page-card h1 span {
            display: block !important;
        }

    .harper-page-card p {
        max-width: 760px !important;
        margin: 24px auto 0 !important;
        color: rgba(255,255,255,0.86) !important;
        font-size: 17px !important;
        line-height: 1.8 !important;
    }

.projects-db-hero,
.news-db-hero {
    display: none !important;
}

/* =========================================================
   SECURE ADMIN LOGIN PAGE
========================================================= */

.admin-login-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background: #101820;
    overflow: hidden;
}

.admin-login-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16,24,32,0.94), rgba(16,24,32,0.72)), url('/images/projects/projects-hero-clean-4k.png') center/cover no-repeat;
    transform: scale(1.08);
    animation: adminLoginZoom 8s ease forwards;
}

.admin-login-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 15%, rgba(216,149,37,0.22), transparent 32%), linear-gradient(180deg, rgba(16,24,32,0.2), rgba(16,24,32,0.85));
}

.admin-login-card {
    position: relative;
    z-index: 2;
    width: min(480px, 100%);
    padding: 42px;
    background: rgba(16, 24, 32, 0.72);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    box-shadow: 0 45px 130px rgba(0,0,0,0.42);
    animation: adminLoginCardIn 0.9s ease both;
}

.admin-login-brand span {
    display: block;
    margin-bottom: 14px;
    color: #d89525;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.admin-login-brand h1 {
    margin: 0;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 500;
}

.admin-login-brand p {
    margin: 16px 0 0;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.7;
}

.admin-login-form {
    margin-top: 32px;
}

.admin-login-field {
    margin-bottom: 18px;
}

    .admin-login-field label {
        display: block;
        margin-bottom: 9px;
        color: rgba(255,255,255,0.88);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .admin-login-field input {
        width: 100%;
        height: 56px;
        padding: 0 16px;
        border: 1px solid rgba(255,255,255,0.16);
        background: rgba(255,255,255,0.08);
        color: #ffffff;
        outline: none;
        font-size: 15px;
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

        .admin-login-field input::placeholder {
            color: rgba(255,255,255,0.42);
        }

        .admin-login-field input:focus {
            border-color: #d89525;
            box-shadow: 0 0 0 4px rgba(216,149,37,0.16);
        }

    .admin-login-field span,
    .admin-login-error {
        display: block;
        margin-top: 8px;
        color: #ffb4b4;
        font-size: 12px;
        font-weight: 700;
    }

        .admin-login-error ul {
            margin: 0 0 16px;
            padding-left: 18px;
        }

.admin-login-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 24px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 700;
}

    .admin-login-check input {
        width: 18px;
        height: 18px;
        accent-color: #d89525;
    }

.admin-login-btn {
    width: 100%;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: linear-gradient(135deg, #f5b041, #d89525);
    color: #101820;
    text-decoration: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .admin-login-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 45px rgba(216,149,37,0.26);
    }

.admin-login-note {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.52);
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

@keyframes adminLoginZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.02);
    }
}

@keyframes adminLoginCardIn {
    from {
        opacity: 0;
        transform: translateY(36px) scale(0.96);
    }

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

@media (max-width: 600px) {
    .admin-login-card {
        padding: 32px 24px;
    }

    .admin-login-brand h1 {
        font-size: 34px;
    }
}

/* =========================================================
   CAREER APPLY PAGE
========================================================= */

.career-apply-section {
    padding: 120px 0;
    background: radial-gradient(circle at 90% 10%, rgba(216,149,37,0.13), transparent 32%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 52%, #eee9df 100%);
}

.career-apply-wrap {
    width: min(1120px, calc(100% - 56px));
    margin: 0 auto;
}

.career-apply-head {
    max-width: 820px;
    margin-bottom: 46px;
}

    .career-apply-head span {
        display: block;
        margin-bottom: 14px;
        color: #d89525;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 3.5px;
        text-transform: uppercase;
    }

    .career-apply-head h2 {
        margin: 0;
        color: #101820;
        font-size: clamp(44px, 5vw, 78px);
        line-height: 0.98;
        font-weight: 500;
        letter-spacing: -1.8px;
    }

    .career-apply-head p {
        margin: 22px 0 0;
        color: #66717d;
        font-size: 17px;
        line-height: 1.85;
    }

.career-apply-success {
    margin-bottom: 26px;
    padding: 18px 22px;
    background: #101820;
    color: #ffffff;
    border-left: 5px solid #d89525;
    font-size: 14px;
    font-weight: 800;
}

.career-apply-form {
    padding: 42px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 32, 0.10);
    box-shadow: 0 34px 100px rgba(16, 24, 32, 0.12);
}

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

.career-field.full {
    grid-column: 1 / -1;
}

.career-field label {
    display: block;
    margin-bottom: 10px;
    color: #101820;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.career-field input,
.career-field textarea {
    width: 100%;
    border: 1px solid rgba(16, 24, 32, 0.14);
    background: #ffffff;
    color: #101820;
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.career-field input {
    height: 56px;
    padding: 0 16px;
}

.career-field textarea {
    resize: vertical;
    padding: 16px;
    line-height: 1.75;
}

    .career-field input:focus,
    .career-field textarea:focus {
        border-color: #d89525;
        box-shadow: 0 0 0 4px rgba(216, 149, 37, 0.12);
    }

.career-field span {
    display: block;
    margin-top: 8px;
    color: #dc3545;
    font-size: 12px;
    font-weight: 700;
}

.career-field small {
    display: block;
    margin-top: 8px;
    color: #66717d;
    font-size: 12px;
    line-height: 1.5;
}

.career-form-actions {
    display: flex;
    gap: 14px;
    margin-top: 34px;
}

.career-apply-btn,
.career-cancel-btn {
    min-height: 56px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    transition: all 0.28s ease;
}

.career-apply-btn {
    background: #101820;
    color: #ffffff;
}

.career-cancel-btn {
    background: #e9e5db;
    color: #101820;
}

    .career-apply-btn:hover,
    .career-cancel-btn:hover {
        background: #d89525;
        color: #101820;
        transform: translateY(-4px);
    }

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

    .career-apply-wrap {
        width: min(100% - 30px, 1120px);
    }

    .career-apply-form {
        padding: 30px 22px;
    }

    .career-form-grid {
        grid-template-columns: 1fr;
    }

    .career-form-actions {
        flex-direction: column;
    }

    .career-apply-btn,
    .career-cancel-btn {
        width: 100%;
    }
}

.careers-roles-apply {
    padding: 120px 0;
    background: radial-gradient(circle at 12% 12%, rgba(216,149,37,0.12), transparent 32%), linear-gradient(135deg, #f8f6f1 0%, #ffffff 52%, #eee9df 100%);
}

.careers-roles-wrap {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
}

.careers-roles-head {
    max-width: 820px;
    margin-bottom: 50px;
}

    .careers-roles-head span {
        display: block;
        margin-bottom: 14px;
        color: #d89525;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 3.5px;
        text-transform: uppercase;
    }

    .careers-roles-head h2 {
        margin: 0;
        color: #101820;
        font-size: clamp(44px, 5vw, 78px);
        line-height: 0.98;
        font-weight: 500;
        letter-spacing: -1.8px;
    }

    .careers-roles-head p {
        margin: 22px 0 0;
        color: #66717d;
        font-size: 17px;
        line-height: 1.85;
    }

.careers-roles-grid {
    display: grid;
    gap: 20px;
}

.career-role-card {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 26px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid rgba(16,24,32,0.10);
    box-shadow: 0 24px 80px rgba(16,24,32,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .career-role-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 38px 110px rgba(16,24,32,0.16);
    }

.career-role-number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #101820;
    color: #d89525;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.career-role-content span {
    display: block;
    margin-bottom: 10px;
    color: #d89525;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.career-role-content h3 {
    margin: 0;
    color: #101820;
    font-size: 30px;
    line-height: 1.12;
    font-weight: 650;
}

.career-role-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
}

    .career-role-meta p {
        margin: 0;
        padding: 8px 12px;
        background: #f0ede6;
        color: #66717d;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.2px;
        text-transform: uppercase;
    }

.career-apply-now-btn {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #101820;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.3px;
    text-transform: uppercase;
    transition: all 0.28s ease;
}

    .career-apply-now-btn:hover {
        background: #d89525;
        color: #101820;
        transform: translateY(-3px);
    }

.career-role-empty {
    padding: 60px;
    background: #ffffff;
    border: 1px solid rgba(16,24,32,0.10);
    text-align: center;
}

    .career-role-empty h3 {
        margin: 0;
        color: #101820;
        font-size: 30px;
    }

    .career-role-empty p {
        margin: 12px 0 0;
        color: #66717d;
    }

@media (max-width: 850px) {
    .career-role-card {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .career-apply-now-btn {
        width: 100%;
    }
}


/* =========================================================
   ADMIN CAREER APPLICATIONS
========================================================= */

.career-admin-table-card {
    overflow-x: auto;
}

.career-admin-table {
    min-width: 1180px;
}

.career-unread-row td {
    background: rgba(216, 149, 37, 0.055);
}

.career-status-pill,
.career-new-pill,
.career-no-resume {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.career-status-pill {
    background: #e9e5db;
    color: #101820;
}

    .career-status-pill.new {
        background: rgba(216, 149, 37, 0.18);
        color: #b8750f;
    }

    .career-status-pill.shortlisted {
        background: rgba(13, 110, 253, 0.12);
        color: #0d6efd;
    }

    .career-status-pill.interview {
        background: rgba(111, 66, 193, 0.12);
        color: #6f42c1;
    }

    .career-status-pill.selected {
        background: rgba(25, 135, 84, 0.12);
        color: #198754;
    }

    .career-status-pill.rejected {
        background: rgba(220, 53, 69, 0.12);
        color: #dc3545;
    }

.career-new-pill {
    margin-top: 8px;
    background: #101820;
    color: #ffffff;
}

.career-no-resume {
    background: #f0ede6;
    color: #66717d;
}

.career-status-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

    .career-status-form select {
        height: 34px;
        min-width: 130px;
        border: 1px solid rgba(16, 24, 32, 0.14);
        background: #ffffff;
        color: #101820;
        font-size: 11px;
        font-weight: 800;
        outline: none;
        padding: 0 10px;
    }

.career-admin-table td small {
    max-width: 260px;
}



.admin-stat-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.admin-action-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}



/* =========================================================
   ADMIN PREMIUM LOGOUT BUTTON
========================================================= */

.admin-logout-form {
    margin: 0;
}

.admin-logout-btn {
    min-height: 54px;
    padding: 0 28px;
    border: 1px solid rgba(16, 24, 32, 0.14);
    background: #101820;
    color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    box-shadow: 0 18px 45px rgba(16, 24, 32, 0.16);
    transition: all 0.28s ease;
}

    .admin-logout-btn:hover {
        background: #d89525;
        color: #101820;
        transform: translateY(-4px);
        box-shadow: 0 24px 60px rgba(216, 149, 37, 0.22);
    }

@media (max-width: 768px) {
    .admin-logout-btn {
        width: 100%;
    }

    .admin-logout-form {
        width: 100%;
    }
}

/* ADMIN TOP MENU */

.admin-top-menu {
    position: sticky;
    top: 0;
    z-index: 9000;
    padding: 14px 0;
    background: rgba(16, 24, 32, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 60px rgba(0,0,0,0.20);
}

.admin-top-menu-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.admin-top-brand {
    min-width: 190px;
    text-decoration: none;
}

    .admin-top-brand span {
        display: block;
        margin-bottom: 4px;
        color: #d89525;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .admin-top-brand strong {
        display: block;
        color: #ffffff;
        font-size: 18px;
        line-height: 1;
        font-weight: 800;
    }

.admin-top-nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .admin-top-nav a {
        min-height: 42px;
        padding: 0 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.74);
        text-decoration: none;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.7px;
        text-transform: uppercase;
    }

        .admin-top-nav a:hover,
        .admin-top-nav a.active {
            background: #d89525;
            color: #101820;
        }

.admin-top-logout {
    margin: 0;
}

    .admin-top-logout button {
        min-height: 42px;
        padding: 0 18px;
        border: 1px solid rgba(255,255,255,0.18);
        background: rgba(255,255,255,0.06);
        color: #ffffff;
        cursor: pointer;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.8px;
        text-transform: uppercase;
    }

        .admin-top-logout button:hover {
            background: #d89525;
            color: #101820;
            border-color: #d89525;
        }

.admin-page {
    padding-top: 80px;
}

@media (max-width: 900px) {
    .admin-top-menu-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-top-nav {
        width: 100%;
        flex-wrap: wrap;
    }

        .admin-top-nav a {
            flex: 1;
            min-width: 140px;
        }

    .admin-top-logout,
    .admin-top-logout button {
        width: 100%;
    }
}



/* ADMIN TOP MENU */

.admin-top-menu {
    position: sticky;
    top: 0;
    z-index: 9000;
    padding: 14px 0;
    background: rgba(16, 24, 32, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 60px rgba(0,0,0,0.20);
}

.admin-top-menu-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.admin-top-brand {
    min-width: 190px;
    text-decoration: none;
}

    .admin-top-brand span {
        display: block;
        margin-bottom: 4px;
        color: #d89525;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .admin-top-brand strong {
        display: block;
        color: #ffffff;
        font-size: 18px;
        line-height: 1;
        font-weight: 800;
    }

.admin-top-nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .admin-top-nav a {
        min-height: 42px;
        padding: 0 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.74);
        text-decoration: none;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.7px;
        text-transform: uppercase;
    }

        .admin-top-nav a:hover,
        .admin-top-nav a.active {
            background: #d89525;
            color: #101820;
        }

.admin-top-logout {
    margin: 0;
}

    .admin-top-logout button {
        min-height: 42px;
        padding: 0 18px;
        border: 1px solid rgba(255,255,255,0.18);
        background: rgba(255,255,255,0.06);
        color: #ffffff;
        cursor: pointer;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.8px;
        text-transform: uppercase;
    }

        .admin-top-logout button:hover {
            background: #d89525;
            color: #101820;
            border-color: #d89525;
        }

.admin-page {
    padding-top: 80px;
}

@media (max-width: 900px) {
    .admin-top-menu-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-top-nav {
        width: 100%;
        flex-wrap: wrap;
    }

        .admin-top-nav a {
            flex: 1;
            min-width: 140px;
        }

    .admin-top-logout,
    .admin-top-logout button {
        width: 100%;
    }
}

/* ADMIN LAYOUT FINAL FIX */

.admin-layout-body {
    margin: 0;
    background: #f8f6f1;
    color: #101820;
}

    .admin-layout-body .harper-header,
    .admin-layout-body .site-header,
    .admin-layout-body header {
        display: none !important;
    }

    .admin-layout-body main {
        min-height: 100vh;
    }

    .admin-layout-body .admin-page {
        padding-top: 70px !important;
    }