:root {
    --cream: #f2efe6;
    --sand: #d9c89f;
    --gold: #c19a5b;
    --deep: #061f18;
    --green: #0c352a;
    --lime: #b7d88f;
    --muted: #6f756f;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(6, 31, 24, 0.16);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: radial-gradient(circle at 8% 10%, rgba(183, 216, 143, 0.18), transparent 28%), linear-gradient(180deg, #f8f3ea 0%, var(--cream) 42%, #e8efe5 100%);
    color: var(--deep);
    font-family: "Cairo", Arial, sans-serif;
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 18px 0 auto;
    z-index: 20;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(242, 239, 230, 0.92);
    box-shadow: 0 18px 40px rgba(6, 31, 24, 0.12);
    backdrop-filter: blur(18px);
}

.brand img {
    width: 132px;
}

.nav-links {
    display: flex;
    gap: 24px;
    color: var(--green);
    font-size: 0.95rem;
    font-weight: 800;
}

.nav-links a,
.text-link {
    position: relative;
}

.nav-links a::after,
.text-link::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    content: "";
    background: var(--gold);
    transition: width 0.25s ease;
}

.nav-links a:hover::after,
.text-link:hover::after {
    width: 100%;
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
}

.nav-cta,
.btn-dark {
    background: var(--deep);
    color: var(--white);
}

.btn-primary {
    border: 1px solid var(--gold);
    background: linear-gradient(135deg, var(--gold), #8f6736);
    color: var(--white);
    box-shadow: 0 16px 36px rgba(193, 154, 91, 0.28);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--deep);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
}

.hero,
.project-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero {
    min-height: 100vh;
}

.project-hero {
    min-height: 76vh;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(6, 31, 24, 0.38), rgba(6, 31, 24, 0.86)), radial-gradient(circle at 20% 15%, rgba(183, 216, 143, 0.34), transparent 28%), radial-gradient(circle at 82% 18%, rgba(193, 154, 91, 0.28), transparent 24%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 390px;
    align-items: end;
    gap: 40px;
    min-height: 100vh;
    padding: 160px 0 92px;
}

.project-hero-content {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 76vh;
    padding: 150px 0 74px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--sand);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 42px;
    height: 1px;
    content: "";
    background: currentColor;
}

.eyebrow.dark {
    color: var(--gold);
}

.project-hero .eyebrow {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--deep);
}

.hero h1,
.project-hero h1,
.section-heading h2,
.intro-strip h2,
.payment-section h2,
.contact-section h2,
.project-overview h2 {
    margin: 12px 0 18px;
    font-size: clamp(1.95rem, 5vw, 5.8rem);
    font-weight: 900;
    line-height: 1.08;
}

.project-hero h1 {
    max-width: 850px;
}

.hero-copy p,
.project-hero-content p {
    width: min(680px, 100%);
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: rgba(6, 31, 24, 0.28);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-card span {
    color: var(--lime);
    font-weight: 900;
}

.hero-card h2 {
    margin: 10px 0;
    font-size: 2rem;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.82);
}

.mini-stats,
.stats-grid {
    display: grid;
    gap: 10px;
}

.mini-stats {
    margin-top: 24px;
}

.mini-stats strong,
.stats-grid strong,
.payment-cards div {
    padding: 13px 14px;
    border: 1px solid rgba(193, 154, 91, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--deep);
}

.intro-strip {
    padding: 70px 0;
    background: var(--white);
}

.launch-section {
    padding: 74px 0 24px;
}

.launch-box {
    position: relative;
    isolation: isolate;
    padding: 44px 40px 40px;
    border-radius: calc(var(--radius) + 14px);
    background:
        radial-gradient(circle at 50% -10%, rgba(193, 154, 91, 0.3), transparent 55%),
        linear-gradient(160deg, #08261e, var(--deep) 55%, #04150f);
    color: var(--white);
    text-align: center;
    box-shadow: 0 44px 110px rgba(6, 31, 24, 0.42);
}

.launch-box::before {
    position: absolute;
    inset: -2px;
    z-index: -2;
    content: "";
    border-radius: inherit;
    background: conic-gradient(from 0deg, transparent 0deg, var(--gold) 70deg, var(--lime) 130deg, transparent 200deg, transparent 360deg);
    animation: launch-rotate 6s linear infinite;
}

.launch-box::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    border-radius: inherit;
    background: inherit;
}

@keyframes launch-rotate {
    to {
        transform: rotate(1turn);
    }
}

.launch-glow {
    position: absolute;
    inset: auto 12% -32px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(193, 154, 91, 0.55), transparent 70%);
    filter: blur(26px);
    animation: launch-breathe 3.4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes launch-breathe {
    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.launch-head {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(217, 200, 159, 0.2);
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    padding: 9px 20px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--deep);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 0 0 6px rgba(183, 216, 143, 0.14);
}

.launch-badge::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--deep);
    content: "";
    animation: launch-pulse 1.8s ease-in-out infinite;
}

@keyframes launch-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.7);
        opacity: 0.35;
    }
}

.launch-head h2 {
    margin: 0;
    font-size: clamp(1.32rem, 4.2vw, 2.5rem);
    font-weight: 900;
    line-height: 1.25;
}

.launch-name {
    margin: 0;
    background: linear-gradient(100deg, var(--sand), var(--lime), var(--sand));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: clamp(1.95rem, 7.4vw, 4.6rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.launch-note {
    max-width: 640px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.launch-prices {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.launch-prices div {
    display: grid;
    gap: 6px;
    padding: 22px 16px;
    border: 1px solid rgba(217, 200, 159, 0.24);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.launch-prices div:hover {
    border-color: rgba(217, 200, 159, 0.55);
    transform: translateY(-5px);
}

.launch-prices .is-highlight {
    border-color: rgba(183, 216, 143, 0.5);
    background: linear-gradient(160deg, rgba(183, 216, 143, 0.2), rgba(255, 255, 255, 0.04));
}

.launch-prices .unit {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.launch-prices strong {
    color: var(--sand);
    font-size: clamp(1.35rem, 4.4vw, 2.4rem);
    line-height: 1.1;
}

.launch-prices .is-highlight strong {
    color: var(--lime);
}

.launch-prices .hint {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    font-weight: 700;
}

.launch-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.btn-outline {
    border: 1px solid rgba(217, 200, 159, 0.55);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(217, 200, 159, 0.14);
}

.strip-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr auto;
    align-items: center;
    gap: 44px;
}

.intro-strip h2,
.payment-section h2,
.contact-section h2,
.section-heading h2,
.project-overview h2 {
    font-size: clamp(2rem, 3vw, 3.4rem);
}

.strip-grid p,
.section-heading p,
.project-overview p,
.payment-section p,
.contact-section p {
    color: var(--muted);
}

.text-link {
    color: var(--green);
    font-weight: 900;
    white-space: nowrap;
}

.projects-section {
    padding: 96px 0 70px;
}

.section-heading {
    width: min(720px, 100%);
    margin-bottom: 34px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--deep);
    box-shadow: 0 18px 50px rgba(6, 31, 24, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.launch-tile {
    grid-column: span 2;
    border: 1px solid rgba(183, 216, 143, 0.38);
}

.project-image {
    position: relative;
    display: block;
    height: 360px;
    overflow: hidden;
}

.launch-tile .project-image {
    height: 430px;
}

.project-image img,
.project-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-image img {
    transition: transform 0.5s ease;
}

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

.project-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(6, 31, 24, 0.06), rgba(6, 31, 24, 0.9));
}

.launch-tile .project-image::after {
    background: linear-gradient(180deg, rgba(6, 31, 24, 0.04), rgba(6, 31, 24, 0.9)), radial-gradient(circle at 20% 78%, rgba(183, 216, 143, 0.32), transparent 30%);
}

.project-zone {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(242, 239, 230, 0.92);
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
}

.launch-tile .project-zone {
    background: var(--lime);
    color: var(--deep);
}

.project-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: grid;
    gap: 10px;
    padding: 28px;
    color: var(--white);
}

.project-overlay h3 {
    margin: 0;
    font-size: 1.8rem;
}

.launch-tile .project-overlay h3 {
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.project-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.project-overlay strong {
    width: fit-content;
    margin-top: 6px;
    padding: 9px 15px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.9rem;
}

.payment-section {
    padding: 86px 0;
    background: var(--green);
    color: var(--white);
}

.payment-grid,
.contact-panel,
.project-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 44px;
}

.payment-section p {
    color: rgba(255, 255, 255, 0.76);
}

.payment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.payment-cards div {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.payment-cards strong {
    display: block;
    margin-bottom: 10px;
    color: var(--sand);
    font-size: 2rem;
}

.contact-section,
.project-page {
    padding: 90px 0;
}

.contact-panel {
    padding: 44px;
    border-radius: calc(var(--radius) + 16px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-methods,
.contact-actions-card {
    display: grid;
    gap: 14px;
}

.contact-methods {
    margin-top: 24px;
}

.contact-methods a {
    color: var(--green);
    font-weight: 900;
}

.contact-actions-card {
    padding: 26px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(193, 154, 91, 0.14), rgba(12, 53, 42, 0.08));
}

.back-link {
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-weight: 900;
}

.project-overview {
    margin-bottom: 34px;
}

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

.project-gallery {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: 16px;
    margin-bottom: 34px;
}

.project-gallery img {
    min-height: 340px;
    border-radius: var(--radius);
}

.unit-table-section,
.info-box,
.payment-box {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.unit-table-section {
    display: grid;
    gap: 20px;
    margin-bottom: 28px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(6, 31, 24, 0.96), rgba(12, 53, 42, 0.92));
    color: var(--white);
}

.unit-table-section h2 {
    margin: 10px 0 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.unit-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(217, 200, 159, 0.28);
    border-radius: 20px;
}

.unit-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.unit-table th,
.unit-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(217, 200, 159, 0.18);
    text-align: right;
}

.unit-table th {
    background: rgba(183, 216, 143, 0.16);
    color: var(--sand);
}

.unit-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.06);
}

.project-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.info-box {
    padding: 28px;
    background: var(--white);
}

.info-box h2 {
    margin: 0 0 18px;
    color: var(--green);
}

.info-box ul {
    margin: 0;
    padding: 0 20px 0 0;
    color: var(--muted);
}

.info-box li {
    margin-bottom: 10px;
}

.location-box p {
    margin: 0;
    color: var(--muted);
}

.payment-box {
    margin-top: 22px;
    padding: 22px;
    background: linear-gradient(135deg, rgba(193, 154, 91, 0.16), rgba(12, 53, 42, 0.08));
}

.payment-box span {
    color: var(--gold);
    font-weight: 900;
}

.site-footer {
    padding: 52px 0 26px;
    background: #041713;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
}

.footer-grid img {
    width: 150px;
    margin-bottom: 14px;
    filter: invert(1);
}

.footer-grid h3 {
    margin: 0 0 12px;
    color: var(--sand);
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.copyright {
    width: min(1180px, calc(100% - 40px));
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
}

.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    display: grid;
    gap: 10px;
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 94px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--white);
    font-weight: 900;
}

.floating-call {
    background: var(--gold);
    box-shadow: 0 14px 34px rgba(193, 154, 91, 0.32);
}

.floating-whatsapp {
    background: #25d366;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.32);
}

@media (max-width: 1050px) {
    .hero-grid,
    .payment-grid,
    .contact-panel,
    .strip-grid,
    .project-overview {
        grid-template-columns: 1fr;
    }

    .projects-grid,
    .payment-cards,
    .project-gallery,
    .launch-prices {
        grid-template-columns: repeat(2, 1fr);
    }

    .launch-tile {
        grid-column: span 1;
    }
}

@media (max-width: 820px) {
    .site-header {
        inset: 12px 0 auto;
    }

    .navbar {
        border-radius: 26px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 92px;
        right: 20px;
        left: 20px;
        display: none;
        padding: 24px;
        border-radius: 24px;
        background: var(--cream);
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: grid;
    }

    .nav-cta {
        display: none;
    }

    .projects-grid,
    .payment-cards,
    .stats-grid,
    .project-gallery,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding-top: 138px;
    }

    .launch-section {
        padding-top: 56px;
    }

    .launch-box {
        padding: 30px 22px 26px;
    }

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

@media (max-width: 540px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand img {
        width: 104px;
    }

    .hero h1,
    .project-hero h1 {
        font-size: clamp(1.9rem, 7.6vw, 2.45rem);
    }

    .hero-copy p,
    .project-hero-content p {
        font-size: 1rem;
    }

    .hero-grid {
        padding: 124px 0 64px;
    }

    .hero-card,
    .contact-panel,
    .info-box,
    .unit-table-section {
        padding: 20px;
    }

    .launch-section {
        padding: 44px 0 10px;
    }

    .launch-box {
        padding: 26px 16px 22px;
        border-radius: var(--radius);
    }

    .launch-head {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .launch-badge {
        padding: 7px 14px;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .launch-prices {
        gap: 10px;
    }

    .launch-prices div {
        padding: 14px 10px;
    }

    .launch-prices .unit {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }

    .launch-prices .hint {
        font-size: 0.76rem;
    }

    .launch-actions {
        margin-top: 22px;
    }

    .launch-actions .btn {
        width: 100%;
    }

    .contact-methods a {
        word-break: break-word;
    }

    .floating-btn {
        min-width: 78px;
        min-height: 46px;
        font-size: 0.86rem;
    }

    .floating-actions {
        right: 12px;
        bottom: 12px;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .launch-box::before,
    .launch-glow,
    .launch-badge::before {
        animation: none;
    }
}
