/* =========================================================
   ANCHOR ENGINEERING
   MASTER STYLESHEET
   =========================================================
   01. Theme Variables
   02. Reset & Global
   03. Typography
   04. Containers
   05. Navbar
   06. Mobile Navigation
   ========================================================= */


/* =========================================================
   01. THEME VARIABLES
   ========================================================= */

:root {
    /* ---------- CORE COLORS ---------- */

    --anchor-bg: #0b111b;
    --anchor-bg-soft: #111a28;
    --anchor-bg-light: #182335;
    --anchor-panel: rgba(17, 25, 38, 0.88);
    --anchor-panel-solid: #111a28;
    --anchor-gold: #d4af37;
    --anchor-gold-light: #f2c078;
    --anchor-gold-soft: rgba(212, 175, 55, 0.18);
    --anchor-white: #ffffff;
    --anchor-text: #eeeeee;
    --anchor-muted: #aeb6c2;
    --anchor-muted-dark: #747e8c;
    /* ---------- BORDERS ---------- */

    --anchor-border: rgba(212, 175, 55, 0.28);
    --anchor-border-strong: rgba(212, 175, 55, 0.55);
    /* ---------- RADIUS ---------- */

    --anchor-radius-sm: 6px;
    --anchor-radius-md: 10px;
    --anchor-radius-lg: 14px;
    /* ---------- SHADOWS ---------- */

    --anchor-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
    --anchor-shadow-gold: 0 10px 35px rgba(212, 175, 55, 0.16);
    --anchor-glow: 0 0 20px rgba(212, 175, 55, 0.16);
    /* ---------- TRANSITIONS ---------- */

    --anchor-transition-fast: 0.2s ease;
    --anchor-transition: 0.3s ease;
    --anchor-transition-slow: 0.5s ease;
    /* ---------- CONTAINER ---------- */

    --anchor-container: 1500px;
    --anchor-page-padding: 32px;
}


/* =========================================================
   02. RESET & GLOBAL
   ========================================================= */
main {
    direction: ltr;
}

main p,
main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main span,
main li,
main label {
    unicode-bidi: plaintext;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}



/* =========================================================
   GLOBAL HTML
   ========================================================= */
html {
    scroll-behavior: smooth;
}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}


/* =========================================================
   GLOBAL BODY
   ========================================================= */

body {
    position: relative;
    min-height: 100vh;
    color: var(--anchor-text);
    /*
       Keep the body itself as a dark base.
       The actual background image is handled
       separately by ::before.
    */

    background: linear-gradient( to bottom, #070b12, #0b111c );
}


    /* =========================================================
   GLOBAL BACKGROUND IMAGE
   ========================================================= */

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: -2;
        /*
       The same image is used across the
       entire Anchor website.
    */

        background-image: linear-gradient( rgba(7, 11, 18, 0.48), rgba(7, 11, 18, 0.58) ), url('/img/hero.png');
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }


    /* =========================================================
   SUBTLE BACKGROUND TEXTURE
   ========================================================= */

    body::after {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: -1;
        background: radial-gradient( circle at 20% 10%, rgba(212, 175, 55, 0.04), transparent 30% ), radial-gradient( circle at 80% 70%, rgba(37, 99, 235, 0.045), transparent 35% );
    }


/* =========================================================
   LINKS
   ========================================================= */

a {
    color: inherit;
    text-decoration: none;
}

    a:hover,
    a:focus,
    a:active {
        color: inherit;
        text-decoration: none;
    }


/* =========================================================
   IMAGES
   ========================================================= */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.anchor-project-areas-section .anchor-hero-title {
    direction: rtl;
    text-align: right;
}


/* =========================================================
   MOBILE BACKGROUND
   ========================================================= */

@media (max-width: 767.98px) {

    body {
        /*
           Mobile browsers handle fixed backgrounds
           differently, so the background layer remains
           fixed while the page itself scrolls normally.
        */
        background-attachment: scroll;
    }

        body::before {
            /*
           Keep the image sharp and proportional on
           narrow screens without repeating it.
        */

            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
        }
}


/* ---------- BUTTONS ---------- */
button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


/* ---------- SECTIONS ---------- */

section {
    position: relative;
    width: 100%;
}


/* ---------- SELECTION ---------- */

::selection {
    background: var(--anchor-gold);
    color: #111;
}


/* =========================================================
   03. TYPOGRAPHY
   ========================================================= */


/* ---------- PRIMARY DISPLAY FONT ---------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--anchor-white);
    line-height: 1.15;
}


p {
    margin-top: 0;
}


/* ---------- GOLD TEXT ---------- */

.text-anchor-gold {
    color: var(--anchor-gold-light);
}


.text-anchor-muted {
    color: var(--anchor-muted);
}


/* ---------- MAIN SECTION TITLE ---------- */

.section-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 45px;
    color: var(--anchor-gold-light);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp( 28px, 3vw, 40px );
    font-weight: 600;
    letter-spacing: 1.5px;
    text-align: center;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
}


    /* ---------- SIDE LINES ---------- */

    .section-title::before,
    .section-title::after {
        content: "";
        flex: 1;
        height: 1px;
        max-width: 260px;
        background: linear-gradient( to right, transparent, var(--anchor-gold) );
        margin: 0 22px;
    }


    .section-title::after {
        background: linear-gradient( to left, transparent, var(--anchor-gold) );
    }


/* =========================================================
   04. CONTAINERS & PAGE STRUCTURE
   ========================================================= */

.anchor-container {
    width: min( var(--anchor-container), calc(100% - 64px) );
    margin-left: auto;
    margin-right: auto;
}


.page-container {
    width: min( var(--anchor-container), calc(100% - 64px) );
    margin-left: auto;
    margin-right: auto;
}


/* ---------- STANDARD SECTION SPACING ---------- */

.anchor-section {
    padding-top: 80px;
    padding-bottom: 80px;
}


/* ---------- SMALLER SECTION ---------- */

.anchor-section--compact {
    padding-top: 55px;
    padding-bottom: 55px;
}


/* ---------- CONTENT WIDTH ---------- */

.anchor-content-narrow {
    width: min( 900px, 100% );
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   05. NAVBAR
   ========================================================= */

.custom-navbar {
    position: relative;
    width: 100%;
    z-index: 1000;
    background: linear-gradient( 135deg, #090d14 0%, #111824 100% );
    border-bottom: 1px solid rgba( 212, 175, 55, 0.18 );
    box-shadow: 0 4px 25px rgba( 0, 0, 0, 0.22 );
}


/* ---------- NAVBAR CONTAINER ---------- */

.navbar-container {
    width: min( 1700px, calc(100% - 60px) );
    margin-left: auto;
    margin-right: auto;
}


/* ---------- NAVBAR CONTENT ---------- */

.navbar-content {
    min-height: 92px;
    display: flex;
    align-items: center;
    width: 100%;
}


/* =========================================================
   NAVBAR BRAND
   ========================================================= */

.navbar-brand {
    flex-shrink: 0;
}


.brand-link {
    display: block;
    text-decoration: none;
}


.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* ---------- LOGO ---------- */

.logo-img {
    width: auto;
    height: 70px;
    object-fit: contain;
    transition: transform var(--anchor-transition);
}


.brand-link:hover .logo-img {
    transform: scale(1.025);
}


/* ---------- BRAND TEXT ---------- */

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.brand-title {
    margin: 0;
    color: var(--anchor-gold);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}


.brand-subtitle {
    margin-top: 6px;
    color: var(--anchor-muted);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar-navigation {
    flex: 1;
    min-width: 0;
}


.navbar-collapse {
    justify-content: center;
}


.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: clamp( 28px, 4vw, 60px );
    margin: 0;
    padding: 0;
    list-style: none;
}


    .navbar-nav .nav-link {
        position: relative;
        display: inline-block;
        padding: 8px 0 !important;
        color: var(--anchor-white) !important;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 1.4px;
        white-space: nowrap;
        transition: color var(--anchor-transition-fast);
    }


        .navbar-nav .nav-link:hover {
            color: var(--anchor-gold-light) !important;
        }


        /* ---------- NAV LINK UNDERLINE ---------- */

        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--anchor-gold);
            transform: translateX(-50%);
            transition: width var(--anchor-transition);
        }


        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }


        /* ---------- ACTIVE LINK ---------- */

        .navbar-nav .nav-link.active,
        .navbar-nav .nav-link[aria-current="page"] {
            color: var(--anchor-gold-light) !important;
        }


            .navbar-nav .nav-link.active::after,
            .navbar-nav .nav-link[aria-current="page"]::after {
                width: 100%;
            }


/* =========================================================
   LANGUAGE SWITCHER
   ========================================================= */

.navbar-language {
    flex-shrink: 0;
    margin-left: auto;
}


.language-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 78px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--anchor-border);
    border-radius: var(--anchor-radius-md);
    background: rgba( 255, 255, 255, 0.035 );
    color: var(--anchor-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all var(--anchor-transition);
}


    .language-switcher i {
        color: var(--anchor-gold);
        font-size: 14px;
    }


    .language-switcher:hover {
        color: var(--anchor-white);
        border-color: var(--anchor-border-strong);
        background: rgba( 212, 175, 55, 0.08 );
        box-shadow: var(--anchor-glow);
    }


/* =========================================================
   NAVBAR TOGGLER
   ========================================================= */

.navbar-toggler {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: 12px;
    padding: 0;
    border: 1px solid var(--anchor-border);
    border-radius: var(--anchor-radius-md);
    background: rgba( 255, 255, 255, 0.035 );
}


    .navbar-toggler:focus {
        box-shadow: none;
    }


.navbar-toggler-icon {
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.95)' stroke-linecap='round' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* =========================================================
   06. MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 991.98px) {

    .custom-navbar {
        padding: 7px 0;
    }


    .navbar-container {
        width: calc(100% - 36px);
    }


    .navbar-content {
        min-height: 64px;
        flex-wrap: wrap;
    }


    /* ---------- LOGO ---------- */

    .logo-img {
        height: 52px;
    }


    .brand-wrapper {
        gap: 11px;
    }


    .brand-title {
        font-size: 21px;
    }


    .brand-subtitle {
        margin-top: 3px;
        font-size: 9px;
        letter-spacing: 1.3px;
    }


    /* ---------- LANGUAGE ---------- */

    .navbar-language {
        margin-left: auto;
        margin-right: 2px;
    }


    .language-switcher {
        min-width: 66px;
        height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }


    /* ---------- TOGGLER ---------- */

    .navbar-toggler {
        display: flex;
        flex-shrink: 0;
    }


    /* ---------- NAVIGATION ---------- */

    .navbar-navigation {
        flex: 0 0 100%;
    }


    .navbar-collapse {
        margin-top: 15px;
        padding-bottom: 8px;
    }


    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4px;
    }


        .navbar-nav .nav-link {
            width: 100%;
            padding: 8px 0 !important;
            font-size: 15px;
            letter-spacing: 1px;
        }


            .navbar-nav .nav-link::after {
                display: none;
            }


            .navbar-nav .nav-link.active {
                color: var(--anchor-gold-light) !important;
            }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 767.98px) {

    .anchor-container,
    .page-container {
        width: calc(100% - 36px);
    }


    .anchor-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }


    .section-title {
        margin-bottom: 32px;
        font-size: clamp( 25px, 7vw, 32px );
    }


        .section-title::before,
        .section-title::after {
            max-width: 80px;
            margin: 0 12px;
        }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .navbar-container {
        width: calc(100% - 24px);
    }


    .anchor-container,
    .page-container {
        width: calc(100% - 28px);
    }


    .brand-wrapper {
        gap: 8px;
    }


    .logo-img {
        height: 47px;
    }


    .brand-title {
        font-size: 18px;
    }


    .brand-subtitle {
        font-size: 8px;
        letter-spacing: 1px;
    }


    .language-switcher {
        min-width: 60px;
        height: 34px;
        padding: 0 9px;
        font-size: 11px;
    }


    .navbar-toggler {
        width: 38px;
        height: 38px;
        margin-left: 7px;
    }


    .section-title::before,
    .section-title::after {
        display: none;
    }
}

/* =========================================================
   07. HERO SECTION
   ========================================================= */


/* =========================================================
   HOME HERO
   ========================================================= */

.anchor-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.anchor-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(7, 14, 22, 0.62) 0%, rgba(7, 14, 22, 0.38) 48%, rgba(7, 14, 22, 0.18) 100% );
    z-index: 1;
}


/* =========================================================
   HERO CONTAINER
   ========================================================= */

.anchor-hero-container {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: flex;
    align-items: center;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

/* =========================================================
   HERO — LEFT POSITION / RTL TEXT
   ========================================================= */

.anchor-hero-content {
    direction: ltr;
    text-align: left;
}


/* Arabic text inside the hero */

.anchor-hero-eyebrow,
.anchor-hero-title,
.anchor-hero-description {
    direction: rtl;
    text-align: left;
    unicode-bidi: plaintext;
}

/* =========================================================
   HERO EYEBROW
   ========================================================= */

.anchor-hero-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--anchor-gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.8px;
    line-height: 1.5;
    text-transform: uppercase;
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.anchor-hero-title {
    margin: 0 0 22px;
    color: var(--anchor-white);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.anchor-hero-description {
    width: min(590px, 100%);
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.anchor-hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* =========================================================
   ANCHOR BUTTON
   ========================================================= */

.anchor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 25px;
    border: 1px solid var(--anchor-gold);
    border-radius: var(--anchor-radius-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: all var(--anchor-transition);
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.anchor-btn-primary {
    background: var(--anchor-gold);
    color: #111 !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.16);
}


    .anchor-btn-primary span {
        font-size: 18px;
        line-height: 1;
        transition: transform var(--anchor-transition);
    }


    .anchor-btn-primary:hover {
        background: var(--anchor-gold-light);
        border-color: var(--anchor-gold-light);
        color: #111 !important;
        transform: translateY(-2px);
        box-shadow: var(--anchor-shadow-gold);
    }


        .anchor-btn-primary:hover span {
            transform: translateX(-4px);
        }


/* =========================================================
   HERO DECORATIVE LINE
   ========================================================= */

.anchor-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    z-index: 3;
    background: linear-gradient( 90deg, transparent, var(--anchor-gold), transparent );
    opacity: .45;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .anchor-hero,
    .anchor-hero-container {
        min-height: 560px;
    }

    .anchor-hero-content {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .anchor-hero,
    .anchor-hero-container {
        min-height: 500px;
    }

    .anchor-hero-overlay {
        background: linear-gradient( 90deg, rgba(7, 11, 18, 0.68) 0%, rgba(7, 11, 18, 0.45) 55%, rgba(7, 11, 18, 0.25) 100% );
    }

    .anchor-hero-content {
        width: min(620px, 100%);
        padding: 60px 0;
    }

    .anchor-hero-title {
        font-size: clamp(42px, 7vw, 60px);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .anchor-hero,
    .anchor-hero-container {
        min-height: 500px;
    }

    .anchor-hero {
        background-position: center center;
    }

    .anchor-hero-overlay {
        background: linear-gradient( 90deg, rgba(7, 11, 18, 0.76) 0%, rgba(7, 11, 18, 0.56) 65%, rgba(7, 11, 18, 0.35) 100% );
    }

    .anchor-hero-content {
        width: 100%;
        padding: 55px 0;
    }

    .anchor-hero-eyebrow {
        margin-bottom: 15px;
        font-size: 11px;
        letter-spacing: 1.1px;
    }

    .anchor-hero-title {
        margin-bottom: 20px;
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.1;
        letter-spacing: -.5px;
    }

    .anchor-hero-description {
        margin-bottom: 28px;
        font-size: 14px;
        line-height: 1.85;
    }

    .anchor-btn {
        min-height: 46px;
        padding: 0 20px;
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .anchor-hero,
    .anchor-hero-container {
        min-height: 460px;
    }

    .anchor-hero-content {
        padding: 45px 0;
    }

    .anchor-hero-title {
        font-size: clamp(34px, 11vw, 46px);
    }

    .anchor-hero-description {
        max-width: 95%;
        font-size: 13px;
    }
} 

/* =========================================================
   PROJECT AREAS SECTION
   ========================================================= */
.anchor-project-areas-section {
    position: relative;
    padding: 90px 0;
}


/* =========================================================
   PROJECT AREA SLIDER
   ========================================================= */

.anchor-project-area-slider {
    width: 100%;
    position: relative;
}

.anchor-slider-viewport {
    width: 100%;
    overflow: hidden;
}

.anchor-project-areas-track {
    display: flex;
    gap: 24px;
    width: 100%;
    transition: transform 0.7s ease;
    will-change: transform;
}


/* =========================================================
   PROJECT AREA ITEM
   ========================================================= */

.anchor-project-area-item {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 0;
}


/* =========================================================
   PROJECT AREA CARD
   ========================================================= */

.anchor-project-area-card {
    display: block;
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 6px;
    background: #111820;
    text-decoration: none;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

    .anchor-project-area-card:hover {
        transform: translateY(-5px);
        border-color: rgba(212, 175, 55, 0.65);
    }


/* =========================================================
   PROJECT AREA IMAGE
   ========================================================= */

.anchor-project-area-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .anchor-project-area-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.7s ease;
    }

.anchor-project-area-card:hover
.anchor-project-area-image img {
    transform: scale(1.045);
}


/* =========================================================
   PROJECT AREA GRADIENT
   ========================================================= */

.anchor-project-area-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(7, 11, 18, 0.00) 30%, rgba(7, 11, 18, 0.10) 45%, rgba(7, 11, 18, 0.58) 70%, rgba(7, 11, 18, 0.95) 100% );
    pointer-events: none;
}


/* =========================================================
   PROJECT AREA CONTENT
   ========================================================= */

.anchor-project-area-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 25px 23px 21px;
    direction: ltr;
    text-align: left;
    color: #fff;
}


/* =========================================================
   LOCATION
   ========================================================= */

.anchor-project-area-location {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
}

.anchor-location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    color: var(--anchor-gold);
    font-size: 10px;
}

.anchor-project-area-location h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}


/* =========================================================
   BOTTOM ROW
   ========================================================= */

.anchor-project-area-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}


/* =========================================================
   PROJECT COUNT
   ========================================================= */

.anchor-project-count {
    color: var(--anchor-gold);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}


/* =========================================================
   VIEW PROJECTS
   ========================================================= */

.anchor-project-area-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
}

    .anchor-project-area-link span {
        color: var(--anchor-gold);
        font-size: 15px;
        transition: transform 0.3s ease;
    }

.anchor-project-area-card:hover
.anchor-project-area-link {
    color: #fff;
}

    .anchor-project-area-card:hover
    .anchor-project-area-link span {
        transform: translateX(-4px);
    }


/* =========================================================
   TABLET — TWO CARDS
   ========================================================= */

@media (max-width: 991.98px) {

    .anchor-project-area-item {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .anchor-project-area-card {
        height: 350px;
    }
}


/* =========================================================
   MOBILE — ALL CARDS STACKED
   ========================================================= */

@media (max-width: 767.98px) {

    .anchor-project-areas-section {
        padding: 70px 0;
    }

    .anchor-project-areas-track {
        flex-direction: column;
        gap: 18px;
        transform: none !important;
    }

    .anchor-project-area-item {
        width: 100%;
        flex: none;
    }

    .anchor-project-area-card {
        height: 300px;
    }

    .anchor-project-area-content {
        padding: 22px 20px 19px;
    }

    .anchor-project-area-location {
        margin-bottom: 14px;
    }

        .anchor-project-area-location h3 {
            font-size: 19px;
        }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .anchor-project-area-card {
        height: 285px;
    }
}



/* =========================================================
   ENGINEERING EXCELLENCE
   ========================================================= */
.anchor-engineering-section {
    position: relative;
    padding: 100px 0;
}


/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.anchor-engineering-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 70px;
    direction: ltr;
}


/* =========================================================
   IMAGE
   ========================================================= */

.anchor-engineering-image {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 6px;
}


    .anchor-engineering-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(7, 11, 18, 0.08), rgba(7, 11, 18, 0.38) );
        pointer-events: none;
    }


    .anchor-engineering-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.7s ease;
    }


    .anchor-engineering-image:hover img {
        transform: scale(1.035);
    }


/* =========================================================
   CONTENT
   ========================================================= */

.anchor-engineering-content {
    direction: ltr;
    text-align: left;
    max-width: 600px;
}


    /* =========================================================
   TITLE
   ========================================================= */

    .anchor-engineering-content
    .anchor-section-title {
        margin-bottom: 24px;
    }


/* =========================================================
   DESCRIPTION
   ========================================================= */

.anchor-engineering-description {
    margin: 0 0 34px;
    max-width: 560px;
    color: rgba( 255, 255, 255, 0.76 );
    font-size: 15px;
    line-height: 1.95;
}


/* =========================================================
   POINTS
   ========================================================= */

.anchor-engineering-points {
    display: flex;
    flex-direction: column;
    gap: 22px;
}


/* =========================================================
   INDIVIDUAL POINT
   ========================================================= */

.anchor-engineering-point {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba( 255, 255, 255, 0.08 );
}


    .anchor-engineering-point:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }


/* =========================================================
   NUMBER
   ========================================================= */

.anchor-engineering-point-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba( 212, 175, 55, 0.45 );
    border-radius: 50%;
    color: var(--anchor-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
}


/* =========================================================
   POINT TITLE
   ========================================================= */

.anchor-engineering-point h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   POINT DESCRIPTION
   ========================================================= */

.anchor-engineering-point p {
    margin: 0;
    color: rgba( 255, 255, 255, 0.62 );
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .anchor-engineering-section {
        padding: 80px 0;
    }


    .anchor-engineering-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .anchor-engineering-image {
        height: 400px;
    }


    .anchor-engineering-content {
        max-width: 700px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .anchor-engineering-section {
        padding: 70px 0;
    }


    .anchor-engineering-wrapper {
        gap: 35px;
    }


    .anchor-engineering-image {
        height: 300px;
    }


    .anchor-engineering-description {
        font-size: 14px;
        line-height: 1.85;
    }


    .anchor-engineering-point {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 13px;
    }


    .anchor-engineering-point-number {
        width: 34px;
        height: 34px;
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .anchor-engineering-image {
        height: 270px;
    }


    .anchor-engineering-point {
        grid-template-columns: 36px minmax(0, 1fr);
    }


    .anchor-engineering-point-number {
        width: 32px;
        height: 32px;
    }
}




/* =========================================================
   FEATURED PROJECTS
   ========================================================= */
.anchor-featured-projects-section {
    position: relative;
    padding: 100px 0;
}


/* =========================================================
   SHOWCASE
   ========================================================= */

.anchor-featured-showcase {
    width: 100%;
    position: relative;
}


/* =========================================================
   PROJECT TRACK
   ========================================================= */

.anchor-featured-projects-track {
    position: relative;
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   INDIVIDUAL PROJECT
   ========================================================= */

.anchor-featured-project {
    display: grid;
    /*
       DESKTOP:
       IMAGE LEFT
       INFORMATION RIGHT
    */
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
    height: 470px;
    min-height: 470px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(10, 15, 22, 0.72);
    direction: ltr;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    inset: 0;
    transform: translateX(25px);
    transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.65s ease;
}


    /* =========================================================
   ACTIVE PROJECT
   ========================================================= */

    .anchor-featured-project.active {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }


/* =========================================================
   PROJECT IMAGE LINK
   ========================================================= */

.anchor-featured-project-image-link {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    text-decoration: none;
    overflow: hidden;
}


/* =========================================================
   PROJECT IMAGE AREA
   ========================================================= */

.anchor-featured-project-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 470px;
    overflow: hidden;
    /*
       Keeps the image area stable without
       changing the height of the card.
    */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 11, 18, 0.35);
}


    /* =========================================================
   PROJECT IMAGE
   ========================================================= */

    .anchor-featured-project-image img {
        display: block;
        width: 100%;
        height: 100%;
        /*
       DESKTOP:

       The complete photograph remains visible.
       The original proportions are preserved.
       No stretching.
       No distortion.
       No cropping.
    */
        object-fit: contain;
        object-position: center;
        transition: transform 0.9s ease;
    }


/* =========================================================
   IMAGE HOVER
   ========================================================= */

.anchor-featured-project:hover
.anchor-featured-project-image img {
    transform: scale(1.015);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.anchor-featured-project-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(7, 11, 18, 0.00) 40%, rgba(7, 11, 18, 0.18) 72%, rgba(7, 11, 18, 0.42) 100% );
    pointer-events: none;
}


/* =========================================================
   PROJECT INFORMATION
   ========================================================= */

.anchor-featured-project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 55px 48px;
    direction: ltr;
    text-align: left;
    background: rgba(9, 14, 21, 0.82);
    overflow: hidden;
}


/* =========================================================
   LABEL
   ========================================================= */

.anchor-featured-project-label {
    margin-bottom: 18px;
    color: var(--anchor-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.anchor-featured-project-title {
    margin: 0 0 16px;
    max-width: 500px;
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.4px;
}


/* =========================================================
   LOCATION
   ========================================================= */

.anchor-featured-project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 500;
}


.anchor-featured-location-icon {
    color: var(--anchor-gold);
    font-size: 10px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.anchor-featured-project-description {
    max-width: 500px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   PROJECT LINK
   ========================================================= */

.anchor-featured-project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.55);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}


.anchor-featured-project-arrow {
    color: var(--anchor-gold);
    font-size: 17px;
    line-height: 1;
    transition: transform 0.3s ease;
}


.anchor-featured-project-link:hover {
    color: var(--anchor-gold);
    border-color: var(--anchor-gold);
}


    .anchor-featured-project-link:hover
    .anchor-featured-project-arrow {
        transform: translateX(-5px);
    }


/* =========================================================
   NAVIGATION
   ========================================================= */

.anchor-featured-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding: 0 5px;
}


/* =========================================================
   INDICATORS
   ========================================================= */

.anchor-featured-indicators {
    display: flex;
    align-items: center;
    gap: 8px;
}


.anchor-featured-indicator {
    width: 38px;
    height: 28px;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}


    .anchor-featured-indicator::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        margin-top: 5px;
        background: rgba(255, 255, 255, 0.15);
        transition: background 0.3s ease, transform 0.3s ease;
    }


    .anchor-featured-indicator.active {
        color: var(--anchor-gold);
    }


        .anchor-featured-indicator.active::after {
            background: var(--anchor-gold);
            transform: scaleX(1);
        }


/* =========================================================
   COUNTER
   ========================================================= */

.anchor-featured-counter {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
    letter-spacing: 1px;
}


    .anchor-featured-counter #featuredCurrentNumber {
        color: var(--anchor-gold);
        font-weight: 700;
    }


.anchor-featured-counter-divider {
    opacity: .4;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.anchor-featured-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .anchor-featured-projects-section {
        padding: 80px 0;
    }


    .anchor-featured-project {
        /*
           Still:
           IMAGE LEFT
           INFORMATION RIGHT
        */
        grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
        height: 430px;
        min-height: 430px;
    }


    .anchor-featured-project-image {
        height: 100%;
        min-height: 430px;
    }


    .anchor-featured-project-content {
        height: 100%;
        padding: 40px 32px;
    }


    .anchor-featured-project-title {
        font-size: 30px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .anchor-featured-projects-section {
        padding: 70px 0;
    }


    /*
       MOBILE:

       IMAGE
       ↓
       INFORMATION

       This intentionally changes from
       the desktop left/right layout.
    */

    .anchor-featured-project {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        min-height: 0;
    }


    .anchor-featured-project-image-link {
        width: 100%;
        height: auto;
    }


    .anchor-featured-project-image {
        width: 100%;
        height: 280px;
        min-height: 280px;
        display: block;
    }


        /*
       Keep the mobile image behavior that
       was already working well.
    */
        .anchor-featured-project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }


    .anchor-featured-project-image-overlay {
        background: linear-gradient( to bottom, rgba(7, 11, 18, 0.00) 35%, rgba(7, 11, 18, 0.35) 100% );
    }


    .anchor-featured-project-content {
        width: 100%;
        height: auto;
        padding: 30px 25px 32px;
        background: rgba(9, 14, 21, 0.88);
        overflow: visible;
    }


    .anchor-featured-project-label {
        margin-bottom: 13px;
        font-size: 10px;
    }


    .anchor-featured-project-title {
        margin-bottom: 13px;
        font-size: 28px;
    }


    .anchor-featured-project-location {
        margin-bottom: 18px;
    }


    .anchor-featured-project-description {
        margin-bottom: 25px;
        font-size: 13px;
        line-height: 1.8;
    }


    .anchor-featured-navigation {
        margin-top: 18px;
    }


    .anchor-featured-indicator {
        width: 30px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .anchor-featured-project-image {
        height: 245px;
        min-height: 245px;
    }


    .anchor-featured-project-content {
        padding: 27px 20px 29px;
    }


    .anchor-featured-project-title {
        font-size: 25px;
    }


    .anchor-featured-project-description {
        font-size: 12.5px;
    }


    .anchor-featured-navigation {
        padding: 0;
    }
}


/* =========================================================
   ANCHOR FOOTER
   ========================================================= */
.anchor-footer {
    position: relative;
    margin-top: 80px;
    background: rgba(6, 10, 16, 0.88);
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    direction: ltr;
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.anchor-footer-main {
    padding: 65px 0 55px;
}


/* =========================================================
   FOOTER GRID
   ========================================================= */

.anchor-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 55px;
    align-items: start;
    direction: ltr;
}


/* =========================================================
   BRAND
   ========================================================= */

.anchor-footer-brand {
    max-width: 330px;
    text-align: left;
}


.anchor-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 22px;
}


    .anchor-footer-logo img {
        display: block;
        width: 145px;
        height: auto;
        object-fit: contain;
    }


.anchor-footer-description {
    margin: 0;
    color: rgba( 255, 255, 255, 0.58 );
    font-size: 13px;
    line-height: 1.9;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.anchor-footer-column {
    text-align: left;
}


.anchor-footer-heading {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 11px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}


    .anchor-footer-heading::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 28px;
        height: 1px;
        background: var(--anchor-gold);
    }


/* =========================================================
   LINKS
   ========================================================= */

.anchor-footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}


    .anchor-footer-links a {
        color: rgba( 255, 255, 255, 0.58 );
        font-size: 12px;
        text-decoration: none;
        transition: color 0.25s ease, padding-left 0.25s ease;
    }


        .anchor-footer-links a:hover {
            padding-left: 4px;
            color: var(--anchor-gold);
        }


/* =========================================================
   CONTACT
   ========================================================= */

.anchor-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}


    .anchor-footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        color: rgba( 255, 255, 255, 0.58 );
        font-size: 12px;
        line-height: 1.6;
    }


.anchor-footer-contact-icon {
    flex-shrink: 0;
    color: var(--anchor-gold);
    font-size: 8px;
    margin-top: 5px;
}


.anchor-footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}


    .anchor-footer-contact a:hover {
        color: var(--anchor-gold);
    }


/* =========================================================
   COMPANY TEXT
   ========================================================= */

.anchor-footer-column-text {
    max-width: 230px;
    margin: 0;
    color: rgba( 255, 255, 255, 0.55 );
    font-size: 12px;
    line-height: 1.9;
}


/* =========================================================
   BOTTOM BAR
   ========================================================= */

.anchor-footer-bottom {
    border-top: 1px solid rgba( 255, 255, 255, 0.07 );
}


.anchor-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 58px;
    color: rgba( 255, 255, 255, 0.38 );
    font-size: 10px;
    direction: ltr;
}


.anchor-footer-tagline {
    color: rgba( 212, 175, 55, 0.65 );
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .anchor-footer-main {
        padding: 55px 0 45px;
    }


    .anchor-footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 40px;
    }


    .anchor-footer-brand {
        grid-column: span 3;
        max-width: 500px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .anchor-footer {
        margin-top: 60px;
    }


    .anchor-footer-main {
        padding: 48px 0 38px;
    }


    .anchor-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .anchor-footer-brand {
        grid-column: auto;
        max-width: 100%;
    }


    .anchor-footer-column {
        text-align: left;
    }


    .anchor-footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 15px 0;
        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .anchor-footer-main {
        padding: 42px 0 32px;
    }


    .anchor-footer-logo img {
        width: 125px;
    }


    .anchor-footer-description {
        font-size: 12px;
    }
}


