:root {
    --page-gutter: clamp(18px, 2vw, 40px);
    --navy: #11222e;
    --navy-2: #071822;
    --gold: #9d8253;
    --gold-2: #b2945c;
    --paper: #f9f8f6;
    --mist: #f4f6fb;
    --soft: #eef2fa;
    --muted: #6b7280;
    --shadow: 0 22px 55px rgba(17, 34, 46, 0.13);
    --shadow-2: 0 14px 34px rgba(17, 34, 46, 0.18);
    --radius: 18px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 105px;
}
body {
    margin: 0;
    line-height: 1.8;
    background: #fff;
    color: var(--navy);
}
/* =========================
   PRELOADER
========================= */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #eff1ea;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    overflow: hidden;
    animation: logoFloat 2.4s ease-in-out infinite;
}

.preloader-logo {
    width: min(540px, 78vw);
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    animation: logoFade 1.4s ease;
}

/* خط الضوء المائل */
.preloader-logo-wrap::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -25%;
    width: 18%;
    height: 180%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        rgba(30, 29, 29, 0.964) 100%
    );
    transform: skewX(-28deg) translateX(-220%);
    filter: blur(2px);
    z-index: 3;
    animation: shineSweep 2.2s ease-in-out infinite;
}

.preloader::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(
        circle,
        rgba(157, 130, 83, 0.18) 0%,
        rgba(157, 130, 83, 0.08) 35%,
        rgba(157, 130, 83, 0) 75%
    );
    border-radius: 50%;
    filter: blur(10px);
    animation: pulseGlow 2.6s ease-in-out infinite;
}

@keyframes shineSweep {
    0% {
        transform: skewX(-28deg) translateX(-220%);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: skewX(-28deg) translateX(650%);
        opacity: 0;
    }
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes logoFade {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .preloader-logo {
        width: min(340px, 82vw);
    }

    .preloader-logo-wrap {
        padding: 12px 14px;
    }
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container-max {
    width: min(1460px, calc(100% - (var(--page-gutter) * 2)));
    margin-inline: auto;
}
.page-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: 0.45s ease;
}
.page-loader span {
    width: 44px;
    height: 44px;
    border: 4px solid #e8edf3;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
}
.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding-top: 8px;
    /* display: flex; */
    /* justify-content: space-between; */
}
.top-note {
    text-align: center;
    font-size: 12px;
    color: #4d5963;
    height: 24px;
    line-height: 24px;
    background: rgba(255, 255, 255, 0.88);
}
.main-nav {
    width: 92%;
    height: 58px;
    margin: 18px auto 0;
    margin-top: 50px;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(239, 244, 249, 0.701);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 14px; */
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 14px 28px rgba(6, 20, 31, 0.18);
    direction: rtl;
}
.brand {
    margin-inline-start: auto;
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
    min-width: 128px;
}
.brand img {
    width: 120px;
    height: 42px;
    object-fit: contain;
}
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    height: 30px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #34424d;
    transition: 0.25s ease;
    background: #ffffffb1;
    color: var(--gold);
    box-shadow: 0 10px 22px rgba(17, 34, 46, 0.08);
}
.nav-links a:hover,
.nav-links a.active {
    background: #fff;
    color: var(--gold);
    box-shadow: 0 10px 22px rgba(17, 34, 46, 0.08);
}
.nav-cta {
    height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--gold);
    color: #fff;
    padding: 0 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    transition: 0.25s ease;
}
.nav-cta svg {
    width: 16px;
}
.nav-cta:hover {
    transform: translateY(-2px);
    background: #836b42;
}
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    gap: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 3px auto;
    border-radius: 999px;
    transition: 0.25s ease;
}
.section-pad-top {
    padding-top: 38px;
}
.hero-section {
    background: #fff;
}
.hero-section .container-max {
    width: min(1840px, calc(100% - 48px));
}
.hero-card {
    position: relative;
    height: 665px;
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 14px 45px rgba(17, 34, 46, 0.18);
    background: var(--navy);
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 15, 22, 0.05) 0%,
            rgba(7, 15, 22, 0.08) 33%,
            rgba(7, 15, 22, 0.42) 62%,
            rgba(7, 15, 22, 0.68) 100%
        ),
        linear-gradient(0deg, rgba(8, 20, 29, 0.35), rgba(8, 20, 29, 0.05) 45%);
}
.hero-content {
    position: absolute;
    right: 76px;
    bottom: 104px;
    width: min(520px, calc(100% - 120px));
    color: #fff;
    text-align: right;
}
.hero-content h1 {
    font-size: clamp(34px, 4.3vw, 58px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin: 0 0 20px;
}
.hero-content h1 span {
    display: block;
    color: #f4d28b;
}
.hero-content p {
    font-size: 17px;
    line-height: 2;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 520px;
}
.gold-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 46px;
    border-radius: 7px;
    background: var(--gold);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 13px 28px rgba(157, 130, 83, 0.3);
    transition: 0.25s ease;
}
.gold-btn:hover {
    transform: translateY(-3px);
    background: #846b3d;
}
.stats-strip {
    height: 112px;
    margin-top: 24px;
    border-radius: 18px;
    background: var(--navy-2);
    box-shadow: var(--shadow-2);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    overflow: hidden;
}
.stat-item {
    position: relative;
    text-align: center;
    color: #fff;
}

.stat-item strong {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;

    color: #f5cc7a;
    font-size: 29px;
    font-weight: 800;
    line-height: 1;

    direction: ltr;
}

.stat-item strong .counter {
    display: inline;
    margin: 0;

    color: #f5cc7a;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.inline-stat {
    flex-direction: row;
}

.inline-stat em {
    display: inline;
    margin: 0;

    color: #f5cc7a;
    font-size: inherit;
    font-weight: 800;
    font-style: normal;
    line-height: 1;
}

.stat-item .stat-label {
    display: block;
    margin-top: 11px;

    color: #ffffff !important;
    opacity: 1 !important;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.inline-stat {
    flex-direction: row;
}

.inline-stat em {
    margin: 0;
    color: #f5cc7a;
    font-size: inherit;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
}
.about-section {
    padding: 80px 0 56px;
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 74px;
    align-items: center;
}
.about-media {
    position: relative;
}
.about-media .media-blob {
    position: absolute;
    width: 180px;
    height: 160px;
    border-radius: 12px;
    background: #efefed;
    left: -28px;
    bottom: -30px;
    z-index: 0;
}
.about-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 490px;
    border-radius: 4px;
    box-shadow: 0 18px 35px rgba(17, 34, 46, 0.14);
    object-fit: cover;
}
.eyebrow {
    display: block;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}
.about-content h2 {
    font-size: 31px;
    font-weight: 700;
    line-height: 1.55;
    margin: 0 0 18px;
}
.about-content p {
    color: #596675;
    font-size: 15.5px;
    line-height: 2.1;
    margin: 0 0 22px;
}
.check-list {
    padding: 0;
    margin: 0 0 26px;
    list-style: none;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 10px 0;
    color: #3e4b56;
    font-size: 15px;
}
.check-list svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex: none;
}
.outline-btn {
    display: inline-flex;
    border: 1.5px solid var(--navy);
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s;
}
.outline-btn:hover {
    background: var(--navy);
    color: #fff;
}
.partners-section {
    padding: 42px 0 56px;
    background: #fff;
    border-top: 1px solid #f1f1f1;
}
.section-mini-title {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    margin: 0 0 35px;
}
.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}
.partners-row img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: saturate(0.96);
}
.specialties-section {
    padding: 46px 0 80px;
    background: #eef3ff;
}
.section-heading {
    text-align: center;
    margin-bottom: 45px;
}
.section-heading span {
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}
.section-heading h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
}
.section-heading p {
    margin: 7px 0 0;
    color: #697584;
    font-size: 16px;
}
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.specialty-card {
    min-height: 220px;
    border-radius: 12px;
    padding: 36px 26px;
    text-align: right;
    box-shadow: 0 16px 34px rgba(17, 34, 46, 0.1);
    transition: 0.3s ease;
}
.specialty-card:hover {
    transform: translateY(-8px);
}
.specialty-card svg {
    width: 32px;
    height: 32px;
    margin-bottom: 28px;
}
.specialty-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
}
.specialty-card p {
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
}
.dark-card {
    background: var(--navy-2);
    color: #fff;
}
.dark-card svg {
    color: #f5c777;
}
.dark-card p {
    color: #c8d3dc;
}
.light-card {
    background: #e9edf4;
    color: var(--navy);
}
.light-card svg {
    color: var(--navy);
}
.light-card p {
    color: #596675;
}
.projects-section {
    padding: 70px 0;
    background: #fff;
}
.section-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 34px;
}
.section-title-row h2 {
    font-size: 36px;
    font-weight: 500;
    margin: 0;
}
.section-title-row p {
    color: #7a8490;
    margin: 6px 0 0;
}
.view-all {
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.view-all svg {
    width: 16px;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
.project-card {
    position: relative;
    height: 390px;
    border-radius: 10px;
    overflow: hidden;
    background: #0c1820;
    box-shadow: 0 12px 28px rgba(17, 34, 46, 0.18);
    transition: 0.35s ease;
}
.project-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 22px 48px rgba(17, 34, 46, 0.24);
}
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.55s ease;
}
.project-card:hover img {
    transform: scale(1.06);
}
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(4, 13, 20, 0.9) 0%,
        rgba(4, 13, 20, 0.74) 24%,
        rgba(4, 13, 20, 0.2) 60%,
        rgba(4, 13, 20, 0.02) 100%
    );
}
.project-info {
    position: absolute;
    right: 28px;
    left: 28px;
    bottom: 24px;
    color: #fff;
}
.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.project-tags span {
    background: rgba(157, 130, 83, 0.85);
    font-size: 12px;
    border-radius: 4px;
    padding: 4px 12px;
}
.project-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 4px;
    direction: ltr;
    text-align: right;
}
.project-info p {
    font-size: 14px;
    color: #d7dfe6;
    margin: 0 0 18px;
}
.project-info a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--navy);
    border-radius: 4px;
    height: 40px;
    padding: 0 24px;
    font-weight: 700;
    font-size: 14px;
}
.why-section {
    background: var(--navy-2);
    padding: 85px 0 95px;
    color: #fff;
}
.dark-heading {
    text-align: center;
    margin-bottom: 54px;
}
.dark-heading h2 {
    font-size: 37px;
    font-weight: 400;
    margin: 0;
}
.dark-heading span {
    display: block;
    width: 86px;
    height: 3px;
    background: var(--gold);
    margin: 18px auto 0;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px 72px;
}
.why-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 14px;
    align-items: start;
}
.why-item svg,
.why-item img {
    grid-row: 1/3;
    width: 24px;
    height: 24px;
    margin-top: 5px;
}
.why-item svg {
    color: #e2be72;
}
.why-item img {
    object-fit: contain;
}
.why-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 7px;
    color: #fff;
}
.why-item p {
    margin: 0;
    color: #8fa0ad;
    font-size: 13.2px;
    line-height: 1.9;
}
.location-section {
    padding: 72px 0;
    background: #fff;

    /* Prevent horizontal page scrolling from map overlays. */
    overflow-x: hidden;
    overflow-x: clip;
}
.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 76px;
    align-items: center;
}
.location-text,
.map-card {
    min-width: 0;
}
.location-text h2 {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 18px;
}
.location-text p {
    font-size: 16px;
    color: #596675;
    line-height: 2.05;
    margin: 0 0 20px;
    overflow-wrap: anywhere;
}
.gold-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.gold-list li {
    position: relative;
    padding-right: 22px;
    margin: 9px 0;
    color: #34424d;
}
.gold-list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}
.map-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
}
.map-card > img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 22px 38px rgba(17, 34, 46, 0.22);
}
.map-title {
    position: absolute;
    right: 28px;
    top: 25px;
    color: #fff;
}
.map-title span {
    font-size: 14px;
    color: #e7c273;
    display: block;
}
.map-title strong {
    font-size: 22px;
}
.roi-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    width: 160px;
    height: 105px;
    border-radius: 6px;
    background: var(--gold);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: 0 17px 30px rgba(157, 130, 83, 0.25);
}
.roi-badge b {
    font-size: 30px;
    line-height: 1;
}
.roi-badge span {
    font-size: 12px;
    margin-top: -18px;
}

@media (max-width: 820px) {
    .location-section {
        padding: 58px 0;
    }

    .location-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .location-text h2 {
        font-size: 28px;
    }

    .map-title {
        right: 20px;
        top: 20px;
    }

    .map-title strong {
        font-size: 19px;
    }

    .roi-badge {
        left: 12px;
        bottom: 12px;
        width: 145px;
        height: 92px;
    }

    .roi-badge b {
        font-size: 26px;
    }
}

@media (max-width: 520px) {
    .location-section {
        padding: 48px 0;
    }

    .location-grid {
        gap: 30px;
    }

    .location-text h2 {
        font-size: 25px;
    }

    .location-text p {
        font-size: 14px;
        line-height: 1.95;
    }

    .map-title {
        right: 15px;
        top: 15px;
    }

    .map-title span {
        font-size: 11px;
    }

    .map-title strong {
        font-size: 15px;
    }

    .roi-badge {
        left: 10px;
        bottom: 10px;
        width: 125px;
        height: 78px;
    }

    .roi-badge b {
        font-size: 22px;
    }

    .roi-badge span {
        font-size: 10px;
        margin-top: -12px;
    }
}

.showcase-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--navy);
}
.showcase-section > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 20, 30, 0.16),
        rgba(7, 20, 30, 0.4),
        rgba(7, 20, 30, 0.78)
    );
}
.showcase-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: right;
    color: #fff;
    padding-left: 5%;
    max-width: 1180px;
}
.showcase-content span {
    font-size: 18px;
    color: #e5c579;
    font-weight: 700;
}
.showcase-content h2 {
    font-size: 48px;
    line-height: 1;
    margin: 12px 0 18px;
    font-weight: 800;
    direction: ltr;
}
.showcase-content p {
    max-width: 620px;
    font-size: 16px;
    color: #e7edf3;
    line-height: 2;
    margin: 0 0 24px;
}
.features-section {
    padding: 75px 0 86px;
    background: #f7f8fc;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.image-tile {
    position: relative;
    height: 150px;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(17, 34, 46, 0.13);
}
.image-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}
.image-tile:hover img {
    transform: scale(1.07);
}
.image-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(7, 20, 30, 0.68),
        rgba(7, 20, 30, 0.08)
    );
}
.image-tile span {
    position: absolute;
    right: 18px;
    bottom: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}
.news-section {
    padding: 74px 0 90px;
    background: #eef3ff;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(17, 34, 46, 0.08);
    transition: 0.3s ease;
}
.news-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}
.news-card img {
    height: 190px;
    width: 100%;
    object-fit: cover;
}
.news-body {
    padding: 22px;
}
.news-body time {
    display: block;
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 10px;
}
.news-body h3 {
    font-size: 17px;
    line-height: 1.65;
    font-weight: 700;
    margin: 0 0 8px;
}
.news-body p {
    font-size: 13.5px;
    color: #687480;
    line-height: 1.9;
    margin: 0;
}
.news-card-link {
    display: contents;
    color: inherit;
    text-decoration: none;
}
.news-page-hero {
    padding-bottom: 18px;
    background:
        radial-gradient(circle at top left, rgba(231, 194, 115, 0.16), transparent 30%),
        #fff;
}
.news-page-hero .section-heading {
    max-width: 760px;
    margin-inline: auto;
}
.news-page-hero .section-heading span,
.news-detail-heading time,
.news-related-card time {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
}
.news-page-hero .section-heading h1 {
    margin: 8px 0 10px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 54px);
}
.news-page-hero .section-heading p {
    margin: 0;
    color: #72808a;
    line-height: 1.9;
}
.news-listing-section {
    padding-top: 34px;
}
.news-empty-state {
    grid-column: 1 / -1;
    padding: 48px 24px;
    text-align: center;
    border: 1px solid #e8edf2;
    border-radius: 18px;
    background: #fff;
}
.news-empty-state h2 {
    margin: 0 0 8px;
    color: var(--navy);
}
.news-empty-state p {
    margin: 0;
    color: #72808a;
}
.front-pagination {
    margin-top: 34px;
}
.news-detail-hero {
    padding-bottom: 48px;
    background:
        linear-gradient(180deg, rgba(17, 34, 46, 0.04), rgba(255, 255, 255, 0)),
        #fff;
}
.news-detail-heading {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
}
.news-detail-heading .text-link {
    margin-bottom: 18px;
    justify-content: center;
}
.news-detail-heading h1 {
    margin: 12px 0 14px;
    color: var(--navy);
    font-size: clamp(32px, 4.6vw, 58px);
    line-height: 1.35;
}
.news-detail-heading p {
    margin: 0 auto;
    max-width: 760px;
    color: #6f7d86;
    font-size: 17px;
    line-height: 1.9;
}
.news-detail-cover {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(17, 34, 46, 0.18);
}
.news-detail-cover img {
    display: block;
    width: 100%;
    height: clamp(300px, 48vw, 620px);
    object-fit: cover;
}
.news-detail-content-section {
    padding: 22px 0 78px;
    background: #fff;
}
.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 40px;
    align-items: start;
}
.news-detail-content {
    color: #334552;
    font-size: 17px;
    line-height: 2.15;
    padding: 34px;
    border: 1px solid #e8edf2;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(17, 34, 46, 0.06);
}
.news-related {
    position: sticky;
    top: 110px;
    padding: 24px;
    border: 1px solid #e8edf2;
    border-radius: 20px;
    background: #f9fbfd;
}
.news-related h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 21px;
}
.news-related-list {
    display: grid;
    gap: 14px;
}
.news-related-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    color: inherit;
    text-decoration: none;
    padding: 10px;
    border-radius: 14px;
    background: #fff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.news-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(17, 34, 46, 0.1);
}
.news-related-card img {
    width: 92px;
    height: 72px;
    border-radius: 11px;
    object-fit: cover;
}
.news-related-card h3 {
    margin: 5px 0 0;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.55;
}
@media (max-width: 980px) {
    .news-detail-layout {
        grid-template-columns: 1fr;
    }
    .news-related {
        position: static;
    }
}
@media (max-width: 560px) {
    .news-detail-heading {
        text-align: right;
    }
    .news-detail-heading .text-link {
        justify-content: flex-start;
    }
    .news-detail-content {
        padding: 22px 18px;
        font-size: 15px;
    }
    .news-related-card {
        grid-template-columns: 78px minmax(0, 1fr);
    }
    .news-related-card img {
        width: 78px;
        height: 64px;
    }
}
.contact-section {
    padding: 90px 0;
    background: #e6e8ee;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.contact-form {
    background: #fff;
    border-radius: 9px;
    padding: 36px 34px;
    box-shadow: 0 26px 55px rgba(17, 34, 46, 0.15);
}
.contact-form label {
    display: block;
    font-size: 13px;
    color: #364553;
    margin-bottom: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    display: block;
    width: 100%;
    margin-top: 6px;
    border: 0;
    background: #f1f4fc;
    height: 42px;
    padding: 0 14px;
    font-family: inherit;
    color: var(--navy);
    outline: none;
}
.contact-form textarea {
    height: auto;
    resize: vertical;
    padding-top: 12px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 2px rgba(157, 130, 83, 0.25);
}
.contact-form button {
    width: 100%;
    height: 44px;
    background: #071822;
    color: #fff;
    border: 0;
    border-radius: 3px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
}
.contact-info h2 {
    font-size: 31px;
    font-weight: 500;
    margin: 0 0 12px;
}
.contact-info p {
    color: #596675;
    line-height: 2;
    margin: 0 0 34px;
}
.contact-list {
    display: grid;
    gap: 18px;
}
.contact-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #263542;
}
.contact-list i,
.contact-list svg {
    width: 42px;
    height: 42px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 10px;
    color: var(--gold);
    flex: none;
}
.contact-list b {
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
}
.site-footer {
    background: var(--navy-2);
    color: #d9e2e8;
    padding: 62px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 54px;
}
.footer-brand img {
    width: 155px;
    margin-bottom: 18px;
}
.footer-brand p,
.newsletter p {
    font-size: 13.5px;
    color: #9badb9;
    line-height: 2;
    margin: 0 0 18px;
}
.social-links {
    display: flex;
    gap: 10px;
}
.social-links a {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
}
.social-links svg {
    width: 15px;
    height: 15px;
    display: block;
}
.footer-col h3,
.newsletter h3 {
    font-size: 15px;
    color: #e7c273;
    margin: 0 0 18px;
}
.footer-col a {
    display: block;
    color: #b9c4cb;
    font-size: 13.5px;
    margin: 8px 0;
}
.newsletter form {
    height: 38px;
    display: flex;
    background: #1c3341;
    border-radius: 3px;
    overflow: hidden;
}
.newsletter input {
    flex: 1;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0 14px;
    outline: 0;
    font-family: inherit;
}
.newsletter button {
    width: 86px;
    border: 0;
    background: var(--gold);
    color: #fff;
    font-family: inherit;
    font-weight: 700;
}
.copyright {
    text-align: center;
    color: #71828e;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: min(50px, 8vw) auto 0;
    padding-top: 18px;
    width: min(1180px, calc(100% - 48px));
}
.footer-credit {
    width: min(1180px, calc(100% - 48px));
    margin: 14px auto 0;
    text-align: center;
    color: #8a9aa6;
    font-size: 12px;
    display: grid;
    justify-items: center;
    gap: 8px;
}
.footer-credit-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 7px;
    line-height: 1.8;
}
.footer-credit a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #8a9aa6;
    font-size: 12px;
    text-decoration: none;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}
.footer-credit-phone {
    min-height: 32px;
    padding: 6px 13px;
    border: 1px solid rgba(231, 194, 115, 0.28);
    border-radius: 999px;
    background: rgba(231, 194, 115, 0.07);
}
.footer-credit-company {
    color: var(--gold);
}
.footer-credit-company:hover {
    background: transparent;
    border-color: transparent;
}
.footer-credit-phone span {
    color: #8a9aa6;
}
.footer-credit a:hover {
    color: var(--gold);
    transform: translateY(-1px);
    border-color: rgba(231, 194, 115, 0.52);
    background: rgba(231, 194, 115, 0.11);
}
.footer-credit strong {
    color: var(--gold);
    letter-spacing: 0.08em;
}
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1500px) {
    .hero-content {
        right: 100px;
        bottom: 112px;
    }
    .hero-content h1 {
        font-size: 64px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .project-card {
        height: 440px;
    }
    .about-media img {
        max-width: 560px;
    }
    .features-grid {
        gap: 28px;
    }
    .image-tile {
        height: 170px;
    }
}
@media (max-width: 1050px) {
    .main-nav {
        width: 92%;
        padding: 0 16px;
    }
    .nav-links a {
        padding: 0 13px;
    }
    .hero-card {
        height: 590px;
    }
    .about-grid,
    .location-grid,
    .contact-grid {
        gap: 46px;
    }
    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
    }
    .showcase-content {
        align-items: flex-end;
    }
    .showcase-content p {
        max-width: 540px;
    }
    .brand {
        min-width: 125px;
    }
    .brand img {
        width: 124px;
    }
}
@media (max-width: 820px) {
    .container-max {
        width: min(100% - 28px, 720px);
    }
    .hero-section .container-max {
        width: calc(100% - 20px);
    }
    .site-header {
        position: absolute;
    }
    .main-nav {
        height: auto;
        min-height: 64px;
        align-items: center;
        flex-wrap: wrap;
        border-radius: 16px;
        margin-top: 8px;
    }
    .brand {
        order: 1;
        margin-inline-start: 0;
    }
    .nav-toggle {
        display: block;
        order: 2;
        margin-inline-start: auto;
    }
    .nav-cta {
        order: 3;
        margin-inline-start: 0;
    }
    .nav-links {
        order: 4;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 14px;
        padding: 12px;
        margin: 0 0 12px;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        width: 100%;
        justify-content: center;
        height: 42px;
    }
    .hero-section {
        padding-top: 26px;
    }
    .hero-card {
        height: 610px;
        border-radius: 16px;
    }
    .hero-img {
        object-position: center;
    }
    .hero-shade {
        background: linear-gradient(
            0deg,
            rgba(7, 18, 27, 0.82),
            rgba(7, 18, 27, 0.2) 58%,
            rgba(7, 18, 27, 0.12)
        );
    }
    .hero-content {
        right: 24px;
        left: 24px;
        bottom: 42px;
        width: auto;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 15px;
        line-height: 1.9;
    }
    .stats-strip {
        height: auto;
        grid-template-columns: repeat(2, 1fr);
        padding: 22px 0;
        gap: 22px;
    }
    .stat-item:nth-child(2)::after {
        display: none;
    }
    .about-section {
        padding-top: 56px;
    }
    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-media img {
        max-width: 100%;
    }
    .partners-row {
        gap: 22px;
    }
    .partners-row img {
        height: 50px;
    }
    .section-title-row {
        display: block;
    }
    .view-all {
        margin-top: 15px;
    }
    .projects-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    .project-card {
        height: 420px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .showcase-section {
        height: 540px;
    }
    .showcase-overlay {
        background: linear-gradient(
            0deg,
            rgba(7, 20, 30, 0.88),
            rgba(7, 20, 30, 0.35)
        );
    }
    .showcase-content {
        align-items: flex-end;
        padding-inline: 24px;
    }
    .showcase-content h2 {
        font-size: 38px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        order: -1;
    }
    .contact-grid {
        gap: 38px;
    }
}
@media (max-width: 560px) {
    .top-note {
        font-size: 9px;
    }
    .main-nav {
        width: 92;
        padding: 10px;
    }
    .brand img {
        width: 112px;
    }
    .nav-cta {
        height: 34px;
        padding: 0 12px;
        font-size: 12px;
    }
    .hero-card {
        height: 560px;
    }
    .hero-content {
        right: 18px;
        left: 18px;
    }
    .hero-content h1 {
        font-size: 31px;
    }
    .stats-strip {
        grid-template-columns: 1fr 1fr;
        border-radius: 14px;
    }
    .stat-item strong {
        font-size: 24px;
    }
    .about-content h2,
    .location-text h2,
    .contact-info h2 {
        font-size: 25px;
    }
    .specialty-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    .specialty-card {
        min-height: 190px;
    }
    .section-heading h2,
    .section-title-row h2 {
        font-size: 27px;
    }
    .project-card {
        height: 380px;
    }
    .project-info {
        right: 18px;
        left: 18px;
    }
    .project-info h3 {
        font-size: 24px;
    }
    .news-card img {
        height: 170px;
    }
    .contact-form {
        padding: 24px 20px;
    }
    .footer-brand img {
        width: 135px;
    }
    .copyright {
        width: calc(100% - 28px);
    }
}

/* =========================================================
   ABOUT PAGE — built from real HTML/CSS, no screenshot sections
   ========================================================= */
.about-page {
    background: #fff;
}
.about-page-shell {
    width: min(1500px, calc(100% - (var(--page-gutter) * 2)));
    margin-inline: auto;
}
.about-hero {
    padding-top: 38px;
    background: #fff;
}
.about-hero-card {
    position: relative;
    height: 500px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--navy-2);
    box-shadow: 0 16px 42px rgba(17, 34, 46, 0.18);
}
.about-mosaic {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 5px;
    transform: scale(1.02);
}
.about-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.02);
}
.about-mosaic img:nth-child(1),
.about-mosaic img:nth-child(8) {
    grid-column: span 2;
}
.about-mosaic img:nth-child(4),
.about-mosaic img:nth-child(11) {
    grid-column: span 2;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 24, 34, 0.48), rgba(7, 24, 34, 0.74)),
        linear-gradient(0deg, rgba(7, 24, 34, 0.62), rgba(7, 24, 34, 0.18));
    backdrop-filter: blur(0.35px);
}
.about-hero-copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 100px 24px 42px;
}
.about-hero-copy > span {
    font-size: 14px;
    color: #e4c683;
    font-weight: 700;
    margin-bottom: 4px;
}
.about-hero-copy h1 {
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 700;
}
.about-hero-copy p {
    max-width: 760px;
    margin: 0;
    color: #d7e0e6;
    font-size: 17px;
    line-height: 2;
}
.about-intro {
    padding: 88px 0 50px;
    background: #fff;
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 84px;
    align-items: center;
}
.about-intro-media {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.about-intro-frame {
    position: absolute;
    width: 72%;
    height: 82%;
    left: 18px;
    top: 42px;
    border: 1px solid rgba(157, 130, 83, 0.35);
    border-radius: 4px;
}
.about-intro-media img {
    position: relative;
    width: 86%;
    height: 390px;
    object-fit: cover;
    object-position: center;
    border-radius: 3px;
    box-shadow: 0 20px 50px rgba(17, 34, 46, 0.16);
    margin-right: auto;
}
.about-intro-copy {
    max-width: 660px;
}
.about-kicker {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}
.about-intro-copy h2,
.about-why-copy h2 {
    font-size: clamp(29px, 3vw, 42px);
    line-height: 1.45;
    font-weight: 500;
    margin: 0 0 18px;
}
.about-intro-copy p,
.about-why-copy > p {
    font-size: 15.5px;
    line-height: 2.05;
    color: #5e6b77;
    margin: 0 0 15px;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
}
.text-link svg {
    width: 17px;
}
.about-contact-numbers-section {
    padding: 8px 0 58px;
    background: #fff;
}
.about-contact-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
    gap: 28px;
    align-items: center;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(245, 199, 119, 0.18), transparent 34%),
        linear-gradient(135deg, #0f2230, #132f42);
    box-shadow: 0 22px 55px rgba(17, 34, 46, 0.16);
}
.about-contact-copy span {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-contact-copy h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.45;
    font-weight: 600;
}
.about-contact-copy p {
    margin: 0;
    color: #c9d4dc;
    font-size: 14px;
    line-height: 1.9;
}
.about-phone-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.about-phone-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}
.about-phone-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(245, 199, 119, 0.45);
}
.about-phone-item svg {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 11px;
    color: var(--gold);
    background: rgba(245, 199, 119, 0.13);
    box-sizing: border-box;
}
.about-phone-item span {
    color: #b9c7d1;
    font-size: 12px;
}
.about-phone-item strong {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.02em;
}
.about-stats-wrap {
    padding: 24px 0 58px;
    background: #fff;
}
.about-stats {
    margin-top: 0;
}
.vision-values-section {
    padding: 0 0 82px;
    background: #fff;
}
.vision-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.vision-card {
    position: relative;
    min-height: 190px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding: 30px 34px;
    text-align: right;

    border-radius: 4px;
    overflow: hidden;

    transition: 0.3s ease;
}
.vision-card .vision-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    /* border: 1px solid currentColor; */
}
.vision-card .vision-icon svg {
    width: 25px;
    height: 25px;
}
.vision-card span {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
}
.vision-card h3 {
    font-size: 19px;
    margin: 3px 0 7px;
    font-weight: 700;
}
.vision-card p {
    font-size: 13.5px;
    line-height: 1.9;
    margin: 0;
}
.vision-dark {
    background: var(--navy-2);
    color: #fff;
    border-color: var(--navy-2);
}
.vision-dark p {
    color: #aab9c3;
}
.vision-dark .vision-icon {
    color: #e5c47c;
}
.vision-light {
    background: #fbfcfe;
    color: var(--navy);
}
.vision-light p {
    color: #65727f;
}

.vision-light::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 45px;
    height: 34px;

    background: #edf2ff;

    border-radius: 0 0 8px 0;
}

.portfolio-pillars {
    padding: 72px 0 88px;
    background: #f1f5ff;
}
.about-centered-heading {
    text-align: center;
    margin-bottom: 42px;
}
.about-centered-heading span {
    display: block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}
.about-centered-heading h2 {
    font-size: clamp(28px, 3.3vw, 42px);
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
}
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.pillar-card {
    background: #fff;
    border-radius: 8px;
    padding: 0 0 22px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(17, 34, 46, 0.08);
    transition: 0.3s ease;
}
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(17, 34, 46, 0.15);
}
.pillar-image {
    height: 180px;
    overflow: hidden;
}
.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.pillar-card:hover .pillar-image img {
    transform: scale(1.07);
}
.pillar-card h3 {
    font-size: 17px;
    margin: 17px 18px 5px;
    font-weight: 700;
}
.pillar-card p {
    font-size: 13.5px;
    color: #6b7783;
    line-height: 1.8;
    margin: 0 18px;
}
.about-why-section {
    padding: 78px 0;
    background: #eaf0fc;
}
.about-why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 88px;
    align-items: center;
}
.about-why-media {
    position: relative;
    padding: 18px 0 18px 18px;
}
.about-why-media:before {
    content: "";
    position: absolute;
    inset: 0 14% 0 0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(17, 34, 46, 0.08);
}
.about-why-media img {
    position: relative;
    width: 86%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 22px 44px rgba(17, 34, 46, 0.2);
}
.investment-badge {
    position: absolute;
    left: 0;
    bottom: 42px;
    min-width: 180px;
    background: var(--gold);
    color: #fff;
    padding: 20px 22px;
    box-shadow: 0 16px 34px rgba(157, 130, 83, 0.34);
}
.investment-badge span {
    display: block;
    font-size: 12px;
    opacity: 0.85;
}
.investment-badge strong {
    display: block;
    font-size: 19px;
    margin-top: 3px;
}
.why-list-vertical {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}
.why-list-vertical article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: start;
}
.why-list-vertical article > svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    margin-top: 4px;
}
.why-list-vertical h3 {
    font-size: 16px;
    margin: 0 0 4px;
    font-weight: 700;
}
.why-list-vertical p {
    font-size: 13.5px;
    color: #687581;
    line-height: 1.8;
    margin: 0;
}
.about-projects-section {
    padding: 82px 0 92px;
    background: #fff;
}
.about-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 34px;
}
.about-title-row span {
    font-size: 13px;
    color: var(--gold);
    font-weight: 700;
}
.about-title-row h2 {
    font-size: 35px;
    font-weight: 500;
    margin: 4px 0;
}
.about-title-row p {
    font-size: 14px;
    color: #77838e;
    margin: 0;
}
.about-title-row > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
}
.about-title-row > a svg {
    width: 16px;
}
.about-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-project-card {
    background: #fff;
    border: 1px solid #e8ebef;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(17, 34, 46, 0.07);
    transition: 0.3s ease;
}
.about-project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 44px rgba(17, 34, 46, 0.13);
}
.about-project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.about-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.about-project-card:hover img {
    transform: scale(1.06);
}
.about-project-image span {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(157, 130, 83, 0.93);
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 3px;
}
.about-project-body {
    padding: 20px 20px 18px;
}
.about-project-body h3 {
    direction: ltr;
    text-align: right;
    font-size: 20px;
    margin: 0 0 7px;
    font-weight: 700;
}
.about-project-body p {
    font-size: 13.5px;
    color: #65727e;
    margin: 0 0 12px;
    line-height: 1.8;
}
.about-project-body a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
}
.about-project-body a svg {
    width: 15px;
}
.about-cta-section {
    position: relative;
    min-height: 390px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--navy-2);
}
.about-cta-bg,
.about-cta-bg img,
.about-cta-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.about-cta-bg img {
    object-fit: cover;
    object-position: center 58%;
}
.about-cta-shade {
    background:
        linear-gradient(90deg, rgba(7, 24, 34, 0.77), rgba(7, 24, 34, 0.58)),
        linear-gradient(0deg, rgba(7, 24, 34, 0.36), rgba(7, 24, 34, 0.36));
}
.about-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 64px 20px;
}
.about-cta-content > span {
    color: #e3c27c;
    font-size: 14px;
    font-weight: 700;
}
.about-cta-content h2 {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 500;
    margin: 6px 0 10px;
}
.about-cta-content p {
    max-width: 650px;
    margin: 0 auto 24px;
    color: #d3dde4;
    line-height: 2;
    font-size: 15px;
}

@media (max-width: 1100px) {
    .about-intro-grid,
    .about-why-grid {
        gap: 48px;
    }
    .about-contact-card {
        grid-template-columns: 1fr;
    }
    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-projects-grid .about-project-card:last-child {
        grid-column: 1/-1;
        max-width: calc(50% - 12px);
        width: 100%;
        margin-inline: auto;
    }
}
@media (max-width: 820px) {
    .about-page-shell {
        width: min(100% - 28px, 720px);
    }
    .about-hero {
        padding-top: 26px;
    }
    .about-hero-card {
        height: 520px;
        border-radius: 16px;
    }
    .about-mosaic {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .about-mosaic img:nth-child(n) {
        grid-column: span 1;
    }
    .about-mosaic img:nth-child(1),
    .about-mosaic img:nth-child(6),
    .about-mosaic img:nth-child(11) {
        grid-column: span 2;
    }
    .about-hero-copy {
        padding-top: 120px;
    }
    .about-hero-copy p {
        font-size: 15px;
    }
    .about-intro-grid,
    .about-why-grid {
        grid-template-columns: 1fr;
    }
    .about-phone-list {
        grid-template-columns: 1fr;
    }
    .about-intro-media {
        min-height: auto;
        order: -1;
    }
    .about-intro-media img {
        width: 94%;
        height: 380px;
    }
    .about-intro-frame {
        height: 86%;
        top: 30px;
    }
    .vision-values-grid {
        grid-template-columns: 1fr;
    }
    .about-why-media {
        max-width: 620px;
        margin-inline: auto;
        width: 100%;
    }
    .about-why-media img {
        height: 440px;
    }
    .about-title-row {
        display: block;
    }
    .about-title-row > a {
        margin-top: 14px;
    }
    .about-projects-grid {
        grid-template-columns: 1fr;
    }
    .about-projects-grid .about-project-card:last-child {
        grid-column: auto;
        max-width: none;
    }
}
@media (max-width: 560px) {
    .about-contact-numbers-section {
        padding: 0 0 34px;
    }
    .about-contact-card {
        gap: 18px;
        padding: 18px 14px;
        border-radius: 16px;
    }
    .about-contact-copy span {
        margin-bottom: 6px;
        font-size: 11px;
    }
    .about-contact-copy h2 {
        margin-bottom: 8px;
        font-size: 22px;
        line-height: 1.35;
    }
    .about-contact-copy p {
        font-size: 13px;
        line-height: 1.7;
    }
    .about-phone-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .about-phone-item {
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 3px 7px;
        min-height: 54px;
        padding: 9px 8px;
        border-radius: 10px;
    }
    .about-phone-item svg {
        width: 24px;
        height: 24px;
        padding: 5px;
        border-radius: 8px;
    }
    .about-phone-item span {
        font-size: 10px;
        line-height: 1.2;
    }
    .about-phone-item strong {
        font-size: 12px;
        line-height: 1.2;
        letter-spacing: 0;
        word-break: break-word;
    }
    .about-hero-card {
        height: 500px;
    }
    .about-mosaic {
        gap: 3px;
    }
    .about-hero-copy h1 {
        font-size: 36px;
    }
    .about-hero-copy p {
        font-size: 14px;
        line-height: 1.9;
    }
    .about-intro {
        padding-top: 58px;
    }
    .about-intro-media img {
        height: 300px;
        width: 96%;
    }
    .about-intro-frame {
        left: 8px;
    }
    .vision-card {
        grid-template-columns: 1fr;
        padding: 26px 22px;
    }
    .pillar-grid {
        grid-template-columns: 1fr;
    }
    .pillar-image {
        height: 220px;
    }
    .about-why-media {
        padding-left: 0;
    }
    .about-why-media img {
        width: 94%;
        height: 360px;
    }
    .investment-badge {
        left: 0;
        bottom: 28px;
        min-width: 155px;
        padding: 16px 18px;
    }
    .about-project-image {
        height: 220px;
    }
    .about-cta-section {
        min-height: 420px;
    }
}

body {
    font-family: "Tajawal", sans-serif;
}

/* =========================================================
   Projects page
========================================================= */
.projects-page {
    background: #fff;
}
.projects-page-shell {
    width: min(1460px, calc(100% - (var(--page-gutter) * 2)));
    margin-inline: auto;
}
.projects-hero {
    padding-bottom: 0;
    background: #f8faff;
}
.projects-hero-card {
    height: 520px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--navy-2);
    box-shadow: 0 20px 50px rgba(17, 34, 46, 0.18);
}
.projects-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    filter: saturate(0.82);
}
.projects-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 18, 27, 0.58), rgba(6, 18, 27, 0.52)),
        linear-gradient(0deg, rgba(6, 18, 27, 0.52), rgba(6, 18, 27, 0.12));
}
.projects-hero-copy {
    position: absolute;
    z-index: 2;
    right: 70px;
    top: 50%;
    transform: translateY(-32%);
    max-width: 640px;
    color: #fff;
}
.projects-hero-copy > span {
    display: inline-block;
    color: #e4c57e;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}
.projects-hero-copy h1 {
    font-size: clamp(34px, 4vw, 57px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
    max-width: 630px;
}
.projects-hero-copy p {
    max-width: 590px;
    color: #dce4e9;
    font-size: 16px;
    line-height: 2;
    margin: 0;
}
.project-types {
    position: relative;
    z-index: 4;
    margin: -50px 34px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.project-type-card {
    min-height: 138px;
    background: #fff;
    border: 1px solid #eef0f4;
    box-shadow: 0 18px 38px rgba(17, 34, 46, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border-radius: 4px;
    transition: 0.3s ease;
}
.project-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 48px rgba(17, 34, 46, 0.15);
}
.project-type-card svg {
    width: 30px;
    height: 30px;
    color: var(--gold);
    margin-bottom: 10px;
}
.project-type-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 3px;
}
.project-type-card p {
    font-size: 12px;
    color: #7b8791;
    margin: 0;
}
.current-projects-section {
    padding: 92px 0 82px;
    background: #f8faff;
}
.projects-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 36px;
}
.projects-heading-row > div:first-child {
    max-width: 680px;
}
.projects-heading-row span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}
.projects-heading-row h2 {
    font-size: clamp(28px, 3.4vw, 43px);
    font-weight: 500;
    margin: 0 0 4px;
}
.projects-heading-row p {
    font-size: 14px;
    color: #76828d;
    margin: 0;
}
.project-filters {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #eef2fb;
    padding: 8px;
    border-radius: 5px;
    flex-wrap: wrap;
    justify-content: center;
}
.project-filters button {
    border: 0;
    background: transparent;
    color: #66727d;
    padding: 7px 17px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
    transition: 0.25s ease;
}
.project-filters button:hover,
.project-filters button.active {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 7px 15px rgba(157, 130, 83, 0.22);
}
.projects-spotlight {
    display: grid;
    grid-template-columns: 1.35fr 1fr 0.78fr;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e7ebef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(17, 34, 46, 0.08);
    margin-bottom: 30px;
    transition: 0.3s ease;
}
.projects-spotlight.filtered-out {
    display: none;
}
.spotlight-image {
    position: relative;
    min-height: 430px;
    overflow: hidden;
}
.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.55s ease;
}
.projects-spotlight:hover .spotlight-image img {
    transform: scale(1.04);
}
.spotlight-image > span {
    position: absolute;
    right: 18px;
    top: 18px;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    padding: 6px 13px;
    border-radius: 3px;
}
.spotlight-copy {
    padding: 42px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.spotlight-kicker {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 7px;
}
.spotlight-copy h3 {
    font-size: 29px;
    line-height: 1.5;
    margin: 0 0 13px;
    font-weight: 700;
}
.spotlight-copy p {
    font-size: 13.5px;
    color: #697682;
    line-height: 1.95;
    margin: 0 0 18px;
}
.spotlight-copy ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 9px;
}
.spotlight-copy li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: #45525e;
}
.spotlight-copy li svg {
    width: 17px;
    color: var(--gold);
    flex: none;
}
.project-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    width: max-content;
}
.project-text-link svg {
    width: 16px;
    color: var(--gold);
}
.spotlight-side-card {
    border-right: 1px solid #e8ecf0;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.side-image {
    height: 235px;
    overflow: hidden;
}
.side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.spotlight-side-card:hover img {
    transform: scale(1.06);
}
.side-body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.side-body small {
    color: var(--gold);
    font-size: 11px;
}
.side-body h4 {
    font-size: 21px;
    margin: 5px 0 7px;
    direction: ltr;
    text-align: right;
}
.side-body p {
    font-size: 12.5px;
    color: #6c7782;
    line-height: 1.8;
    margin: 0 0 14px;
}
.side-body a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
}
.side-body a svg {
    width: 14px;
}
.projects-catalog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.catalog-project {
    background: #fff;
    border: 1px solid #e6eaee;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(17, 34, 46, 0.07);
    transition: 0.3s ease;
}
.catalog-project:hover {
    transform: translateY(-8px);
    box-shadow: 0 23px 46px rgba(17, 34, 46, 0.14);
}
.catalog-project.filtered-out {
    display: none;
}
.catalog-image {
    height: 235px;
    position: relative;
    overflow: hidden;
}
.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.55s ease;
}
.catalog-project:hover .catalog-image img {
    transform: scale(1.07);
}
.catalog-image > span {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(157, 130, 83, 0.94);
    color: #fff;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 10px;
}
.catalog-body {
    padding: 18px 19px 17px;
}
.catalog-body small {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8a7650;
    font-size: 11px;
}
.catalog-body small svg {
    width: 13px;
}
.catalog-body h3 {
    direction: ltr;
    text-align: right;
    font-size: 19px;
    margin: 8px 0 6px;
}
.catalog-body p {
    font-size: 12.5px;
    color: #6c7883;
    line-height: 1.85;
    margin: 0 0 12px;
    min-height: 48px;
}
.catalog-body a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eef0f2;
    padding-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #56626d;
}
.catalog-body a svg {
    width: 15px;
    color: var(--gold);
}
.catalog-more {
    text-align: center;
    margin-top: 35px;
}
.catalog-more button {
    border: 0;
    border-radius: 4px;
    background: var(--gold);
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    font-size: 13px;
    min-width: 112px;
    height: 43px;
    cursor: pointer;
    transition: 0.25s ease;
}
.catalog-more button:hover {
    background: #80683e;
    transform: translateY(-2px);
}
.featured-project-section {
    padding: 76px 0;
    background: #fff;
}
.featured-project-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: #fff;
    border: 1px solid #e6e9ee;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(17, 34, 46, 0.1);
}
.featured-project-media {
    min-height: 500px;
    overflow: hidden;
}
.featured-project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}
.featured-project-card:hover .featured-project-media img {
    transform: scale(1.04);
}
.featured-project-copy {
    padding: 60px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-project-copy > span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
}
.featured-project-copy h2 {
    font-size: clamp(29px, 3vw, 43px);
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 16px;
}
.featured-project-copy > p {
    font-size: 14px;
    color: #697580;
    line-height: 2;
    margin: 0 0 26px;
}
.featured-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}
.featured-facts article {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 0;
    border-top: 1px solid #e9ecef;
}
.featured-facts svg {
    width: 23px;
    color: var(--gold);
}
.featured-facts b {
    display: block;
    font-size: 14px;
}
.featured-facts small {
    display: block;
    font-size: 11px;
    color: #7a8590;
    margin-top: 2px;
}
.dark-action-btn,
.light-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 44px;
    padding: 0 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
    width: max-content;
}
.dark-action-btn {
    background: var(--navy-2);
    color: #fff;
}
.dark-action-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
}
.dark-action-btn svg,
.light-action-btn svg {
    width: 16px;
}
.projects-cta-section {
    padding: 0 0 82px;
    background: #fff;
}
.projects-cta-card {
    background: #eaf0fc;
    border: 1px solid #d9e1ef;
    border-radius: 16px;
    text-align: center;
    padding: 67px 24px;
}
.projects-cta-card h2 {
    font-size: clamp(28px, 3.3vw, 42px);
    font-weight: 500;
    margin: 0 0 8px;
}
.projects-cta-card p {
    font-size: 14px;
    color: #687581;
    margin: 0 0 25px;
}
.projects-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.light-action-btn {
    background: #fff;
    color: var(--navy);
    border: 1px solid #9eabb6;
}
.light-action-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

@media (max-width: 1120px) {
    .projects-spotlight {
        grid-template-columns: 1.05fr 1fr;
    }
    .spotlight-side-card {
        grid-column: 1/-1;
        display: grid;
        grid-template-columns: 0.48fr 1fr;
        border-right: 0;
        border-top: 1px solid #e8ecf0;
    }
    .side-image {
        height: 220px;
    }
    .projects-catalog {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 820px) {
    .projects-page-shell {
        width: min(100% - 28px, 720px);
    }
    .projects-hero {
        padding-top: 26px;
    }
    .projects-hero-card {
        height: 550px;
        border-radius: 16px;
    }
    .projects-hero-copy {
        right: 28px;
        left: 28px;
        top: auto;
        bottom: 86px;
        transform: none;
    }
    .projects-hero-copy h1 {
        font-size: 37px;
    }
    .projects-hero-copy p {
        font-size: 14px;
    }
    .project-types {
        margin: -55px 18px 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .project-type-card {
        min-height: 126px;
    }
    .current-projects-section {
        padding-top: 72px;
    }
    .projects-heading-row {
        display: block;
    }
    .project-filters {
        margin-top: 22px;
        justify-content: flex-start;
    }
    .projects-spotlight {
        grid-template-columns: 1fr;
    }
    .spotlight-image {
        min-height: 370px;
    }
    .spotlight-side-card {
        grid-template-columns: 1fr;
    }
    .side-image {
        height: 270px;
    }
    .projects-catalog {
        grid-template-columns: 1fr;
    }
    .catalog-image {
        height: 300px;
    }
    .featured-project-card {
        grid-template-columns: 1fr;
    }
    .featured-project-media {
        min-height: 380px;
    }
    .featured-project-copy {
        padding: 42px 30px;
    }
    .featured-facts {
        grid-template-columns: 1fr;
    }
    .projects-cta-card {
        padding: 52px 20px;
    }
}
@media (max-width: 560px) {
    .projects-hero-card {
        height: 520px;
    }
    .projects-hero-copy {
        right: 20px;
        left: 20px;
        bottom: 95px;
    }
    .projects-hero-copy h1 {
        font-size: 31px;
    }
    .projects-hero-copy p {
        font-size: 13px;
        line-height: 1.9;
    }
    .project-types {
        margin: -50px 10px 0;
        gap: 9px;
    }
    .project-type-card {
        min-height: 115px;
        padding: 14px 8px;
    }
    .project-type-card h3 {
        font-size: 15px;
    }
    .project-type-card p {
        font-size: 10px;
    }
    .project-type-card svg {
        width: 25px;
        height: 25px;
    }
    .current-projects-section {
        padding-top: 60px;
    }
    .projects-heading-row h2 {
        font-size: 28px;
    }
    .project-filters {
        gap: 4px;
        padding: 6px;
    }
    .project-filters button {
        padding: 6px 11px;
    }
    .spotlight-image {
        min-height: 280px;
    }
    .spotlight-copy {
        padding: 28px 21px;
    }
    .spotlight-copy h3 {
        font-size: 24px;
    }
    .side-image {
        height: 220px;
    }
    .catalog-image {
        height: 230px;
    }
    .featured-project-media {
        min-height: 300px;
    }
    .featured-project-copy {
        padding: 32px 22px;
    }
    .projects-cta-actions {
        flex-direction: column;
    }
    .projects-cta-actions a {
        width: 100%;
    }
}

/* =========================================================
   Project details page
========================================================= */
.project-detail-page {
    background: #fff;
}
.detail-shell {
    width: min(1540px, calc(100% - (var(--page-gutter) * 2)));
    margin-inline: auto;
}
.detail-hero {
    padding-bottom: 0;
    background: #fff;
}
.detail-hero-card {
    height: 650px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--navy-2);
    box-shadow: 0 18px 50px rgba(17, 34, 46, 0.2);
}
.detail-hero-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 56%;
    transform: scale(1.02);
}
.detail-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4, 16, 24, 0.18),
            rgba(4, 16, 24, 0.18) 38%,
            rgba(4, 16, 24, 0.72) 100%
        ),
        linear-gradient(0deg, rgba(5, 16, 24, 0.58), rgba(5, 16, 24, 0.04) 58%);
}
.detail-hero-copy {
    position: absolute;
    right: 76px;
    top: 52%;
    transform: translateY(-35%);
    z-index: 2;
    color: #fff;
    width: min(760px, calc(100% - 140px));
}
.detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e5c57d;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}
.detail-hero-copy h1 {
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 16px;
    max-width: 820px;
}
.detail-hero-copy p {
    font-size: 17px;
    line-height: 2;
    color: #e1e8ed;
    max-width: 700px;
    margin: 0 0 25px;
}
.detail-facts {
    position: relative;
    z-index: 4;
    margin: -28px 28px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e6eaee;
    border: 1px solid #e6eaee;
    box-shadow: 0 15px 35px rgba(17, 34, 46, 0.12);
    border-radius: 8px;
    overflow: hidden;
}
.detail-facts article {
    min-height: 112px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
}
.detail-facts svg {
    width: 27px;
    height: 27px;
    color: var(--gold);
}
.detail-facts strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}
.detail-facts span {
    display: block;
    color: #7b8791;
    font-size: 12px;
}
.detail-overview {
    padding: 105px 0 84px;
    background: #fff;
}
.detail-overview-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 72px;
    align-items: center;
}
.detail-overview-copy h2 {
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 18px;
}
.detail-overview-copy > p {
    font-size: 15px;
    line-height: 2;
    color: #65717d;
    margin: 0 0 12px;
}
.detail-bullets {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px;
    display: grid;
    gap: 11px;
}
.detail-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #3f4c57;
    font-size: 14px;
}
.detail-bullets svg {
    width: 18px;
    flex: none;
    color: var(--gold);
    margin-top: 4px;
}
.detail-year {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    border-right: 3px solid var(--gold);
    padding-right: 16px;
}
.detail-year strong {
    font-size: 35px;
    color: var(--gold);
    line-height: 1;
}
.detail-year span {
    font-size: 12px;
    color: #77838e;
    padding-bottom: 3px;
}
.detail-overview-media {
    position: relative;
}
.overview-main {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 18px 40px rgba(17, 34, 46, 0.16);
}
.overview-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 12px;
}
.overview-thumbs button {
    padding: 0;
    border: 2px solid transparent;
    background: none;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    height: 112px;
    transition: 0.25s ease;
}
.overview-thumbs button.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(157, 130, 83, 0.12);
}
.overview-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-gallery-section {
    padding: 78px 0 92px;
    background: #eef3ff;
}
.detail-section-heading {
    text-align: center;
    margin-bottom: 38px;
}
.detail-section-heading > span {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 5px;
}
.detail-section-heading h2 {
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 500;
    margin: 0 0 5px;
}
.detail-section-heading p {
    font-size: 14px;
    color: #73808c;
    margin: 0;
}
.detail-section-heading.compact {
    margin-bottom: 32px;
}
.detail-gallery {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
    grid-template-rows: 270px 270px;
    gap: 13px;
}
.detail-gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(17, 34, 46, 0.12);
}
.detail-gallery .gallery-large {
    grid-row: 1/3;
}
.detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.55s ease;
}
.detail-gallery figure:hover img {
    transform: scale(1.06);
}
.detail-amenities-section {
    padding: 84px 0 92px;
    background: #fff;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.amenity-card {
    border: 1px solid #e6e9ed;
    background: #fff;
    padding: 28px 25px;
    min-height: 190px;
    transition: 0.3s ease;
    box-shadow: 0 8px 24px rgba(17, 34, 46, 0.04);
}
.amenity-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 38px rgba(17, 34, 46, 0.11);
    border-color: #d9c7a5;
}
.amenity-card svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
    margin-bottom: 18px;
}
.amenity-card h3 {
    font-size: 17px;
    margin: 0 0 8px;
}
.amenity-card p {
    font-size: 13px;
    color: #6e7a85;
    line-height: 1.9;
    margin: 0;
}
.detail-stats-section {
    padding: 75px 0;
    background: var(--navy-2);
    color: #fff;
}
.detail-stats-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 75px;
    align-items: center;
}
.detail-stats-copy > span {
    color: #e1bf72;
    font-size: 13px;
    font-weight: 700;
}
.detail-stats-copy h2 {
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.55;
    margin: 7px 0 13px;
}
.detail-stats-copy p {
    font-size: 14px;
    color: #99a8b4;
    line-height: 2;
    margin: 0;
}
.detail-stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}
.detail-stats-cards article {
    background: var(--navy-2);
    padding: 25px 30px;
    min-height: 125px;
}
.detail-stats-cards strong {
    display: block;
    color: #e8c679;
    font-size: 31px;
    line-height: 1.2;
}
.detail-stats-cards span {
    display: block;
    color: #bac6cf;
    font-size: 12px;
    margin-top: 7px;
}
.detail-location-section {
    padding: 86px 0;
    background: #fff;
}
.detail-location-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}
.detail-location-copy h2 {
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.55;
    margin: 0 0 15px;
}
.detail-location-copy > p {
    font-size: 14.5px;
    color: #697580;
    line-height: 2;
    margin: 0 0 23px;
}
.detail-location-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
}
.detail-location-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.detail-location-list b {
    font-size: 17px;
    color: var(--gold);
    min-width: 80px;
}
.detail-location-list span {
    font-size: 13px;
    color: #66727d;
}
.detail-map {
    position: relative;
    border: 1px solid #e4e8ec;
    padding: 10px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(17, 34, 46, 0.1);
}
.detail-map > img {
    width: 100%;
    min-height: 385px;
    object-fit: cover;
}
.map-pin-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 11px;
    background: var(--navy-2);
    color: #fff;
    padding: 12px 17px;
    border-radius: 6px;
    box-shadow: 0 14px 30px rgba(17, 34, 46, 0.25);
}
.map-pin-card svg {
    color: #e5c277;
    width: 21px;
}
.map-pin-card b {
    display: block;
    font-size: 13px;
}
.map-pin-card span {
    display: block;
    font-size: 10px;
    color: #aebac4;
}
.related-projects-section {
    padding: 82px 0 90px;
    background: #f7f9fe;
}
.related-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.related-project-card {
    background: #fff;
    border: 1px solid #e7eaee;
    box-shadow: 0 12px 30px rgba(17, 34, 46, 0.07);
    transition: 0.3s ease;
}
.related-project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 42px rgba(17, 34, 46, 0.13);
}
.related-image {
    height: 235px;
    position: relative;
    overflow: hidden;
}
.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.related-project-card:hover .related-image img {
    transform: scale(1.06);
}
.related-image > span {
    position: absolute;
    right: 13px;
    top: 13px;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    padding: 5px 11px;
    border-radius: 3px;
}
.related-body {
    padding: 19px;
}
.related-body small {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #8a7650;
    font-size: 11px;
}
.related-body small svg {
    width: 13px;
}
.related-body h3 {
    font-size: 19px;
    direction: ltr;
    text-align: right;
    margin: 7px 0 5px;
}
.related-body p {
    font-size: 12.5px;
    color: #697580;
    line-height: 1.8;
    margin: 0 0 13px;
}
.related-body a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eef0f3;
    padding-top: 12px;
    font-size: 12px;
    font-weight: 700;
}
.related-body a svg {
    width: 15px;
    color: var(--gold);
}
.detail-cta-section {
    padding: 74px 0;
    background: var(--navy-2);
}
.detail-cta {
    min-height: 245px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(
        110deg,
        rgba(157, 130, 83, 0.08),
        rgba(255, 255, 255, 0.02)
    );
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 55px;
    color: #fff;
}
.detail-cta > div:first-child {
    max-width: 780px;
}
.detail-cta span {
    color: #e3c176;
    font-size: 13px;
    font-weight: 700;
}
.detail-cta h2 {
    font-size: clamp(30px, 3.3vw, 46px);
    font-weight: 500;
    margin: 3px 0 6px;
}
.detail-cta p {
    font-size: 14px;
    color: #aab7c1;
    margin: 0;
}
.detail-cta-actions {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
}
.detail-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}
.detail-outline-light:hover {
    background: #fff;
    color: var(--navy);
}

@media (max-width: 1100px) {
    .detail-overview-grid,
    .detail-stats-grid,
    .detail-location-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    .detail-overview-media {
        order: -1;
    }
    .detail-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 340px 230px 230px;
    }
    .detail-gallery .gallery-large {
        grid-column: 1/-1;
        grid-row: auto;
    }
    .amenities-grid,
    .related-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-cta {
        padding: 42px 35px;
    }
}
@media (max-width: 820px) {
    .detail-shell {
        width: min(100% - 28px, 760px);
    }
    .detail-hero {
        padding-top: 26px;
    }
    .detail-hero-card {
        height: 560px;
    }
    .detail-hero-copy {
        right: 30px;
        left: 30px;
        top: auto;
        bottom: 68px;
        transform: none;
        width: auto;
    }
    .detail-hero-copy h1 {
        font-size: 36px;
    }
    .detail-hero-copy p {
        font-size: 14px;
    }
    .detail-facts {
        grid-template-columns: repeat(2, 1fr);
        margin: -24px 16px 0;
    }
    .detail-overview {
        padding-top: 80px;
    }
    .overview-main {
        height: 390px;
    }
    .amenities-grid,
    .related-projects-grid {
        grid-template-columns: 1fr;
    }
    .detail-stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-cta {
        display: block;
        text-align: center;
    }
    .detail-cta > div:first-child {
        margin: 0 auto;
    }
    .detail-cta-actions {
        justify-content: center;
        margin-top: 24px;
    }
}
@media (max-width: 560px) {
    .detail-hero-card {
        height: 520px;
    }
    .detail-hero-copy {
        right: 20px;
        left: 20px;
        bottom: 52px;
    }
    .detail-hero-copy h1 {
        font-size: 29px;
    }
    .detail-hero-copy p {
        font-size: 13px;
        line-height: 1.85;
    }
    .detail-facts {
        margin: -18px 8px 0;
    }
    .detail-facts article {
        min-height: 100px;
        padding: 13px 8px;
        gap: 9px;
    }
    .detail-facts svg {
        width: 22px;
    }
    .detail-facts strong {
        font-size: 12px;
    }
    .detail-facts span {
        font-size: 10px;
    }
    .overview-main {
        height: 300px;
    }
    .overview-thumbs button {
        height: 78px;
    }
    .detail-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .detail-gallery .gallery-large {
        grid-column: auto;
    }
    .detail-gallery figure {
        height: 230px;
    }
    .amenity-card {
        min-height: 165px;
    }
    .detail-stats-cards {
        grid-template-columns: 1fr;
    }
    .detail-map > img {
        min-height: 280px;
    }
    .detail-cta {
        padding: 38px 20px;
    }
    .detail-cta-actions {
        flex-direction: column;
    }
    .detail-cta-actions a {
        width: 100%;
    }
}
.overview-main {
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

/* =========================================================
   Services page
========================================================= */
.services-page {
    background: #fff;
}
.services-shell {
    width: min(1460px, calc(100% - (var(--page-gutter) * 2)));
    margin-inline: auto;
}
.services-hero {
    background: #f8faff;
    padding-bottom: 0;
}
.services-hero-card {
    position: relative;
    height: 535px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--navy-2);
    box-shadow: 0 20px 52px rgba(17, 34, 46, 0.19);
}
.services-hero-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
    filter: saturate(0.78);
}
.services-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 20, 29, 0.18), rgba(7, 20, 29, 0.47)),
        linear-gradient(0deg, rgba(7, 20, 29, 0.63), rgba(7, 20, 29, 0.08) 55%);
}
.services-hero-copy {
    position: absolute;
    z-index: 2;
    right: 70px;
    top: 50%;
    transform: translateY(-21%);
    max-width: 660px;
    color: #fff;
}
.services-hero-copy > span {
    display: block;
    color: #e7c781;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}
.services-hero-copy h1 {
    font-size: clamp(39px, 4.4vw, 62px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 14px;
}
.services-hero-copy p {
    font-size: 16px;
    color: #e2e9ee;
    line-height: 2;
    max-width: 630px;
    margin: 0;
}
.services-intro {
    padding: 76px 0 64px;
    background: #fff;
}
.services-intro-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 42px;
}
.services-intro-heading > span {
    display: block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px;
}
.services-intro-heading h2 {
    font-size: clamp(28px, 3vw, 41px);
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 10px;
}
.services-intro-heading p {
    color: #727e89;
    font-size: 14.5px;
    line-height: 2;
    margin: 0;
}
.services-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.services-feature-card {
    min-height: 158px;
    background: #f8faff;
    border: 1px solid #e9edf3;
    padding: 24px 20px;
    text-align: right;
    transition: 0.32s ease;
    box-shadow: 0 10px 25px rgba(17, 34, 46, 0.04);
}
.services-feature-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 20px 38px rgba(17, 34, 46, 0.11);
    border-color: #ddceb1;
}
.services-feature-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.services-feature-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    margin: 0;
    display: grid;
    place-items: center;
    background: var(--navy-2);
    color: #efce83;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(17, 34, 46, 0.15);
}
.services-feature-icon svg {
    width: 18px;
    height: 18px;
}
.services-feature-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.services-feature-card h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}
.services-feature-card p {
    font-size: 12.5px;
    color: #73808b;
    line-height: 1.8;
    margin: 0;
}
.services-sectors {
    padding: 52px 0 85px;
    background: #fff;
    border-top: 1px solid #f1f2f4;
}
.sector-row {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 90px;
    align-items: center;
    padding: 72px 24px;
    border-bottom: 1px solid #eff1f3;
}
.sector-row:last-child {
    border-bottom: 0;
}
.sector-row-reverse .sector-media {
    order: 2;
}
.sector-row-reverse .sector-copy {
    order: 1;
}
.sector-media {
    position: relative;
    padding: 0 0 20px 20px;
}
.sector-media-frame {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 75%;
    height: 76%;
    border: 1px solid rgba(157, 130, 83, 0.45);
    background: #f4f5f6;
    z-index: 0;
}
.sector-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 385px;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 18px 38px rgba(17, 34, 46, 0.17);
}
.sector-copy {
    max-width: 560px;
}
.sector-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #d8c5a1;
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 15px;
}
.sector-copy h2 {
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 500;
    margin: 0 0 14px;
    position: relative;
    padding-top: 12px;
}
.sector-copy h2::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 42px;
    height: 2px;
    background: var(--gold);
}
.sector-copy p {
    font-size: 14.5px;
    color: #66727e;
    line-height: 2.05;
    margin: 0 0 18px;
}
.sector-copy ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 9px;
}
.sector-copy li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #44515d;
    font-size: 13.5px;
}
.sector-copy li svg {
    width: 17px;
    height: 17px;
    color: var(--gold);
    flex: none;
    margin-top: 5px;
}
.sector-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid rgba(157, 130, 83, 0.55);
    padding-bottom: 4px;
    transition: 0.25s ease;
}
.sector-link svg {
    width: 15px;
    color: var(--gold);
    transition: 0.25s ease;
}
.sector-link:hover {
    color: var(--gold);
}
.sector-link:hover svg {
    transform: translateX(-4px);
}
.services-cta-section {
    padding: 0 0 82px;
    background: #fff;
}
.services-cta {
    position: relative;
    min-height: 365px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--navy-2);
    box-shadow: 0 22px 48px rgba(17, 34, 46, 0.17);
}
.services-cta > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 56%;
}
.services-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 24, 34, 0.54), rgba(7, 24, 34, 0.84)),
        linear-gradient(0deg, rgba(7, 24, 34, 0.38), rgba(7, 24, 34, 0.2));
}
.services-cta-copy {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 710px;
    padding: 76px 70px;
}
.services-cta-copy > span {
    color: #e4c47c;
    font-size: 13px;
    font-weight: 700;
}
.services-cta-copy h2 {
    font-size: clamp(31px, 3.4vw, 47px);
    font-weight: 500;
    line-height: 1.45;
    margin: 4px 0 9px;
}
.services-cta-copy p {
    font-size: 14px;
    color: #c9d4dc;
    line-height: 2;
    margin: 0 0 23px;
}
.services-cta-actions {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
}
.services-light-btn {
    height: 46px;
    min-width: 145px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}
.services-light-btn:hover {
    background: #fff;
    color: var(--navy);
}
@media (max-width: 1100px) {
    .sector-row {
        gap: 52px;
        padding-inline: 0;
    }
    .sector-media img {
        height: 350px;
    }
}
@media (max-width: 820px) {
    .services-shell {
        width: min(100% - 28px, 760px);
    }
    .services-hero {
        padding-top: 26px;
    }
    .services-hero-card {
        height: 520px;
        border-radius: 16px;
    }
    .services-hero-copy {
        right: 30px;
        left: 30px;
        top: auto;
        bottom: 62px;
        transform: none;
        max-width: none;
    }
    .services-hero-copy h1 {
        font-size: 41px;
    }
    .services-hero-copy p {
        font-size: 14px;
    }
    .services-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sector-row,
    .sector-row-reverse {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 58px 0;
    }
    .sector-row .sector-media,
    .sector-row .sector-copy,
    .sector-row-reverse .sector-media,
    .sector-row-reverse .sector-copy {
        order: initial;
    }
    .sector-copy {
        max-width: none;
    }
    .sector-media {
        max-width: 640px;
        width: 100%;
        margin-inline: auto;
    }
    .services-cta-copy {
        padding: 60px 40px;
    }
}
@media (max-width: 560px) {
    .services-hero-card {
        height: 485px;
    }
    .services-hero-copy {
        right: 20px;
        left: 20px;
        bottom: 45px;
    }
    .services-hero-copy h1 {
        font-size: 34px;
    }
    .services-hero-copy p {
        font-size: 13px;
        line-height: 1.9;
    }
    .services-intro {
        padding: 58px 0 46px;
    }
    .services-feature-grid {
        grid-template-columns: 1fr;
    }
    .services-feature-card {
        min-height: 140px;
    }
    .services-sectors {
        padding-top: 20px;
    }
    .sector-row {
        padding: 50px 0;
        gap: 30px;
    }
    .sector-media {
        padding: 0 0 13px 13px;
    }
    .sector-media img {
        height: 285px;
    }
    .sector-copy h2 {
        font-size: 30px;
    }
    .sector-copy p {
        font-size: 13.5px;
    }
    .services-cta-section {
        padding-bottom: 58px;
    }
    .services-cta {
        min-height: 430px;
    }
    .services-cta-copy {
        padding: 54px 24px;
        text-align: center;
    }
    .services-cta-actions {
        justify-content: center;
        flex-direction: column;
    }
    .services-cta-actions a {
        width: 100%;
    }
}

/* =========================================================
   Contact page + consultation modal
========================================================= */
.contact-page {
    background: #fff;
}
.contact-shell {
    width: min(1460px, calc(100% - (var(--page-gutter) * 2)));
    margin-inline: auto;
}
.contact-hero {
    background: #fff;
    padding-bottom: 0;
}
.contact-hero-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--navy-2);
    box-shadow: 0 20px 52px rgba(17, 34, 46, 0.19);
}
.contact-hero-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    filter: saturate(0.72) brightness(0.72);
}
.contact-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 18, 27, 0.14),
            rgba(5, 18, 27, 0.34) 45%,
            rgba(5, 18, 27, 0.76)
        ),
        linear-gradient(0deg, rgba(5, 18, 27, 0.52), transparent 58%);
}
.contact-hero-copy {
    position: absolute;
    right: 72px;
    top: 51%;
    transform: translateY(-18%);
    z-index: 2;
    width: min(680px, calc(100% - 120px));
    color: #fff;
}
.contact-hero-copy > span {
    display: block;
    color: #e7c781;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}
.contact-hero-copy h1 {
    font-size: clamp(42px, 4.6vw, 64px);
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 12px;
}
.contact-hero-copy p {
    font-size: 16px;
    line-height: 2;
    color: #e5ebef;
    max-width: 650px;
    margin: 0;
}
.contact-intro-section {
    padding: 72px 0 55px;
    background: #fbfbfd;
}
.contact-heading {
    text-align: center;
    margin: 0 auto 38px;
}
.contact-heading > span {
    display: block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}
.contact-heading h2 {
    font-size: clamp(29px, 3.2vw, 43px);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}
.contact-heading > i {
    display: block;
    width: 58px;
    height: 3px;
    background: var(--gold);
    margin: 19px auto 0;
}
.contact-promises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.contact-promise {
    min-height: 180px;
    background: linear-gradient(145deg, #102432, #18364a);
    border: 1px solid rgba(231, 194, 115, 0.16);
    padding: 28px 28px;
    text-align: right;
    transition: 0.3s ease;
    box-shadow: 0 16px 34px rgba(17, 34, 46, 0.12);
}
.contact-promise:hover {
    transform: translateY(-7px);
    background: linear-gradient(145deg, #132d40, #1d435a);
    border-color: rgba(231, 194, 115, 0.42);
    box-shadow: 0 22px 46px rgba(17, 34, 46, 0.18);
}
.contact-promise-icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    display: grid;
    place-items: center;
    background: transparent;
    color: #e7c273;
    margin-bottom: 17px;
}
.contact-promise-icon svg,
.contact-promise-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}
.contact-promise h3 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
}
.contact-promise p {
    color: #c7d3dc;
    font-size: 13px;
    line-height: 1.9;
    margin: 0;
}
.contact-main-section {
    padding: 66px 0 78px;
    background: #fff;
}
.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.72fr);
    gap: 44px;
    direction: ltr;
    align-items: start;
}
.contact-main-grid > * {
    direction: rtl;
}
.contact-page-form {
    background: #fff;
    border: 1px solid #e4e8ee;
    border-radius: 12px;
    padding: 35px 36px 32px;
    box-shadow: 0 18px 46px rgba(17, 34, 46, 0.08);
}
.contact-form-title {
    margin-bottom: 24px;
}
.contact-form-title > span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}
.contact-form-title h2 {
    font-size: 27px;
    font-weight: 600;
    margin: 0 0 4px;
}
.contact-form-title p {
    font-size: 12.5px;
    color: #7a8590;
    margin: 0;
}
.contact-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 18px;
}
.contact-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.contact-field.full-field {
    grid-column: 1/-1;
}
.contact-field > span {
    font-size: 12px;
    font-weight: 600;
    color: #3d4a55;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid #dfe4eb;
    background: #f9fbff;
    border-radius: 5px;
    color: var(--navy);
    font-family: inherit;
    font-size: 13px;
    outline: 0;
    transition: 0.2s ease;
}
.contact-field input,
.contact-field select {
    height: 47px;
    padding: 0 14px;
}
.contact-field textarea {
    resize: vertical;
    min-height: 126px;
    padding: 13px 14px;
    line-height: 1.8;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(157, 130, 83, 0.1);
}
.contact-submit {
    margin-top: 23px;
    width: 220px;
    height: 48px;
    border: 0;
    border-radius: 6px;
    background: var(--navy-2);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.25s ease;
}
.contact-submit svg {
    width: 17px;
}
.contact-submit:hover {
    background: var(--gold);
    transform: translateY(-2px);
}
.form-status {
    min-height: 24px;
    margin: 9px 0 0;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}
.contact-info-stack {
    display: grid;
    gap: 18px;
}
.contact-info-card {
    background: #eef3ff;
    border-right: 3px solid var(--gold);
    padding: 23px 24px;
    border-radius: 7px;
    min-height: 135px;
}
.contact-info-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
}
.contact-info-head svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}
.contact-info-head h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.contact-info-card p,
.contact-info-card a {
    font-size: 12.5px;
    line-height: 1.85;
    color: #52606c;
    margin: 0;
}
.contact-info-card > a {
    display: block;
    transition: 0.2s;
}
.contact-phone-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}
.contact-info-card .contact-phone-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 11px;
    border: 1px solid rgba(157, 130, 83, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
    line-height: 1.35;
}
.contact-info-card > a span {
    color: #8a96a3;
    font-size: 11px;
}
.contact-info-card > a strong {
    color: #263746;
    font-size: 13px;
    font-weight: 700;
}
.contact-info-card > a:hover {
    color: var(--gold);
}
.contact-info-card .contact-phone-link:hover {
    border-color: rgba(157, 130, 83, 0.42);
    background: #ffffff;
    transform: translateY(-2px);
}
.contact-info-card > a:hover strong {
    color: var(--gold);
}
.contact-socials {
    display: flex;
    gap: 7px;
    margin-top: 13px;
    direction: ltr;
    justify-content: flex-end;
}
.contact-socials a {
    width: 29px;
    height: 29px;
    border-radius: 2px;
    background: var(--navy-2);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 800;
}
.contact-socials a:hover {
    background: var(--gold);
    color: #fff;
}
.contact-map-section {
    background: #f3f5f7;
}
.contact-map-wrap {
    position: relative;
    width: 100%;
    height: 490px;
    overflow: hidden;
    background: #e8eaec;
}
.contact-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.contact-map-card {
    position: absolute;
    z-index: 2;
    right: max(var(--page-gutter), calc((100vw - 1460px) / 2));
    top: 45px;
    width: 290px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    padding: 25px 24px;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(17, 34, 46, 0.16);
    border-top: 3px solid var(--gold);
}
.contact-map-card > span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}
.contact-map-card h3 {
    font-size: 16px;
    margin: 2px 0 7px;
}
.contact-map-card p {
    font-size: 12px;
    color: #697582;
    line-height: 1.8;
    margin: 0 0 13px;
}
.contact-map-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}
.contact-map-card a svg {
    width: 14px;
}
.contact-why-section {
    padding: 56px 0 65px;
    background: #fff;
}
.contact-heading.compact {
    margin-bottom: 37px;
}
.contact-heading.compact > span {
    font-size: 17px;
    color: var(--navy);
    font-weight: 500;
}
.contact-heading.compact > i {
    width: 52px;
    margin-top: 14px;
}
.contact-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.contact-why-item {
    text-align: center;
    padding: 15px 12px;
}
.contact-why-item > div {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid #d8c9ad;
    border-radius: 7px;
    color: var(--gold);
    margin: 0 auto 15px;
    transition: 0.25s ease;
}
.contact-why-item:hover > div {
    background: var(--gold);
    color: #fff;
    transform: translateY(-4px);
}
.contact-why-item svg {
    width: 22px;
}
.contact-why-item h3 {
    font-size: 16px;
    margin: 0 0 5px;
}
.contact-why-item p {
    font-size: 12px;
    color: #7a858f;
    margin: 0;
}
.contact-dark-cta {
    padding: 0;
    background: #fff;
}
.contact-dark-cta-inner {
    min-height: 270px;
    background: var(--navy-2);
    color: #fff;
    text-align: center;
    padding: 55px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-dark-cta-inner > span {
    color: #d5b46d;
    font-size: 13px;
    font-weight: 700;
}
.contact-dark-cta-inner h2 {
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 400;
    margin: 5px 0 8px;
}
.contact-dark-cta-inner p {
    font-size: 13px;
    color: #9eacb6;
    margin: 0 0 24px;
}
.contact-dark-actions {
    display: flex;
    gap: 11px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-dark-outline {
    height: 46px;
    min-width: 155px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s;
}
.contact-dark-outline:hover {
    background: #fff;
    color: var(--navy);
}

/* Reusable consultation modal */
.consultation-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 18, 27, 0.72);
    backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}
.consultation-modal.open {
    opacity: 1;
    visibility: visible;
}
.consultation-dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34);
    display: grid;
    grid-template-columns: 0.83fr 1.17fr;
    direction: ltr;
    transform: translateY(20px) scale(0.985);
    transition: 0.3s ease;
}
.consultation-modal.open .consultation-dialog {
    transform: translateY(0) scale(1);
}
.consultation-panel,
.consultation-form-wrap {
    direction: rtl;
}
.consultation-panel {
    position: relative;
    overflow: hidden;
    background: var(--navy-2);
    color: #fff;
    padding: 58px 36px 40px;
    display: flex;
    flex-direction: column;
    min-height: 590px;
}
.consultation-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 15% 85%,
            rgba(157, 130, 83, 0.18),
            transparent 38%
        ),
        linear-gradient(
            150deg,
            transparent 0 57%,
            rgba(157, 130, 83, 0.08) 57% 58%,
            transparent 58%
        );
    pointer-events: none;
}
.consultation-panel > * {
    position: relative;
    z-index: 1;
}
.consultation-panel > span {
    color: #d5b66f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;
}
.consultation-panel h2 {
    font-size: 33px;
    font-weight: 500;
    margin: 3px 0 14px;
}
.consultation-panel > p {
    font-size: 13px;
    line-height: 1.95;
    color: #aeb9c2;
    margin: 0 0 25px;
}
.consultation-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}
.consultation-benefits li {
    display: flex;
    gap: 10px;
    margin: 13px 0;
    font-size: 12px;
    color: #d5dde3;
}
.consultation-benefits svg {
    width: 16px;
    color: #d6b76f;
    flex: none;
    margin-top: 5px;
}
.consultation-panel-contact {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.consultation-panel-contact a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #c7d1d9;
    font-size: 12px;
    margin: 8px 0;
}
.consultation-panel-contact svg {
    width: 15px;
    color: #d6b76f;
}
.consultation-form-wrap {
    padding: 38px 38px 34px;
    background: #fff;
}
.consultation-form-wrap > span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
}
.consultation-form-wrap h3 {
    font-size: 25px;
    margin: 0 0 19px;
}
.consultation-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.consultation-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.consultation-form label.full {
    grid-column: 1/-1;
}
.consultation-form label > span {
    font-size: 11px;
    color: #4b5863;
    font-weight: 600;
}
.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    border: 1px solid #dfe4eb;
    background: #f9fbff;
    border-radius: 4px;
    font-family: inherit;
    font-size: 12px;
    outline: 0;
    color: var(--navy);
}
.consultation-form input,
.consultation-form select {
    height: 43px;
    padding: 0 12px;
}
.consultation-form textarea {
    min-height: 100px;
    resize: vertical;
    padding: 11px 12px;
}
.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(157, 130, 83, 0.1);
}
.consultation-submit {
    grid-column: 1/-1;
    height: 47px;
    border: 0;
    border-radius: 5px;
    background: var(--navy-2);
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: 0.25s;
}
.consultation-submit:hover {
    background: var(--gold);
}
.consultation-submit svg {
    width: 16px;
}
.consultation-note {
    grid-column: 1/-1;
    text-align: center;
    color: #88939c;
    font-size: 10px;
    margin: 0;
}
.consultation-close {
    position: absolute;
    z-index: 4;
    left: 13px;
    top: 13px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.11);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.2s;
}
.consultation-close:hover {
    background: var(--gold);
    transform: rotate(90deg);
}
.consultation-close svg {
    width: 17px;
}
.modal-open {
    overflow: hidden;
}

@media (max-width: 980px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-info-stack {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-promises-grid {
        gap: 15px;
    }
    .contact-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 760px) {
    .contact-hero-card {
        height: 485px;
    }
    .contact-hero-copy {
        right: 28px;
        left: 28px;
        top: auto;
        bottom: 56px;
        transform: none;
        width: auto;
    }
    .contact-hero-copy h1 {
        font-size: 38px;
    }
    .contact-hero-copy p {
        font-size: 14px;
    }
    .contact-promises-grid {
        grid-template-columns: 1fr;
    }
    .contact-promise {
        min-height: 145px;
        text-align: center;
    }
    .contact-promise-icon {
        margin-inline: auto;
    }
    .contact-fields-grid {
        grid-template-columns: 1fr;
    }
    .contact-field.full-field {
        grid-column: auto;
    }
    .contact-page-form {
        padding: 29px 22px;
    }
    .contact-submit {
        width: 100%;
    }
    .contact-info-stack {
        grid-template-columns: 1fr;
    }
    .contact-map-wrap {
        height: 430px;
    }
    .contact-map-card {
        right: 20px;
        left: 20px;
        top: 24px;
        width: auto;
    }
    .contact-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .consultation-dialog {
        grid-template-columns: 1fr;
    }
    .consultation-panel {
        min-height: auto;
        padding: 42px 25px 28px;
    }
    .consultation-panel > p {
        margin-bottom: 18px;
    }
    .consultation-panel-contact {
        margin-top: 24px;
    }
    .consultation-form-wrap {
        padding: 30px 24px;
    }
    .consultation-close {
        color: var(--navy);
        background: #edf0f4;
    }
    .consultation-close:hover {
        color: #fff;
    }
}
@media (max-width: 520px) {
    .contact-shell {
        width: min(100% - 24px, 1460px);
    }
    .contact-hero-card {
        height: 445px;
        border-radius: 14px;
    }
    .contact-hero-copy {
        right: 19px;
        left: 19px;
        bottom: 39px;
    }
    .contact-hero-copy h1 {
        font-size: 31px;
    }
    .contact-hero-copy p {
        font-size: 12.5px;
        line-height: 1.85;
    }
    .contact-intro-section {
        padding: 54px 0 38px;
    }
    .contact-heading {
        margin-bottom: 28px;
    }
    .contact-heading h2 {
        font-size: 27px;
    }
    .contact-main-section {
        padding: 45px 0;
    }
    .contact-page-form {
        padding: 25px 17px;
    }
    .contact-info-card {
        padding: 20px;
    }
    .contact-phone-grid {
        gap: 7px;
    }
    .contact-info-card .contact-phone-link {
        padding: 8px 7px;
    }
    .contact-info-card .contact-phone-link span {
        font-size: 10px;
    }
    .contact-info-card .contact-phone-link strong {
        font-size: 12px;
    }
    .contact-map-wrap {
        height: 390px;
    }
    .contact-why-section {
        padding: 45px 0;
    }
    .contact-why-grid {
        grid-template-columns: 1fr;
    }
    .contact-dark-cta-inner {
        min-height: 290px;
        padding: 45px 18px;
    }
    .contact-dark-actions {
        width: 100%;
        flex-direction: column;
    }
    .contact-dark-actions a {
        width: 100%;
    }
    .consultation-modal {
        padding: 12px;
        align-items: flex-start;
        overflow: auto;
    }
    .consultation-dialog {
        max-height: none;
        margin-block: 12px;
    }
    .consultation-form {
        grid-template-columns: 1fr;
    }
    .consultation-form label.full,
    .consultation-submit,
    .consultation-note {
        grid-column: auto;
    }
    .consultation-panel h2 {
        font-size: 28px;
    }
    .consultation-form-wrap {
        padding: 27px 17px;
    }
    .consultation-close {
        left: 8px;
        top: 8px;
    }
}

/* =========================================================
   Global typography + unified page banners
   Requested update: Tajawal across the full site and the same
   banner dimensions / outer spacing used by the home page.
========================================================= */
html,
body,
button,
input,
textarea,
select,
option {
    font-family: "Tajawal", sans-serif !important;
}

/* Keep the hero/banner footprint identical on every page. */
.hero-section .container-max,
.about-hero .about-page-shell,
.projects-hero .projects-page-shell,
.services-hero .services-shell,
.detail-hero .detail-shell,
.contact-hero .contact-shell {
    width: min(1840px, calc(100% - 48px));
    margin-inline: auto;
}

.hero-card,
.about-hero-card,
.projects-hero-card,
.services-hero-card,
.detail-hero-card,
.contact-hero-card {
    height: 665px;
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 14px 45px rgba(17, 34, 46, 0.18);
}

/* All page banners begin at the same distance below the top edge. */
.hero-section,
.about-hero,
.projects-hero,
.services-hero,
.detail-hero,
.contact-hero {
    padding-top: 10px;
}

@media (max-width: 1050px) {
    .hero-card,
    .about-hero-card,
    .projects-hero-card,
    .services-hero-card,
    .detail-hero-card,
    .contact-hero-card {
        height: 590px;
    }
}

@media (max-width: 820px) {
    .hero-section .container-max,
    .about-hero .about-page-shell,
    .projects-hero .projects-page-shell,
    .services-hero .services-shell,
    .detail-hero .detail-shell,
    .contact-hero .contact-shell {
        width: calc(100% - 20px);
    }

    .hero-section,
    .about-hero,
    .projects-hero,
    .services-hero,
    .detail-hero,
    .contact-hero {
        padding-top: 26px;
    }

    .hero-card,
    .about-hero-card,
    .projects-hero-card,
    .services-hero-card,
    .detail-hero-card,
    .contact-hero-card {
        height: 610px;
        border-radius: 16px;
    }
}

@media (max-width: 560px) {
    .hero-card,
    .about-hero-card,
    .projects-hero-card,
    .services-hero-card,
    .detail-hero-card,
    .contact-hero-card {
        height: 560px;
    }
}

/* =========================================================
   Specialty cards — unified category image and icon sizes
========================================================= */

.specialty-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

/* Category image uploaded from the dashboard */
.specialty-card-image {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(245, 199, 119, 0.14);
}

.specialty-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Lucide fallback icon */
.specialty-card-head > svg {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 8px;
    border-radius: 10px;
    background: rgba(245, 199, 119, 0.14);
    stroke-width: 1.8;
    box-sizing: border-box;
}

.specialty-card-head h3 {
    margin: 0;
}

/* Keep the content aligned correctly after centering the image/icon */
.specialty-card h3,
.specialty-card p {
    text-align: right;
}

@media (max-width: 767px) {
    .specialty-card-image {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        padding: 6px;
    }

    .specialty-card-head > svg {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        padding: 7px;
    }
}

/* =========================================================
   HEADER — final responsive layout
   ========================================================= */

.site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding-top: 0;
    overflow: visible;
}

/* Announcement/title above the header */
.top-note {
    width: 100%;
    min-height: 28px;
    height: auto;
    padding: 5px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.97);
    color: #4d5963;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
}

.top-note a {
    width: 100%;
    min-height: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px 4px;
    color: inherit;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: anywhere;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.top-note a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.99);
}

.top-note strong {
    color: #26333c;
    font-weight: 800;
}

/* Main navigation */
.main-nav {
    position: relative;
    width: 92%;
    height: 58px;
    margin: 27px auto 0;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 14px;
    background: rgba(239, 244, 249, 0.9);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    direction: rtl;
    overflow: visible;
    box-shadow: 0 10px 26px rgba(6, 20, 31, 0.18);
}

.brand {
    min-width: 120px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-inline-start: auto;
}

.brand img {
    width: 112px;
    height: 40px;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a {
    height: 28px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: #7d6c4d;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: #ffffff;
    color: var(--gold);
    box-shadow: 0 7px 18px rgba(17, 34, 46, 0.08);
}

.nav-cta {
    height: 30px;
    padding: 0 16px;
    border-radius: 4px;
    font-size: 10px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.nav-toggle {
    flex: 0 0 44px;
    border-radius: 10px;
    cursor: pointer;
}

.nav-toggle span {
    transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* Make every hero slide keep the complete banner height on all screens. */
.hero-slider .hero-slide,
.hero-slider .hero-slide:first-of-type {
    width: 100%;
    height: 100%;
}

.hero-slider .hero-slide .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .hero-slide .hero-shade {
    z-index: 1;
}

.hero-slider .hero-slide .hero-content {
    z-index: 2;
}

@media (max-width: 1050px) and (min-width: 821px) {
    .main-nav {
        width: 94%;
        padding-inline: 14px;
        gap: 7px;
    }

    .brand {
        min-width: 105px;
    }

    .brand img {
        width: 102px;
    }

    .nav-links {
        gap: 3px;
    }

    .nav-links a {
        padding-inline: 11px;
        font-size: 10px;
    }

    .nav-cta {
        padding-inline: 12px;
    }
}

@media (max-width: 820px) {
    .top-note {
        min-height: 34px;
        padding: 6px 12px;
        font-size: 9px;
        line-height: 1.45;
    }

    .top-note a {
        min-height: 22px;
        line-height: 1.45;
    }

    .main-nav {
        width: calc(100% - 24px);
        min-height: 64px;
        height: 64px;
        margin: 8px auto 0;
        padding: 7px 10px;
        flex-wrap: nowrap;
        gap: 7px;
        border-radius: 16px;
    }

    .brand {
        order: 1;
        min-width: 0;
        margin: 0;
    }

    .brand img {
        width: 102px;
        height: 40px;
    }

    .nav-toggle {
        order: 2;
        display: grid;
        place-items: center;
        margin-inline-start: auto;
        background: rgba(255, 255, 255, 0.38);
    }

    .nav-cta {
        order: 3;
        height: 34px;
        padding: 0 12px;
        font-size: 10px;
    }

    /* Dropdown is detached from the nav row, so opening it no longer
       stretches the whole header or hides the hero content. */
    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        z-index: 1002;
        order: 4;
        width: 100%;
        max-height: calc(100vh - 150px);
        padding: 10px;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        overflow-y: auto;
        border: 1px solid rgba(255, 255, 255, 0.9);
        border-radius: 16px;
        background: rgba(247, 249, 252, 0.98);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
        box-shadow: 0 20px 45px rgba(6, 20, 31, 0.22);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px) scale(0.985);
        transform-origin: top center;
        transition:
            opacity 0.22s ease,
            visibility 0.22s ease,
            transform 0.22s ease;
    }

    .nav-links.open {
        display: flex;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        min-height: 46px;
        height: 46px;
        padding: 0 16px;
        justify-content: center;
        border-radius: 11px;
        background: #ffffff;
        color: #6f6045;
        font-size: 14px;
        font-weight: 700;
        box-shadow: 0 5px 14px rgba(17, 34, 46, 0.06);
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: var(--gold);
        color: #ffffff;
        box-shadow: 0 8px 18px rgba(157, 130, 83, 0.24);
    }

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

@media (max-width: 560px) {
    .top-note {
        min-height: 36px;
        padding: 6px 10px;
        font-size: 8px;
    }

    .main-nav {
        width: calc(100% - 16px);
        min-height: 60px;
        height: 60px;
        margin-top: 6px;
        padding: 6px 8px;
        gap: 5px;
        border-radius: 14px;
    }

    .brand img {
        width: 90px;
        height: 38px;
    }

    .nav-toggle {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .nav-toggle span {
        width: 22px;
    }

    .nav-cta {
        height: 32px;
        padding: 0 9px;
        gap: 6px;
        font-size: 9px;
    }

    .nav-cta svg {
        width: 14px;
        height: 14px;
    }

    .nav-links {
        top: calc(100% + 7px);
        padding: 8px;
        gap: 5px;
        border-radius: 14px;
    }

    .nav-links a {
        min-height: 44px;
        height: 44px;
        font-size: 13px;
    }
}

@media (max-width: 370px) {
    .brand img {
        width: 82px;
    }

    .nav-cta {
        padding-inline: 7px;
        font-size: 8.5px;
    }
}
/* =========================================================
   FLAMENCO — FINAL RESPONSIVE FIX
   Header + Hero + global responsive safeguards
   Keep this block at the very end of style.css.
========================================================= */

/* ---------- Global responsive safeguards ---------- */
html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

body,
.page-wraper,
.page-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    overflow-x: clip;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

.container-max {
    width: min(1460px, calc(100% - 40px));
    max-width: 100%;
    margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
    position: absolute !important;
    inset: 0 0 auto 0;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow: visible;
    pointer-events: none;
}

.site-header > * {
    pointer-events: auto;
}

.top-note {
    width: 100%;
    min-height: 27px;
    height: auto;
    padding: 4px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.97);
    color: #4d5963;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.45;
    overflow: hidden;
}

.top-note a {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1px 4px;
    color: inherit;
    white-space: normal;
    overflow-wrap: anywhere;
}

.top-note strong {
    color: #26333c;
    font-weight: 800;
}

.main-nav {
    position: relative;
    width: min(92%, 1460px);
    min-height: 58px;
    height: 58px;
    margin: 8px auto 0;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 15px;
    background: rgba(239, 244, 249, 0.88);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    direction: rtl;
    overflow: visible;
    box-shadow: 0 10px 27px rgba(6, 20, 31, 0.19);
}

.main-nav .brand {
    order: 1;
    flex: 0 0 auto;
    min-width: 112px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.main-nav .brand img {
    width: 112px;
    height: 40px;
    max-width: 100%;
    object-fit: contain;
}

.main-nav .nav-menu {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav .nav-links {
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    list-style: none;
}

.main-nav .nav-links li {
    flex: 0 0 auto;
}

.main-nav .nav-links a {
    min-width: 0;
    height: 29px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: #74644a;
    font-size: 11px;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
    box-shadow: none;
}

.main-nav .nav-links a:hover,
.main-nav .nav-links a.active {
    background: #ffffff;
    color: var(--gold);
    box-shadow: 0 7px 18px rgba(17, 34, 46, 0.08);
}

.main-nav .nav-toggle {
    order: 3;
    display: none;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
}

.main-nav .nav-toggle span {
    width: 23px;
    height: 2px;
    margin: 3px auto;
    display: block;
    border-radius: 999px;
    background: var(--navy);
    transform-origin: center;
    transition:
        transform 0.22s ease,
        opacity 0.22s ease;
}

.main-nav .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.main-nav .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.main-nav .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.main-nav .nav-cta {
    order: 4;
    flex: 0 0 auto;
    min-width: 112px;
    height: 31px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 4px;
    background: var(--gold);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.main-nav .nav-cta svg {
    width: 14px;
    height: 14px;
}

/* ---------- Home hero ---------- */
.hero-section {
    position: relative;
    padding-top: 10px !important;
    background: #ffffff;
}

.hero-section .container-max {
    width: min(1840px, calc(100% - 48px));
    max-width: 100%;
}

.hero-card {
    position: relative;
    width: 100%;
    height: clamp(540px, 47vw, 665px) !important;
    min-height: 0;
    border-radius: 21px;
    overflow: hidden;
    isolation: isolate;
    background: var(--navy);
    box-shadow: 0 14px 45px rgba(17, 34, 46, 0.18);
}

.hero-slider .hero-slide,
.hero-slider .hero-slide:first-of-type {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .hero-slide:first-of-type {
    position: absolute;
}

.hero-slider .hero-slide .hero-img,
.hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-slider .hero-slide .hero-shade,
.hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(7, 15, 22, 0.03) 0%,
            rgba(7, 15, 22, 0.08) 34%,
            rgba(7, 15, 22, 0.43) 64%,
            rgba(7, 15, 22, 0.74) 100%
        ),
        linear-gradient(
            0deg,
            rgba(8, 20, 29, 0.40) 0%,
            rgba(8, 20, 29, 0.03) 48%
        );
}

.hero-slider .hero-slide .hero-content,
.hero-content {
    position: absolute;
    z-index: 3;
    right: clamp(30px, 5.2vw, 82px);
    left: auto;
    bottom: clamp(58px, 8vw, 108px);
    width: min(560px, calc(100% - 90px));
    color: #ffffff;
    text-align: right;
}

.hero-content .hero-title,
.hero-content h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(36px, 4.25vw, 58px) !important;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    text-wrap: balance;
}

.hero-content .hero-title span,
.hero-content h1 span {
    display: block;
    color: #f4d28b;
}

.hero-content .hero-description,
.hero-content p {
    max-width: 540px;
    margin: 0 0 23px;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 400;
    line-height: 1.95;
}

.hero-content .gold-btn {
    min-width: 145px;
    height: 43px;
    padding: 0 21px;
    border-radius: 5px;
    font-size: 13px;
}

.hero-slider-dots {
    z-index: 6;
}

/* ---------- Large tablet / small desktop ---------- */
@media (max-width: 1100px) and (min-width: 821px) {
    .main-nav {
        width: 94%;
        padding-inline: 13px;
        gap: 7px;
    }

    .main-nav .brand {
        min-width: 98px;
    }

    .main-nav .brand img {
        width: 98px;
    }

    .main-nav .nav-links {
        gap: 3px;
    }

    .main-nav .nav-links a {
        padding-inline: 10px;
        font-size: 9.8px;
    }

    .main-nav .nav-cta {
        min-width: 96px;
        padding-inline: 10px;
    }

    .hero-content {
        right: 46px;
        width: min(510px, calc(100% - 80px));
    }
}

/* ---------- Tablet and mobile ---------- */
@media (max-width: 820px) {
    :root {
        --page-gutter: 14px;
    }

    .container-max {
        width: min(100% - 28px, 720px);
    }

    .top-note {
        min-height: 34px;
        padding: 5px 10px;
        font-size: 8.5px;
        line-height: 1.45;
    }

    .top-note a {
        min-height: 23px;
        line-height: 1.45;
    }

    .main-nav {
        width: calc(100% - 24px);
        min-height: 62px;
        height: 62px;
        margin-top: 7px;
        padding: 7px 9px;
        gap: 6px;
        border-radius: 15px;
    }

    .main-nav .brand {
        order: 1;
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(100% - 174px);
    }

    .main-nav .brand img {
        width: 100px;
        height: 39px;
    }

    .main-nav .nav-toggle {
        order: 2;
        display: block;
        margin-inline-start: auto;
    }

    .main-nav .nav-menu {
        order: 3;
        position: static;
        flex: 0 0 0;
        width: 0;
        height: 0;
        min-width: 0;
    }

    .main-nav .nav-cta {
        order: 4;
        min-width: 104px;
        height: 34px;
        padding: 0 11px;
        font-size: 9.5px;
    }

    .main-nav .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        z-index: 1002;
        width: 100%;
        max-height: calc(100svh - 145px);
        margin: 0;
        padding: 9px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
        overflow-y: auto;
        border: 1px solid rgba(255, 255, 255, 0.92);
        border-radius: 15px;
        background: rgba(247, 249, 252, 0.985);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
        box-shadow: 0 20px 45px rgba(6, 20, 31, 0.22);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px) scale(0.985);
        transform-origin: top center;
        transition:
            opacity 0.22s ease,
            visibility 0.22s ease,
            transform 0.22s ease;
    }

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

    .main-nav .nav-links li {
        width: 100%;
    }

    .main-nav .nav-links a {
        width: 100%;
        min-height: 45px;
        height: 45px;
        padding: 0 15px;
        justify-content: center;
        border-radius: 10px;
        background: #ffffff;
        color: #6f6045;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0 5px 14px rgba(17, 34, 46, 0.06);
    }

    .main-nav .nav-links a:hover,
    .main-nav .nav-links a.active {
        background: var(--gold);
        color: #ffffff;
        box-shadow: 0 8px 18px rgba(157, 130, 83, 0.24);
    }

    .hero-section {
        padding-top: 8px !important;
    }

    .hero-section .container-max {
        width: calc(100% - 20px);
    }

    .hero-card {
        height: clamp(570px, 100svh, 680px) !important;
        border-radius: 17px;
    }

    .hero-slider .hero-slide .hero-img,
    .hero-img {
        object-position: 52% center;
    }

    .hero-slider .hero-slide .hero-shade,
    .hero-shade {
        background:
            linear-gradient(
                0deg,
                rgba(6, 17, 25, 0.90) 0%,
                rgba(6, 17, 25, 0.66) 34%,
                rgba(6, 17, 25, 0.16) 68%,
                rgba(6, 17, 25, 0.10) 100%
            );
    }

    .hero-slider .hero-slide .hero-content,
    .hero-content {
        right: 24px;
        left: 24px;
        bottom: 42px;
        width: auto;
        max-width: 610px;
    }

    .hero-content .hero-title,
    .hero-content h1 {
        max-width: 560px;
        margin-bottom: 13px;
        font-size: clamp(31px, 7.2vw, 43px) !important;
        line-height: 1.17;
    }

    .hero-content .hero-description,
    .hero-content p {
        max-width: 560px;
        margin-bottom: 19px;
        font-size: 14px;
        line-height: 1.85;
    }

    .hero-content .gold-btn {
        min-width: 138px;
        height: 41px;
        font-size: 12px;
    }

    /* General grids */
    .about-grid,
    .location-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .projects-grid,
    .news-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .specialty-grid,
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .section-title-row {
        align-items: flex-start;
        gap: 14px;
    }
}

/* ---------- Small mobile ---------- */
@media (max-width: 560px) {
    .container-max {
        width: calc(100% - 24px);
    }

    .top-note {
        min-height: 34px;
        padding: 5px 8px;
        font-size: 7.7px;
    }

    .main-nav {
        width: calc(100% - 16px);
        min-height: 58px;
        height: 58px;
        margin-top: 6px;
        padding: 6px 7px;
        gap: 4px;
        border-radius: 13px;
    }

    .main-nav .brand {
        max-width: calc(100% - 158px);
    }

    .main-nav .brand img {
        width: 84px;
        height: 36px;
    }

    .main-nav .nav-toggle {
        flex-basis: 39px;
        width: 39px;
        height: 39px;
        border-radius: 9px;
    }

    .main-nav .nav-toggle span {
        width: 21px;
    }

    .main-nav .nav-cta {
        min-width: 96px;
        height: 31px;
        padding: 0 8px;
        gap: 5px;
        font-size: 8.5px;
    }

    .main-nav .nav-cta svg {
        width: 12px;
        height: 12px;
    }

    .main-nav .nav-links {
        top: calc(100% + 7px);
        padding: 8px;
        gap: 5px;
        border-radius: 13px;
    }

    .main-nav .nav-links a {
        min-height: 43px;
        height: 43px;
        font-size: 12.5px;
    }

    .hero-section .container-max {
        width: calc(100% - 14px);
    }

    .hero-card {
        height: clamp(540px, 100svh, 640px) !important;
        border-radius: 15px;
    }

    .hero-slider .hero-slide .hero-img,
    .hero-img {
        object-position: 54% center;
    }

    .hero-slider .hero-slide .hero-content,
    .hero-content {
        right: 18px;
        left: 18px;
        bottom: 31px;
    }

    .hero-content .hero-title,
    .hero-content h1 {
        margin-bottom: 11px;
        font-size: clamp(27px, 8.2vw, 35px) !important;
        line-height: 1.19;
    }

    .hero-content .hero-description,
    .hero-content p {
        margin-bottom: 16px;
        font-size: 12.5px;
        line-height: 1.8;
    }

    .hero-content .gold-btn {
        min-width: 126px;
        height: 38px;
        padding-inline: 16px;
        font-size: 11px;
    }

    .hero-slider-dots {
        bottom: 12px;
        gap: 6px;
    }

    .hero-slider-dot {
        width: 7px;
        height: 7px;
    }

    .hero-slider-dot.is-active {
        width: 22px;
    }

    .stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px 8px;
        padding: 22px 8px;
    }

    .specialty-grid,
    .features-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .section-heading h2,
    .section-title-row h2,
    .dark-heading h2 {
        font-size: clamp(25px, 7.2vw, 31px) !important;
    }

    .project-card,
    .news-card,
    .image-tile,
    .specialty-card {
        max-width: 100%;
    }
}

/* ---------- Very small devices ---------- */
@media (max-width: 380px) {
    .top-note {
        font-size: 7px;
    }

    .main-nav .brand {
        max-width: calc(100% - 145px);
    }

    .main-nav .brand img {
        width: 74px;
    }

    .main-nav .nav-toggle {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .main-nav .nav-cta {
        min-width: 88px;
        padding-inline: 6px;
        font-size: 7.8px;
    }

    .hero-content .hero-title,
    .hero-content h1 {
        font-size: 26px !important;
    }

    .hero-content .hero-description,
    .hero-content p {
        font-size: 11.7px;
    }
    
    /* ==================================
   ABOUT SECTION - MOBILE RESPONSIVE
================================== */

.about-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.about-grid {
    min-width: 0;
}

.about-media,
.about-content {
    width: 100%;
    min-width: 0;
}

.about-content h2,
.about-content p,
.check-list li {
    overflow-wrap: anywhere;
    word-break: normal;
}


/* Tablet + Mobile */
@media (max-width: 820px) {

    .about-section {
        padding: 55px 0 45px;
    }

    .about-section .container-max {
        width: calc(100% - 30px);
        max-width: 100%;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about-media {
        width: 100%;
        padding: 0;
    }

    .about-media img {
        display: block;
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 8px;
    }

    .about-media .media-blob {
        width: 130px;
        height: 110px;

        /* منع العنصر من الخروج خارج الشاشة */
        left: 8px;
        bottom: -18px;
    }

    .about-content {
        width: 100%;
    }

    .about-content h2 {
        font-size: 27px;
        line-height: 1.55;
        margin-bottom: 15px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 2;
        margin-bottom: 20px;
    }

    .check-list {
        margin-bottom: 24px;
    }

    .check-list li {
        align-items: flex-start;
        gap: 9px;
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 12px;
    }

    .check-list svg {
        width: 18px;
        height: 18px;
        margin-top: 5px;
        flex-shrink: 0;
    }
}


/* Small Mobile */
@media (max-width: 560px) {

    .about-section {
        padding: 42px 0 38px;
    }

    .about-section .container-max {
        width: calc(100% - 24px);
    }

    .about-grid {
        gap: 32px;
    }

    .about-media img {
        aspect-ratio: 1 / 0.8;
    }

    .about-media .media-blob {
        width: 100px;
        height: 85px;
        left: 5px;
        bottom: -12px;
    }

    .eyebrow {
        font-size: 13px;
        margin-bottom: 9px;
    }

    .about-content h2 {
        font-size: 23px;
        line-height: 1.55;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.9;
    }

    .check-list li {
        font-size: 13.5px;
    }

.outline-btn {
        width: 100%;
        height: 45px;
    }
}
}

/* Logo scale adjustment (+50%) */
.main-nav .brand img,
.brand img.brand-icon {
    width: 168px;
    height: 60px;
}

.footer-brand img {
    width: 233px;
}

@media (max-width: 820px) {
    .main-nav .brand img,
    .brand img.brand-icon {
        width: 150px;
        height: 59px;
    }
}

@media (max-width: 560px) {
    .main-nav .brand img,
    .brand img.brand-icon {
        width: 126px;
        height: 54px;
    }

    .footer-brand img {
        width: 210px;
    }
}

/* Front phone groups — management / sales */
.contact-phone-groups,
.about-phone-groups {
    display: grid;
    gap: 14px;
}

.contact-phone-group,
.about-phone-group {
    padding: 12px;
    border: 1px solid rgba(157, 130, 83, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
}

.contact-phone-group h4,
.about-phone-group h3 {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
}

.about-phone-groups .about-phone-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 560px) {
    .contact-phone-group,
    .about-phone-group {
        padding: 9px;
        border-radius: 12px;
    }

    .about-phone-groups .about-phone-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* About contact numbers — cleaner presentation */
.about-contact-numbers-section {
    padding: 34px 0 74px;
    background: linear-gradient(180deg, #fff 0%, #f6f8fa 100%);
}

.about-contact-card {
    display: block;
    padding: clamp(24px, 4vw, 46px);
    border: 1px solid rgba(157, 130, 83, 0.16);
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 0%, rgba(231, 194, 115, 0.2), transparent 30%),
        linear-gradient(135deg, #0e2230 0%, #13364b 100%);
    overflow: hidden;
}

.about-contact-copy {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.about-contact-copy span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(231, 194, 115, 0.12);
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.about-contact-copy h2 {
    margin: 12px 0 10px;
    color: #fff;
    font-size: clamp(24px, 2.6vw, 36px);
    line-height: 1.35;
    font-weight: 800;
}

.about-contact-copy p {
    max-width: 640px;
    margin: 0 auto;
    color: #cfdae2;
    font-size: 14px;
    line-height: 1.9;
}

.about-phone-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-phone-group {
    padding: 22px;
    border: 1px solid rgba(231, 194, 115, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-phone-group h3 {
    margin: 0 0 16px;
    color: var(--gold);
    font-size: 15px;
    font-weight: 900;
}

.about-phone-groups .about-phone-list {
    grid-template-columns: 1fr;
    gap: 12px;
}

.about-phone-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 4px 14px;
    min-height: 76px;
    padding: 14px 16px;
    border: 1px solid rgba(231, 194, 115, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 32px rgba(4, 18, 29, 0.14);
}

.about-phone-item:hover {
    background: #fff;
    border-color: rgba(231, 194, 115, 0.52);
}

.about-phone-item svg {
    width: 44px;
    height: 44px;
    padding: 11px;
    border-radius: 14px;
    color: var(--gold);
    background: rgba(231, 194, 115, 0.16);
}

.about-phone-item span {
    color: #6c7b86;
    font-size: 12px;
    font-weight: 700;
}

.about-phone-item strong {
    color: #102432;
    font-size: 17px;
    font-weight: 900;
}

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

@media (max-width: 560px) {
    .about-contact-numbers-section {
        padding: 18px 0 46px;
    }

    .about-contact-card {
        padding: 22px 14px;
        border-radius: 20px;
    }

    .about-contact-copy {
        margin-bottom: 20px;
    }

    .about-contact-copy h2 {
        font-size: 22px;
    }

    .about-contact-copy p {
        font-size: 13px;
        line-height: 1.75;
    }

    .about-phone-group {
        padding: 14px;
        border-radius: 18px;
    }

    .about-phone-item {
        grid-template-columns: 38px minmax(0, 1fr);
        min-height: 68px;
        padding: 12px;
        border-radius: 15px;
    }

    .about-phone-item svg {
        width: 38px;
        height: 38px;
        padding: 9px;
    }

    .about-phone-item strong {
        font-size: 15px;
    }
}

/* About contact numbers — classic split layout with grouped numbers */
.about-contact-numbers-section {
    padding: 8px 0 58px;
    background: #fff;
}

.about-contact-card {
    display: grid;
    grid-template-columns: minmax(320px, 1.15fr) minmax(260px, 0.85fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: center;
    padding: clamp(28px, 4.5vw, 52px);
    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(245, 199, 119, 0.18), transparent 34%),
        linear-gradient(135deg, #0f2230, #132f42);
    box-shadow: 0 22px 55px rgba(17, 34, 46, 0.16);
    overflow: hidden;
}

.about-contact-copy {
    max-width: none;
    margin: 0;
    text-align: right;
}

.about-contact-copy span {
    display: inline-block;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-contact-copy h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(28px, 3.1vw, 42px);
    line-height: 1.35;
    font-weight: 800;
}

.about-contact-copy p {
    max-width: none;
    margin: 0;
    color: #c9d4dc;
    font-size: 14px;
    line-height: 1.9;
}

.about-phone-groups {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.about-phone-group {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.about-phone-group h3 {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.about-phone-groups .about-phone-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-phone-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: center;
    min-height: 86px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    box-shadow: none;
}

.about-phone-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(245, 199, 119, 0.45);
}

.about-phone-item svg {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 11px;
    color: var(--gold);
    background: rgba(245, 199, 119, 0.13);
}

.about-phone-item span {
    color: #b9c7d1;
    font-size: 12px;
    font-weight: 600;
}

.about-phone-item strong {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

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

@media (max-width: 560px) {
    .about-contact-numbers-section {
        padding: 0 0 34px;
    }

    .about-contact-card {
        gap: 20px;
        padding: 20px 14px;
        border-radius: 16px;
    }

    .about-contact-copy span {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .about-contact-copy h2 {
        margin-bottom: 8px;
        font-size: 22px;
        line-height: 1.35;
    }

    .about-contact-copy p {
        font-size: 13px;
        line-height: 1.7;
    }

    .about-phone-groups .about-phone-list {
        grid-template-columns: 1fr;
    }

    .about-phone-item {
        grid-template-columns: 34px minmax(0, 1fr);
        min-height: 62px;
        padding: 10px;
        border-radius: 12px;
    }

    .about-phone-item svg {
        width: 34px;
        height: 34px;
        padding: 8px;
        border-radius: 10px;
    }

    .about-phone-item strong {
        font-size: 14px;
    }
}

/* News detail — professional editorial redesign */
.news-detail-redesign .news-detail-hero {
    padding: 132px 0 54px;
    background:
        radial-gradient(circle at 10% 8%, rgba(231, 194, 115, 0.19), transparent 28%),
        linear-gradient(135deg, #f8fafc 0%, #fff 54%, #f3f6f8 100%);
}

.news-detail-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: stretch;
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid rgba(157, 130, 83, 0.16);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 30px 90px rgba(17, 34, 46, 0.12);
    backdrop-filter: blur(12px);
}

.news-detail-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 2.4vw, 28px);
}

.news-back-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.news-detail-meta time,
.news-detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(157, 130, 83, 0.1);
    color: #8b7144;
    font-size: 12px;
    font-weight: 700;
}

.news-detail-copy h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(24px, 2.8vw, 40px);
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.news-detail-copy p,
.news-detail-summary {
    display: block;
    margin: 12px 0 0;
    color: #344858;
    font-size: clamp(16px, 1.45vw, 19px);
    font-weight: 600;
    line-height: 1.85;
}

.news-detail-copy .news-detail-meta {
    margin-top: 26px;
}

.news-detail-redesign .news-detail-cover {
    position: relative;
    min-height: clamp(330px, 44vw, 560px);
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(17, 34, 46, 0.16);
}

.news-detail-redesign .news-detail-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(17, 34, 46, 0.22));
    pointer-events: none;
}

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

.news-detail-redesign .news-detail-content-section {
    padding: 64px 0 88px;
    background:
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.news-detail-redesign .news-detail-layout {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 52px);
}

.news-detail-redesign .news-detail-content {
    position: relative;
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid rgba(17, 34, 46, 0.08);
    border-radius: 26px;
    background: #fff;
    color: #2f4350;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 2.2;
    box-shadow: 0 18px 55px rgba(17, 34, 46, 0.07);
}

.news-detail-redesign .news-detail-content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 34px;
    width: 86px;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: var(--gold);
}

.news-detail-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-self: start;
    position: static;
    top: auto;
}

.news-side-card {
    padding: 26px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(231, 194, 115, 0.2), transparent 36%),
        linear-gradient(145deg, #102432, #18394d);
    color: #fff;
    box-shadow: 0 18px 50px rgba(17, 34, 46, 0.16);
}

.news-side-card > span,
.news-related-title span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.news-side-card h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 22px;
    line-height: 1.5;
}

.news-side-card p {
    margin: 0 0 18px;
    color: #cbd6dd;
    font-size: 14px;
    line-height: 1.9;
}

.news-side-card .gold-btn {
    width: 100%;
    height: 44px;
}

.news-detail-redesign .news-related {
    position: static;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(17, 34, 46, 0.07);
}

.news-related-title h2 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: 21px;
}

.news-detail-redesign .news-related-card {
    border: 1px solid rgba(17, 34, 46, 0.06);
}

@media (max-width: 1050px) {
    .news-detail-hero-card,
    .news-detail-redesign .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .news-detail-sidebar {
        position: static;
    }
}

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

@media (max-width: 560px) {
    .news-detail-redesign .news-detail-hero {
        padding-top: 106px;
    }

    .news-detail-hero-card {
        padding: 12px;
        border-radius: 22px;
    }

    .news-detail-copy {
        padding: 12px 8px 4px;
    }

    .news-detail-meta {
        gap: 7px;
    }

    .news-detail-redesign .news-detail-cover {
        min-height: 260px;
        border-radius: 18px;
    }
}

/* News detail — balanced cards sizing */
.news-detail-redesign .news-detail-hero-card {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
    gap: clamp(20px, 3vw, 34px);
    align-items: stretch;
    min-height: 430px;
}

.news-detail-redesign .news-detail-copy,
.news-detail-redesign .news-detail-cover {
    min-height: 100%;
}

.news-detail-redesign .news-detail-cover {
    min-height: 430px;
}

.news-detail-redesign .news-detail-layout {
    align-items: start;
}

.news-detail-redesign .news-detail-content,
.news-detail-redesign .news-side-card,
.news-detail-redesign .news-related {
    border: 1px solid rgba(17, 34, 46, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(17, 34, 46, 0.08);
}

.news-detail-redesign .news-side-card,
.news-detail-redesign .news-related {
    padding: 24px;
}

.news-detail-redesign .news-related-list {
    gap: 12px;
}

.news-detail-redesign .news-related-card {
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 14px;
    min-height: 112px;
    padding: 10px;
    align-items: stretch;
    border-radius: 16px;
    background: #f8fafc;
}

.news-detail-redesign .news-related-card img {
    width: 98px;
    height: 92px;
    border-radius: 12px;
    object-fit: cover;
}

.news-detail-redesign .news-related-card > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-detail-redesign .news-related-card h3 {
    display: -webkit-box;
    margin: 6px 0 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 1050px) {
    .news-detail-redesign .news-detail-hero-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .news-detail-redesign .news-detail-cover {
        min-height: 340px;
    }
}

@media (max-width: 560px) {
    .news-detail-redesign .news-side-card,
    .news-detail-redesign .news-related {
        padding: 18px;
        border-radius: 18px;
    }

    .news-detail-redesign .news-related-card {
        grid-template-columns: 84px minmax(0, 1fr);
        min-height: 96px;
    }

    .news-detail-redesign .news-related-card img {
        width: 84px;
        height: 76px;
    }
}

/* News detail — immersive image card hero */
.news-detail-redesign .news-detail-hero {
    padding: 128px 0 58px;
    background:
        radial-gradient(circle at 8% 12%, rgba(231, 194, 115, 0.18), transparent 30%),
        linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.news-detail-redesign .news-detail-hero-card {
    position: relative;
    display: block;
    min-height: clamp(430px, 50vw, 560px);
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(157, 130, 83, 0.18);
    border-radius: clamp(24px, 3vw, 36px);
    background: #102432;
    box-shadow: 0 30px 90px rgba(17, 34, 46, 0.2);
}

.news-detail-redesign .news-detail-cover {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.news-detail-redesign .news-detail-cover::after {
    background:
        linear-gradient(90deg, rgba(7, 18, 28, 0.2) 0%, rgba(7, 18, 28, 0.45) 42%, rgba(7, 18, 28, 0.88) 100%),
        linear-gradient(180deg, rgba(7, 18, 28, 0.08) 0%, rgba(7, 18, 28, 0.32) 100%);
}

.news-detail-redesign .news-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-detail-redesign .news-detail-copy {
    position: relative;
    z-index: 2;
    width: min(100%, 690px);
    min-height: clamp(430px, 50vw, 560px);
    margin-inline-start: 0;
    margin-inline-end: auto;
    padding: clamp(24px, 4vw, 56px);
    justify-content: center;
    text-align: right;
}

.news-detail-redesign .news-back-link {
    margin-bottom: 22px;
    padding: 9px 14px;
    border: 1px solid rgba(231, 194, 115, 0.32);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #f2dba4;
    backdrop-filter: blur(10px);
}

.news-detail-redesign .news-detail-copy h1 {
    max-width: 620px;
    color: #fff;
    font-size: clamp(30px, 4.2vw, 56px);
    line-height: 1.22;
    letter-spacing: -0.03em;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.news-detail-redesign .news-detail-summary {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(15px, 1.55vw, 19px);
    font-weight: 500;
    line-height: 2;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.news-detail-redesign .news-detail-meta {
    margin-top: 28px;
    margin-bottom: 0;
}

.news-detail-redesign .news-detail-meta time,
.news-detail-redesign .news-detail-meta span {
    background: rgba(255, 255, 255, 0.16);
    color: #f7e6bb;
    backdrop-filter: blur(8px);
}

@media (max-width: 820px) {
    .news-detail-redesign .news-detail-hero-card,
    .news-detail-redesign .news-detail-copy {
        min-height: 480px;
    }

    .news-detail-redesign .news-detail-cover::after {
        background:
            linear-gradient(180deg, rgba(7, 18, 28, 0.28) 0%, rgba(7, 18, 28, 0.82) 100%);
    }

    .news-detail-redesign .news-detail-copy {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 560px) {
    .news-detail-redesign .news-detail-hero {
        padding-top: 108px;
    }

    .news-detail-redesign .news-detail-hero-card,
    .news-detail-redesign .news-detail-copy {
        min-height: 430px;
    }

    .news-detail-redesign .news-detail-copy {
        padding: 22px 18px 28px;
    }

    .news-detail-redesign .news-detail-copy h1 {
        font-size: clamp(28px, 8vw, 38px);
    }
}
