:root {
    --navy: #0B2A4A;
    --gold: #C9A227;
    --bg: #f7f9fc
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: 'Tajawal', 'Inter', sans-serif;
    background: #fff;
    color: #162233;
    line-height: 1.75
}

html[dir=ltr] body {
    font-family: 'Inter', 'Tajawal', sans-serif
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px
}

.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    width: 0;
    z-index: 99;
    transition: .1s
}

.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8edf5;
    z-index: 50
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--navy)
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold)
}

.brand-text strong {
    display: block;
    font-size: 20px;
    line-height: 1
}

.brand-text span {
    font-size: 12px;
    color: #5c6b80
}

.menu {
    display: flex;
    gap: 24px
}

.menu a {
    color: #2b3c55;
    text-decoration: none;
    font-weight: 600
}

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

.lang {
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer
}

.burger {
    display: none;
    background: none;
    border: none;
    font-size: 26px
}

.hero {
    position: relative;
    height: 88vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05)
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 42, 74, .85), rgba(11, 42, 74, .6))
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px
}

.eyebrow {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: .5px
}

.hero h1 {
    font-size: 48px;
    margin: 0 0 14px;
    font-weight: 900;
    line-height: 1.15
}

.hero p {
    font-size: 18px;
    opacity: .95
}

.cta {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn {
    padding: 13px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    border: 2px solid transparent;
    transition: .25s;
    display: inline-block
}

.btn.primary {
    background: var(--gold);
    color: #111;
    box-shadow: 0 8px 20px rgba(201, 162, 39, .3)
}

.btn.ghost {
    border-color: #fff;
    color: #fff
}

.btn:hover {
    transform: translateY(-3px)
}

.float-cards {
    position: absolute;
    bottom: 24px;
    inset-inline: 20px;
    display: flex;
    gap: 12px;
    z-index: 3;
    flex-wrap: wrap;
    justify-content: center;
}

.mini {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 10px 14px;
    border-radius: 12px;
    min-width: 120px
}

.mini b {
    display: block;
    color: var(--gold)
}

.section {
    padding: 84px 0
}

.section.alt {
    background: var(--bg)
}

h2 {
    font-size: 32px;
    color: var(--navy);
    margin: 0 0 12px
}

.lead {
    color: #51627a;
    margin-bottom: 26px
}

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

.svc-card {
    background: #fff;
    border: 1px solid #e6ecf5;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(11, 42, 74, .05);
    transition: .3s;
    position: relative;
    overflow: hidden
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(11, 42, 74, .12)
}

.svc-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px
}

.svc-head img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--gold)
}

.svc-head h3 {
    margin: 0;
    font-size: 18px;
    color: var(--navy)
}

.svc-card details {
    margin-top: 10px;
    background: #f9fbff;
    border-radius: 10px;
    padding: 8px 12px
}

.svc-card summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--navy)
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 24px
}

.step {
    background: #fff;
    border: 1px solid #e3eaf3;
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    position: relative
}

.step span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 8px;
    font-weight: 800;
    border: 3px solid var(--gold)
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    align-items: center
}

.glass {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(8px);
    border: 1px solid #e5ecf7;
    padding: 24px;
    border-radius: 16px
}

.contact {
    text-align: center
}

.btn.big {
    font-size: 18px;
    padding: 16px 30px
}

.footer {
    background: #0a1626;
    color: #aab8cc;
    padding: 30px 0;
    margin-top: 40px
}

.foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.foot-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold)
}

@media(max-width:980px) {
    .services-grid {
        grid-template-columns: 1fr 1fr
    }

    .timeline {
        grid-template-columns: 1fr 1fr
    }

    .hero h1 {
        font-size: 36px
    }
}

@media(max-width:680px) {
    .menu {
        display: none;
        position: absolute;
        top: 74px;
        inset-inline: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid #e5ecf7
    }

    .menu.open {
        display: flex
    }

    .burger {
        display: block
    }

    .services-grid,
    .timeline,
    .grid-2 {
        grid-template-columns: 1fr
    }

    .hero {
               height: 80vh;
        padding: 0px 0 230px;

    }

    .hero-content{
      margin: 0px;
      PLACE-ITEMS: CENTER;
    }
}