* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #081827;
    --navy-medium: #11283d;
    --navy-light: #183852;

    --gold: #b99456;
    --gold-light: #d8bb7e;

    --cream: #f3efe7;
    --cream-dark: #e7dfd1;

    --white: #ffffff;

    --text: #26323d;
    --muted: #68727d;
    --border: #dfe3e6;

    --shadow:
        0 22px 60px rgba(8, 24, 39, 0.11);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);

    font-family:
        Inter,
        Arial,
        sans-serif;

    line-height: 1.75;
}

body[dir="rtl"] {
    font-family:
        Cairo,
        Arial,
        sans-serif;
}

body[dir="rtl"] h1,
body[dir="rtl"] h2,
body[dir="rtl"] h3,
body[dir="rtl"] .brand-name strong {
    font-family:
        Cairo,
        Arial,
        sans-serif;
}

h1,
h2,
h3,
.brand-name strong {
    font-family:
        "Libre Baskerville",
        Georgia,
        serif;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: fixed;

    top: 0;
    right: 0;
    left: 0;

    z-index: 1000;

    background:
        rgba(8, 24, 39, 0.3);

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

    backdrop-filter:
        blur(8px);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    background:
        rgba(8, 24, 39, 0.98);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.16);

    backdrop-filter:
        blur(14px);
}

.nav-wrapper {
    min-height: 86px;

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

    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;

    gap: 13px;

    color: var(--white);

    text-decoration: none;

    flex-shrink: 0;
}

.brand-symbol {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

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

    color:
        var(--gold-light);

    font-family:
        "Libre Baskerville",
        Georgia,
        serif;

    font-size: 1.17rem;
    font-weight: 700;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.brand:hover .brand-symbol {
    background:
        var(--gold);

    color:
        var(--navy);
}

.brand-name {
    display: flex;
    flex-direction: column;

    line-height: 1.15;
}

.brand-name strong {
    font-size: 0.96rem;
}

.brand-name small {
    margin-top: 5px;

    color:
        #c7d0d8;

    font-size: 0.62rem;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.main-navigation {
    display: flex;
    align-items: center;

    gap: 24px;
}

.main-navigation > a {
    position: relative;

    color:
        #e8edf1;

    font-size: 0.84rem;
    font-weight: 500;

    text-decoration: none;
}

.main-navigation > a::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -8px;
    left: 0;

    height: 1px;

    background:
        var(--gold);

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition:
        transform 0.22s ease;
}

.main-navigation > a:hover {
    color:
        var(--gold-light);
}

.main-navigation > a:hover::after {
    transform:
        scaleX(1);
}

.language-switcher {
    display: flex;

    border:
        1px solid rgba(255, 255, 255, 0.22);
}

.language-switcher button {
    padding:
        7px 10px;

    border:
        0;

    background:
        transparent;

    color:
        #d7dde3;

    cursor:
        pointer;

    font-weight:
        700;
}

.language-switcher button.active {
    background:
        var(--gold);

    color:
        var(--navy);
}

.menu-button {
    display:
        none;

    border:
        0;

    background:
        transparent;

    color:
        var(--white);

    font-size:
        1.6rem;

    cursor:
        pointer;
}

/* HERO */

.hero {
    min-height:
        100vh;

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    background:
        url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=88")
        center / cover no-repeat;

    overflow:
        hidden;
}

.hero-overlay {
    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 15, 27, 0.99) 0%,
            rgba(4, 15, 27, 0.91) 46%,
            rgba(4, 15, 27, 0.46) 100%
        );
}

body[dir="rtl"] .hero-overlay {
    background:
        linear-gradient(
            270deg,
            rgba(4, 15, 27, 0.99) 0%,
            rgba(4, 15, 27, 0.91) 46%,
            rgba(4, 15, 27, 0.46) 100%
        );
}

.hero-decoration {
    position:
        absolute;

    top:
        0;

    right:
        7%;

    width:
        1px;

    height:
        100%;

    background:
        rgba(255, 255, 255, 0.15);
}

.hero-decoration::before {
    content:
        "";

    position:
        absolute;

    top:
        34%;

    right:
        -4px;

    width:
        9px;

    height:
        9px;

    border-radius:
        50%;

    background:
        var(--gold);
}

.hero-layout {
    position:
        relative;

    z-index:
        2;

    display:
        grid;

    grid-template-columns:
        1.55fr 0.45fr;

    align-items:
        end;

    gap:
        80px;

    padding-top:
        120px;

    padding-bottom:
        90px;

    color:
        var(--white);
}

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

.eyebrow,
.section-label {
    margin-bottom:
        18px;

    color:
        var(--gold);

    font-size:
        0.73rem;

    font-weight:
        700;

    letter-spacing:
        0.19em;

    text-transform:
        uppercase;
}

.arabic-firm-name {
    margin-bottom:
        18px;

    color:
        var(--gold-light);

    font-family:
        Cairo,
        Arial,
        sans-serif;

    font-size:
        clamp(1.9rem, 3.5vw, 3rem);

    font-weight:
        700;

    line-height:
        1.35;

    direction:
        rtl;

    text-align:
        left;
}

body[dir="rtl"] .arabic-firm-name {
    text-align:
        right;
}

.hero h1 {
    max-width:
        920px;

    margin-bottom:
        28px;

    font-size:
        clamp(3rem, 6.1vw, 5.6rem);

    font-weight:
        700;

    line-height:
        1.06;
}

.hero-description {
    max-width:
        720px;

    margin-bottom:
        38px;

    color:
        #d8e0e6;

    font-size:
        1.08rem;
}

.hero-buttons {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        14px;
}

.button {
    display:
        inline-block;

    padding:
        15px 25px;

    border:
        1px solid transparent;

    text-decoration:
        none;

    font-weight:
        700;

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

.button-primary {
    background:
        var(--gold);

    color:
        var(--navy);
}

.button-primary:hover {
    background:
        var(--gold-light);

    transform:
        translateY(-3px);
}

.button-outline {
    border-color:
        rgba(255, 255, 255, 0.45);

    color:
        var(--white);
}

.button-outline:hover {
    background:
        rgba(255, 255, 255, 0.1);

    border-color:
        rgba(255, 255, 255, 0.7);
}

.hero-side-card {
    padding:
        30px;

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

    background:
        rgba(10, 31, 49, 0.55);

    backdrop-filter:
        blur(10px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.18);
}

.hero-side-label {
    display:
        block;

    margin-bottom:
        7px;

    color:
        var(--gold-light);

    font-size:
        0.68rem;

    font-weight:
        700;

    letter-spacing:
        0.13em;

    text-transform:
        uppercase;
}

.hero-side-card strong {
    display:
        block;

    color:
        var(--white);

    font-family:
        "Libre Baskerville",
        Georgia,
        serif;

    font-size:
        1.3rem;
}

.hero-side-line {
    width:
        45px;

    height:
        1px;

    margin:
        22px 0;

    background:
        var(--gold);
}

.hero-side-card p {
    color:
        #cdd6de;

    font-size:
        0.9rem;
}

.scroll-indicator {
    position:
        absolute;

    right:
        50%;

    bottom:
        27px;

    z-index:
        3;

    width:
        24px;

    height:
        42px;

    display:
        flex;

    justify-content:
        center;

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

    border-radius:
        20px;
}

.scroll-indicator span {
    width:
        4px;

    height:
        8px;

    margin-top:
        8px;

    border-radius:
        10px;

    background:
        var(--gold-light);

    animation:
        scrollMove 1.6s infinite;
}

@keyframes scrollMove {
    0% {
        opacity:
            0;

        transform:
            translateY(0);
    }

    50% {
        opacity:
            1;
    }

    100% {
        opacity:
            0;

        transform:
            translateY(15px);
    }
}

/* STATISTICS */

.statistics {
    background:
        var(--navy);

    color:
        var(--white);
}

.statistics-grid {
    display:
        grid;

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

.statistic {
    padding:
        34px;

    text-align:
        center;

    border-right:
        1px solid rgba(255, 255, 255, 0.11);
}

body[dir="rtl"] .statistic {
    border-right:
        0;

    border-left:
        1px solid rgba(255, 255, 255, 0.11);
}

.statistic:last-child {
    border-right:
        0;

    border-left:
        0;
}

.statistic strong {
    display:
        block;

    color:
        var(--gold-light);

    font-family:
        "Libre Baskerville",
        Georgia,
        serif;

    font-size:
        1.75rem;
}

.statistic span {
    color:
        #c7d0d8;

    font-size:
        0.85rem;
}

/* GENERAL */

.section {
    padding:
        110px 0;
}

.section h2 {
    color:
        var(--navy);

    font-size:
        clamp(2.2rem, 4.2vw, 3.7rem);

    line-height:
        1.16;
}

/* ABOUT */

.about-section {
    position:
        relative;

    overflow:
        hidden;
}

.about-section::after {
    content:
        "1992";

    position:
        absolute;

    right:
        2%;

    bottom:
        -65px;

    color:
        rgba(8, 24, 39, 0.035);

    font-family:
        "Libre Baskerville",
        Georgia,
        serif;

    font-size:
        14rem;

    font-weight:
        700;

    line-height:
        1;
}

.about-grid {
    position:
        relative;

    z-index:
        1;

    display:
        grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap:
        90px;

    align-items:
        start;
}

.text-content p + p {
    margin-top:
        21px;
}

.text-link {
    position:
        relative;

    display:
        inline-block;

    margin-top:
        30px;

    padding-bottom:
        5px;

    color:
        var(--navy);

    font-weight:
        700;

    text-decoration:
        none;
}

.text-link::after {
    content:
        "";

    position:
        absolute;

    right:
        0;

    bottom:
        0;

    left:
        0;

    height:
        1px;

    background:
        var(--gold);
}

/* SERVICES */

.services-section {
    background:
        var(--cream);
}

.section-introduction {
    display:
        grid;

    grid-template-columns:
        1.15fr 0.85fr;

    gap:
        80px;

    align-items:
        end;

    margin-bottom:
        50px;
}

.section-introduction > p {
    color:
        var(--muted);
}

.services-grid {
    display:
        grid;

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

    gap:
        1px;

    background:
        var(--cream-dark);
}

.service-card {
    position:
        relative;

    min-height:
        290px;

    padding:
        31px;

    background:
        var(--white);

    overflow:
        hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.service-card::before {
    content:
        "";

    position:
        absolute;

    top:
        0;

    right:
        0;

    left:
        0;

    height:
        3px;

    background:
        var(--gold);

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform 0.25s ease;
}

.service-card:hover {
    z-index:
        2;

    background:
        #fcfaf6;

    box-shadow:
        var(--shadow);

    transform:
        translateY(-7px);
}

.service-card:hover::before {
    transform:
        scaleX(1);
}

.service-number {
    display:
        inline-block;

    margin-bottom:
        39px;

    color:
        var(--gold);

    font-size:
        0.76rem;

    font-weight:
        700;
}

.service-card h3 {
    margin-bottom:
        15px;

    color:
        var(--navy);

    font-size:
        1.16rem;
}

.service-card p {
    color:
        var(--muted);

    font-size:
        0.91rem;
}

.service-arrow {
    position:
        absolute;

    right:
        28px;

    bottom:
        25px;

    color:
        var(--gold);

    font-size:
        1.2rem;

    transform:
        translateX(-5px);

    opacity:
        0;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

body[dir="rtl"] .service-arrow {
    right:
        auto;

    left:
        28px;

    transform:
        translateX(5px);
}

.service-card:hover .service-arrow {
    opacity:
        1;

    transform:
        translateX(0);
}

/* PEOPLE */

.people-section {
    background:
        var(--white);
}

.people-main-title {
    max-width:
        850px;

    margin-bottom:
        55px;
}

.lawyer-profile {
    display:
        grid;

    grid-template-columns:
        0.7fr 1.3fr;

    gap:
        70px;

    align-items:
        start;
}

.lawyer-visual {
    position:
        relative;

    min-height:
        590px;

    overflow:
        hidden;

    background:
        var(--navy);

    box-shadow:
        var(--shadow);
}

.lawyer-photo {
    display:
        block;

    width:
        100%;

    height:
        590px;

    object-fit:
        cover;

    object-position:
        center 28%;

    transition:
        transform 0.55s ease;
}

.lawyer-visual:hover .lawyer-photo {
    transform:
        scale(1.035);
}

.lawyer-photo-caption {
    position:
        absolute;

    right:
        22px;

    bottom:
        22px;

    padding:
        10px 14px;

    background:
        rgba(8, 24, 39, 0.88);

    color:
        var(--gold-light);

    font-size:
        0.68rem;

    font-weight:
        700;

    letter-spacing:
        0.13em;

    text-transform:
        uppercase;
}

.profile-role {
    margin-bottom:
        11px;

    color:
        var(--gold);

    font-size:
        0.74rem;

    font-weight:
        700;

    letter-spacing:
        0.16em;

    text-transform:
        uppercase;
}

.lawyer-information h3 {
    margin-bottom:
        8px;

    color:
        var(--navy);

    font-size:
        clamp(2.2rem, 4vw, 3.4rem);
}

.profile-membership {
    color:
        var(--muted);

    font-weight:
        600;
}

.profile-divider {
    width:
        55px;

    height:
        1px;

    margin:
        28px 0;

    background:
        var(--gold);
}

.lawyer-information > p:not(.profile-role):not(.profile-membership) {
    margin-bottom:
        18px;
}

.profile-highlights {
    display:
        grid;

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

    gap:
        1px;

    margin-top:
        38px;

    background:
        var(--border);
}

.profile-highlights > div {
    padding:
        23px;

    background:
        var(--cream);
}

.profile-highlights span {
    display:
        block;

    margin-bottom:
        7px;

    color:
        var(--gold);

    font-size:
        0.67rem;

    font-weight:
        700;

    letter-spacing:
        0.1em;

    text-transform:
        uppercase;
}

.profile-highlights strong {
    color:
        var(--navy);

    font-size:
        0.9rem;
}

/* APPROACH */

.approach-section {
    position:
        relative;

    background:
        var(--navy);

    color:
        var(--white);

    overflow:
        hidden;
}

.approach-section::before {
    content:
        "";

    position:
        absolute;

    top:
        -150px;

    right:
        -150px;

    width:
        400px;

    height:
        400px;

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

    border-radius:
        50%;
}

.approach-grid {
    position:
        relative;

    z-index:
        1;

    display:
        grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap:
        85px;

    align-items:
        center;
}

.section-label-light {
    color:
        var(--gold-light);
}

.approach-introduction h2 {
    margin-bottom:
        25px;

    color:
        var(--white);
}

.approach-introduction > p:last-child {
    max-width:
        590px;

    color:
        #cbd3da;
}

.values-grid {
    display:
        grid;

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

    gap:
        1px;

    background:
        rgba(255, 255, 255, 0.12);
}

.value-card {
    min-height:
        200px;

    padding:
        31px;

    background:
        var(--navy-medium);

    transition:
        background 0.22s ease;
}

.value-card:hover {
    background:
        var(--navy-light);
}

.value-number {
    display:
        block;

    margin-bottom:
        27px;

    color:
        var(--gold);

    font-size:
        0.69rem;
}

.value-card h3 {
    margin-bottom:
        11px;

    color:
        var(--gold-light);

    font-size:
        1.07rem;
}

.value-card p {
    color:
        #cdd5dd;

    font-size:
        0.89rem;
}

/* CONTACT */

.contact-section {
    background:
        var(--white);
}

.contact-grid {
    display:
        grid;

    grid-template-columns:
        1fr 0.82fr;

    gap:
        80px;

    align-items:
        start;
}

.contact-introduction > p:nth-of-type(2) {
    max-width:
        650px;

    margin-top:
        23px;
}

.linkedin-link {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    margin-top:
        27px;

    color:
        var(--navy);

    font-weight:
        700;

    text-decoration:
        none;
}

.linkedin-link span {
    color:
        var(--gold);
}

.contact-card {
    padding:
        40px;

    background:
        var(--cream);

    box-shadow:
        0 18px 55px rgba(8, 24, 39, 0.08);
}

.contact-detail {
    padding-bottom:
        23px;

    margin-bottom:
        23px;

    border-bottom:
        1px solid #d5cdc0;
}

.contact-detail span {
    display:
        block;

    margin-bottom:
        7px;

    color:
        var(--gold);

    font-size:
        0.68rem;

    font-weight:
        700;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;
}

.contact-detail a {
    color:
        var(--navy);

    font-size:
        1.14rem;

    font-weight:
        700;

    text-decoration:
        none;
}

.button-full {
    width:
        100%;

    text-align:
        center;
}

/* MAP */

.map-section {
    position:
        relative;
}

.map-section::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    z-index:
        1;

    pointer-events:
        none;

    background:
        linear-gradient(
            to bottom,
            rgba(8, 24, 39, 0.05),
            transparent
        );
}

.map-section iframe {
    width:
        100%;

    height:
        430px;

    display:
        block;

    border:
        0;

    filter:
        grayscale(0.25);
}

/* FOOTER */

.site-footer {
    padding:
        55px 0 24px;

    background:
        #06121e;

    color:
        #c5ced6;
}

.footer-grid {
    display:
        grid;

    grid-template-columns:
        1.35fr 0.55fr 0.75fr 1.35fr;

    gap:
        45px;

    align-items:
        start;
}

.footer-brand {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        15px;
}

.footer-monogram {
    width:
        45px;

    height:
        45px;

    display:
        grid;

    place-items:
        center;

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

    color:
        var(--gold-light);

    font-family:
        "Libre Baskerville",
        Georgia,
        serif;

    flex-shrink:
        0;
}

.footer-brand strong {
    color:
        var(--white);
}

.footer-brand p {
    margin-top:
        5px;

    color:
        var(--gold-light);

    font-family:
        Cairo,
        Arial,
        sans-serif;

    font-size:
        0.83rem;
}

.footer-navigation a,
.footer-contact a {
    display:
        block;

    margin-bottom:
        7px;

    color:
        #d5dde4;

    text-decoration:
        none;
}

.footer-navigation a:hover,
.footer-contact a:hover {
    color:
        var(--gold-light);
}

.footer-contact p {
    margin-bottom:
        7px;
}

.legal-disclaimer {
    color:
        #8f9aa4;

    font-size:
        0.77rem;
}

.footer-bottom {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-top:
        45px;

    padding-top:
        22px;

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

.copyright {
    color:
        #87939e;

    font-size:
        0.79rem;
}

.footer-bottom > a {
    width:
        38px;

    height:
        38px;

    display:
        grid;

    place-items:
        center;

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

    color:
        var(--gold-light);

    text-decoration:
        none;

    transition:
        background 0.2s ease;
}

.footer-bottom > a:hover {
    background:
        rgba(255, 255, 255, 0.08);
}

/* REVEAL ANIMATIONS */

.reveal {
    opacity:
        0;

    transform:
        translateY(28px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity:
        1;

    transform:
        translateY(0);
}

/* TABLET */

@media (max-width: 1050px) {

    .menu-button {
        display:
            block;
    }

    .main-navigation {
        display:
            none;

        position:
            absolute;

        top:
            86px;

        right:
            0;
        left:
            0;

        padding:
            27px 5%;

        background:
            var(--navy);

        flex-direction:
            column;

        align-items:
            stretch;

        box-shadow:
            0 20px 35px rgba(0, 0, 0, 0.2);
    }

    .main-navigation.open {
        display:
            flex;
    }

    .language-switcher {
        width:
            max-content;
    }

    .hero-layout,
    .about-grid,
    .section-introduction,
    .lawyer-profile,
    .approach-grid,
    .contact-grid {
        grid-template-columns:
            1fr;

        gap:
            48px;
    }

    .hero-side-card {
        display:
            none;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .lawyer-visual,
    .lawyer-photo {
        min-height:
            500px;

        height:
            500px;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

/* MOBILE */

@media (max-width: 650px) {

    .container {
        width:
            min(92%, 1200px);
    }

    .nav-wrapper {
        min-height:
            76px;
    }

    .brand-symbol {
        width:
            44px;

        height:
            44px;
    }

    .brand-name strong {
        font-size:
            0.78rem;
    }

    .brand-name small {
        font-size:
            0.53rem;
    }

    .main-navigation {
        top:
            76px;
    }

    .hero {
        min-height:
            760px;
    }

    .hero-layout {
        padding-top:
            125px;

        padding-bottom:
            65px;
    }

    .hero h1 {
        font-size:
            2.65rem;
    }

    .arabic-firm-name {
        font-size:
            1.65rem;
    }

    .hero-description {
        font-size:
            1rem;
    }

    .hero-buttons {
        flex-direction:
            column;

        align-items:
            stretch;
    }

    .hero-buttons .button {
        width:
            100%;

        text-align:
            center;
    }

    .scroll-indicator {
        display:
            none;
    }

    .statistics-grid {
        grid-template-columns:
            1fr;
    }

    .statistic,
    body[dir="rtl"] .statistic {
        border-right:
            0;

        border-left:
            0;

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

    .section {
        padding:
            78px 0;
    }

    .services-grid,
    .values-grid,
    .profile-highlights,
    .footer-grid {
        grid-template-columns:
            1fr;
    }

    .service-card {
        min-height:
            250px;
    }

    .lawyer-visual,
    .lawyer-photo {
        min-height:
            430px;

        height:
            430px;
    }

    .contact-card {
        padding:
            29px 22px;
    }

    .footer-bottom {
        align-items:
            flex-start;

        gap:
            20px;
    }

}
/* SERVICE PAGES */

.service-page-hero {
    padding: 155px 0 95px;
    background:
        linear-gradient(
            115deg,
            #071521 0%,
            #11283d 70%,
            #183852 100%
        );
    color: #ffffff;
}

.service-page-hero h1 {
    max-width: 900px;
    margin-bottom: 25px;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1.08;
}

.service-page-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 80px;
    align-items: start;
}

.service-page-content p {
    margin-bottom: 20px;
}

.service-page-content h3 {
    margin-top: 38px;
    margin-bottom: 16px;
    color: var(--navy);
    font-size: 1.35rem;
}

.service-page-list {
    margin: 25px 0 35px;
    padding-left: 23px;
}

body[dir="rtl"] .service-page-list {
    padding-left: 0;
    padding-right: 23px;
}

.service-page-list li {
    margin-bottom: 11px;
}

.service-page-sidebar {
    position: sticky;
    top: 115px;
    padding: 35px;
    background: var(--cream);
    box-shadow:
        0 18px 50px rgba(8, 24, 39, 0.08);
}

.service-page-sidebar h3 {
    margin-bottom: 15px;
    color: var(--navy);
    font-size: 1.4rem;
}

.service-page-sidebar > p {
    margin-bottom: 27px;
    color: var(--muted);
}

.sidebar-detail {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #d5cdc0;
}

.sidebar-detail span {
    display: block;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sidebar-detail a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
}

.service-back-link {
    display: inline-block;
    margin-top: 23px;
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
}

.related-services-section {
    background: var(--cream);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 40px;
    background: var(--cream-dark);
}

.related-service-card {
    min-height: 180px;
    padding: 28px;
    background: #ffffff;
    text-decoration: none;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.related-service-card:hover {
    position: relative;
    z-index: 2;
    transform: translateY(-5px);
    box-shadow:
        0 18px 40px rgba(8, 24, 39, 0.1);
}

.related-service-card span {
    color: var(--gold);
    font-size: 0.72rem;
}

.related-service-card h3 {
    margin-top: 34px;
    color: var(--navy);
}

.language-switcher a {
    padding: 7px 10px;
    color: #d7dde3;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
}

.language-switcher a:hover {
    background: var(--gold);
    color: var(--navy);
}

@media (max-width: 1050px) {

    .service-page-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-page-sidebar {
        position: static;
    }

}

@media (max-width: 650px) {

    .service-page-hero {
        padding: 120px 0 75px;
    }

    .service-page-hero h1 {
        font-size: 2.7rem;
    }

    .related-services-grid {
        grid-template-columns: 1fr;
    }

}
