:root {
    --navy: #0b2f6b;
    --blue: #123f87;
    --deep: #06152f;
    --orange: #f58220;
    --ink: #111827;
    --muted: #64748b;
    --soft: #f5f7fb;
    --line: #e5e7eb;
    --white: #fff;
    --shadow: 0 20px 60px rgba(7, 27, 61, .12);
    --shadow2: 0 12px 32px rgba(7, 27, 61, .09)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Cairo', system-ui, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.8
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1180px, 92%);
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229, 231, 235, .8)
}

.nav-wrap {
    width: min(1240px, 94%);
    margin: auto;
    height: 82px;
    display: flex;
    align-items: center;
    gap: 22px
}

.brand img {
    width: 80px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-inline-start: auto
}

.nav-links a {
    font-weight: 800;
    font-size: 14px;
    color: #25344d
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange)
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    transition: .25s
}

.nav-cta,
.btn.primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 28px rgba(245, 130, 32, .24)
}

.nav-cta:hover,
.btn.primary:hover,
.floating-contact a:hover {
    transform: translateY(-2px)
}

.btn.secondary {
    border: 1px solid rgba(11, 47, 107, .2);
    color: var(--navy);
    background: #fff
}

.btn.secondary.white {
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
    background: rgba(255, 255, 255, .08)
}

.menu-toggle {
    display: none;
    border: 0;
    background: var(--navy);
    color: #fff;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    font-size: 18px
}

.hero {
    min-height: 780px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #071b3d 0%, #0b2f6b 58%, #082458 100%);
    color: #fff
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 21, 47, .94), rgba(7, 27, 61, .48)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1900&q=85') center/cover;
    opacity: .72
}

.hero:after {
    content: "";
    position: absolute;
    inset: auto -10% -36% -10%;
    height: 390px;
    background: #fff;
    transform: skewY(-4deg);
    transform-origin: left
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 56px;
    align-items: center;
    padding: 96px 0 140px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 900;
    margin-bottom: 16px
}

.eyebrow:before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: var(--orange)
}

.eyebrow.light {
    color: #ffb46a
}

.hero h1,
.page-hero h1 {
    font-size: clamp(36px, 5vw, 66px);
    line-height: 1.22;
    margin: 0 0 22px;
    font-weight: 900;
    letter-spacing: -1.5px
}

.hero p {
    font-size: 19px;
    color: rgba(255, 255, 255, .87);
    max-width: 690px;
    margin: 0 0 30px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.trust-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px
}

.trust-row span {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 9px 14px;
    border-radius: 999px;
    color: #e5edff;
    font-size: 14px
}

.hero-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: var(--shadow);
    border-radius: 30px;
    padding: 22px;
    color: var(--ink)
}

.card-image {
    height: 315px;
    border-radius: 24px;
    background: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=900&q=85') center/cover;
    position: relative;
    overflow: hidden
}

.card-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 21, 47, .68), transparent 60%)
}

.card-logo {
    position: absolute;
    right: 22px;
    bottom: 22px;
    background: #fff;
    border-radius: 20px;
    padding: 14px;
    width: 170px;
    z-index: 1
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px
}

.stats div {
    background: #f7f9fd;
    border: 1px solid #edf1f7;
    border-radius: 18px;
    padding: 16px;
    text-align: center
}

.stats strong {
    display: block;
    color: var(--navy);
    font-size: 24px;
    font-weight: 900
}

.stats span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 800
}

.section {
    padding: 92px 0
}

.compact {
    padding: 36px 0
}

.soft {
    background: var(--soft)
}

.intro-strip {
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid #eef2f7;
    border-radius: 24px;
    padding: 28px 34px;
    position: relative;
    z-index: 3;
    margin-top: -88px
}

.intro-strip p {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #26344d;
    text-align: center
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 44px
}

.section-head span,
.cta-box span {
    color: var(--orange);
    font-weight: 900
}

.section-head h2,
.content-panel h2,
.cta-box h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.35;
    margin: 8px 0 0;
    font-weight: 900;
    color: var(--deep)
}

.section-head p {
    color: var(--muted);
    margin: 12px 0 0
}

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

.service-card,
.location-card,
.feature-card,
.mini-card,
.process-card,
.sector-card {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 26px;
    padding: 30px;
    box-shadow: var(--shadow2);
    transition: .25s
}

.service-card:hover,
.mini-card:hover,
.sector-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.icon,
.location-card i,
.feature-card i,
.mini-card i,
.process-card i,
.sector-card i {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--navy), #1b5db8);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 23px;
    margin-bottom: 20px
}

.service-card h3,
.location-card h3,
.feature-card h3,
.mini-card h3,
.process-card h3,
.sector-card h3 {
    font-size: 23px;
    margin: 0 0 10px;
    color: var(--deep)
}

.service-card p,
.location-card p,
.feature-card p,
.mini-card p,
.process-card p,
.sector-card p,
.content-panel p,
.page-text p {
    color: var(--muted);
    margin: 0
}

.service-card span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 22px;
    color: var(--orange);
    font-weight: 900
}

.dark {
    background: var(--deep);
    color: #fff;
    position: relative;
    overflow: hidden
}

.dark:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1900&q=85') center/cover;
    opacity: .08
}

.dark .container {
    position: relative
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center
}

.image-panel {
    min-height: 470px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(11, 47, 107, .1), rgba(11, 47, 107, .1)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=85') center/cover;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .25)
}

.image-panel.supply {
    background-image: linear-gradient(180deg, rgba(11, 47, 107, .1), rgba(11, 47, 107, .1)), url('https://plus.unsplash.com/premium_photo-1681823089588-5ad065dc85cd?auto=format&fit=crop&w=1200&q=85')
}

.dark h2 {
    color: #fff
}

.dark p {
    color: rgba(255, 255, 255, .76)
}

.check-list {
    margin-top: 24px
}

.check-list p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 13px 0;
    font-weight: 800
}

.check-list i {
    color: var(--orange)
}

.locations,
.features,
.mini-grid,
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.process-card {
    position: relative
}

.process-card .num {
    position: absolute;
    left: 22px;
    top: 18px;
    color: #dbe4f0;
    font-weight: 900;
    font-size: 34px
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    gap: 18px
}

.gallery-item {
    min-height: 260px;
    border-radius: 28px;
    background: center/cover;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow2)
}

.gallery-item.big {
    grid-row: span 2;
    min-height: 540px
}

.gallery-item:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 21, 47, .74), transparent 58%)
}

.gallery-item h3 {
    position: absolute;
    right: 22px;
    bottom: 18px;
    color: #fff;
    z-index: 1;
    margin: 0;
    font-size: 22px
}

.cta-section {
    padding: 20px 0 92px
}

.cta-box {
    background: linear-gradient(135deg, var(--navy), var(--deep));
    border-radius: 32px;
    padding: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

.cta-box:after {
    content: "";
    position: absolute;
    left: -70px;
    bottom: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(245, 130, 32, .18)
}

.cta-box h2 {
    color: #fff;
    margin: 6px 0
}

.cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, .78)
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.footer {
    background: #06152f;
    color: #d8e2f4;
    padding-top: 60px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr 1fr;
    gap: 40px
}

.footer img {
    width: 180px;
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 18px
}

.footer h4 {
    color: #fff;
    margin: 0 0 15px
}

.footer a {
    display: block;
    color: #d8e2f4;
    margin: 7px 0
}

.footer p {
    color: #b9c7dd;
    margin: 8px 0
}

.copy {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 18px;
    margin-top: 42px;
    color: #9ca9bf
}

.floating-contact {
    position: fixed;
    left: 22px;
    bottom: 22px;
    display: grid;
    gap: 10px;
    z-index: 60
}

.floating-contact a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
    transition: .25s
}

.floating-contact .wa {
    background: #25d366
}

.floating-contact .mail {
    background: var(--orange)
}

.page-hero {
    padding: 115px 0 80px;
    background: linear-gradient(135deg, var(--deep), var(--navy));
    color: #fff;
    position: relative;
    overflow: hidden
}

.page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1900&q=85') center/cover;
    opacity: .16
}

.page-hero .container {
    position: relative
}

.page-hero p {
    font-size: 19px;
    color: rgba(255, 255, 255, .8);
    max-width: 780px
}

.breadcrumb {
    color: #ffb46a;
    font-weight: 900
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.rounded-img {
    border-radius: 30px;
    min-height: 440px;
    background: center/cover;
    box-shadow: var(--shadow)
}

.list-card {
    background: #f8fafc;
    border: 1px solid #edf1f7;
    border-radius: 26px;
    padding: 28px
}

.list-card ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.list-card li {
    padding: 10px 0;
    border-bottom: 1px solid #e5eaf2;
    font-weight: 800
}

.list-card li:last-child {
    border-bottom: 0
}

.detail-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
    align-items: start
}

.side-box {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 28px;
    padding: 26px;
    box-shadow: var(--shadow2);
    position: sticky;
    top: 110px
}

.side-box a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eef2f7;
    font-weight: 900;
    color: var(--navy)
}

.side-box a:last-child {
    border: 0
}

.detail-card {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow2);
    margin-bottom: 22px
}

.detail-card h2 {
    margin: 0 0 12px;
    color: var(--deep);
    font-size: 30px
}

.detail-card p {
    color: var(--muted)
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px
}

.tag-list span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--navy);
    font-weight: 800;
    font-size: 13px
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px
}

.contact-card {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow)
}

.contact-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #eef2f7
}

.contact-item:last-child {
    border: 0
}

.contact-item i {
    color: var(--orange);
    font-size: 22px;
    margin-top: 5px
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid #dfe6ef;
    border-radius: 16px;
    padding: 14px 16px;
    font-family: inherit;
    margin-bottom: 13px;
    font-size: 15px;
    background: #fff
}

.contact-form textarea {
    height: 140px;
    resize: vertical
}

.map-wrap {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #e5e7eb
}

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

.reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: rise .75s ease forwards
}

.delay {
    animation-delay: .12s
}

.delay-2 {
    animation-delay: .22s
}

@keyframes rise {
    to {
        opacity: 1;
        transform: none
    }
}

@media (max-width:980px) {
    .menu-toggle {
        display: block;
        margin-inline-start: auto
    }

    .nav-links,
    .nav-cta {
        display: none
    }

    .nav-links.open {
        display: flex;
        position: absolute;
        top: 82px;
        left: 3%;
        right: 3%;
        background: #fff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        border-radius: 22px;
        padding: 18px;
        flex-direction: column;
        align-items: stretch
    }

    .nav-links.open a {
        padding: 10px
    }

    .hero-grid,
    .split,
    .content-grid,
    .contact-grid,
    .detail-layout {
        grid-template-columns: 1fr
    }

    .hero {
        min-height: auto
    }

    .hero-card {
        display: none
    }

    .service-grid,
    .locations,
    .features,
    .footer-grid,
    .mini-grid,
    .sectors-grid,
    .process-grid {
        grid-template-columns: 1fr
    }

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

    .gallery-item.big {
        min-height: 320px
    }

    .gallery-item {
        min-height: 260px
    }

    .cta-box {
        display: block
    }

    .cta-actions {
        margin-top: 22px
    }

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

    .section {
        padding: 66px 0
    }

    .brand img {
        width: 80px
    }

    .side-box {
        position: static
    }
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.contact-info i {
    font-size: 14px;
    color: #fff;
}