/* =========================================
   GLOBAL
========================================= */

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #f5f5f3;
    overflow-x: hidden;
}

/* =========================================
   HERO SECTION
========================================= */

.modern-hero {
    min-height: 100vh;
    background: #f5f5f3;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}
/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    padding: 140px 0;
    background: #f5f5f3;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.about-image {
    width: 100%;
    max-width: 700px;
    border-top-right-radius: 220px;
    border-bottom-right-radius: 220px;
    object-fit: cover;
}

.about-content {
    padding-left: 80px;
}

.about-title {
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 28px;
    color: #111;
}

.about-text {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    max-width: 540px;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

    .feature-item i {
        color: #ff5b00;
        font-size: 18px;
    }

/* SERVICES */

.services-section {
    padding: 140px 0;
    background: #f5f5f3; /* نفس لون about */
}

/* TITLE */

.services-title {
    font-size: 62px;
    line-height: 1;
    font-weight: 900;
    color: #111; /* بدل الأبيض */
    letter-spacing: -3px;
    max-width: 700px;
}

/* CARDS */

.service-card {
    position: relative;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 32px;
    height: 100%;
    overflow: hidden;
    transition: .4s ease;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 40px rgba(0,0,0,.04);
}

    .service-card:hover {
        transform: translateY(-10px);
        border-color: #ff5b00;
        box-shadow: 0 20px 60px rgba(0,0,0,.08);
    }

/* NUMBER */

.service-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 70px;
    font-weight: 900;
    color: rgba(0,0,0,.05);
    line-height: 1;
}

/* ICON */

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: #ff5b00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

    .service-icon i {
        color: #fff;
        font-size: 34px;
    }

/* TEXT */

.service-card h3 {
    color: #111;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-card p {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
}
/* =========================================
   MOBILE
========================================= */

@media(max-width:992px) {

    .about-content {
        padding-left: 0;
        padding-top: 60px;
        text-align: center;
    }

    .about-title {
        font-size: 42px;
    }

    .about-text {
        margin: auto auto 35px;
    }

    .about-features {
        align-items: center;
    }

    .about-image {
        border-radius: 40px;
    }

    .services-title {
        font-size: 44px;
    }

    .service-card {
        padding: 40px 30px;
    }
}

@media(max-width:576px) {

    .about-title {
        font-size: 34px;
    }

    .services-title {
        font-size: 34px;
    }

    .service-card h3 {
        font-size: 24px;
    }
}

/* =========================================
   NAVBAR
========================================= */

.hero-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 0;
    z-index: 100;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.hero-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .hero-logo img {
        width: 170px;
        height: auto;
        object-fit: contain;
        display: block;
    }

/* NAV LINKS */

.hero-nav {
    display: flex;
    align-items: center;
    gap: 45px;
}

    .hero-nav a {
        text-decoration: none;
        color: #111;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        transition: .3s ease;
        position: relative;
    }

        .hero-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0%;
            height: 2px;
            background: #ff5b00;
            transition: .3s ease;
        }

        .hero-nav a:hover {
            color: #ff5b00;
        }

            .hero-nav a:hover::after {
                width: 100%;
            }

/* MENU ICON */

.menu-icon {
    font-size: 30px;
    color: #111;
    cursor: pointer;
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-content-wrapper {
    min-height: 100vh;
    align-items: center;
}

/* LEFT SIDE */

.hero-content {
    padding-left: 20px;
}

    .hero-content h1 {
        font-size: 62px;
        line-height: .92;
        font-weight: 900;
        color: #111;
        letter-spacing: -3px;
        margin-bottom: 30px;
        text-transform: uppercase;
    }

        .hero-content h1 span {
            color: #ff5b00;
        }

    .hero-content p {
        font-size: 16px;
        color: #555;
        line-height: 1.7;
        max-width: 390px;
        margin-bottom: 35px;
    }

/* BUTTON */

.hero-btn {
    width: fit-content;
    border: 2px solid #111;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 30px;
    text-decoration: none;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s ease;
    background: transparent;
}

    .hero-btn:hover {
        background: #111;
        color: #fff;
    }

/* =========================================
   HERO IMAGE
========================================= */

.hero-image-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 760px;
    height: 620px;
    object-fit: cover;
    border-top-left-radius: 220px;
    border-bottom-left-radius: 220px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:992px) {

    .hero-navbar {
        padding: 20px 0;
    }

    .hero-logo img {
        width: 120px;
    }

    .hero-nav {
        display: none;
    }

    .menu-icon {
        font-size: 28px;
    }

    .hero-content-wrapper {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-content {
        text-align: center;
        padding-left: 0;
        margin-bottom: 50px;
    }

        .hero-content h1 {
            font-size: 48px;
            letter-spacing: -2px;
        }

        .hero-content p {
            margin: auto auto 30px;
            font-size: 16px;
        }

    .hero-btn {
        margin: auto;
    }

    .hero-image {
        height: auto;
        border-radius: 40px;
    }
}

@media(max-width:576px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-logo img {
        width: 100px;
    }
}
/* =========================================
   CONTACT
========================================= */

.contact-section {
    padding: 140px 0;
    background: #f5f5f3;
}

.contact-title {
    font-size: 62px;
    line-height: 1;
    font-weight: 900;
    color: #111;
    letter-spacing: -3px;
}

.contact-box {
    background: #fff;
    padding: 60px 50px;
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 40px rgba(0,0,0,.04);
}

.modern-input {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    padding: 18px 22px;
    background: #f8f8f8;
    font-size: 15px;
    transition: .3s ease;
    box-shadow: none !important;
}

    .modern-input:focus {
        border-color: #ff5b00;
        background: #fff;
    }

/* BOTTOM */

.contact-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* SOCIAL */

.contact-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .contact-socials a {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        background: #111;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 20px;
        transition: .35s ease;
    }

        .contact-socials a:hover {
            background: #ff5b00;
            transform: translateY(-5px);
        }

/* MOBILE */

@media(max-width:992px) {

    .contact-title {
        font-size: 42px;
    }

    .contact-box {
        padding: 40px 30px;
    }

    .contact-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width:576px) {

    .contact-title {
        font-size: 34px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-bottom {
        align-items: stretch;
    }

    .contact-socials {
        justify-content: center;
        width: 100%;
    }
}