﻿:root {
    --green: #113e1c;
    --green-dark: #092a12;
    --green-light: #245d31;
    --gold: #c69948;
    --gold-light: #dfbd7b;
    --text: #193020;
    --muted: #6d7b70;
    --soft: #f7f5ef;
    --white: #ffffff;
    --radius: 24px;
    --shadow: 0 25px 70px rgba(17, 62, 28, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    direction: rtl;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--text);
    font-family: "Cairo", sans-serif;
}

    body.en {
        direction: ltr;
        font-family: "Montserrat", "Cairo", sans-serif;
    }

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(100% - 40px, 1180px);
    margin-inline: auto;
}

/* Header */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(17, 62, 28, 0.09);
    backdrop-filter: blur(16px);
    transition: 0.35s;
}

    .site-header.scrolled {
        box-shadow: 0 12px 35px rgba(17, 62, 28, 0.09);
    }

.nav-wrap {
    height: 94px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand img {
    width: 210px;
    max-height: 82px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-inline: auto;
}

    .main-nav a {
        position: relative;
        padding: 12px 0;
        color: var(--green);
        font-size: 14px;
        font-weight: 700;
    }

        .main-nav a::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 5px;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: 0.3s;
        }

        .main-nav a:hover::after {
            width: 100%;
        }

.lang-switch {
    padding: 10px 16px;
    border: 1px solid rgba(17, 62, 28, 0.22);
    border-radius: 10px;
    background: #ffffff;
    color: var(--green);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

    .lang-switch:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    color: var(--green);
    font-size: 24px;
}

/* Hero */

.hero {
    position: relative;
    min-height: 720px;
    height: min(900px, 100vh);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slides,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s ease, transform 7s ease;
}

    .hero-slide.active {
        opacity: 1;
        transform: scale(1);
    }

.hero-overlay {
    z-index: 1;
    background: linear-gradient( 90deg, rgba(6, 38, 15, 0.94), rgba(17, 62, 28, 0.76), rgba(17, 62, 28, 0.27) );
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1180px;
    padding-top: 90px;
    color: #ffffff;
}

    .hero-content > * {
        max-width: 780px;
    }

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 15px;
    font-weight: 800;
}

.eyebrow {
    color: var(--gold-light);
}

    .eyebrow::before,
    .section-label::before {
        content: "";
        width: 38px;
        height: 2px;
        background: currentColor;
    }

.hero h1 {
    margin: 22px 0;
    font-size: clamp(42px, 5.4vw, 72px);
    font-weight: 800;
    line-height: 1.25;
}

.hero p {
    margin: 0 0 35px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    border-radius: 12px;
    font-weight: 800;
    transition: 0.3s;
}

.btn-primary {
    background: var(--gold);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(198, 153, 72, 0.35);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.btn:hover {
    transform: translateY(-3px);
}

.slider-dots {
    position: absolute;
    z-index: 4;
    bottom: 34px;
    left: 50%;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: 0.3s;
}

    .dot.active {
        width: 30px;
        border-radius: 10px;
        background: var(--gold);
    }

.leaf-decoration {
    position: absolute;
    z-index: 2;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.leaf-one {
    top: 130px;
    right: -25px;
    font-size: 190px;
    transform: rotate(-25deg);
}

.leaf-two {
    bottom: -30px;
    left: -15px;
    font-size: 160px;
    transform: rotate(35deg);
}

/* Statistics */

.stats-strip {
    position: relative;
    z-index: 8;
    margin-top: -1px;
    background: var(--green);
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

    .stats-grid div {
        padding: 25px;
        border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
    }

        .stats-grid div:last-child {
            border: 0;
        }

    .stats-grid strong {
        display: block;
        color: var(--gold-light);
        font-size: 30px;
    }

    .stats-grid span {
        font-size: 14px;
    }

/* Sections */

.section {
    padding: 105px 0;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.image-frame {
    position: relative;
    overflow: visible;
    border-radius: 28px;
}

    .image-frame > img {
        width: 100%;
        height: 590px;
        border-radius: 28px;
        object-fit: cover;
        box-shadow: var(--shadow);
    }

    .image-frame::before {
        content: "";
        position: absolute;
        z-index: -1;
        inset: 28px -28px -28px 28px;
        border: 2px solid rgba(198, 153, 72, 0.26);
        border-radius: 28px;
    }

.quality-card {
    position: absolute;
    right: -24px;
    bottom: -24px;
    padding: 25px 34px;
    border-radius: 18px;
    background: var(--green);
    color: #ffffff;
    box-shadow: var(--shadow);
}

    .quality-card strong {
        display: block;
        color: var(--gold-light);
        font-size: 38px;
    }

.section-copy h2,
.section-heading h2,
.why-copy h2 {
    margin: 16px 0 22px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.4;
}

.section-copy > p,
.section-heading > p,
.why-copy > p {
    color: var(--muted);
    font-size: 17px;
    line-height: 2;
}

/* Values */

.values-list {
    margin-top: 26px;
}

    .values-list article {
        display: flex;
        gap: 20px;
        padding: 22px 0;
        border-bottom: 1px solid #e5ebe6;
    }

        .values-list article > span {
            color: var(--gold);
            font-weight: 800;
        }

    .values-list h3 {
        margin: 0 0 5px;
        color: var(--green);
    }

    .values-list p {
        margin: 0;
        color: var(--muted);
        line-height: 1.8;
    }

/* Solutions */

.solutions {
    position: relative;
    background: var(--soft);
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

    .section-heading .section-label {
        justify-content: center;
    }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    padding: 34px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 12px 38px rgba(17, 62, 28, 0.07);
    transition: 0.4s;
}

    .solution-card:hover {
        border-color: rgba(198, 153, 72, 0.38);
        box-shadow: var(--shadow);
        transform: translateY(-10px);
    }

.icon-box {
    width: 68px;
    height: 68px;
    margin-bottom: 25px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient( 145deg, var(--green), var(--green-light) );
    color: var(--gold-light);
    font-size: 27px;
}

.solution-card h3 {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 22px;
}

.solution-card p {
    min-height: 90px;
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.9;
}

/* Why Us */

.why-us {
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    align-items: start;
    gap: 70px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature {
    padding: 28px;
    border-radius: 20px;
    background: var(--soft);
    transition: 0.3s;
}

    .feature:hover {
        background: #ffffff;
        box-shadow: var(--shadow);
        transform: translateY(-5px);
    }

    .feature i {
        color: var(--gold);
        font-size: 28px;
    }

    .feature h3 {
        margin: 16px 0 8px;
        color: var(--green);
    }

    .feature p {
        margin: 0;
        color: var(--muted);
        line-height: 1.8;
    }

/* Contact */

.contact-cta {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background: linear-gradient( 135deg, var(--green-dark), var(--green) );
    color: #ffffff;
}

    .contact-cta::before {
        content: "";
        position: absolute;
        top: -130px;
        left: -100px;
        width: 320px;
        height: 320px;
        border: 46px solid rgba(255, 255, 255, 0.04);
        border-radius: 50%;
        pointer-events: none;
    }

    .contact-cta::after {
        content: "";
        position: absolute;
        right: -120px;
        bottom: -170px;
        width: 330px;
        height: 330px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        transform: rotate(45deg);
        pointer-events: none;
    }

.contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: 56px;
}

.contact-text h2 {
    margin: 14px 0;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.4;
}

.contact-text p {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.9;
}

.section-label.light {
    color: var(--gold-light);
}

.email-contact-card {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 21px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(4, 25, 9, 0.22);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

    .email-contact-card:hover {
        border-color: rgba(198, 153, 72, 0.65);
        background: rgba(255, 255, 255, 0.16);
        transform: translateY(-4px);
    }

.email-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--gold);
    color: #ffffff;
    font-size: 24px;
}

.email-content {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
}

    .email-content small {
        color: #e9d8b8;
        font-size: 13px;
    }

    .email-content strong {
        max-width: 100%;
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        direction: ltr;
        text-align: left;
        overflow-wrap: anywhere;
    }

.email-arrow {
    flex: 0 0 auto;
    color: var(--gold-light);
    transition: transform 0.3s ease;
}

.email-contact-card:hover .email-arrow {
    transform: translateX(-5px);
}

/* Location */

.location-section {
    position: relative;
    padding: 95px 0;
    background: #ffffff;
}

.location-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

    .location-heading .section-label {
        justify-content: center;
    }

    .location-heading h2 {
        margin: 15px 0 12px;
        color: var(--green);
        font-size: clamp(31px, 4vw, 48px);
        line-height: 1.4;
    }

    .location-heading p {
        margin: 0;
        color: var(--muted);
        font-size: 17px;
    }

.location-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(198, 153, 72, 0.25);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

    .location-card iframe {
        display: block;
        width: 100%;
        height: 500px;
        border: 0;
    }

.map-direction-button {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 15px 21px;
    border-radius: 13px;
    background: var(--green);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 14px 35px rgba(17, 62, 28, 0.28);
    transition: 0.3s;
}

    .map-direction-button:hover {
        background: var(--gold);
        transform: translateY(-3px);
    }

    .map-direction-button i {
        color: var(--gold-light);
        font-size: 19px;
    }

/* Footer */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 75px 0 25px;
    background: var(--green-dark);
    color: #e4eee6;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.9fr;
    gap: 70px;
    padding-bottom: 55px;
}

.footer-brand img {
    width: 255px;
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 15px;
    background: #ffffff;
}

.footer-brand p {
    max-width: 440px;
    color: #b8c8ba;
    line-height: 1.9;
}

.footer-grid h3 {
    margin: 0 0 22px;
    color: var(--gold-light);
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-grid a,
.footer-grid span {
    color: #bdcbbf;
}

    .footer-grid a:hover {
        color: var(--gold-light);
    }

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aebdaf;
    font-size: 13px;
    text-align: center;
}

.footer-leaf {
    position: absolute;
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
}

.leaf-footer-one {
    right: -40px;
    bottom: -40px;
    font-size: 230px;
    transform: rotate(-20deg);
}

.leaf-footer-two {
    top: -60px;
    left: -30px;
    font-size: 180px;
    transform: rotate(40deg);
}

/* Back To Top */

.to-top {
    position: fixed;
    z-index: 999;
    bottom: 24px;
    left: 24px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    visibility: hidden;
    border: 0;
    border-radius: 50%;
    background: var(--gold);
    color: #ffffff;
    opacity: 0;
    box-shadow: 0 10px 30px rgba(17, 62, 28, 0.25);
    cursor: pointer;
    transition: 0.3s;
}

    .to-top.show {
        visibility: visible;
        opacity: 1;
    }

/* Scroll Animation */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* English Direction */

body.en .main-nav a::after {
    right: auto;
    left: 0;
}

body.en .hero-overlay {
    background: linear-gradient( 90deg, rgba(6, 38, 15, 0.94), rgba(17, 62, 28, 0.75), rgba(17, 62, 28, 0.26) );
}

body.en .btn i {
    transform: rotate(180deg);
}

body.en .email-arrow i {
    transform: rotate(180deg);
}

body.en .email-contact-card:hover .email-arrow {
    transform: translateX(5px);
}

body.en .map-direction-button {
    right: auto;
    left: 24px;
}

/* Tablet */

@media (max-width: 1000px) {

    .menu-toggle {
        display: block;
        margin-inline-start: auto;
    }

    .lang-switch {
        order: 3;
    }

    .main-nav {
        position: absolute;
        top: 94px;
        right: 20px;
        left: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 20px;
        border-radius: 18px;
        background: #ffffff;
        box-shadow: var(--shadow);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: 0.3s;
    }

        .main-nav.open {
            visibility: visible;
            opacity: 1;
            transform: none;
        }

        .main-nav a {
            padding: 12px;
        }

    .split-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .email-contact-card {
        max-width: 620px;
    }

    .about-visual {
        order: 2;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content > * {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */

@media (max-width: 600px) {

    .container {
        width: min(100% - 26px, 1180px);
    }

    .nav-wrap {
        height: 78px;
        gap: 12px;
    }

    .brand img {
        width: 148px;
        max-height: 68px;
    }

    .main-nav {
        top: 78px;
    }

    .lang-switch {
        padding: 8px 11px;
        font-size: 13px;
    }

    .hero {
        min-height: 680px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 37px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.9;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

        .stats-grid div {
            padding: 16px;
            border-inline-end: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

    .section {
        padding: 72px 0;
    }

    .split-grid {
        gap: 45px;
    }

    .image-frame > img {
        height: 430px;
    }

    .image-frame::before {
        inset: 16px -10px -16px 10px;
    }

    .quality-card {
        right: 12px;
        bottom: -20px;
        padding: 20px 25px;
    }

    .features-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .contact-cta {
        padding: 54px 0;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .contact-text h2 {
        margin: 12px 0;
        font-size: 30px;
    }

    .contact-text p {
        font-size: 14px;
        line-height: 1.8;
    }

    .email-contact-card {
        width: 100%;
        max-width: 100%;
        gap: 12px;
        padding: 15px;
        border-radius: 15px;
    }

    .email-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 13px;
        font-size: 20px;
    }

    .email-content small {
        font-size: 12px;
    }

    .email-content strong {
        font-size: 12px;
    }

    .email-arrow {
        display: none;
    }

    .location-section {
        padding: 65px 0;
    }

    .location-heading {
        margin-bottom: 26px;
    }

        .location-heading h2 {
            font-size: 29px;
        }

        .location-heading p {
            font-size: 14px;
        }

    .location-card {
        border-radius: 18px;
    }

        .location-card iframe {
            height: 390px;
        }

    .map-direction-button,
    body.en .map-direction-button {
        position: static;
        width: calc(100% - 28px);
        margin: 14px;
        justify-content: center;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .footer-grid {
        gap: 38px;
    }

    .footer-brand img {
        width: 220px;
    }

    .footer-bottom {
        text-align: center;
    }

    .to-top {
        left: 14px;
        bottom: 14px;
    }
}
.whatsapp-icon {
    background: #25d366;
    color: #ffffff;
}

.whatsapp-contact-card:hover {
    border-color: rgba(37, 211, 102, 0.65);
}