@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #071a2f;
    --navy-2: #0c2744;
    --navy-3: #102f4e;

    --gold: #c8a45d;
    --gold-light: #e0c17d;

    --white: #ffffff;
    --cream: #f7f4ed;

    --text: #243244;
    --muted: #6f7b88;

    --border: #e4e0d7;

    --shadow: 0 18px 50px rgba(7, 26, 47, 0.10);
}


/* ================= GENERAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", Arial, sans-serif;
    background: #ffffff;
    color: var(--text);
    line-height: 1.9;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* ================= HEADER ================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(7, 26, 47, 0.98);

    border-bottom: 1px solid rgba(200, 164, 93, 0.20);
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;

    line-height: 1.4;
}

.logo-main {
    color: var(--gold-light);

    font-size: 20px;
    font-weight: 800;
}

.logo-sub {
    color: #d9e0e8;

    font-size: 11px;
}

.nav {
    display: flex;
    align-items: center;

    gap: 28px;
}

.nav a {
    color: #f5f5f5;

    font-size: 14px;
    font-weight: 600;

    transition: 0.25s;
}

.nav a:hover {
    color: var(--gold-light);
}

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    color: white;

    font-size: 27px;

    cursor: pointer;
}


/* ================= HERO ================= */

.hero {
    position: relative;

    min-height: 700px;

    overflow: hidden;

    background: var(--navy);

    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 47, 0.82),
            rgba(7, 26, 47, 0.55)
        ),
        url("../images/hero.JPG");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.hero-text {
    max-width: 800px;

    padding: 90px 0;
}

.eyebrow {
    display: inline-block;

    color: var(--gold-light);

    border-right: 3px solid var(--gold);

    padding-right: 12px;

    margin-bottom: 18px;

    font-weight: 700;
}


/* ================= LAWYER NAME ================= */

.lawyer-name {
    color: var(--gold-light);

    font-size: clamp(44px, 5.7vw, 76px);

    line-height: 1.25;

    font-weight: 800;

    margin-bottom: 8px;

    letter-spacing: -1px;

    text-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.lawyer-title {
    color: #ffffff;

    font-size: clamp(22px, 3vw, 39px);

    line-height: 1.5;

    font-weight: 700;

    margin-bottom: 22px;
}

.hero p {
    color: #dce5ee;

    max-width: 720px;

    font-size: 18px;

    line-height: 2;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}

.btn {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-height: 52px;

    padding: 0 27px;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.25s;

    cursor: pointer;
}

.btn-gold {
    background: var(--gold);

    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-light);

    transform: translateY(-2px);
}

.btn-outline {
    color: white;

    border: 1px solid rgba(255,255,255,0.45);
}

.btn-outline:hover {
    border-color: var(--gold);

    color: var(--gold-light);
}

.btn-dark {
    background: var(--navy);

    color: white;
}

.hero-badge {
    min-width: 160px;
    min-height: 160px;

    border: 1px solid rgba(224, 193, 125, 0.7);

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    color: white;

    background: rgba(7, 26, 47, 0.45);

    backdrop-filter: blur(4px);
}

.hero-badge strong {
    color: var(--gold-light);

    font-size: 34px;

    line-height: 1;
}

.hero-badge span {
    font-size: 13px;

    margin-top: 10px;
}


/* ================= QUICK LINKS ================= */

.quick-links {
    background: white;

    box-shadow: 0 10px 40px rgba(0,0,0,0.08);

    position: relative;

    z-index: 5;
}

.quick-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.quick-grid a {
    padding: 25px 20px;

    display: flex;

    align-items: center;

    gap: 15px;

    border-left: 1px solid var(--border);

    transition: 0.25s;
}

.quick-grid a:first-child {
    border-right: 1px solid var(--border);
}

.quick-grid a:hover {
    background: var(--cream);
}

.quick-icon {
    color: var(--gold);

    font-size: 30px;
}

.quick-grid strong {
    display: block;

    color: var(--navy);

    font-size: 14px;
}

.quick-grid small {
    color: var(--muted);

    font-size: 11px;
}


/* ================= SECTIONS ================= */

.section {
    padding: 100px 0;
}

.section-heading {
    text-align: center;

    max-width: 780px;

    margin: 0 auto 55px;
}

.section-label {
    display: inline-block;

    color: var(--gold);

    font-size: 13px;

    font-weight: 800;

    margin-bottom: 10px;
}

.section-heading h2 {
    color: var(--navy);

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.5;

    margin-bottom: 14px;
}

.section-heading h2 span {
    color: var(--gold);
}

.section-heading p {
    color: var(--muted);
}


/* ================= SERVICES ================= */

.services-section {
    background: var(--cream);
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.service-card {
    position: relative;

    background: white;

    padding: 32px;

    min-height: 310px;

    border: 1px solid var(--border);

    overflow: hidden;

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color: rgba(200,164,93,0.5);
}

.service-number {
    position: absolute;

    top: 12px;
    left: 18px;

    color: #e9e3d7;

    font-size: 48px;

    font-weight: 800;
}

.service-icon {
    color: var(--gold);

    font-size: 36px;

    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--navy);

    font-size: 19px;

    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 2;
}

.service-card a {
    display: inline-block;

    margin-top: 18px;

    color: var(--gold);

    font-weight: 800;

    font-size: 13px;
}


/* ================= TRUST ================= */

.trust-strip {
    background: var(--navy);

    color: white;

    padding: 35px 0;
}

.trust-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    text-align: center;
}

.trust-grid div {
    border-left: 1px solid rgba(255,255,255,0.12);
}

.trust-grid div:last-child {
    border-left: 0;
}

.trust-grid strong {
    display: block;

    color: var(--gold-light);

    font-size: 30px;

    font-weight: 800;
}

.trust-grid span {
    color: #d6dee7;

    font-size: 12px;
}


/* ================= ABOUT ================= */

.about-section {
    background: white;
}

.about-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: center;
}

.about-photo {
    min-height: 570px;

    position: relative;

    background:
        linear-gradient(
            180deg,
            rgba(7,26,47,0.05),
            rgba(7,26,47,0.45)
        ),
        url("../images/about.JPG");

    background-size: cover;

    background-position: center;

    border: 8px solid var(--cream);

    box-shadow: var(--shadow);
}

.photo-overlay {
    position: absolute;

    bottom: 25px;
    right: 25px;

    background: rgba(7,26,47,0.94);

    color: white;

    padding: 20px 25px;

    border-right: 4px solid var(--gold);
}

.photo-overlay span {
    display: block;

    color: #d8e0e8;

    font-size: 12px;
}

.photo-overlay strong {
    display: block;

    color: var(--gold-light);

    font-size: 24px;
}

.about-content h2 {
    color: var(--navy);

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.5;

    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--gold);
}

.about-content > p {
    color: var(--muted);

    margin-bottom: 18px;
}

.about-points {
    margin-top: 25px;
}

.about-points div {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 12px;
}

.about-points span {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: var(--cream);

    color: var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: 800;
}

.about-points p {
    font-size: 14px;

    font-weight: 600;
}


/* ================= DETAILED SERVICES ================= */

.detailed-services {
    background: var(--cream);
}

.detailed-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.detail-card {
    background: white;

    border: 1px solid var(--border);

    padding: 28px;

    display: flex;

    gap: 22px;

    transition: 0.25s;
}

.detail-card:hover {
    border-color: var(--gold);

    box-shadow: var(--shadow);
}

.detail-card > span {
    color: var(--gold);

    font-size: 25px;

    font-weight: 800;
}

.detail-card h3 {
    color: var(--navy);

    font-size: 18px;

    margin-bottom: 8px;
}

.detail-card p {
    color: var(--muted);

    font-size: 13px;
}


/* ================= CONSULTATION ================= */

.consultation-section {
    background: var(--navy);

    color: white;

    padding: 75px 0;
}

.consultation-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.light-label {
    color: var(--gold-light);
}

.consultation-inner h2 {
    font-size: clamp(27px, 4vw, 42px);

    line-height: 1.5;

    margin-bottom: 15px;
}

.consultation-inner h2 span {
    color: var(--gold-light);
}

.consultation-inner p {
    color: #d6e0e9;

    max-width: 700px;
}


/* ================= WHY US ================= */

.why-section {
    background: white;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.why-card {
    background: var(--cream);

    padding: 30px;

    border-top: 3px solid var(--gold);
}

.why-number {
    color: var(--gold);

    font-size: 28px;

    font-weight: 800;
}

.why-card h3 {
    color: var(--navy);

    margin: 8px 0;
}

.why-card p {
    color: var(--muted);

    font-size: 13px;
}


/* ================= STEPS ================= */

.steps-section {
    background: var(--cream);
}

.steps-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.step {
    position: relative;

    background: white;

    padding: 30px;

    text-align: center;

    border: 1px solid var(--border);
}

.step-number {
    width: 65px;
    height: 65px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: var(--navy);

    color: var(--gold-light);

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: 800;
}

.step h3 {
    color: var(--navy);

    margin-bottom: 8px;
}

.step p {
    color: var(--muted);

    font-size: 13px;
}


/* ================= COMPANIES ================= */

.companies-section {
    background: white;
}

.companies-box {
    background: var(--cream);

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    overflow: hidden;
}

.companies-content {
    padding: 65px;
}

.companies-content h2 {
    color: var(--navy);

    font-size: 38px;

    line-height: 1.5;

    margin-bottom: 18px;
}

.companies-content h2 span {
    color: var(--gold);
}

.companies-content p {
    color: var(--muted);

    margin-bottom: 15px;
}

.companies-content .btn {
    margin-top: 15px;
}

.companies-visual {
    min-height: 420px;

    background:
        linear-gradient(
            rgba(7,26,47,0.88),
            rgba(7,26,47,0.88)
        ),
        url("../images/hero.jpg");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;
    justify-content: center;
}

.visual-symbol {
    width: 160px;
    height: 160px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold-light);

    font-size: 65px;
}


/* ================= FAQ ================= */

.faq-section {
    background: var(--cream);
}

.faq-list {
    max-width: 850px;

    margin: auto;
}

.faq-list details {
    background: white;

    margin-bottom: 12px;

    border: 1px solid var(--border);
}

.faq-list summary {
    cursor: pointer;

    padding: 20px 25px;

    color: var(--navy);

    font-weight: 700;
}

.faq-list p {
    color: var(--muted);

    padding: 0 25px 22px;

    font-size: 14px;
}


/* ================= CONTACT ================= */

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.contact-card {
    min-height: 110px;

    border: 1px solid var(--border);

    padding: 25px;

    display: flex;

    align-items: center;

    gap: 18px;

    transition: 0.25s;
}

.contact-card:hover {
    border-color: var(--gold);

    box-shadow: var(--shadow);
}

.contact-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--cream);

    color: var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 23px;
}

.contact-card small {
    display: block;

    color: var(--muted);

    font-size: 11px;
}

.contact-card strong {
    color: var(--navy);

    font-size: 14px;

    word-break: break-word;
}

.working-hours {
    margin-top: 25px;

    background: var(--navy);

    color: white;

    padding: 25px 30px;

    border-right: 4px solid var(--gold);
}

.working-hours span {
    display: block;

    color: var(--gold-light);

    font-size: 12px;
}

.working-hours strong {
    display: block;

    margin-top: 5px;
}


/* ================= FOOTER ================= */

.footer {
    background: #041322;

    color: white;

    padding-top: 55px;
}

.footer-inner {
    display: flex;

    justify-content: space-between;

    gap: 40px;

    padding-bottom: 40px;
}

.footer h3 {
    color: var(--gold-light);

    margin-bottom: 8px;
}

.footer p {
    color: #b8c4d0;

    font-size: 12px;
}

.footer-links {
    display: flex;

    gap: 25px;

    align-items: center;
}

.footer-links a {
    color: #d8e0e8;

    font-size: 13px;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 18px;

    text-align: center;

    color: #8998a7;

    font-size: 11px;
}


/* ================= WHATSAPP ================= */

.floating-whatsapp {
    position: fixed;

    left: 22px;
    bottom: 22px;

    z-index: 900;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #25D366;

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.2);

    transition: 0.25s;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
}


/* ================= BACK TOP ================= */

.back-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 48px;
    height: 48px;

    border: 0;

    background: var(--navy);

    color: var(--gold-light);

    font-size: 22px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: 0.25s;
}

.back-top.show {
    opacity: 1;

    visibility: visible;
}


/* ================= TABLET ================= */

@media (max-width: 1000px) {

    .nav {
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-grid a {
        border-bottom: 1px solid var(--border);
    }
}


/* ================= MOBILE ================= */

@media (max-width: 760px) {

    .header-inner {
        min-height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;

        top: 72px;

        right: 0;
        left: 0;

        background: var(--navy);

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 15px 25px;

        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .hero {
        min-height: 680px;
    }

    .hero-content {
        display: block;
    }

    .hero-text {
        padding: 80px 0 40px;
    }

    .lawyer-name {
        font-size: 40px;
        line-height: 1.35;
    }

    .lawyer-title {
        font-size: 21px;
        line-height: 1.6;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-badge {
        display: none;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .quick-grid a {
        border-left: 0 !important;
        border-right: 0 !important;
    }

    .section {
        padding: 70px 0;
    }

    .services-grid,
    .detailed-list,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-photo {
        min-height: 400px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;

        gap: 25px;
    }

    .trust-grid div {
        border-left: 0;
    }

    .consultation-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .why-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .companies-box {
        grid-template-columns: 1fr;
    }

    .companies-content {
        padding: 40px 25px;
    }

    .companies-content h2 {
        font-size: 30px;
    }

    .companies-visual {
        min-height: 300px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}