@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Montserrat:wght@700;900&display=swap');

:root {
    --gold: #FFDE59;
    --gold-dark: #d4b820;
    --dark: #1A1A2E;
    --darker: #0F0F1A;
    --card-bg: #16213E;
    --text: #E8E8E8;
    --text-muted: #9A9A9A;
    --accent: #E94560;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', sans-serif;
    background: var(--darker);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

/* === NAV === */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 16px;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 28px; width: auto; display: block; }
.hero-logo { height: clamp(140px, 8vw, 80px); width: auto; display: block; }
.footer-logo { height: 20px; width: auto; display: inline-block; vertical-align: middle; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover { color: var(--gold); }

/* === HERO === */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, #0a1628 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 16px 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(233,69,96,0.03) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, -2%) rotate(1deg); }
    66% { transform: translate(-1%, 1%) rotate(-1deg); }
}

.hero-grid {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-logo-wrap { margin-bottom: 12px; }
.hero-logo { height: clamp(136px, 6vw, 56px); width: auto; display: block; }

.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 6px;
}

.hero-content h1 .gold {
    color: var(--gold);
    font-family: 'Proxima Nova', 'Montserrat', sans-serif;
    font-weight: 900;
}

.hero-content .tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-muted);
    margin-bottom: 10px;
}

.hero-content .location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--gold);
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    margin-bottom: 12px;
    width: fit-content;
}

.developer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    font-size: clamp(0.7rem, 1.3vw, 0.8rem);
    margin-bottom: 20px;
    width: fit-content;
}

.developer-badge strong { color: var(--gold); }

.dev-logo { height: 20px; width: auto; }

.dev-icon { background: transparent !important; border: 1px solid rgba(255,255,255,0.1) !important; }
.dev-icon img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }

.hero-stats {
    display: flex;
    gap: clamp(16px, 4vw, 40px);
    margin-bottom: 0;
}

.hero-stats .stat h3 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1.2;
}

.hero-stats .stat p {
    font-size: clamp(0.7rem, 1.4vw, 0.85rem);
    color: var(--text-muted);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-building {
    width: min(320px, 70vw);
    height: min(400px, 85vw);
    position: relative;
}

.building-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1e2a4a 0%, #2a3a5c 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.2);
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.building-body .windows {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(6px, 1.5vw, 12px);
    padding: clamp(12px, 3vw, 24px);
    position: absolute;
    bottom: 80px;
    width: 100%;
}

.window {
    aspect-ratio: 1;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 4px;
}

.window.lit { background: rgba(201,168,76,0.4); box-shadow: 0 0 15px rgba(201,168,76,0.2); }

.building-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.building-label .building-icon { font-size: clamp(1.5rem, 5vw, 3rem); margin-bottom: 4px; }

.building-label p {
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    color: var(--gold);
    letter-spacing: 2px;
}

.ground-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: clamp(50px, 12vw, 80px);
    background: linear-gradient(180deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.05) 100%);
    border-top: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1.5vw, 12px);
}

.ground-floor span {
    width: clamp(28px, 6vw, 40px);
    height: clamp(28px, 6vw, 40px);
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.8rem, 1.6vw, 1.1rem);
}

/* === SECTION COMMON === */
section { padding: clamp(48px, 8vw, 100px) 16px; }

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
}

.section-title .gold { color: var(--gold); }

.section-sub {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto clamp(32px, 6vw, 60px);
    font-size: clamp(0.85rem, 1.8vw, 1.05rem);
    padding: 0 8px;
}

/* === OVERVIEW === */
#overview { background: var(--dark); }

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(12px, 2vw, 24px);
}

.overview-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 24px);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.overview-card .icon {
    width: clamp(48px, 8vw, 64px);
    height: clamp(48px, 8vw, 64px);
    margin: 0 auto clamp(10px, 2vw, 16px);
    background: rgba(201,168,76,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.overview-card h3 { font-size: clamp(0.95rem, 1.8vw, 1.2rem); margin-bottom: 6px; }
.overview-card p { color: var(--text-muted); font-size: clamp(0.8rem, 1.4vw, 0.9rem); }

/* === BUILDINGS === */
.buildings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2vw, 24px);
}

.building-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: clamp(20px, 3vw, 28px);
    position: relative;
    overflow: hidden;
}

.building-card .num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: rgba(201,168,76,0.1);
    position: absolute;
    top: 8px;
    left: 14px;
    line-height: 1;
}

.building-card .b-icon { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 8px; }
.building-card h3 { font-size: clamp(0.9rem, 1.6vw, 1.1rem); margin-bottom: 6px; }
.building-card p { color: var(--text-muted); font-size: clamp(0.78rem, 1.3vw, 0.9rem); }

/* === FEATURES === */
#features { background: var(--dark); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 24px);
}

.feature-card {
    text-align: center;
    padding: clamp(16px, 2.5vw, 24px) clamp(8px, 1.5vw, 16px);
}

.feature-card .f-icon {
    width: clamp(44px, 7vw, 56px);
    height: clamp(44px, 7vw, 56px);
    margin: 0 auto clamp(8px, 1.5vw, 12px);
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

.feature-card h4 { font-size: clamp(0.85rem, 1.5vw, 1rem); margin-bottom: 4px; }
.feature-card p { color: var(--text-muted); font-size: clamp(0.75rem, 1.2vw, 0.85rem); }

/* === LOCATION === */
#location { background: var(--darker); }

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 5vw, 48px);
    align-items: center;
}

.location-info h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); margin-bottom: 12px; }

.location-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.location-detail .ld-icon {
    width: clamp(32px, 5vw, 40px);
    height: clamp(32px, 5vw, 40px);
    background: rgba(201,168,76,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.location-detail h4 { font-size: clamp(0.85rem, 1.4vw, 1rem); }
.location-detail p { color: var(--text-muted); font-size: clamp(0.78rem, 1.2vw, 0.85rem); margin-bottom: 0; }

.map-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    gap: 8px;
    padding: 24px;
    text-align: center;
}

.map-placeholder .m-icon { font-size: clamp(2rem, 5vw, 3rem); }

/* === EOI FORM === */
#register { background: var(--dark); }

.eoi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 5vw, 48px);
    align-items: start;
}

.eoi-info h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); margin-bottom: 10px; }
.eoi-info p { color: var(--text-muted); margin-bottom: 20px; font-size: clamp(0.85rem, 1.4vw, 0.95rem); }

.eoi-benefits { list-style: none; }

.eoi-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--text);
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
}

.eoi-benefits li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.eoi-form {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: clamp(20px, 4vw, 36px);
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-size: clamp(0.82rem, 1.3vw, 0.9rem);
    font-weight: 600;
}

.form-group label .required { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(10px, 1.8vw, 14px) clamp(12px, 2vw, 16px);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-group select option { background: var(--dark); color: var(--text); }

.submit-btn {
    width: 100%;
    padding: clamp(12px, 2vw, 14px);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
    min-height: 48px;
}

.submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.form-msg {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: clamp(0.82rem, 1.3vw, 0.9rem);
}

.form-msg.success {
    display: block;
    background: rgba(76,175,80,0.1);
    border: 1px solid rgba(76,175,80,0.3);
    color: #81C784;
}

.form-msg.error {
    display: block;
    background: rgba(233,69,96,0.1);
    border: 1px solid rgba(233,69,96,0.3);
    color: #E94560;
}

/* === MAP === */
.map-image {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    display: block;
    object-fit: cover;
}

/* === PROJECTS === */
#projects { background: var(--darker); }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(12px, 2vw, 24px);
}

.project-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.project-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.project-card h3 {
    font-size: 1rem;
    margin: 8px 16px 2px;
}

.project-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 0 16px 14px;
}

/* === PRICING === */
#pricing { background: var(--dark); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2vw, 24px);
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.pricing-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-card .p-label {
    padding: 12px 16px;
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    font-weight: 600;
    text-align: center;
}

/* === SEO HIDDEN === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

.lightbox .lb-close {
    position: absolute;
    top: 16px;
    left: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lightbox .lb-close:hover { opacity: 1; }

/* === DOWNLOADS === */
#downloads { background: var(--darker); }

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(12px, 2vw, 24px);
    max-width: 600px;
    margin: 0 auto;
}

.download-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.download-card .d-icon {
    width: 48px;
    height: 48px;
    background: rgba(201,168,76,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.download-card .d-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.download-card .d-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === FOOTER === */
footer {
    background: var(--darker);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: clamp(24px, 5vw, 40px) 16px;
    text-align: center;
}

footer p { color: var(--text-muted); font-size: clamp(0.78rem, 1.3vw, 0.85rem); }
footer .f-gold { color: var(--gold); }

/* === FLOATING ACTIONS === */
.floating-actions {
    position: fixed;
    bottom: 24px;
    left: 16px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-actions a, .floating-actions button {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease,
                transform 0.2s ease;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
}

.floating-actions a .fa-label,
.floating-actions button .fa-label {
    position: absolute;
    right: -8px;
    opacity: 0;
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    transition: opacity 0.35s ease, right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}



.floating-actions a svg,
.floating-actions button svg {
    flex-shrink: 0;
}

.fa-whatsapp {
    background: #25D366;
    animation: fa-pulse 2.5s ease-in-out infinite;
}
.fa-whatsapp:hover { animation: none; }

.fa-phone {
    background: linear-gradient(135deg, #4A90D9, #357ABD);
}

.fa-form {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--darker);
}

@keyframes fa-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
}

/* === EOI MODAL === */
.eoi-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: eoiFadeIn 0.3s ease;
}

.eoi-modal-overlay.open {
    display: flex;
}

@keyframes eoiFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes eoiSlideUp {
    from { transform: translateY(30px) scale(0.96); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.eoi-modal {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: eoiSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.eoi-modal-close {
    position: absolute;
    top: 12px;
    left: 16px;
    background: rgba(255,255,255,0.06);
    border: none;
    color: var(--text-muted);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

.eoi-modal-close:hover {
    background: rgba(233,69,96,0.15);
    color: #E94560;
}

.eoi-modal-header {
    text-align: center;
    padding: 32px 24px 8px;
}

.eoi-modal-header img {
    height: 48px;
    width: auto;
    margin-bottom: 12px;
}

.eoi-modal-header h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.eoi-modal-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.eoi-modal-body {
    padding: 16px 24px 28px;
}

.eoi-modal-body .form-group {
    margin-bottom: 16px;
}

.eoi-modal-body label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.eoi-modal-body input,
.eoi-modal-body select {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.eoi-modal-body input:focus,
.eoi-modal-body select:focus {
    outline: none;
    border-color: var(--gold);
}

.eoi-modal-body .submit-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    margin-top: 4px;
}

.eoi-modal-body .submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.eoi-modal-body .submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 576px) {
    .eoi-modal { max-width: 100%; border-radius: 16px; }
    .eoi-modal-header { padding: 24px 20px 4px; }
    .eoi-modal-header img { height: 40px; }
    .eoi-modal-body { padding: 12px 20px 24px; }
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .hero-content .location { margin-left: auto; margin-right: auto; }
    .hero-logo { margin: 0 auto; }
    .hero-stats { justify-content: center; flex-wrap: wrap; }
    .hero-building { width: min(240px, 60vw); height: min(300px, 75vw); }
    .overview-grid { grid-template-columns: 1fr 1fr; }
    .buildings-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: 1fr; }
    .eoi-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15,15,26,0.98);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        flex-direction: column;
        padding: 12px 16px;
        gap: 4px;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .nav-links li:last-child a { border-bottom: none; }

    .floating-actions { bottom: 16px; left: 12px; gap: 8px; }
    .floating-actions a, .floating-actions button { width: 44px; height: 44px; }
    .floating-actions a svg, .floating-actions button svg { width: 19px; height: 19px; }
    
    .floating-actions a .fa-label,
    .floating-actions button .fa-label { font-size: 0.72rem; }
    .hero { padding: 72px 16px 32px; }
    .hero-building { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 12px; }
    .hero-stats .stat { flex: 1; min-width: 80px; }
    .hero-stats .stat h3 { font-size: 1.3rem; }
    .hero-stats .stat p { font-size: 0.7rem; }

    .overview-grid { grid-template-columns: 1fr; }
    .buildings-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; gap: 0; }
    .feature-card { padding: 16px 8px; border-bottom: 1px solid rgba(255,255,255,0.04); }
    .feature-card:last-child { border-bottom: none; }
    .location-detail { gap: 10px; }
    .eoi-form { padding: 20px; }

    .section-sub { margin-bottom: 28px; }
}

@media (max-width: 380px) {
    .hero-stats .stat { min-width: 70px; }
    .hero-stats .stat h3 { font-size: 1.1rem; }
    .ground-floor span { width: 24px; height: 24px; font-size: 0.7rem; }
}
