/* ========================================
   GENERAL
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {

    --dark: #101b19;

    --dark-2: #172522;

    --gold: #c59a54;

    --gold-light: #e3c27d;

    --cream: #f5f1e8;

    --white: #ffffff;

    --text: #172522;

    --gray: #69736f;

    --border: #ddd8cc;

}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Cairo", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.8;

}


a {
    text-decoration: none;
    color: inherit;
}


img {
    width: 100%;
    display: block;
}


.container {

    width: min(1180px, 92%);

    margin: auto;

}


/* ========================================
   HEADER
======================================== */

.header {

    position: fixed;

    top: 0;
    right: 0;
    left: 0;

    z-index: 1000;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(0,0,0,.06);

}


.nav {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand {

    display: flex;

    align-items: center;

    gap: 12px;

}


.brand-logo {

    width: 46px;
    height: 46px;

    border-radius: 50%;

    border: 2px solid var(--gold);

    display: grid;

    place-items: center;

    color: var(--gold);

    font-family: Manrope;

    font-size: 24px;

    font-weight: 800;

}


.brand-text strong {

    display: block;

    font-size: 15px;

}


.brand-text small {

    display: block;

    font-family: Manrope;

    font-size: 8px;

    letter-spacing: 1px;

    color: var(--gray);

}


.menu {

    display: flex;

    align-items: center;

    gap: 25px;

    font-size: 13px;

    font-weight: 700;

}


.menu a {

    transition: .3s;

}


.menu a:hover {

    color: var(--gold);

}


.nav-button {

    background: var(--dark);

    color: white !important;

    padding: 9px 20px;

    border-radius: 30px;

}


.menu-btn {

    display: none;

    border: none;

    background: transparent;

    font-size: 28px;

}


/* ========================================
   HERO
======================================== */

.hero {

    min-height: 780px;

    display: flex;

    align-items: center;

    position: relative;

    color: white;

    background:

        linear-gradient(
            90deg,
            rgba(9,18,17,.95),
            rgba(9,18,17,.60)
        ),

        url("images/hero.jpg")

        center / cover no-repeat;

}


.hero-content {

    padding-top: 90px;

    position: relative;

    z-index: 2;

}


.eyebrow {

    color: var(--gold-light);

    font-size: 13px;

    font-weight: 800;

}


.hero h1 {

    font-size: clamp(48px, 7vw, 88px);

    line-height: 1.08;

    margin: 20px 0;

    max-width: 800px;

}


.hero h1 span {

    color: var(--gold-light);

    display: block;

}


.hero p {

    max-width: 650px;

    color: #e0e5e2;

    font-size: 17px;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    margin: 30px 0;

}


.btn {

    padding: 12px 25px;

    font-size: 13px;

    font-weight: 800;

    border-radius: 4px;

}


.btn-primary {

    background: var(--gold);

    color: var(--dark);

}


.btn-outline {

    border: 1px solid rgba(255,255,255,.5);

}


.hero-contact {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    color: #d3dbd7;

    font-size: 12px;

}


/* ========================================
   STATS
======================================== */

.stats {

    background: var(--gold);

}


.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

}


.stats-grid div {

    padding: 25px;

    display: flex;

    align-items: center;

    gap: 15px;

    border-left: 1px solid rgba(0,0,0,.15);

}


.stats-grid strong {

    font-family: Manrope;

    font-size: 25px;

}


/* ========================================
   SECTIONS
======================================== */

.section {

    padding: 105px 0;

}


.about-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 90px;

}


.section-title span,
.center-title span,
.values-section span,
.team-section span,
.contact-section span {

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

}


.section-title h2,
.center-title h2 {

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.25;

    margin-top: 15px;

}


.section-title em,
.center-title em,
.team-section em,
.contact-section em {

    color: var(--gold);

    font-style: normal;

}


.about-content {

    color: var(--gray);

    font-size: 16px;

}


.about-content p + p {

    margin-top: 18px;

}


.text-link {

    display: inline-block;

    margin-top: 25px;

    font-weight: 800;

    border-bottom: 2px solid var(--gold);

}


/* ========================================
   VISION
======================================== */

.dark-section {

    background: var(--dark);

    padding: 100px 0;

}


.vision-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

}


.vision-card {

    border: 1px solid rgba(255,255,255,.12);

    padding: 38px;

    color: white;

    min-height: 300px;

}


.vision-card.featured {

    background: var(--dark-2);

    border-color: var(--gold);

}


.vision-card span {

    color: var(--gold-light);

    font-family: Manrope;

}


.vision-card h3 {

    font-size: 27px;

    margin: 35px 0 15px;

}


.vision-card p {

    color: #bdc8c4;

    font-size: 14px;

}


/* ========================================
   CENTER TITLE
======================================== */

.center-title {

    text-align: center;

    max-width: 800px;

    margin: auto;

    margin-bottom: 55px;

}


.center-title p {

    color: var(--gray);

    margin-top: 15px;

}


/* ========================================
   SERVICES
======================================== */

.services-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 18px;

}


.service-card {

    min-height: 290px;

    padding: 32px;

    border: 1px solid var(--border);

    transition: .3s;

}


.service-card:hover {

    transform: translateY(-8px);

    border-color: var(--gold);

    box-shadow: 0 15px 40px rgba(0,0,0,.08);

}


.service-number {

    font-family: Manrope;

    color: var(--gold);

    border-bottom: 1px solid var(--border);

    padding-bottom: 18px;

}


.service-card h3 {

    font-size: 19px;

    margin: 25px 0 13px;

}


.service-card p {

    color: var(--gray);

    font-size: 13px;

}


/* ========================================
   VALUES
======================================== */

.values-section {

    padding: 105px 0;

    background: var(--cream);

}


.values-grid {

    margin-top: 55px;

    display: grid;

    grid-template-columns: repeat(5,1fr);

    gap: 15px;

}


.value {

    background: white;

    padding: 25px;

    border-top: 3px solid var(--gold);

}


.value h3 {

    font-size: 18px;

}


.value p {

    color: var(--gray);

    font-size: 12px;

    margin-top: 10px;

}


/* ========================================
   PROJECTS
======================================== */

.projects {

    background: #f8f7f4;

}


.projects-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 15px;

}


.project {

    height: 250px;

    position: relative;

    overflow: hidden;

    background: #15221f;

}


.project img {

    height: 100%;

    object-fit: cover;

    transition: .5s;

}


.project:hover img {

    transform: scale(1.06);

}


.project div {

    position: absolute;

    bottom: 18px;

    right: 18px;

    color: white;

    font-weight: 800;

    border-right: 3px solid var(--gold);

    padding-right: 10px;

}


/* ========================================
   TEAM
======================================== */

.team-section {

    background: var(--dark);

    color: white;

    padding: 90px 0;

}


.team-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

}


.team-section h2 {

    font-size: 50px;

    line-height: 1.2;

    margin-top: 15px;

}


.team-grid p {

    color: #c2cbc7;

}


.team-grid ul {

    list-style: none;

    margin-top: 20px;

}


.team-grid li {

    padding: 8px 0;

    border-bottom: 1px solid rgba(255,255,255,.1);

    font-size: 13px;

}


.team-grid li::before {

    content: "✓";

    color: var(--gold-light);

    margin-left: 10px;

}


/* ========================================
   PARTNERS
======================================== */

.partners-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid var(--border);

    border-right: 1px solid var(--border);

}


.partners-grid div {

    min-height: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 20px;

    border-left: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    font-size: 13px;

    font-weight: 700;

}


/* ========================================
   CONTACT
======================================== */

.contact-section {

    background: var(--dark);

    color: white;

    padding: 100px 0;

}


.contact-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}


.contact-section h2 {

    font-size: 60px;

    line-height: 1.1;

    margin: 15px 0;

}


.contact-section p {

    color: #bdc6c2;

}


.contact-box {

    border: 1px solid rgba(255,255,255,.15);

    padding: 35px;

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.contact-box a {

    font-family: Manrope;

    font-size: 19px;

    direction: ltr;

    text-align: right;

}


.contact-box a:last-child {

    color: var(--gold-light);

}


.contact-box span {

    color: #c0cac6;

    font-size: 13px;

}


/* ========================================
   FOOTER
======================================== */

footer {

    background: #09110f;

    color: #929e99;

}


.footer {

    min-height: 75px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 11px;

}


.footer a {

    color: var(--gold-light);

}


/* ========================================
   RESPONSIVE
======================================== */

@media(max-width: 950px) {

    .menu-btn {

        display: block;

    }


    .menu {

        display: none;

        position: absolute;

        top: 82px;

        right: 4%;

        left: 4%;

        background: white;

        padding: 20px;

        flex-direction: column;

        align-items: stretch;

        box-shadow: 0 20px 40px rgba(0,0,0,.1);

    }


    .menu.open {

        display: flex;

    }


    .stats-grid,
    .services-grid {

        grid-template-columns: repeat(2,1fr);

    }


    .vision-grid {

        grid-template-columns: 1fr;

    }


    .values-grid {

        grid-template-columns: repeat(2,1fr);

    }


    .about-grid,
    .team-grid,
    .contact-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .partners-grid {

        grid-template-columns: repeat(2,1fr);

    }

}


@media(max-width: 600px) {

    .hero {

        min-height: 700px;

    }


    .hero h1 {

        font-size: 48px;

    }


    .hero-contact {

        flex-direction: column;

        gap: 5px;

    }


    .stats-grid,
    .services-grid,
    .values-grid,
    .projects-grid,
    .partners-grid {

        grid-template-columns: 1fr;

    }


    .stats-grid div {

        border-left: none;

        border-bottom: 1px solid rgba(0,0,0,.12);

    }


    .section {

        padding: 75px 0;

    }


    .team-section h2 {

        font-size: 42px;

    }


    .contact-section h2 {

        font-size: 48px;

    }


    .footer {

        flex-direction: column;

        justify-content: center;

        gap: 8px;

        padding: 20px;

    }

}