<title>Modon Ras El Hekma</title>

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

<link
    href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap"
    rel="stylesheet"
>

<link
    rel="stylesheet"
    href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
>

<style>
    :root {
        --page-background: #050912;
        --navbar-background: #080e19;
        --primary-blue: #54c5ed;
        --primary-green: #5fd473;
        --primary-beige: #d7bc8d;
        --text-white: #f7f8fa;
        --text-muted: #d2d5da;
        --container-width: 1500px;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        min-height: 100vh;
        overflow-x: hidden;
        font-family: "Montserrat", sans-serif;
        color: var(--text-white);
        background: var(--page-background);
    }

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

    button,
    input,
    select,
    a {
        font-family: inherit;
    }

    img {
        max-width: 100%;
    }

    /* =========================
       Navbar
    ========================== */

    .main-navbar {
        position: relative;
        z-index: 1000;
        width: 100%;
        min-height: 110px;
        display: flex;
        align-items: center;
        background: var(--navbar-background);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-container {
        width: min(92%, var(--container-width));
        margin: auto;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 40px;
    }

    .navbar-actions {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
    }

    .navbar-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 34px;
        list-style: none;
    }

    .navbar-menu a {
        position: relative;
        padding: 14px 4px;
        color: #f1f2f4;
        font-size: 15px;
        font-weight: 500;
        transition: 0.3s ease;
    }

    .navbar-menu a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 3px;
        width: 0;
        height: 2px;
        border-radius: 20px;
        background: var(--primary-blue);
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .navbar-menu a:hover,
    .navbar-menu a.active {
        color: var(--primary-blue);
    }

    .navbar-menu a:hover::after {
        width: 100%;
    }

    .navbar-menu a.active {
        padding: 16px 24px;
        border-radius: 18px;
        background: rgba(52, 145, 199, 0.16);
    }

    .navbar-menu a.active::after {
        display: none;
    }

    .brand {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 16px;
    }

    .brand-mark {
        padding-left: 16px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    .brand-content {
        text-align: right;
    }

    .brand-title {
        display: block;
        font-size: 22px;
        font-weight: 800;
        line-height: 1.2;
    }

    .brand-subtitle {
        display: block;
        margin-top: 7px;
        color: var(--text-muted);
        font-size: 11px;
        font-weight: 500;
    }

    .nav-button {
        min-width: 128px;
        min-height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 22px;
        border-radius: 18px;
        color: #070a0d;
        font-size: 15px;
        font-weight: 600;
        transition:
            transform 0.3s ease,
            filter 0.3s ease;
    }

    .nav-button:hover {
        transform: translateY(-3px);
        filter: brightness(1.06);
    }

    .contact-button {
        background: var(--primary-beige);
    }

    .whatsapp-button {
        color: #ffffff;
        background: var(--primary-green);
    }

    .mobile-menu-button {
        display: none;
        width: 48px;
        height: 48px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.06);
        cursor: pointer;
        font-size: 20px;
    }

    /* =========================
       Hero
    ========================== */

    .hero-section {
        position: relative;
        isolation: isolate;
        min-height: calc(100vh - 110px);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 75px 20px 90px;

        background:
            linear-gradient(
                180deg,
                rgba(3, 8, 15, 0.76) 0%,
                rgba(3, 8, 15, 0.56) 35%,
                rgba(3, 8, 15, 0.88) 100%
            ),
            url("https://modon-raselhekma.online/wp-content/uploads/2026/08/imageye___-_imgi_11_ras-el-hekma.jpg");

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;

        background:
            radial-gradient(
                circle at 50% 35%,
                rgba(0, 0, 0, 0.02),
                rgba(0, 0, 0, 0.42)
            );
    }

    .hero-content {
        width: min(100%, 1120px);
        margin: auto;
        text-align: center;
    }

    .hero-title {
        margin-bottom: 22px;
        color: #ffffff;
        font-size: clamp(48px, 6vw, 82px);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -3px;
        text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    }

    .hero-description {
        max-width: 920px;
        margin: 0 auto 42px;
        color: #edf0f4;
        font-size: clamp(17px, 1.7vw, 23px);
        line-height: 1.75;
        text-shadow: 0 4px 18px rgba(0, 0, 0, 0.58);
    }

    .hero-stats {
        max-width: 980px;
        margin: 0 auto 38px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .stat-card {
        min-height: 138px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 24px 18px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 20px;

        background:
            linear-gradient(
                145deg,
                rgba(9, 25, 36, 0.82),
                rgba(8, 15, 25, 0.68)
            );

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        transition:
            transform 0.3s ease,
            border-color 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-7px);
        border-color: rgba(84, 197, 237, 0.55);
    }

    .stat-number {
        margin-bottom: 13px;
        color: #ffffff;
        font-size: clamp(23px, 2.2vw, 34px);
        font-weight: 800;
    }

    .stat-label {
        color: var(--text-muted);
        font-size: 14px;
        font-weight: 500;
    }

    .hero-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }

    .hero-button {
        min-width: 270px;
        min-height: 66px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 16px 30px;
        border-radius: 18px;
        font-size: 16px;
        font-weight: 600;
        transition:
            transform 0.3s ease,
            filter 0.3s ease;
    }

    .hero-button:hover {
        transform: translateY(-4px);
        filter: brightness(1.06);
    }

    .projects-button {
        color: #061019;
        background: var(--primary-blue);
    }

    .brochure-button {
        color: #ffffff;
        background: var(--primary-green);
    }

    /* =========================
       Lead Form
    ========================== */

    .hero-form-wrapper {
        width: min(100%, 980px);
        margin: 38px auto 0;
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 24px;

        background:
            linear-gradient(
                145deg,
                rgba(7, 20, 30, 0.9),
                rgba(7, 13, 22, 0.82)
            );

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        text-align: left;
    }

    .hero-form-heading {
        margin-bottom: 8px;
        color: #ffffff;
        font-size: 25px;
        font-weight: 700;
        text-align: center;
    }

    .hero-form-description {
        max-width: 650px;
        margin: 0 auto 25px;
        color: var(--text-muted);
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
    }

    .hero-lead-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .form-group label {
        color: #f4f5f7;
        font-size: 13px;
        font-weight: 600;
    }

    .input-wrapper {
        position: relative;
    }

    .input-wrapper > i {
        position: absolute;
        top: 50%;
        left: 17px;
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .form-control {
        width: 100%;
        min-height: 58px;
        padding: 14px 17px 14px 46px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 15px;
        outline: none;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.07);
        font-size: 14px;

        transition:
            border-color 0.3s ease,
            background 0.3s ease,
            box-shadow 0.3s ease;
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.55);
    }

    .form-control:focus {
        border-color: var(--primary-blue);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 4px rgba(84, 197, 237, 0.12);
    }

    select.form-control {
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
    }

    select.form-control option {
        color: #111111;
        background: #ffffff;
    }

    input[type="time"] {
        color-scheme: dark;
    }

    .form-submit-button {
        width: 100%;
        min-height: 64px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 11px;
        border: 0;
        border-radius: 17px;
        color: #071018;

        background:
            linear-gradient(
                135deg,
                #65d2f2,
                #47b6dc
            );

        cursor: pointer;
        font-size: 16px;
        font-weight: 700;
        transition:
            transform 0.3s ease,
            filter 0.3s ease;
    }

    .form-submit-button:hover {
        transform: translateY(-4px);
        filter: brightness(1.06);
    }

    .form-privacy {
        margin-top: 14px;
        color: rgba(255, 255, 255, 0.58);
        font-size: 11px;
        line-height: 1.6;
        text-align: center;
    }

    .form-status {
        display: none;
        margin-top: 16px;
        padding: 14px 16px;
        border: 1px solid rgba(95, 212, 115, 0.35);
        border-radius: 13px;
        color: #dfffe4;
        background: rgba(95, 212, 115, 0.12);
        font-size: 13px;
        text-align: center;
    }

    /* =========================
       Payment Plan
    ========================== */

    .payment-section {
        position: relative;
        padding: 90px 20px;
        overflow: hidden;

        background:
            radial-gradient(
                circle at 15% 20%,
                rgba(84, 197, 237, 0.1),
                transparent 32%
            ),
            radial-gradient(
                circle at 85% 80%,
                rgba(215, 188, 141, 0.08),
                transparent 30%
            ),
            #080f1a;
    }

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

    .payment-heading {
        max-width: 760px;
        margin: 0 auto 45px;
        text-align: center;
    }

    .payment-small-title {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin-bottom: 15px;
        padding: 9px 17px;
        border: 1px solid rgba(84, 197, 237, 0.25);
        border-radius: 50px;
        color: var(--primary-blue);
        background: rgba(84, 197, 237, 0.08);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .payment-title {
        margin-bottom: 15px;
        color: #ffffff;
        font-size: clamp(34px, 4vw, 52px);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -2px;
    }

    .payment-description {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.8;
    }

    .payment-plan-box {
        position: relative;
        overflow: hidden;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border: 1px solid rgba(84, 197, 237, 0.22);
        border-radius: 28px;

        background:
            linear-gradient(
                145deg,
                rgba(13, 27, 38, 0.96),
                rgba(7, 14, 23, 0.96)
            );

        box-shadow:
            0 30px 70px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .payment-item {
        position: relative;
        min-height: 250px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 35px 25px;
        text-align: center;
    }

    .payment-item:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .payment-icon {
        width: 68px;
        height: 68px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
        border: 1px solid rgba(84, 197, 237, 0.25);
        border-radius: 20px;
        color: var(--primary-blue);
        background: rgba(84, 197, 237, 0.1);
        font-size: 27px;
        transition:
            transform 0.3s ease,
            background 0.3s ease;
    }

    .payment-item:hover .payment-icon {
        transform: translateY(-5px) scale(1.05);
        background: rgba(84, 197, 237, 0.18);
    }

    .payment-value {
        margin-bottom: 10px;
        color: #ffffff;
        font-size: clamp(25px, 3vw, 38px);
        font-weight: 800;
        line-height: 1.25;
    }

    .payment-label {
        color: var(--text-muted);
        font-size: 14px;
        line-height: 1.7;
    }

    .payment-finishing {
        margin-top: 22px;
        padding: 26px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
        border: 1px solid rgba(215, 188, 141, 0.22);
        border-radius: 22px;

        background:
            linear-gradient(
                135deg,
                rgba(215, 188, 141, 0.11),
                rgba(255, 255, 255, 0.035)
            );
    }

    .finishing-content {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .finishing-icon {
        width: 58px;
        height: 58px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 17px;
        color: #071018;
        background: var(--primary-beige);
        font-size: 23px;
    }

    .finishing-title {
        margin-bottom: 7px;
        color: #ffffff;
        font-size: 21px;
        font-weight: 700;
    }

    .finishing-text {
        color: var(--text-muted);
        font-size: 13px;
        line-height: 1.7;
    }

    .payment-form-button {
        min-width: 225px;
        min-height: 58px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 24px;
        border-radius: 16px;
        color: #071018;
        background: var(--primary-blue);
        font-size: 14px;
        font-weight: 700;
        transition:
            transform 0.3s ease,
            filter 0.3s ease;
    }

    .payment-form-button:hover {
        transform: translateY(-4px);
        filter: brightness(1.07);
    }

    /* =========================
       Projects
    ========================== */

    .projects-section {
        position: relative;
        padding: 95px 20px;

        background:
            radial-gradient(
                circle at 10% 10%,
                rgba(84, 197, 237, 0.08),
                transparent 30%
            ),
            #0b1220;
    }

    .projects-container {
        width: min(94%, 1500px);
        margin: auto;
    }

    .projects-heading {
        max-width: 850px;
        margin: 0 auto 55px;
        text-align: center;
    }

    .projects-small-title {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin-bottom: 15px;
        padding: 9px 17px;
        border: 1px solid rgba(84, 197, 237, 0.24);
        border-radius: 50px;
        color: var(--primary-blue);
        background: rgba(84, 197, 237, 0.08);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .projects-title {
        margin-bottom: 16px;
        color: #ffffff;
        font-size: clamp(34px, 4vw, 55px);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -2px;
    }

    .projects-description {
        color: var(--text-muted);
        font-size: 16px;
        line-height: 1.8;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 25px;
        align-items: stretch;
    }

    .project-card {
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 0;
        height: 100%;
        border: 1px solid rgba(84, 197, 237, 0.22);
        border-radius: 24px;
        background: #0a1018;
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);

        transition:
            transform 0.35s ease,
            border-color 0.35s ease,
            box-shadow 0.35s ease;
    }

    .project-card:hover {
        transform: translateY(-9px);
        border-color: rgba(84, 197, 237, 0.65);
        box-shadow: 0 30px 65px rgba(0, 0, 0, 0.32);
    }

    .project-image-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 10;
        flex-shrink: 0;
        overflow: hidden;
        background: #111a25;
    }

    .project-image {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
        transition: transform 0.6s ease;
    }

    .project-card:hover .project-image {
        transform: scale(1.05);
    }

    .project-image-overlay {
        position: absolute;
        inset: 0;

        background:
            linear-gradient(
                180deg,
                transparent 35%,
                rgba(3, 8, 15, 0.6) 100%
            );
    }

    .project-location {
        position: absolute;
        top: 18px;
        right: 18px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 10px 14px;
        border-radius: 50px;
        color: #ffffff;
        background: rgba(4, 9, 14, 0.82);
        font-size: 12px;
        font-weight: 600;
    }

    .project-brand-badge {
        position: absolute;
        top: 18px;
        left: 18px;
        z-index: 2;
        min-width: 72px;
        min-height: 45px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
        border-radius: 10px;
        color: #111111;
        background: rgba(255, 255, 255, 0.94);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .project-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 25px 22px 22px;
    }

    .project-name {
        min-height: 60px;
        margin-bottom: 13px;
        display: flex;
        align-items: flex-start;
        color: #ffffff;
        font-size: 22px;
        font-weight: 800;
        line-height: 1.35;
    }

    .project-summary {
        min-height: 78px;
        margin-bottom: 18px;
        color: #aeb6c1;
        font-size: 13px;
        line-height: 1.75;
    }

    .project-tags {
        min-height: 48px;
        display: flex;
        align-content: flex-start;
        flex-wrap: wrap;
        gap: 9px;
        margin-bottom: 23px;
    }

    .project-tag {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 9px 13px;
        border: 1px solid rgba(84, 197, 237, 0.26);
        border-radius: 50px;
        color: var(--primary-blue);
        background: rgba(84, 197, 237, 0.08);
        font-size: 11px;
        font-weight: 600;
    }

    .project-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 11px;
        margin-top: auto;
    }

    .project-button {
        min-height: 55px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 11px 10px;
        border-radius: 15px;
        font-size: 12px;
        font-weight: 700;
        text-align: center;

        transition:
            transform 0.3s ease,
            filter 0.3s ease,
            background 0.3s ease;
    }

    .project-button:hover {
        transform: translateY(-3px);
    }

    .project-details-button {
        border: 2px solid var(--primary-blue);
        color: var(--primary-blue);
        background: transparent;
    }

    .project-details-button:hover {
        color: #08121a;
        background: var(--primary-blue);
    }

    .project-whatsapp-button {
        border: 2px solid transparent;
        color: #ffffff;

        background:
            linear-gradient(
                135deg,
                #62d879,
                #42bd62
            );
    }

    .project-whatsapp-button:hover {
        filter: brightness(1.08);
    }

    /* =========================
       Floating Call
    ========================== */

    .floating-call-button {
        position: fixed;
        left: 34px;
        bottom: 28px;
        z-index: 900;
        width: 68px;
        height: 68px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #ffffff;
        background: var(--primary-beige);
        font-size: 25px;
    }

    /* =========================
       Responsive
    ========================== */

    @media (max-width: 1250px) {
        .projects-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    @media (max-width: 1150px) {
        .navbar-container {
            grid-template-columns: auto 1fr auto;
            gap: 25px;
        }

        .navbar-menu {
            gap: 22px;
        }

        .brand-title {
            font-size: 18px;
        }

        .nav-button {
            min-width: auto;
            padding: 12px 16px;
        }
    }

    @media (max-width: 950px) {
        .projects-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 920px) {
        .main-navbar {
            min-height: 86px;
        }

        .navbar-container {
            position: relative;
            display: flex;
            justify-content: space-between;
        }

        .brand {
            order: 1;
        }

        nav {
            order: 2;
        }

        .mobile-menu-button {
            order: 3;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .navbar-actions {
            display: none;
        }

        .navbar-menu {
            position: absolute;
            top: calc(100% + 20px);
            left: 0;
            right: 0;
            display: none;
            flex-direction: column;
            align-items: stretch;
            gap: 5px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            background: #0b121f;
        }

        .navbar-menu.is-open {
            display: flex;
        }

        .navbar-menu li,
        .navbar-menu a {
            width: 100%;
        }

        .navbar-menu a {
            display: block;
            padding: 14px 18px;
            text-align: center;
        }

        .hero-stats {
            max-width: 600px;
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 850px) {
        .payment-plan-box {
            grid-template-columns: 1fr;
        }

        .payment-item {
            min-height: 210px;
        }

        .payment-item:not(:last-child) {
            border-right: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .payment-finishing {
            flex-direction: column;
            align-items: flex-start;
        }

        .payment-form-button {
            width: 100%;
        }
    }

    @media (max-width: 700px) {
        .hero-lead-form {
            grid-template-columns: 1fr;
        }

        .form-group.full-width {
            grid-column: auto;
        }

        .hero-form-wrapper {
            padding: 23px 17px;
        }
    }

    @media (max-width: 620px) {
        .payment-section,
        .projects-section {
            padding: 65px 15px;
        }

        .payment-title,
        .projects-title {
            font-size: 34px;
            letter-spacing: -1.5px;
        }

        .payment-item {
            min-height: 190px;
            padding: 30px 18px;
        }

        .payment-value {
            font-size: 28px;
        }

        .payment-finishing {
            padding: 22px 18px;
        }

        .finishing-content {
            align-items: flex-start;
        }

        .finishing-title {
            font-size: 18px;
        }

        .projects-container {
            width: 100%;
        }

        .projects-heading {
            margin-bottom: 38px;
        }

        .projects-description {
            font-size: 14px;
        }

        .projects-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .project-image-wrapper {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 10;
        }

        .project-content {
            padding: 23px 18px 19px;
        }

        .project-name,
        .project-summary,
        .project-tags {
            min-height: auto;
        }

        .project-actions {
            grid-template-columns: 1fr;
        }

        .project-button {
            min-height: 57px;
            font-size: 13px;
        }
    }

    @media (max-width: 600px) {
        .navbar-container {
            width: 90%;
        }

        .brand-mark {
            display: none;
        }

        .brand-content {
            text-align: left;
        }

        .brand-title {
            font-size: 16px;
        }

        .brand-subtitle {
            font-size: 9px;
        }

        .hero-section {
            padding: 55px 16px 90px;
            background-position: 60% center;
        }

        .hero-title {
            font-size: 42px;
            letter-spacing: -2px;
        }

        .hero-description {
            font-size: 15px;
        }

        .hero-button {
            width: 100%;
            min-width: 0;
        }

        .floating-call-button {
            left: 20px;
            bottom: 20px;
            width: 58px;
            height: 58px;
        }
    }
</style>
<!-- Navbar -->
<header class="main-navbar">
    <div class="navbar-container">

        <div class="navbar-actions">
            <a
                href="https://wa.me/WHATSAPP_NUMBER"
                class="nav-button whatsapp-button"
                target="_blank"
                rel="noopener noreferrer"
            >
                WhatsApp
                <i class="fa-brands fa-whatsapp"></i>
            </a>

            <a
                href="tel:PHONE_NUMBER"
                class="nav-button contact-button"
            >
                Contact
                <i class="fa-solid fa-phone"></i>
            </a>
        </div>

        <nav>
            <ul class="navbar-menu" id="navbarMenu">
                <li>
                    <a href="#home" class="active">Home</a>
                </li>

                <li>
                    <a href="#payment-plan">Payment Plan</a>
                </li>

                <li>
                    <a href="#projects">Projects</a>
                </li>

                <li>
                    <a href="#contact">Contact Us</a>
                </li>
            </ul>
        </nav>

        <div class="brand">
            <span class="brand-mark">MODON</span>

            <div class="brand-content">
                <span class="brand-title">Modon Ras El Hekma</span>
                <span class="brand-subtitle">Modon Development</span>
            </div>
        </div>

        <button
            class="mobile-menu-button"
            id="mobileMenuButton"
            type="button"
            aria-label="Open navigation menu"
            aria-expanded="false"
            aria-controls="navbarMenu"
        >
            <i class="fa-solid fa-bars"></i>
        </button>

    </div>
</header>

<!-- Hero -->
<main class="hero-section" id="home">
    <div class="hero-content">

        <h1 class="hero-title">
            Modon Ras El Hekma
        </h1>

        <p class="hero-description">
            Own your unit in one of the most prestigious coastal
            destinations on Egypt’s North Coast, with direct views over
            lagoons and premium open landscapes.
        </p>

        <div class="hero-stats">

            <article class="stat-card">
                <strong class="stat-number">Premium</strong>
                <span class="stat-label">Coastal Destination</span>
            </article>

            <article class="stat-card">
                <strong class="stat-number">High</strong>
                <span class="stat-label">Investment Potential</span>
            </article>

            <article class="stat-card">
                <strong class="stat-number">Exclusive</strong>
                <span class="stat-label">Early Access Opportunity</span>
            </article>

        </div>

        <div class="hero-actions">

            <a
                href="https://wa.me/WHATSAPP_NUMBER"
                class="hero-button brochure-button"
                target="_blank"
                rel="noopener noreferrer"
            >
                <i class="fa-brands fa-whatsapp"></i>
                Get the Brochure
            </a>

            <a
                href="#projects"
                class="hero-button projects-button"
            >
                Explore Project
                <i class="fa-solid fa-compass"></i>
            </a>

        </div>

        <!-- Lead Form -->
        <section class="hero-form-wrapper" id="contact">

            <h2 class="hero-form-heading">
                Request More Information
            </h2>

            <p class="hero-form-description">
                Submit your details and our property consultant will
                contact you at your preferred time.
            </p>

            <form class="hero-lead-form" id="heroLeadForm">

                <input
                    type="hidden"
                    id="selectedProject"
                    name="selected_project"
                    value="Modon Ras El Hekma"
                >

                <div class="form-group">
                    <label for="fullName">Full Name</label>

                    <div class="input-wrapper">
                        <i class="fa-regular fa-user"></i>

                        <input
                            type="text"
                            id="fullName"
                            name="full_name"
                            class="form-control"
                            placeholder="Enter your full name"
                            autocomplete="name"
                            required
                        >
                    </div>
                </div>

                <div class="form-group">
                    <label for="phoneNumber">Phone Number</label>

                    <div class="input-wrapper">
                        <i class="fa-solid fa-phone"></i>

                        <input
                            type="tel"
                            id="phoneNumber"
                            name="phone_number"
                            class="form-control"
                            placeholder="Enter your phone number"
                            autocomplete="tel"
                            inputmode="tel"
                            required
                        >
                    </div>
                </div>

                <div class="form-group">
                    <label for="country">Country</label>

                    <div class="input-wrapper">
                        <i class="fa-solid fa-earth-africa"></i>

                        <select
                            id="country"
                            name="country"
                            class="form-control"
                            required
                        >
                            <option value="" selected disabled>
                                Select your country
                            </option>

                            <option value="Egypt">Egypt</option>
                            <option value="UAE">United Arab Emirates</option>
                            <option value="Saudi Arabia">Saudi Arabia</option>
                            <option value="Kuwait">Kuwait</option>
                            <option value="Qatar">Qatar</option>
                            <option value="Bahrain">Bahrain</option>
                            <option value="Oman">Oman</option>
                            <option value="Jordan">Jordan</option>
                            <option value="United Kingdom">United Kingdom</option>
                            <option value="United States">United States</option>
                            <option value="Canada">Canada</option>
                            <option value="Other">Other</option>
                        </select>
                    </div>
                </div>

                <div class="form-group">
                    <label for="unitType">Preferred Unit Type</label>

                    <div class="input-wrapper">
                        <i class="fa-regular fa-building"></i>

                        <select
                            id="unitType"
                            name="unit_type"
                            class="form-control"
                            required
                        >
                            <option value="" selected disabled>
                                Select your preferred unit
                            </option>

                            <option value="1 Bedroom">1 Bedroom</option>
                            <option value="2 Bedroom">2 Bedroom</option>
                            <option value="3 Bedroom">3 Bedroom</option>
                            <option value="Townhouse">Townhouse</option>
                            <option value="Twin House">Twin House</option>
                            <option value="Standalone Villa">Standalone Villa</option>
                        </select>
                    </div>
                </div>

                <div class="form-group full-width">
                    <label for="preferredCallTime">
                        Preferred Call Time
                    </label>

                    <div class="input-wrapper">
                        <i class="fa-regular fa-clock"></i>

                        <input
                            type="time"
                            id="preferredCallTime"
                            name="preferred_call_time"
                            class="form-control"
                            required
                        >
                    </div>
                </div>

                <div class="form-group full-width">
                    <button
                        type="submit"
                        class="form-submit-button"
                    >
                        <i class="fa-solid fa-paper-plane"></i>
                        Request a Call
                    </button>
                </div>

            </form>

            <p class="form-privacy">
                By submitting this form, you agree to be contacted by our
                property consultants regarding Modon Ras El Hekma.
            </p>

            <div
                class="form-status"
                id="formStatus"
                role="status"
            >
                <i class="fa-solid fa-circle-check"></i>
                Thank you. Your request has been received successfully.
            </div>

        </section>

    </div>
</main>

<!-- Payment Plan -->
<section class="payment-section" id="payment-plan">

    <div class="payment-container">

        <div class="payment-heading">

            <span class="payment-small-title">
                <i class="fa-solid fa-wallet"></i>
                Flexible Payment Plan
            </span>

            <h2 class="payment-title">
                Own Your Unit with a Flexible Plan
            </h2>

            <p class="payment-description">
                Secure your unit in Modon Ras El Hekma with a convenient
                payment plan and premium finishing specifications.
            </p>

        </div>

        <div class="payment-plan-box">

            <article class="payment-item">

                <div class="payment-icon">
                    <i class="fa-solid fa-percent"></i>
                </div>

                <strong class="payment-value">
                    5% + 5%
                </strong>

                <span class="payment-label">
                    5% Down Payment<br>
                    and 5% After Contracting
                </span>

            </article>

            <article class="payment-item">

                <div class="payment-icon">
                    <i class="fa-regular fa-calendar-check"></i>
                </div>

                <strong class="payment-value">
                    Up to 8 Years
                </strong>

                <span class="payment-label">
                    Equal Installments<br>
                    with a Flexible Payment Schedule
                </span>

            </article>

            <article class="payment-item">

                <div class="payment-icon">
                    <i class="fa-solid fa-sack-dollar"></i>
                </div>

                <strong class="payment-value">
                    EGP 250,000
                </strong>

                <span class="payment-label">
                    Expression of Interest<br>
                    to Secure Early Access
                </span>

            </article>

        </div>

        <div class="payment-finishing">

            <div class="finishing-content">

                <div class="finishing-icon">
                    <i class="fa-solid fa-house-circle-check"></i>
                </div>

                <div>
                    <h3 class="finishing-title">
                        Fully Finished + ACs + Kitchen Cabinets
                    </h3>

                    <p class="finishing-text">
                        Premium finishing specifications with an expected
                        delivery period of 4 years.
                    </p>
                </div>

            </div>

            <a
                href="#contact"
                class="payment-form-button"
            >
                <i class="fa-regular fa-calendar"></i>
                Request Full Details
            </a>

        </div>

    </div>

</section>

<!-- Projects -->
<section class="projects-section" id="projects">

    <div class="projects-container">

        <div class="projects-heading">

            <span class="projects-small-title">
                <i class="fa-solid fa-location-dot"></i>
                Ras El Hekma
            </span>

            <h2 class="projects-title">
                Explore Modon Communities
            </h2>

            <p class="projects-description">
                Discover premium coastal communities, apartments,
                villas and waterfront destinations in Ras El Hekma.
            </p>

        </div>

        <div class="projects-grid">

            <!-- Project 1 -->
            <article class="project-card">

                <div class="project-image-wrapper">

                    <img
                        src="https://modon-raselhekma.online/wp-content/uploads/2026/08/YOUR_IMAGE_URL_WADI_YEMM.webp"
                        alt="Wadi Yemm"
                        class="project-image"
                        loading="lazy"
                        decoding="async"
                    >

                    <div class="project-image-overlay"></div>

                    <span class="project-brand-badge">MODON</span>

                    <span class="project-location">
                        <i class="fa-solid fa-location-dot"></i>
                        Ras El Hekma
                    </span>

                </div>

                <div class="project-content">

                    <h3 class="project-name">
                        Wadi Yemm
                    </h3>

                    <p class="project-summary">
                        A premium coastal community featuring elegant
                        architecture and distinctive open landscapes.
                    </p>

                    <div class="project-tags">
                        <span class="project-tag">Apartments</span>
                        <span class="project-tag">Sea Views</span>
                    </div>

                    <div class="project-actions">

                        <a
                            href="#contact"
                            class="project-button project-details-button"
                            data-project="Wadi Yemm"
                        >
                            <i class="fa-regular fa-eye"></i>
                            More Details
                        </a>

                        <a
                            href="https://wa.me/WHATSAPP_NUMBER"
                            class="project-button project-whatsapp-button"
                            target="_blank"
                            rel="noopener noreferrer"
                        >
                            <i class="fa-brands fa-whatsapp"></i>
                            WhatsApp
                        </a>

                    </div>

                </div>

            </article>

            <!-- Project 2 -->
            <article class="project-card">

                <div class="project-image-wrapper">

                    <img
                        src="https://modon-raselhekma.online/wp-content/uploads/2026/08/yemm-boulevard-apartments.webp"
                        alt="Yemm Boulevard Apartments"
                        class="project-image"
                        loading="lazy"
                        decoding="async"
                    >

                    <div class="project-image-overlay"></div>

                    <span class="project-brand-badge">MODON</span>

                    <span class="project-location">
                        <i class="fa-solid fa-location-dot"></i>
                        Ras El Hekma
                    </span>

                </div>

                <div class="project-content">

                    <h3 class="project-name">
                        Yemm Boulevard Apartments
                    </h3>

                    <p class="project-summary">
                        Contemporary apartments located within a vibrant
                        coastal boulevard.
                    </p>

                    <div class="project-tags">
                        <span class="project-tag">1 Bedroom</span>
                        <span class="project-tag">2 Bedroom</span>
                        <span class="project-tag">3 Bedroom</span>
                    </div>

                    <div class="project-actions">

                        <a
                            href="#contact"
                            class="project-button project-details-button"
                            data-project="Yemm Boulevard Apartments"
                        >
                            <i class="fa-regular fa-eye"></i>
                            More Details
                        </a>

                        <a
                            href="https://wa.me/WHATSAPP_NUMBER"
                            class="project-button project-whatsapp-button"
                            target="_blank"
                            rel="noopener noreferrer"
                        >
                            <i class="fa-brands fa-whatsapp"></i>
                            WhatsApp
                        </a>

                    </div>

                </div>

            </article>

            <!-- Project 3 -->
            <article class="project-card">

                <div class="project-image-wrapper">

                    <img
                        src="https://modon-raselhekma.online/wp-content/uploads/2026/08/wadi-east.webp"
                        alt="Wadi East"
                        class="project-image"
                        loading="lazy"
                        decoding="async"
                    >

                    <div class="project-image-overlay"></div>

                    <span class="project-brand-badge">MODON</span>

                    <span class="project-location">
                        <i class="fa-solid fa-location-dot"></i>
                        Ras El Hekma
                    </span>

                </div>

                <div class="project-content">

                    <h3 class="project-name">
                        Wadi East
                    </h3>

                    <p class="project-summary">
                        An exclusive waterfront neighborhood offering
                        remarkable coastal surroundings.
                    </p>

                    <div class="project-tags">
                        <span class="project-tag">Apartments</span>
                        <span class="project-tag">Waterfront</span>
                    </div>

                    <div class="project-actions">

                        <a
                            href="#contact"
                            class="project-button project-details-button"
                            data-project="Wadi East"
                        >
                            <i class="fa-regular fa-eye"></i>
                            More Details
                        </a>

                        <a
                            href="https://wa.me/WHATSAPP_NUMBER"
                            class="project-button project-whatsapp-button"
                            target="_blank"
                            rel="noopener noreferrer"
                        >
                            <i class="fa-brands fa-whatsapp"></i>
                            WhatsApp
                        </a>

                    </div>

                </div>

            </article>

            <!-- Project 4 -->
            <article class="project-card">

                <div class="project-image-wrapper">

                    <img
                        src="https://modon-raselhekma.online/wp-content/uploads/2026/08/Wadi-West.webp"
                        alt="Wadi West"
                        class="project-image"
                        loading="lazy"
                        decoding="async"
                    >

                    <div class="project-image-overlay"></div>

                    <span class="project-brand-badge">MODON</span>

                    <span class="project-location">
                        <i class="fa-solid fa-location-dot"></i>
                        Ras El Hekma
                    </span>

                </div>

                <div class="project-content">

                    <h3 class="project-name">
                        Wadi West
                    </h3>

                    <p class="project-summary">
                        Modern villas and townhouses designed for privacy,
                        comfort and coastal living.
                    </p>

                    <div class="project-tags">
                        <span class="project-tag">Townhouse</span>
                        <span class="project-tag">Twin House</span>
                    </div>

                    <div class="project-actions">

                        <a
                            href="#contact"
                            class="project-button project-details-button"
                            data-project="Wadi West"
                        >
                            <i class="fa-regular fa-eye"></i>
                            More Details
                        </a>

                        <a
                            href="https://wa.me/WHATSAPP_NUMBER"
                            class="project-button project-whatsapp-button"
                            target="_blank"
                            rel="noopener noreferrer"
                        >
                            <i class="fa-brands fa-whatsapp"></i>
                            WhatsApp
                        </a>

                    </div>

                </div>

            </article>

            <!-- Project 5 -->
            <article class="project-card">

                <div class="project-image-wrapper">

                    <img
                        src="https://modon-raselhekma.online/wp-content/uploads/2026/08/Park-land.webp"
                        alt="Parklands Ras El Hekma"
                        class="project-image"
                        loading="lazy"
                        decoding="async"
                    >

                    <div class="project-image-overlay"></div>

                    <span class="project-brand-badge">MODON</span>

                    <span class="project-location">
                        <i class="fa-solid fa-location-dot"></i>
                        Ras El Hekma
                    </span>

                </div>

                <div class="project-content">

                    <h3 class="project-name">
                        Parklands Ras El Hekma
                    </h3>

                    <p class="project-summary">
                        A spacious green community integrating premium
                        homes with landscaped open spaces.
                    </p>

                    <div class="project-tags">
                        <span class="project-tag">Apartments</span>
                        <span class="project-tag">Villas</span>
                    </div>

                    <div class="project-actions">

                        <a
                            href="#contact"
                            class="project-button project-details-button"
                            data-project="Parklands Ras El Hekma"
                        >
                            <i class="fa-regular fa-eye"></i>
                            More Details
                        </a>

                        <a
                            href="https://wa.me/WHATSAPP_NUMBER"
                            class="project-button project-whatsapp-button"
                            target="_blank"
                            rel="noopener noreferrer"
                        >
                            <i class="fa-brands fa-whatsapp"></i>
                            WhatsApp
                        </a>

                    </div>

                </div>

            </article>

            <!-- Project 6 -->
            <article class="project-card">

                <div class="project-image-wrapper">

                    <img
                        src="https://modon-raselhekma.online/wp-content/uploads/2026/08/Canal-Bech.webp"
                        alt="Canal Beach"
                        class="project-image"
                        loading="lazy"
                        decoding="async"
                    >

                    <div class="project-image-overlay"></div>

                    <span class="project-brand-badge">MODON</span>

                    <span class="project-location">
                        <i class="fa-solid fa-location-dot"></i>
                        Ras El Hekma
                    </span>

                </div>

                <div class="project-content">

                    <h3 class="project-name">
                        Canal Beach
                    </h3>

                    <p class="project-summary">
                        A waterfront destination overlooking canals,
                        greenery and outdoor spaces.
                    </p>

                    <div class="project-tags">
                        <span class="project-tag">Waterfront</span>
                        <span class="project-tag">Premium Homes</span>
                    </div>

                    <div class="project-actions">

                        <a
                            href="#contact"
                            class="project-button project-details-button"
                            data-project="Canal Beach"
                        >
                            <i class="fa-regular fa-eye"></i>
                            More Details
                        </a>

                        <a
                            href="https://wa.me/WHATSAPP_NUMBER"
                            class="project-button project-whatsapp-button"
                            target="_blank"
                            rel="noopener noreferrer"
                        >
                            <i class="fa-brands fa-whatsapp"></i>
                            WhatsApp
                        </a>

                    </div>

                </div>

            </article>

            <!-- Project 7 -->
            <article class="project-card">

                <div class="project-image-wrapper">

                    <img
                        src="https://modon-raselhekma.online/wp-content/uploads/2026/08/Marina.webp"
                        alt="Marina"
                        class="project-image"
                        loading="lazy"
                        decoding="async"
                    >

                    <div class="project-image-overlay"></div>

                    <span class="project-brand-badge">MODON</span>

                    <span class="project-location">
                        <i class="fa-solid fa-location-dot"></i>
                        Ras El Hekma
                    </span>

                </div>

                <div class="project-content">

                    <h3 class="project-name">
                        Marina
                    </h3>

                    <p class="project-summary">
                        An elegant marina destination offering premium
                        residences overlooking calm water.
                    </p>

                    <div class="project-tags">
                        <span class="project-tag">Marina View</span>
                        <span class="project-tag">Luxury Homes</span>
                    </div>

                    <div class="project-actions">

                        <a
                            href="#contact"
                            class="project-button project-details-button"
                            data-project="Marina"
                        >
                            <i class="fa-regular fa-eye"></i>
                            More Details
                        </a>

                        <a
                            href="https://wa.me/WHATSAPP_NUMBER"
                            class="project-button project-whatsapp-button"
                            target="_blank"
                            rel="noopener noreferrer"
                        >
                            <i class="fa-brands fa-whatsapp"></i>
                            WhatsApp
                        </a>

                    </div>

                </div>

            </article>

            <!-- Project 8 -->
            <article class="project-card">

                <div class="project-image-wrapper">

                    <img
                        src="https://modon-raselhekma.online/wp-content/uploads/2026/08/North-Point.webp"
                        alt="North Point Island"
                        class="project-image"
                        loading="lazy"
                        decoding="async"
                    >

                    <div class="project-image-overlay"></div>

                    <span class="project-brand-badge">MODON</span>

                    <span class="project-location">
                        <i class="fa-solid fa-location-dot"></i>
                        Ras El Hekma
                    </span>

                </div>

                <div class="project-content">

                    <h3 class="project-name">
                        North Point Island
                    </h3>

                    <p class="project-summary">
                        An island-inspired community offering privacy,
                        water views and premium coastal residences.
                    </p>

                    <div class="project-tags">
                        <span class="project-tag">Island Living</span>
                        <span class="project-tag">Sea Views</span>
                    </div>

                    <div class="project-actions">

                        <a
                            href="#contact"
                            class="project-button project-details-button"
                            data-project="North Point Island"
                        >
                            <i class="fa-regular fa-eye"></i>
                            More Details
                        </a>

                        <a
                            href="https://wa.me/WHATSAPP_NUMBER"
                            class="project-button project-whatsapp-button"
                            target="_blank"
                            rel="noopener noreferrer"
                        >
                            <i class="fa-brands fa-whatsapp"></i>
                            WhatsApp
                        </a>

                    </div>

                </div>

            </article>

        </div>

    </div>

</section>

<!-- Floating Call Button -->
<a
    href="tel:PHONE_NUMBER"
    class="floating-call-button"
    aria-label="Call us"
>
    <i class="fa-solid fa-phone"></i>
</a>

<script>
    const mobileMenuButton =
        document.getElementById("mobileMenuButton");

    const navbarMenu =
        document.getElementById("navbarMenu");

    const mobileMenuIcon =
        mobileMenuButton.querySelector("i");

    mobileMenuButton.addEventListener("click", function () {
        const isOpen =
            navbarMenu.classList.toggle("is-open");

        mobileMenuButton.setAttribute(
            "aria-expanded",
            String(isOpen)
        );

        mobileMenuIcon.classList.toggle(
            "fa-bars",
            !isOpen
        );

        mobileMenuIcon.classList.toggle(
            "fa-xmark",
            isOpen
        );
    });

    navbarMenu
        .querySelectorAll("a")
        .forEach(function (link) {

            link.addEventListener("click", function () {
                navbarMenu.classList.remove("is-open");

                mobileMenuButton.setAttribute(
                    "aria-expanded",
                    "false"
                );

                mobileMenuIcon.classList.add("fa-bars");
                mobileMenuIcon.classList.remove("fa-xmark");
            });

        });

    const projectDetailsButtons =
        document.querySelectorAll(".project-details-button");

    const selectedProjectInput =
        document.getElementById("selectedProject");

    const formHeading =
        document.querySelector(".hero-form-heading");

    projectDetailsButtons.forEach(function (button) {

        button.addEventListener("click", function () {

            const projectName =
                button.getAttribute("data-project");

            selectedProjectInput.value =
                projectName;

            formHeading.textContent =
                "Request More Information About " + projectName;

        });

    });

    const heroLeadForm =
        document.getElementById("heroLeadForm");

    const formStatus =
        document.getElementById("formStatus");

    heroLeadForm.addEventListener("submit", function (event) {
        event.preventDefault();

        if (!heroLeadForm.checkValidity()) {
            heroLeadForm.reportValidity();
            return;
        }

        formStatus.style.display = "block";

        formStatus.scrollIntoView({
            behavior: "smooth",
            block: "nearest"
        });

        heroLeadForm.reset();

        selectedProjectInput.value =
            "Modon Ras El Hekma";

        formHeading.textContent =
            "Request More Information";
    });
</script>