:root {
    --navy: #04182b;
    --navy-2: #07233e;
    --navy-3: #0b3155;

    --gold: #d9a441;
    --gold-light: #f0bc59;

    --white: #ffffff;
    --light: #f6f7f9;

    --text: #14202e;
    --muted: #6d7580;

    --border: #e5e7eb;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        "Tajawal",
        sans-serif;

    background: #ffffff;

    color: var(--text);

    overflow-x: hidden;
}


a {
    text-decoration: none;
}


img {
    max-width: 100%;
}



/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: relative !important;

    top: auto !important;
    right: auto !important;
    left: auto !important;

    width: 100%;

    z-index: 1000;

    background: #04182b;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}

.topbar {

    height: 38px;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

    display: flex;

    align-items: center;
}


.topbar-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 13px;
}


.topbar a {

    color:
        rgba(255,255,255,.75);

    transition: .25s;
}


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


.top-contact,
.top-links {

    display: flex;

    align-items: center;

    gap: 18px;
}


.separator {

    width: 1px;

    height: 15px;

    background:
        rgba(255,255,255,.2);
}


.navbar {
    min-height: 88px;
}


.navbar-brand {

    min-width: 210px;

    display: flex;

    align-items: center;
}


.main-logo {

    height: 58px;

    width: auto;

    object-fit: contain;
}


.fallback-logo {

    display: none;

    align-items: center;

    gap: 10px;
}


.fallback-icon {

    width: 46px;
    height: 46px;

    border:
        2px solid
        var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold);

    font-size: 27px;

    font-weight: 800;
}


.fallback-logo strong {

    color: var(--gold);

    display: block;

    font-size: 20px;
}


.fallback-logo small {

    color:
        rgba(255,255,255,.75);

    font-size: 9px;

    letter-spacing: 1px;
}


.navbar-nav {

    gap: 3px;

    margin-right: auto;
}


.navbar .nav-link {

    position: relative;

    padding:
        31px 14px !important;

    color:
        rgba(255,255,255,.82);

    font-size: 15px;

    transition: .25s;
}


.navbar .nav-link::after {

    content: "";

    position: absolute;

    right: 14px;

    bottom: 21px;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: .25s;
}


.navbar .nav-link:hover,
.navbar .nav-link.active {

    color: var(--gold);
}


.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {

    width:
        calc(100% - 28px);
}


.btn-gold {

    background: var(--gold);

    border:
        1px solid
        var(--gold);

    color: var(--navy);

    font-weight: 700;

    padding:
        11px 25px;

    border-radius: 4px;

    transition: .25s;
}


.btn-gold:hover {

    background: var(--gold-light);

    border-color:
        var(--gold-light);

    color: var(--navy);

    transform:
        translateY(-2px);
}


.navbar-quote {
    white-space: nowrap;
}



/* =========================================================
   HERO — FINAL
========================================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background: #04182b;

    overflow: hidden;
}


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

.hero-image {
    position: absolute;

    inset: 0;

    background-image: url("../images/hero.jpg");

    background-size: cover;

    /*
     * الصورة الجديدة مصممة أساساً بهذه النسبة.
     * نحافظ على المصعد والهوية الموجودة على الجدار.
     */
    background-position: center center;

    background-repeat: no-repeat;

    opacity: 1;

    transform: scale(1);

    transform-origin: center center;

    animation:
        heroZoom 15s
        ease-in-out
        infinite alternate;

    will-change: transform;
}


/* =========================================================
   DARK GRADIENT
========================================================= */

.hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,

            rgba(3,17,31,.02) 0%,

            rgba(3,17,31,.03) 32%,

            rgba(3,17,31,.08) 48%,

            rgba(3,17,31,.22) 62%,

            rgba(3,17,31,.48) 78%,

            rgba(3,17,31,.68) 100%
        );

    pointer-events: none;
}


/* =========================================================
   SOFT GOLD LIGHT
========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 52% 58%,
            rgba(217,164,65,.055),
            transparent 37%
        );

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   CONTAINER
========================================================= */

.hero-container {
    position: relative;

    z-index: 3;

    height: 100%;
}


/* =========================================================
   ROW
========================================================= */

.hero-row {
    min-height: 100vh;

    padding-top:
        var(--desktop-header-height);

    padding-bottom: 95px;
}


/* =========================================================
   CONTENT
========================================================= */

.hero-content {
    position: relative;

    width: 620px;
    max-width: 620px;

    padding: 0 !important;
    margin: 0;

    color: #fff;

    transform: translateY(170px);
}

/* =========================================================
   TITLE
========================================================= */

.hero h1 {
    margin: 0 0 20px;

    color: #fff;

    font-size:
        clamp(
            38px,
            4vw,
            58px
        );

    font-weight: 800;

    line-height: 1.32;

    letter-spacing: -.5px;

    text-shadow:
        0 5px 25px
        rgba(0,0,0,.30);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero p {
    max-width: 650px;

    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            .88
        );

    font-size: 18px;

    line-height: 1.9;

    text-shadow:
        0 3px 15px
        rgba(0,0,0,.25);
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 17px;

    margin-top: 31px;
}


.hero-actions .btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 205px;

    min-height: 58px;

    padding: 12px 27px;

    border-radius: 4px;

    font-size: 17px;

    font-weight: 700;
}


.hero-actions .btn-outline-light {
    background:
        rgba(0,0,0,.10);

    border-color:
        rgba(255,255,255,.85);

    color: #fff;
}


.hero-actions .btn-outline-light:hover {
    background: #fff;

    color: var(--navy);
}


/* =========================================================
   ZOOM
========================================================= */

@keyframes heroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.045);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .hero {
        min-height: 720px;
    }


    .hero-row {
        min-height: 720px;

        padding-top:
            var(--mobile-header-height);

        padding-bottom: 65px;

        align-items: flex-end !important;
    }


    .hero-image {
        background-position: center center;
    }


    .hero-image::after {
        background:
            linear-gradient(
                90deg,

                rgba(3,17,31,.18) 0%,

                rgba(3,17,31,.25) 35%,

                rgba(3,17,31,.52) 72%,

                rgba(3,17,31,.72) 100%
            );
    }


    .hero-content {
        max-width: 630px;
    }


    .hero h1 {
        font-size:
            clamp(
                36px,
                6vw,
                49px
            );
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .hero {
        min-height: 680px;
    }


    .hero-row {
        min-height: 680px;

        padding-bottom: 45px;
    }


    .hero-image {
        /*
         * على الموبايل نعطي الأولوية للمصعد.
         */
        background-position:
            46% center;

        animation-duration: 18s;
    }


    .hero-image::after {
        background:
            linear-gradient(
                180deg,

                rgba(3,17,31,.20) 0%,

                rgba(3,17,31,.25) 35%,

                rgba(3,17,31,.60) 70%,

                rgba(3,17,31,.85) 100%
            );
    }


    .hero h1 {
        font-size: 35px;

        line-height: 1.4;
    }


    .hero p {
        font-size: 15px;

        line-height: 1.85;
    }


    .hero-actions {
        flex-direction: column;

        gap: 11px;

        margin-top: 25px;
    }


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

        min-height: 52px;

        font-size: 15px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-image {
        animation: none;

        transform: none;
    }

}
/* =========================================================
   FEATURES
========================================================= */

.features-section {
    position: relative;
    z-index: 20;
    margin-top: -25px;
}

.features-panel {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    background:
        linear-gradient(
            120deg,
            var(--navy),
            var(--navy-2)
        );

    border-radius: 6px;

    box-shadow:
        0 20px 55px
        rgba(3,17,31,.22);

    overflow: hidden;
}


.feature-item {

    position: relative;

    text-align: center;

    color: #fff;

    padding:
        32px 20px;
}


.feature-item:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 28px;
    left: 0;

    width: 1px;

    height:
        calc(100% - 56px);

    background:
        rgba(255,255,255,.12);
}


.feature-icon {

    color: var(--gold);

    font-size: 30px;

    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.feature-item h3 {

    font-size: 17px;

    font-weight: 700;

    margin: 10px 0;
}


.feature-item p {

    font-size: 13px;

    color:
        rgba(255,255,255,.67);

    margin: 0;

    line-height: 1.7;
}



/* =========================================================
   COMMON SECTION
========================================================= */

.section {

    padding:
        115px 0;
}


.section-heading {

    text-align: center;

    max-width: 760px;

    margin:
        0 auto 55px;
}


.section-kicker {

    position: relative;

    display: inline-flex;

    color: var(--gold);

    font-size: 15px;

    font-weight: 700;

    padding:
        0 30px;
}


.section-kicker::before,
.section-kicker::after {

    content: "";

    width: 20px;

    height: 1px;

    background: var(--gold);

    position: absolute;

    top: 50%;
}


.section-kicker::before {
    right: 0;
}


.section-kicker::after {
    left: 0;
}


.section-heading h2 {

    font-size: 39px;

    font-weight: 800;

    margin:
        12px 0 8px;
}


.section-heading p {

    font-size: 17px;

    color: var(--muted);

    line-height: 1.8;
}



/* =========================================================
   PRODUCTS
========================================================= */

.products-section {

    padding-top: 100px;

    background: #ffffff;
}


.product-card {

    height: 100%;

    background: #fff;

    border:
        1px solid
        var(--border);

    border-radius: 7px;

    overflow: hidden;

    transition: .35s;

    box-shadow:
        0 5px 18px
        rgba(0,0,0,.04);
}


.product-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 45px
        rgba(3,17,31,.12);
}


.product-image {

    position: relative;

    height: 265px;

    background-color:
        var(--navy-2);

    background-size: cover;

    background-position: center;
}


.product-image-fallback {

    position: absolute;

    inset: 0;

    z-index: -1;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        rgba(255,255,255,.35);

    font-size: 20px;
}


.product-content {

    padding:
        25px 24px 26px;

    text-align: center;
}


.product-content h3 {

    font-size: 21px;

    font-weight: 700;
}


.product-content p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

    min-height: 52px;
}


.product-content a {

    color: var(--gold);

    font-size: 14px;

    font-weight: 700;
}


.product-content a span {

    margin-right: 5px;

    transition: .2s;
}


.product-content a:hover span {
    margin-right: 10px;
}



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

.services-section {

    padding:
        110px 0;

    background:
        linear-gradient(
            135deg,
            #04182b,
            #082842
        );
}


.section-heading.light h2 {

    color: #fff;
}


.section-heading.light p {

    color:
        rgba(255,255,255,.67);
}


.service-card {

    height: 100%;

    position: relative;

    padding:
        35px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 6px;

    transition: .3s;

    overflow: hidden;
}


.service-card:hover {

    background:
        rgba(255,255,255,.07);

    border-color:
        rgba(217,164,65,.45);

    transform:
        translateY(-5px);
}


.service-number {

    font-size: 58px;

    font-weight: 800;

    color:
        rgba(217,164,65,.12);

    position: absolute;

    left: 20px;

    top: 10px;
}


.service-card h3 {

    color: var(--gold);

    font-size: 21px;

    font-weight: 700;

    margin-bottom: 14px;

    position: relative;
}


.service-card p {

    color:
        rgba(255,255,255,.68);

    margin: 0;

    line-height: 1.9;

    position: relative;
}



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

.about-section {

    padding:
        115px 0;

    background: #f7f8fa;
}


.about-visual {

    position: relative;

    min-height: 470px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.about-main-box {

    width: 82%;

    min-height: 430px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-3)
        );

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 25px 50px
        rgba(3,17,31,.2);
}


.about-main-box strong {

    color: var(--gold);

    font-size: 58px;

    font-weight: 800;
}


.about-main-box span {

    color: #fff;

    font-size: 28px;
}


.about-badge {

    position: absolute;

    bottom: 0;

    right: 2%;

    width: 170px;

    padding: 25px;

    text-align: center;

    background: var(--gold);

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.15);
}


.about-badge strong {

    display: block;

    color: var(--navy);

    font-size: 23px;
}


.about-badge span {

    color: #fff;

    font-size: 14px;
}


.about-title {

    font-size: 43px;

    font-weight: 800;

    line-height: 1.35;

    margin:
        15px 0 22px;
}


.about-text {

    color: var(--muted);

    font-size: 17px;

    line-height: 2;
}


.about-points {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:
        14px 20px;

    margin:
        28px 0 35px;
}


.about-points div {

    font-weight: 600;
}


.about-points strong {

    color: var(--gold);

    margin-left: 7px;
}



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

.projects-section {

    padding:
        110px 0;

    background:
        #031524;
}


.project-card {

    height: 330px;

    position: relative;

    border-radius: 6px;

    overflow: hidden;

    background-color:
        var(--navy-2);

    background-size: cover;

    background-position: center;

    transition: .35s;
}


.project-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: inherit;
}


.project-card:hover {

    transform:
        translateY(-7px);
}


.project-content {

    position: absolute;

    right: 25px;

    left: 25px;

    bottom: 25px;
}


.project-content small {

    color: var(--gold);
}


.project-content h3 {

    color: #fff;

    margin:
        4px 0 0;

    font-size: 21px;

    font-weight: 700;
}



/* =========================================================
   QUOTE
========================================================= */

.quote-section {

    padding:
        80px 0;

    background: #fff;
}


.quote-box {

    position: relative;

    overflow: hidden;

    padding:
        45px 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            #efb64d
        );
}


.quote-box::after {

    content: "";

    position: absolute;

    left: -80px;

    top: -120px;

    width: 300px;

    height: 300px;

    border:
        50px solid
        rgba(255,255,255,.08);

    border-radius: 50%;
}


.quote-box > * {

    position: relative;

    z-index: 2;
}


.quote-box span {

    color: var(--navy);

    font-weight: 700;
}


.quote-box h2 {

    color: #fff;

    font-size: 30px;

    font-weight: 800;

    margin:
        6px 0;
}


.quote-box p {

    color:
        rgba(255,255,255,.85);

    margin: 0;
}


.quote-button {

    background: var(--navy);

    color: #fff;

    padding:
        14px 28px;

    min-width: 150px;

    border-radius: 4px;

    font-weight: 700;
}


.quote-button:hover {

    background:
        var(--navy-3);

    color: #fff;
}



/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding:
        80px 0 0;

    background:
        #02111f;

    color:
        rgba(255,255,255,.65);
}


.site-footer h3 {

    color: var(--gold);

    font-size: 28px;

    font-weight: 800;
}


.site-footer h5 {

    color: #fff;

    font-weight: 700;

    margin-bottom: 20px;
}


.site-footer ul {

    padding: 0;

    margin: 0;

    list-style: none;
}


.site-footer li {

    margin-bottom: 10px;
}


.site-footer a {

    color:
        rgba(255,255,255,.65);

    transition: .2s;
}


.site-footer a:hover {

    color: var(--gold);
}


.footer-bottom {

    margin-top: 55px;

    padding:
        22px 0;

    text-align: center;

    border-top:
        1px solid
        rgba(255,255,255,.09);

    font-size: 13px;
}



/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {

    position: fixed;

    left: 22px;

    bottom: 22px;

    z-index: 1000;

    padding:
        13px 20px;

    border-radius: 40px;

    background: #25d366;

    color: #fff;

    font-weight: 700;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.22);
}


.whatsapp-button:hover {

    color: #fff;

    transform:
        translateY(-2px);
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .navbar .nav-link {

        padding-left:
            9px !important;

        padding-right:
            9px !important;
    }


    .features-panel {

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

}



/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 991px) {

    .site-header {

        position: relative;

        background: var(--navy);
    }


    .topbar {
        display: none;
    }


    .navbar {

        min-height: 75px;

        padding:
            10px 0;
    }


    .navbar-collapse {

        margin-top: 15px;

        padding:
            10px 0 25px;

        border-top:
            1px solid
            rgba(255,255,255,.08);
    }


    .navbar .nav-link {

        padding:
            11px 5px !important;
    }


    .navbar .nav-link::after {
        display: none;
    }


    .navbar-quote {

        display: block;

        margin-top: 12px;

        text-align: center;
    }


    .hero {

        min-height: 650px;
    }


    .hero-row {

        min-height: 650px;
    }


    .hero-content {

        padding-top: 30px;
    }


    .hero-image::after {

        background:
            rgba(3,20,36,.78);
    }


    .features-section {

        margin-top: 0;
    }


    .features-panel {

        grid-template-columns:
            repeat(2,1fr);

        border-radius: 0;
    }


    .about-title {

        font-size: 35px;
    }


    .about-visual {

        min-height: 390px;
    }


    .about-main-box {

        min-height: 350px;
    }


    .quote-box {

        flex-direction: column;

        text-align: center;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .main-logo {

        max-width: 180px;

        height: 48px;
    }


    .hero {

        min-height: 600px;
    }


    .hero-row {

        min-height: 600px;
    }


    .hero h1 {

        font-size: 55px;
    }


    .hero h2 {

        font-size: 22px;
    }


    .hero p {

        font-size: 16px;
    }


    .hero-actions {

        flex-direction: column;
    }


    .hero-actions .btn {

        width: 100%;
    }


    .features-panel {

        grid-template-columns: 1fr;
    }


    .feature-item:not(:last-child)::after {

        top: auto;

        bottom: 0;

        left: 20px;

        right: 20px;

        width: auto;

        height: 1px;
    }


    .section {

        padding:
            75px 0;
    }


    .section-heading {

        margin-bottom: 35px;
    }


    .section-heading h2 {

        font-size: 30px;
    }


    .services-section,
    .projects-section,
    .about-section {

        padding:
            75px 0;
    }


    .about-title {

        font-size: 30px;
    }


    .about-points {

        grid-template-columns: 1fr;
    }


    .about-main-box {

        width: 92%;
    }


    .about-main-box strong {

        font-size: 45px;
    }


    .quote-box {

        padding:
            35px 20px;
    }


    .quote-box h2 {

        font-size: 25px;
    }

}
/* =========================================================
   SERVICE PUBLIC PAGES
========================================================= */

.service-public-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 6px 20px rgba(3,17,31,.04);
}

.service-public-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(3,17,31,.1);
}

.service-public-image {
    display: block;
    height: 260px;
    background-size: cover;
    background-position: center;
}

.service-public-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-3)
        );
    color: var(--gold);
    font-size: 24px;
    font-weight: 800;
}

.service-public-content {
    padding: 26px;
}

.service-public-content h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}

.service-public-content p {
    min-height: 55px;
    color: var(--muted);
    line-height: 1.8;
}

.service-more {
    color: var(--gold);
    font-weight: 700;
}

.service-details-section {
    padding: 100px 0;
}

.service-details-image {
    overflow: hidden;
    background: var(--navy);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(3,17,31,.12);
}

.service-details-image img {
    display: block;
    width: 100%;
    min-height: 500px;
    max-height: 650px;
    object-fit: cover;
}

.service-details-placeholder {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 36px;
    font-weight: 800;
}

.service-details-content h2 {
    margin: 15px 0 20px;
    font-size: 44px;
    font-weight: 800;
}

.service-lead {
    color: var(--navy-2);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.9;
}

.service-description {
    margin-top: 25px;
    color: var(--muted);
    font-size: 17px;
    line-height: 2;
}

.service-card-link {
    margin-top: 16px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 575px) {

    .service-details-section {
        padding: 70px 0;
    }

    .service-details-content h2 {
        font-size: 32px;
    }

    .service-details-image img {
        min-height: auto;
    }

}


/* =========================================================
   INNER PAGES
========================================================= */

.inner-hero {
    position: relative;

    padding: 80px 0 85px;

    margin: 0;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(217,164,65,.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-2)
        );

    color: #fff;
}


.inner-hero-content {
    position: relative;

    max-width: 760px;

    z-index: 2;
}


.inner-hero-content > span,
.inner-back-link {
    color: var(--gold);

    font-weight: 700;
}


.inner-hero h1 {
    margin: 12px 0 15px;

    color: #fff;

    font-size: 52px;
    font-weight: 800;

    line-height: 1.25;
}


.inner-hero p {
    max-width: 700px;

    margin-bottom: 0;

    color: rgba(255,255,255,.78);

    font-size: 18px;

    line-height: 1.9;
}


.inner-back-link {
    display: inline-block;

    transition: .2s;
}


.inner-back-link:hover {
    color: var(--gold-light);
}


.product-details-section,
.service-details-section {
    padding: 90px 0 100px;
}


@media (max-width: 991px) {

    .inner-hero {
        padding: 65px 0 70px;
    }

    .inner-hero h1 {
        font-size: 42px;
    }

    .product-details-section,
    .service-details-section {
        padding: 70px 0;
    }

}


@media (max-width: 575px) {

    .inner-hero {
        padding: 50px 0 55px;
    }

    .inner-hero h1 {
        font-size: 34px;
    }

    .inner-hero p {
        font-size: 16px;
    }

}
/* =========================================================
   PROJECT PUBLIC PAGES
========================================================= */

.project-public-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(3,17,31,.05);
    transition: .3s;
}

.project-public-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(3,17,31,.1);
}

.project-public-image {
    position: relative;
    display: block;
    height: 330px;
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
}

.project-public-overlay {
    position: absolute;
    right: 25px;
    left: 25px;
    bottom: 25px;
}

.project-public-overlay span {
    color: var(--gold);
    font-size: 14px;
}

.project-public-overlay h3 {
    margin: 5px 0;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.project-public-overlay small {
    color: rgba(255,255,255,.7);
}

.project-public-content {
    padding: 24px;
}

.project-public-content p {
    color: var(--muted);
    line-height: 1.8;
}

.project-more {
    color: var(--gold);
    font-weight: 700;
}

.project-details-section {
    padding: 90px 0 100px;
}

.project-main-image {
    overflow: hidden;
    border-radius: 10px;
    background: var(--navy);
    box-shadow: 0 20px 50px rgba(3,17,31,.12);
}

.project-main-image img {
    display: block;
    width: 100%;
    max-height: 650px;
    object-fit: cover;
}

.project-main-placeholder {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 36px;
    font-weight: 800;
}

.project-details-content h2 {
    margin: 15px 0 25px;
    font-size: 42px;
    font-weight: 800;
}

.project-info-list {
    margin: 25px 0;
    border-top: 1px solid var(--border);
}

.project-info-list > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.project-info-list span {
    color: var(--muted);
}

.project-info-list strong {
    color: var(--navy);
}

.project-description {
    margin-top: 25px;
    color: var(--muted);
    font-size: 17px;
    line-height: 2;
}

.project-gallery-section {
    padding: 90px 0;
    background: #f7f8fa;
}

.project-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.project-gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .35s;
}

.project-gallery-item:hover img {
    transform: scale(1.04);
}

.related-projects-section {
    padding: 90px 0 110px;
}

@media (max-width: 575px) {

    .project-details-section,
    .project-gallery-section,
    .related-projects-section {
        padding: 70px 0;
    }

    .project-details-content h2 {
        font-size: 31px;
    }

    .project-gallery-item img {
        height: 230px;
    }

}
/* =========================================================
   ABOUT / CONTACT PAGES
========================================================= */

.about-page-section,
.contact-page-section {
    padding: 95px 0;
}

.company-values-section {
    padding: 90px 0;
    background: #f7f8fa;
}

.company-value-card {
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.company-value-card strong {
    display: block;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 32px;
    font-weight: 800;
}

.company-value-card h3 {
    color: var(--navy);
    font-size: 21px;
    font-weight: 800;
}

.company-value-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}

.about-cta-section {
    padding: 80px 0;
}

.contact-info-card,
.contact-quote-card {
    height: 100%;
    padding: 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(3,17,31,.05);
}

.contact-info-card h2,
.contact-quote-card h2 {
    margin: 15px 0 25px;
    color: var(--navy);
    font-size: 34px;
    font-weight: 800;
}

.contact-info-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
    border-bottom: 0;
}

.contact-info-item span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 14px;
}

.contact-info-item a,
.contact-info-item strong {
    color: var(--navy);
    font-size: 17px;
    font-weight: 700;
}

.contact-quote-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.contact-quote-card p {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

@media (max-width: 575px) {

    .about-page-section,
    .contact-page-section,
    .company-values-section {
        padding: 65px 0;
    }

    .contact-info-card,
    .contact-quote-card {
        padding: 28px 22px;
    }

}
/* Partners moving banner */
.partners-section{padding:56px 0;background:#fff;border-top:1px solid rgba(4,24,43,.08);border-bottom:1px solid rgba(4,24,43,.08);overflow:hidden}
.partners-heading{text-align:center;margin-bottom:32px}.partners-heading .section-kicker{display:inline-block;margin-bottom:8px}.partners-heading h2{margin:0;color:var(--navy);font-size:28px;font-weight:800}
.partners-marquee{position:relative;overflow:hidden;width:100%}.partners-marquee:before,.partners-marquee:after{content:"";position:absolute;top:0;bottom:0;width:90px;z-index:3;pointer-events:none}.partners-marquee:before{right:0;background:linear-gradient(to left,#fff,rgba(255,255,255,0))}.partners-marquee:after{left:0;background:linear-gradient(to right,#fff,rgba(255,255,255,0))}
.partners-track{display:flex;width:max-content;animation:partners-scroll 28s linear infinite;will-change:transform}.partners-marquee:hover .partners-track{animation-play-state:paused}.partners-group{display:flex;align-items:center;flex-shrink:0;gap:28px;padding-left:28px}
.partner-logo-card{width:190px;height:105px;flex:0 0 190px;display:flex;align-items:center;justify-content:center;padding:20px;background:#fff;border:1px solid rgba(4,24,43,.10);border-radius:12px;transition:.25s}.partner-logo-card:hover{transform:translateY(-4px);border-color:rgba(217,164,65,.55);box-shadow:0 12px 28px rgba(4,24,43,.08)}.partner-logo-card img{display:block;width:100%;height:100%;object-fit:contain;filter:grayscale(100%);opacity:.76;transition:.25s}.partner-logo-card:hover img{filter:grayscale(0);opacity:1;transform:scale(1.03)}
@keyframes partners-scroll{from{transform:translateX(0)}to{transform:translateX(50%)}}
@media (prefers-reduced-motion:reduce){.partners-track{animation:none}.partners-marquee{overflow-x:auto}}
@media (max-width:767px){.partners-section{padding:42px 0}.partners-heading{margin-bottom:24px}.partners-heading h2{font-size:24px}.partners-marquee:before,.partners-marquee:after{width:40px}.partners-group{gap:16px;padding-left:16px}.partner-logo-card{width:145px;height:85px;flex-basis:145px;padding:15px}}


/* =========================================================
   HEADER V2 — FIXED / TRANSPARENT
========================================================= */

:root {
    --desktop-header-height: 126px;
    --mobile-header-height: 76px;
}

.site-header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100%;
    z-index: 1050;
    background: linear-gradient(
        180deg,
        rgba(2,17,31,.82) 0%,
        rgba(2,17,31,.48) 70%,
        rgba(2,17,31,.12) 100%
    ) !important;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.site-header.is-scrolled {
    background: rgba(4,24,43,.92) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 35px rgba(0,0,0,.16);
}

body > main {
    padding-top: var(--desktop-header-height);
}

/* Home and inner hero visually continue behind the transparent header */
.home-page > main,
.inner-page > main {
    padding-top: 0;
}

.home-page .hero,
.inner-page .inner-hero {
    padding-top: var(--desktop-header-height);
}

.site-header .topbar {
    background: rgba(0,0,0,.08);
}

.site-header .navbar {
    background: transparent;
}


/* =========================================================
   INNER HERO V2 — COMPACT
========================================================= */

.inner-hero {
    min-height: 330px;
    padding: calc(var(--desktop-header-height) + 42px) 0 48px;
    display: flex;
    align-items: center;
}

.inner-hero-content {
    max-width: 720px;
}

.inner-hero-content > span {
    font-size: 14px;
    letter-spacing: .2px;
}

.inner-hero h1 {
    margin: 8px 0 10px;
    font-size: clamp(38px, 4.2vw, 56px);
}

.inner-hero p {
    max-width: 660px;
    font-size: 17px;
    line-height: 1.8;
}


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

.about-page-section {
    padding: 76px 0 90px;
}

.about-wide-image-wrap {
    margin-bottom: 70px;
}

.about-wide-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: var(--navy);
    box-shadow: 0 28px 70px rgba(3,17,31,.16);
}

.about-wide-image img {
    display: block;
    width: 100%;
    height: clamp(430px, 52vw, 720px);
    object-fit: cover;
    object-position: center;
}

.about-content-block {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.about-content-block .section-kicker {
    margin-bottom: 8px;
}

.about-content-block .about-title {
    max-width: 850px;
    margin: 10px auto 22px;
}

.about-content-block .about-text {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.company-values-section + .company-values-section {
    padding-top: 0;
}
/* =========================================================
   ABOUT / HEADER RESPONSIVE FINAL
========================================================= */

@media (max-width: 991px) {
    :root {
        --mobile-header-height: 76px;
    }

    .site-header {
        background: rgba(4,24,43,.9) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .site-header .topbar {
        display: none;
    }

    .home-page .hero,
    .inner-page .inner-hero {
        padding-top: var(--mobile-header-height);
    }

    .inner-hero {
        min-height: 255px;
        padding-top: calc(var(--mobile-header-height) + 30px);
        padding-bottom: 35px;
    }

    .about-wide-image img {
        height: 520px;
    }
}

@media (max-width: 575px) {
    .inner-hero {
        min-height: 225px;
        padding-top: calc(var(--mobile-header-height) + 22px);
        padding-bottom: 28px;
    }

    .inner-hero h1 {
        font-size: 34px;
    }

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

    .about-page-section {
        padding: 50px 0 65px;
    }

    .about-wide-image-wrap {
        margin-bottom: 48px;
    }

    .about-wide-image {
        border-radius: 14px;
    }

    .about-wide-image img {
        height: 390px;
    }
}


/* =========================================================
   CERTIFICATES & ACCREDITATIONS — MOVING ROW
========================================================= */

.certificates-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: #f7f8fa;
    overflow: hidden;
}

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

.certificates-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 45px;
    padding: 10px 0 25px;
}

.certificates-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 24px;

    width: max-content;
    min-width: max-content;

    animation: certificatesMove 35s linear infinite;
    will-change: transform;
}

.certificates-slider:hover .certificates-track {
    animation-play-state: paused;
}

.certificate-slide {
    display: block;
    flex: 0 0 260px !important;

    width: 260px !important;
    max-width: 260px !important;

    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(15,35,55,.08);

    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.certificate-protected {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 330px;

    padding: 14px;

    overflow: hidden;
    background: #fff;

    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.certificate-protected img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;

    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.certificate-protection-layer {
    position: absolute;
    inset: 0;
    z-index: 5;

    background: transparent;
    cursor: default;
}

.certificate-slide-info {
    padding: 16px 15px 18px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.certificate-slide-info h3 {
    margin: 0 0 5px;

    color: #152b3f;

    font-size: 17px;
    font-weight: 700;
}

.certificate-slide-info span {
    display: block;

    color: #b98a2e;

    font-size: 13px;
    font-weight: 600;
}


/* Side fade */
.certificates-slider::before,
.certificates-slider::after {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;

    width: 80px;
    z-index: 10;

    pointer-events: none;
}

.certificates-slider::before {
    right: 0;

    background: linear-gradient(
        to left,
        #f7f8fa 0%,
        rgba(247,248,250,0) 100%
    );
}

.certificates-slider::after {
    left: 0;

    background: linear-gradient(
        to right,
        #f7f8fa 0%,
        rgba(247,248,250,0) 100%
    );
}


/* Continuous movement */
@keyframes certificatesMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}


/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .certificates-track {
        animation: none;
    }

    .certificates-slider {
        overflow-x: auto;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .certificates-section {
        padding: 55px 0;
    }

    .certificates-slider {
        margin-top: 30px;
        padding-bottom: 15px;
    }

    .certificate-slide {
        flex-basis: 210px !important;

        width: 210px !important;
        max-width: 210px !important;
    }

    .certificate-protected {
        height: 270px;
        padding: 10px;
    }

    .certificates-track {
        gap: 16px;
        animation-duration: 25s;
    }

    .certificates-slider::before,
    .certificates-slider::after {
        width: 35px;
    }
}
/* =========================================================
   WHY AL ABJAL
========================================================= */

.why-abjal-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(217,164,65,.11),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #04182b,
            #07233e
        );
}

.why-abjal-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    bottom: -220px;
    border: 70px solid rgba(255,255,255,.025);
    border-radius: 50%;
}

.why-abjal-section .container {
    position: relative;
    z-index: 2;
}

.why-abjal-intro {
    position: sticky;
    top: 160px;
}

.why-abjal-intro .section-kicker {
    color: var(--gold);
}

.why-abjal-intro h2 {
    margin: 18px 0 22px;
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.35;
}

.why-abjal-intro p {
    margin-bottom: 15px;
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 2;
}

.why-abjal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-abjal-card {
    position: relative;
    min-height: 270px;
    padding: 30px;
    overflow: hidden;

    background: rgba(255,255,255,.045);

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 14px;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.why-abjal-card:hover {
    transform: translateY(-6px);

    background:
        rgba(255,255,255,.07);

    border-color:
        rgba(217,164,65,.45);
}

.why-number {
    position: absolute;
    left: 20px;
    top: 14px;

    color:
        rgba(217,164,65,.11);

    font-size: 58px;
    font-weight: 800;
    line-height: 1;
}

.why-icon {
    position: relative;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background:
        rgba(217,164,65,.1);

    border:
        1px solid
        rgba(217,164,65,.26);

    border-radius: 12px;

    color: var(--gold);

    font-size: 22px;
}

.why-abjal-card h3 {
    position: relative;

    margin-bottom: 12px;

    color: #fff;

    font-size: 20px;
    font-weight: 800;
}

.why-abjal-card p {
    position: relative;

    margin: 0;

    color:
        rgba(255,255,255,.64);

    font-size: 14px;
    line-height: 1.9;
}

.why-abjal-bottom {
    margin-top: 45px;
    padding: 26px 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    text-align: center;

    background:
        rgba(217,164,65,.1);

    border:
        1px solid
        rgba(217,164,65,.28);

    border-radius: 12px;
}

.why-abjal-bottom strong {
    color: var(--gold);
    font-size: 18px;
}

.why-abjal-bottom span {
    color: rgba(255,255,255,.82);
    font-size: 17px;
}

@media (max-width: 991px) {

    .why-abjal-section {
        padding: 80px 0;
    }

    .why-abjal-intro {
        position: static;
        text-align: center;
        max-width: 760px;
        margin: 0 auto;
    }

    .why-abjal-intro h2 {
        font-size: 36px;
    }

}

@media (max-width: 767px) {

    .why-abjal-grid {
        grid-template-columns: 1fr;
    }

    .why-abjal-card {
        min-height: auto;
    }

    .why-abjal-bottom {
        flex-direction: column;
    }

}

@media (max-width: 575px) {

    .why-abjal-section {
        padding: 60px 0;
    }

    .why-abjal-intro h2 {
        font-size: 30px;
    }

    .why-abjal-card {
        padding: 25px 22px;
    }

}
/* =========================================================
   CONTACT BRANCHES
========================================================= */

.contact-branches-section {
    padding: 90px 0;
    background: #f7f7f7;
}

.branch-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.11);
}

.branch-card-info {
    padding: 32px;
}

.branch-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.branch-city {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #a98542;
    margin-bottom: 6px;
}

.branch-card h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #161616;
}

.branch-detail {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.branch-detail:last-child {
    border-bottom: 0;
}

.branch-detail > span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #999;
    margin-bottom: 7px;
}

.branch-detail strong {
    color: #222;
    font-weight: 600;
}

.branch-detail a {
    color: #222;
    font-weight: 700;
    text-decoration: none;
}

.branch-detail a:hover {
    color: #b28c45;
}

.branch-phones {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.branch-phone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    background: #f8f8f8;
    border-radius: 12px;
}

.branch-phone-item small {
    display: block;
    color: #999;
    font-size: 11px;
    margin-bottom: 2px;
}

.branch-phone-item a,
.branch-phone-item strong {
    font-size: 15px;
}

.branch-whatsapp-btn {
    flex-shrink: 0;
    padding: 6px 12px;
    border-radius: 50px;
    background: #25d366;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700;
}

.branch-whatsapp-btn:hover {
    background: #1fac55;
    color: #fff !important;
}

.branch-map {
    height: 320px;
    background: #ddd;
}

.branch-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 767.98px) {

    .contact-branches-section {
        padding: 60px 0;
    }

    .branch-card-info {
        padding: 24px 20px;
    }

    .branch-card h3 {
        font-size: 22px;
    }

    .branch-map {
        height: 270px;
    }

    .branch-phone-item {
        align-items: center;
    }

}

/* =========================================================
   CONTACT PAGE - PREMIUM
========================================================= */

.contact-hero {
    position: relative;
    padding: 78px 0 72px;
    background: linear-gradient(
        135deg,
        #061a2b 0%,
        #092740 55%,
        #0d304b 100%
    );
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    left: -180px;
    top: -240px;
    background: rgba(219, 164, 57, 0.07);
}

.contact-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.contact-hero-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #dca83e;
    font-size: 14px;
    font-weight: 800;
}

.contact-hero h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
}

.contact-hero p {
    max-width: 600px;
    margin: auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.9;
}


/* =========================================================
   MAIN CONTACT
========================================================= */

.contact-main {
    padding: 72px 0 88px;
    background: #fff;
}

.contact-main-box {
    overflow: hidden;
    border: 1px solid #e4e8ec;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(6, 26, 43, 0.08);
}

.contact-main-info {
    height: 100%;
    padding: 48px 42px;
    background: #071d2f;
    color: #fff;
}

.contact-small-title {
    display: inline-block;
    margin-bottom: 10px;
    color: #dca83e;
    font-size: 13px;
    font-weight: 800;
}

.contact-main-info h2,
.contact-form-box h2 {
    margin: 0 0 14px;
    font-size: 34px;
    font-weight: 900;
}

.contact-main-info h2 {
    color: #fff;
}

.contact-main-intro {
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.63);
    line-height: 1.9;
}

.main-contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    border-radius: 13px;
    background: rgba(220, 168, 62, 0.12);
    color: #dca83e;
    font-size: 18px;
}

.main-contact-row span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.main-contact-row a,
.main-contact-row strong {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.contact-quote-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 34px;
    padding: 16px 20px;
    border-radius: 13px;
    background: #dca83e;
    color: #061a2b;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
}

.contact-quote-link:hover {
    transform: translateY(-2px);
    background: #ecc05b;
    color: #061a2b;
}


/* =========================================================
   FORM
========================================================= */

.contact-form-box {
    height: 100%;
    padding: 48px;
}

.contact-form-box h2 {
    color: #061a2b;
}

.contact-form-box > p {
    margin-bottom: 30px;
    color: #808892;
}

.contact-form-box .form-label {
    margin-bottom: 8px;
    color: #23303d;
    font-size: 13px;
    font-weight: 700;
}

.contact-form-box .form-control {
    min-height: 52px;
    padding: 12px 15px;
    border: 1px solid #dfe4e8;
    border-radius: 11px;
    background: #fbfcfd;
    box-shadow: none;
}

.contact-form-box textarea.form-control {
    min-height: 150px;
}

.contact-form-box .form-control:focus {
    border-color: #dca83e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(220, 168, 62, 0.12);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 185px;
    min-height: 52px;
    margin-top: 7px;
    border: 0;
    border-radius: 11px;
    background: #dca83e;
    color: #071d2f;
    font-weight: 900;
    transition: 0.25s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    background: #edbd56;
}


/* =========================================================
   BRANCHES
========================================================= */

.branches-section {
    padding: 90px 0 105px;
    background: #f4f6f8;
}

.branches-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.branches-heading > span {
    display: inline-block;
    margin-bottom: 8px;
    color: #c99835;
    font-size: 13px;
    font-weight: 900;
}

.branches-heading h2 {
    margin: 0 0 13px;
    color: #061a2b;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 900;
}

.branches-heading p {
    margin: 0;
    color: #7b848e;
    line-height: 1.9;
}

.branches-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.branch-modern-card {
    overflow: hidden;
    border: 1px solid #e0e5e9;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(6, 26, 43, 0.07);
}

.branch-modern-info {
    height: 100%;
    padding: 38px;
}

.branch-modern-head {
    margin-bottom: 25px;
}

.branch-location-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: #c99835;
    font-size: 13px;
    font-weight: 800;
}

.branch-modern-head h3 {
    margin: 0;
    color: #071d2f;
    font-size: 28px;
    font-weight: 900;
}

.branch-modern-row {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 0;
    border-bottom: 1px solid #edf0f2;
}

.branch-modern-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 11px;
    background: #f6f1e7;
    color: #bf8f32;
}

.branch-modern-row span {
    display: block;
    margin-bottom: 3px;
    color: #9198a0;
    font-size: 11px;
}

.branch-modern-row strong,
.branch-modern-row a {
    color: #1a2631;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    text-decoration: none;
}

.branch-phones-box {
    padding: 20px 0;
    border-bottom: 1px solid #edf0f2;
}

.branch-section-label {
    display: block;
    margin-bottom: 10px;
    color: #9198a0;
    font-size: 11px;
}

.branch-phone-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    padding: 10px 12px;
    border: 1px solid #eceff1;
    border-radius: 11px;
    background: #fafbfb;
}

.branch-phone-modern:last-child {
    margin-bottom: 0;
}

.branch-phone-number span {
    display: block;
    margin-bottom: 1px;
    color: #9a9fa5;
    font-size: 10px;
}

.branch-phone-number a,
.branch-phone-number strong {
    color: #101b26;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.branch-phone-actions {
    display: flex;
    gap: 6px;
}

.branch-phone-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 14px;
    text-decoration: none;
}

.branch-action-call {
    background: #eaf0f5;
    color: #0b3453;
}

.branch-action-whatsapp {
    background: #e7f8ed;
    color: #1da851;
}

.branch-directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 25px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #dca83e;
    color: #071d2f;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.25s ease;
}

.branch-directions-btn:hover {
    transform: translateY(-2px);
    background: #edbd56;
    color: #071d2f;
}


/* =========================================================
   MAP
========================================================= */

.branch-modern-map {
    height: 100%;
    min-height: 520px;
    background: #e9ecef;
}

.branch-modern-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

.branch-no-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 520px;
    color: #8d959d;
}

.branch-no-map i {
    font-size: 38px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .contact-main-info,
    .contact-form-box {
        padding: 38px 30px;
    }

    .branch-modern-map,
    .branch-modern-map iframe,
    .branch-no-map {
        min-height: 380px;
    }

}

@media (max-width: 767.98px) {

    .contact-hero {
        padding: 55px 0 50px;
    }

    .contact-main {
        padding: 45px 0 60px;
    }

    .contact-main-box {
        border-radius: 20px;
    }

    .contact-main-info,
    .contact-form-box {
        padding: 30px 22px;
    }

    .contact-main-info h2,
    .contact-form-box h2 {
        font-size: 28px;
    }

    .branches-section {
        padding: 60px 0 70px;
    }

    .branches-heading {
        margin-bottom: 32px;
    }

    .branch-modern-card {
        border-radius: 20px;
    }

    .branch-modern-info {
        padding: 28px 20px;
    }

    .branch-modern-head h3 {
        font-size: 24px;
    }

    .branch-modern-map,
    .branch-modern-map iframe,
    .branch-no-map {
        min-height: 300px;
    }

}
/* =========================================================
   CONTACT PAGE - MOBILE FIX
========================================================= */

@media (max-width: 767.98px) {

    body {
        overflow-x: hidden;
    }

    .contact-hero {
        padding: 34px 0 30px;
    }

    .contact-hero-inner {
        max-width: 100%;
        padding: 0 14px;
    }

    .contact-hero-kicker {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .contact-hero h1 {
        font-size: 30px;
        line-height: 1.35;
        margin-bottom: 10px;
    }

    .contact-hero p {
        font-size: 14px;
        line-height: 1.8;
    }


    /* =========================
       MAIN CONTACT
    ========================== */

    .contact-main {
        padding: 28px 0 42px;
    }

    .contact-main .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .contact-main-box {
        border-radius: 16px;
        overflow: hidden;
    }

    .contact-main-info,
    .contact-form-box {
        padding: 24px 18px;
    }

    .contact-main-info h2,
    .contact-form-box h2 {
        font-size: 25px;
        line-height: 1.4;
    }

    .contact-main-intro,
    .contact-form-box > p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .main-contact-row {
        gap: 10px;
        padding: 13px 0;
    }

    .main-contact-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        border-radius: 10px;
        font-size: 15px;
    }

    .main-contact-row span {
        font-size: 11px;
    }

    .main-contact-row a,
    .main-contact-row strong {
        font-size: 13px;
        word-break: break-word;
    }

    .contact-quote-link {
        margin-top: 22px;
        padding: 13px 15px;
        font-size: 13px;
        border-radius: 10px;
    }


    /* =========================
       FORM
    ========================== */

    .contact-form-box .row {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }

    .contact-form-box .form-label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .contact-form-box .form-control {
        min-height: 46px;
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 9px;
    }

    .contact-form-box textarea.form-control {
        min-height: 120px;
    }

    .contact-submit-btn {
        width: 100%;
        min-height: 48px;
        margin-top: 4px;
        font-size: 14px;
        border-radius: 10px;
    }


    /* =========================
       BRANCHES
    ========================== */

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

    .branches-section .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .branches-heading {
        margin-bottom: 25px;
        padding: 0 4px;
    }

    .branches-heading > span {
        font-size: 12px;
    }

    .branches-heading h2 {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .branches-heading p {
        font-size: 13px;
        line-height: 1.8;
    }

    .branches-list {
        gap: 22px;
    }

    .branch-modern-card {
        border-radius: 16px;
    }

    .branch-modern-info {
        padding: 22px 16px;
    }

    .branch-modern-head {
        margin-bottom: 18px;
    }

    .branch-location-label {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .branch-modern-head h3 {
        font-size: 23px;
        line-height: 1.4;
    }


    /* =========================
       BRANCH INFO
    ========================== */

    .branch-modern-row {
        gap: 10px;
        padding: 12px 0;
    }

    .branch-modern-icon {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        border-radius: 9px;
        font-size: 13px;
    }

    .branch-modern-row span {
        font-size: 10px;
    }

    .branch-modern-row strong,
    .branch-modern-row a {
        font-size: 13px;
        line-height: 1.65;
        word-break: break-word;
    }


    /* =========================
       PHONES
    ========================== */

    .branch-phones-box {
        padding: 15px 0;
    }

    .branch-section-label {
        margin-bottom: 8px;
        font-size: 10px;
    }

    .branch-phone-modern {
        padding: 9px 10px;
        gap: 8px;
        border-radius: 9px;
        margin-bottom: 7px;
    }

    .branch-phone-number {
        min-width: 0;
        flex: 1;
    }

    .branch-phone-number span {
        font-size: 9px;
    }

    .branch-phone-number a,
    .branch-phone-number strong {
        font-size: 13px;
        white-space: nowrap;
    }

    .branch-phone-actions {
        gap: 5px;
        flex-shrink: 0;
    }

    .branch-phone-actions a {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 13px;
    }

    .branch-directions-btn {
        margin-top: 18px;
        padding: 12px 14px;
        font-size: 13px;
        border-radius: 10px;
    }


    /* =========================
       MAP
    ========================== */

    .branch-modern-map {
        min-height: 250px;
        height: 250px;
    }

    .branch-modern-map iframe {
        min-height: 250px;
        height: 250px;
    }

    .branch-no-map {
        min-height: 250px;
    }


    /* =========================
       FORCE STACKING CLEANLY
    ========================== */

    .contact-main-box > .row,
    .branch-modern-card > .row {
        margin: 0;
    }

    .contact-main-box .col-lg-5,
    .contact-main-box .col-lg-7,
    .branch-modern-card .col-lg-5,
    .branch-modern-card .col-lg-7 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .contact-hero h1 {
        font-size: 27px;
    }

    .contact-main-info,
    .contact-form-box {
        padding: 21px 15px;
    }

    .branches-heading h2 {
        font-size: 25px;
    }

    .branch-modern-info {
        padding: 20px 14px;
    }

    .branch-modern-head h3 {
        font-size: 21px;
    }

    .branch-phone-modern {
        align-items: center;
    }

    .branch-phone-number a,
    .branch-phone-number strong {
        font-size: 12px;
    }

}
/* =========================================================
   GLOBAL MOBILE OVERFLOW FIX
========================================================= */

@media (max-width: 991.98px) {

    html {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip !important;
        position: relative;
    }

    main {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    .site-header {
        width: 100%;
        max-width: 100vw;
        right: 0;
        left: 0;
    }

    section {
        width: 100%;
        max-width: 100%;
    }

    .container,
    .container-fluid {
        max-width: 100%;
    }

    .row {
        max-width: 100%;
    }

    .row > * {
        min-width: 0;
    }

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

    .contact-hero,
    .contact-main,
    .branches-section,
    .contact-main-box,
    .contact-main-info,
    .contact-form-box,
    .branches-list,
    .branch-modern-card,
    .branch-modern-info,
    .branch-modern-map {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-main-box > .row,
    .branch-modern-card > .row {
        width: 100%;
        max-width: 100%;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .contact-main-box .col-lg-5,
    .contact-main-box .col-lg-7,
    .branch-modern-card .col-lg-5,
    .branch-modern-card .col-lg-7 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding-right: 0;
        padding-left: 0;
    }

}
/* =========================================================
   HEADER + HOME HERO — FINAL APPROVED DESIGN
========================================================= */

:root {
    --desktop-header-height: 116px;
    --mobile-header-height: 72px;
}


/* =========================================================
   HEADER — DESKTOP
========================================================= */

.site-header {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    left: 0 !important;

    width: 100%;

    z-index: 1050;

    background: rgba(3, 20, 36, .96) !important;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    transition:
        background .3s ease,
        box-shadow .3s ease;
}


/* عند النزول */
.site-header.is-scrolled {
    background:
        rgba(3,20,36,.97) !important;

    box-shadow:
        0 8px 28px
        rgba(0,0,0,.16);
}


/* الشريط الصغير أعلى الهيدر */
.site-header .topbar {
    height: 30px;

    background:
        rgba(0,0,0,.12);

    border-bottom:
        1px solid
        rgba(255,255,255,.06);
}


/* النافبار */
.site-header .navbar {
    min-height: 86px;

    padding-top: 3px;
    padding-bottom: 3px;

    background: transparent;
}


/* الشعار */
.site-header .main-logo {
    width: auto;
    height: 62px;

    object-fit: contain;
}


/* روابط القائمة */
.site-header .navbar .nav-link {
    padding:
        24px 14px !important;

    color:
        rgba(255,255,255,.82);

    font-size: 15px;
}


/* خط الرابط النشط */
.site-header .navbar .nav-link::after {
    bottom: 16px;
}


/* زر عرض السعر */
.site-header .navbar-quote {
    padding:
        11px 24px;

    white-space: nowrap;
}


/* =========================================================
   PAGE HEADER OFFSET
========================================================= */

body > main {
    padding-top:
        var(--desktop-header-height);
}


.home-page > main,
.inner-page > main {
    padding-top: 0;
}


/* الصفحة الرئيسية تبدأ خلف الهيدر */
.home-page .hero {
    padding-top: 0 !important;
}


/* الصفحات الداخلية */
.inner-page .inner-hero {
    padding-top:
        var(--desktop-header-height);
}


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

.hero {
    position: relative;

    width: 100%;

    height: 100vh;

    min-height: 720px;

    background: #04182b;

    overflow: hidden;
}


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

.hero-image {
    position: absolute;

    inset: 0;

    background-size: cover !important;

    background-position:
        center center !important;

    background-repeat: no-repeat;

    opacity: 1;

    transform: scale(1);

    transform-origin:
        center center;

    animation:
        heroApprovedZoom
        16s
        ease-in-out
        infinite alternate;

    will-change: transform;
}


/* حركة هادئة جدًا */
@keyframes heroApprovedZoom {

    from {
        transform:
            scale(1);
    }

    to {
        transform:
            scale(1.035);
    }

}


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

.hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    /*
       التعتيم خفيف جدًا على الصورة،
       ويزيد فقط ناحية النص.
    */
    background:
        linear-gradient(
            90deg,

            rgba(3,17,31,0) 0%,

            rgba(3,17,31,0) 45%,

            rgba(3,17,31,.03) 56%,

            rgba(3,17,31,.12) 66%,

            rgba(3,17,31,.28) 78%,

            rgba(3,17,31,.46) 90%,

            rgba(3,17,31,.56) 100%
        ) !important;

    pointer-events: none;
}


/* نلغي أي Overlay قديم إضافي */
.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background: none !important;

    pointer-events: none;
}


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

.hero-container {
    position: relative;

    z-index: 3;

    height: 100%;
}


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

.hero-row {
    height: 100vh;

    min-height: 720px !important;

    padding-top:
        var(--desktop-header-height) !important;

    padding-bottom:
        70px !important;

    align-items: center !important;
}


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

.hero-content {
    position: relative;

    max-width: 620px;

    /*
       ننزل النص قليلًا حتى يطابق
       التصميم المعتمد.
    */
    padding:
        165px 0 0 !important;

    margin: 0;

    color: #fff;
}


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

.hero h1 {
    max-width: 600px;

    margin: 0 0 16px !important;

    color: #fff;

    font-size: clamp(
        34px,
        2.55vw,
        42px
    ) !important;

    font-weight: 800;
    line-height: 1.35 !important;

    letter-spacing: 0;
    white-space: nowrap;

    text-shadow:
        0 4px 20px rgba(0,0,0,.30);
}


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

.hero p {
    max-width: 600px;

    margin: 0;

    color:
        rgba(255,255,255,.88);

    font-size: 16px;

    line-height: 1.85;

    white-space: nowrap;

    text-shadow:
        0 3px 15px
        rgba(0,0,0,.22);
}


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

.hero-actions {
    display: flex;

    flex-wrap: nowrap;

    gap: 16px;

    margin-top: 26px;
}


.hero-actions .btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 200px;

    min-height: 54px;

    padding:
        11px 26px;

    border-radius: 4px;

    font-size: 15px;

    font-weight: 700;
}


.hero-actions .btn-outline-light {
    background:
        rgba(0,0,0,.10);

    border-color:
        rgba(255,255,255,.80);

    color: #fff;
}


.hero-actions .btn-outline-light:hover {
    background: #fff;

    color: var(--navy);
}


/* =========================================================
   FEATURES POSITION
========================================================= */

.features-section {
    position: relative;
    z-index: 20;
    margin-top: -25px;
}


/* =========================================================
   TABLET / MOBILE HEADER
========================================================= */

@media (max-width: 991px) {

    :root {
        --mobile-header-height: 72px;
    }


    .site-header {
        background:
            rgba(4,24,43,.96) !important;

        backdrop-filter:
            blur(10px);

        -webkit-backdrop-filter:
            blur(10px);
    }


    .site-header .topbar {
        display: none;
    }


    .site-header .navbar {
        min-height: 72px;

        padding:
            7px 0;
    }


    .site-header .main-logo {
        height: 52px;
    }


    .site-header .navbar .nav-link {
        padding:
            11px 5px !important;
    }


    .home-page .hero,
    .inner-page .inner-hero {
        padding-top:
            var(--mobile-header-height);
    }


    .hero {
        height: auto;

        min-height: 720px;
    }


    .hero-row {
        height: auto;

        min-height: 720px !important;

        padding-top:
            var(--mobile-header-height) !important;

        padding-bottom:
            55px !important;

        align-items:
            flex-end !important;
    }


    .hero-content {
        max-width: 620px;

        padding:
            0 0 45px !important;
    }


    .hero-image {
        background-position:
            center center !important;

        animation-duration:
            18s;
    }


    .hero-image::after {
        background:
            linear-gradient(
                180deg,

                rgba(3,17,31,.08) 0%,

                rgba(3,17,31,.12) 35%,

                rgba(3,17,31,.40) 68%,

                rgba(3,17,31,.76) 100%
            ) !important;
    }


    .hero h1 {
        white-space: normal;

        font-size:
            clamp(
                34px,
                6vw,
                44px
            ) !important;
    }


    .hero p {
        white-space: normal;
    }


    .features-section {
        margin-top: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .hero {
        min-height: 680px;
    }


    .hero-row {
        min-height: 680px !important;

        padding-bottom:
            35px !important;
    }


    .hero-content {
        width: 100%;

        max-width: 100%;

        padding:
            0 0 30px !important;
    }


    .hero-image {
        /*
           على الهاتف نعطي أولوية
           للمصعد بدل شعار الجدار.
        */
        background-position:
            45% center !important;
    }


    .hero h1 {
        font-size:
            34px !important;

        line-height:
            1.4 !important;
    }


    .hero p {
        font-size: 15px;

        line-height: 1.8;
    }


    .hero-actions {
        flex-direction: column;

        gap: 10px;

        margin-top: 23px;
    }


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

        min-width: 0;

        min-height: 51px;

        font-size: 15px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-image {
        animation: none;

        transform: none;
    }

}