:root {
    --primary-color: #07152B; /* Deep Midnight Sapphire */
    --primary-light: #3B82F6;
    --secondary-color: #10B981; /* Premium Emerald Green */
    --secondary-hover: #059669; /* Rich Dark Emerald */
    --emerald-glow: #00E676;
    --text-dark: #F8FAFC; /* Crisp Light Text */
    --text-light: #CBD5E1; /* Soft Gray Text */
    --bg-dark-1: #07152B;
    --bg-dark-2: #0D1B2A;
    --bg-card: #0F233D;
    --white: #FFFFFF;
    --glass-bg: rgba(11, 30, 56, 0.88);
    --glass-border: rgba(16, 185, 129, 0.35);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --whatsapp-color: #25D366;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-dark-1);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Section Backgrounds - Ultra Luxury Dark Theme */
.about {
    background: linear-gradient(135deg, #07152B 0%, #0D1B2A 100%);
    position: relative;
    color: #F8FAFC;
}

.founder {
    background: linear-gradient(135deg, #0D1B2A 0%, #07152B 100%);
    color: #F8FAFC;
}

.founder .section-title {
    color: #FFFFFF;
}

.founder p {
    color: #CBD5E1;
}

.projects {
    background: linear-gradient(180deg, #07152B 0%, #0F233D 50%, #07152B 100%);
    position: relative;
    color: #F8FAFC;
}

.amenities {
    background: linear-gradient(135deg, #0D1B2A 0%, #07152B 100%);
    position: relative;
    color: #F8FAFC;
}

.faq {
    background: linear-gradient(180deg, #07152B 0%, #0D1B2A 100%);
    color: #F8FAFC;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 85px 0;
}

.bg-light {
    background-color: #F1F5F9;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    animation: emerald-badge-pulse 3s infinite ease-in-out;
}

@keyframes emerald-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.section-title span {
    color: var(--secondary-color);
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: #CBD5E1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.5);
}

.btn-outline {
    border: 2px solid var(--secondary-color);
    color: #FFFFFF;
    background: transparent;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    border-color: #10B981;
    color: #FFFFFF;
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1ebd57;
    transform: translateY(-2px);
}

.btn-whatsapp-outline {
    border: 2px solid var(--whatsapp-color);
    color: var(--whatsapp-color);
    background: transparent;
}

.btn-whatsapp-outline:hover {
    background-color: var(--whatsapp-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 21, 43, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(16, 185, 129, 0.25);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #FFFFFF;
}

.logo i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.logo span {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
}

.logo small {
    font-size: 0.8rem;
    font-weight: 400;
    color: #CBD5E1;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar a:not(.btn) {
    text-decoration: none;
    color: #E2E8F0;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.navbar a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.navbar a:not(.btn):hover::after {
    width: 100%;
}

.navbar a:not(.btn):hover {
    color: var(--secondary-color);
}

.menu-icon {
    display: none;
    font-size: 2rem;
    color: #FFFFFF;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 21, 43, 0.93) 0%, rgba(11, 30, 56, 0.8) 60%, rgba(5, 150, 105, 0.3) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.2);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-text {
    color: var(--white);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-text h1 span {
    color: var(--secondary-color);
    background: linear-gradient(135deg, #059669 0%, #10B981 50%, #00E676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.92;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Glassmorphism Lead Form */
.hero-form-container {
    display: flex;
    justify-content: flex-end;
}

.glass-form {
    background: rgba(11, 30, 56, 0.78);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(16, 185, 129, 0.15);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-form:hover {
    border-color: rgba(16, 185, 129, 0.7);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(16, 185, 129, 0.25);
}

.glass-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-form p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.85;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.input-group input:focus + i, .input-group input:hover + i {
    transform: translateY(-50%) scale(1.15);
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: var(--white);
    padding: 15px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 10px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.6);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(11, 30, 56, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.06);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #0B1E38 0%, #07152B 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 6px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    line-height: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: #CBD5E1;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #F8FAFC;
    font-size: 1.05rem;
}

.features-list li i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 35px;
}

.project-card {
    background: #0F233D;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(16, 185, 129, 0.25);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(16, 185, 129, 0.3);
    border-color: var(--secondary-color);
}

.project-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.download-badge-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(7, 21, 43, 0.85);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.download-badge-overlay:hover {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    border-color: #00E676;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
}

.project-actions {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 10px;
}

.project-actions .btn {
    padding: 10px 12px;
    font-size: 0.85rem;
}

@media (max-width: 480px) {
    .project-actions {
        grid-template-columns: 1fr;
    }
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.location {
    color: #60A5FA;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-info .desc {
    color: #CBD5E1;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Amenities Section */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.amenity-item {
    text-align: center;
    padding: 40px 25px;
    background: #0F233D;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(16, 185, 129, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.amenity-item:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.5), 0 0 30px rgba(16, 185, 129, 0.25);
}

.amenity-item .icon-box {
    width: 85px;
    height: 85px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.amenity-item:hover .icon-box {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.amenity-item .icon-box i {
    font-size: 2.6rem;
    color: var(--secondary-color);
    transition: color 0.4s ease;
}

.amenity-item:hover .icon-box i {
    color: #FFFFFF;
}

.amenity-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.amenity-item p {
    color: #CBD5E1;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 18px;
    background: #0F233D;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.25);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #050D1A 0%, #07152B 100%);
    color: #F8FAFC;
    padding: 70px 0 25px;
    border-top: 1px solid rgba(16, 185, 129, 0.25);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    color: #FFFFFF;
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-info p {
    color: #CBD5E1;
    max-width: 420px;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #FFFFFF;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: #FFFFFF;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.footer-contact h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: 700;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #CBD5E1;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-top: 2px;
}

.footer-contact a {
    color: #CBD5E1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
    font-size: 0.95rem;
}

/* Sticky CTA Mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-call {
    background: var(--primary-color);
}

.btn-wa {
    background: var(--whatsapp-color);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.93);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.appear {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive Media Queries - Mobile Optimization */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-form-container {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        transform: none;
        margin: 20px auto 0;
        width: 130px;
        height: 130px;
    }

    .features-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .fade-in-up, .slide-in-left, .slide-in-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(7, 21, 43, 0.98);
        border-bottom: 1px solid rgba(16, 185, 129, 0.3);
    }
    
    .menu-icon {
        display: block;
        color: #FFFFFF;
    }
    
    .logo img {
        height: 45px !important;
    }
    
    .logo span {
        font-size: 1.1rem;
        color: #FFFFFF;
    }

    .glass-form {
        padding: 25px 20px;
        max-width: 100%;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: #07152B;
        border-bottom: 1px solid rgba(16, 185, 129, 0.3);
        flex-direction: column;
        padding: 25px 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
        transition: 0.35s ease;
        gap: 18px;
    }

    .navbar a:not(.btn) {
        color: #FFFFFF !important;
        font-size: 1.1rem;
    }

    .navbar.active {
        left: 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.25;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section {
        padding: 55px 0;
    }

    .projects-grid, .amenities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-info p {
        margin: 0 auto 25px;
    }

    .social-links {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }

    body {
        padding-bottom: 65px;
    }

    .sticky-cta {
        display: flex;
        z-index: 10000;
        background: #07152B;
        border-top: 1px solid rgba(16, 185, 129, 0.3);
        padding: 8px 12px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

    .download-badge-overlay {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .status-badge {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Auto Popup Form Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.popup-close:hover {
    color: var(--secondary-color);
}

.popup-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.popup-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: center;
}

.popup-content .input-group input {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: var(--text-dark);
}

.popup-content .input-group i {
    color: var(--text-light);
}

.popup-content .input-group input:focus {
    border-color: var(--secondary-color);
    background: #fff;
}

/* Project Image Carousel */
.project-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-carousel .carousel-track {
    display: flex;
    width: 500%;
    height: 100%;
    animation: slide-animation 15s infinite ease-in-out;
}

.project-carousel .carousel-slide {
    width: 20%;
    height: 100%;
    flex-shrink: 0;
}

.project-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slide-animation {
    0% { transform: translateX(0); }
    16% { transform: translateX(0); }
    20% { transform: translateX(-20%); }
    36% { transform: translateX(-20%); }
    40% { transform: translateX(-40%); }
    56% { transform: translateX(-40%); }
    60% { transform: translateX(-60%); }
    76% { transform: translateX(-60%); }
    80% { transform: translateX(-80%); }
    96% { transform: translateX(-80%); }
    100% { transform: translateX(0); }
}

/* Project Image Carousel (2 slides) */
.project-carousel-2 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-carousel-2 .carousel-track {
    display: flex;
    width: 200%;
    height: 100%;
    animation: slide-animation-2 8s infinite ease-in-out;
}

.project-carousel-2 .carousel-slide {
    width: 50%;
    height: 100%;
    flex-shrink: 0;
}

.project-carousel-2 .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slide-animation-2 {
    0% { transform: translateX(0); }
    45% { transform: translateX(0); }
    50% { transform: translateX(-50%); }
    95% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Project Image Carousel (3 slides) */
.project-carousel-3 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-carousel-3 .carousel-track {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide-animation-3 10s infinite ease-in-out;
}

.project-carousel-3 .carousel-slide {
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
}

.project-carousel-3 .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slide-animation-3 {
    0% { transform: translateX(0); }
    28% { transform: translateX(0); }
    33.333% { transform: translateX(-33.333%); }
    61% { transform: translateX(-33.333%); }
    66.666% { transform: translateX(-66.666%); }
    95% { transform: translateX(-66.666%); }
    100% { transform: translateX(0); }
}

/* Project Image Carousel (6 slides) */
.project-carousel-6 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-carousel-6 .carousel-track {
    display: flex;
    width: 600%;
    height: 100%;
    animation: slide-animation-6 18s infinite ease-in-out;
}

.project-carousel-6 .carousel-slide {
    width: 16.6666%;
    height: 100%;
    flex-shrink: 0;
}

.project-carousel-6 .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slide-animation-6 {
    0% { transform: translateX(0); }
    13% { transform: translateX(0); }
    16.666% { transform: translateX(-16.666%); }
    29% { transform: translateX(-16.666%); }
    33.333% { transform: translateX(-33.333%); }
    46% { transform: translateX(-33.333%); }
    50% { transform: translateX(-50%); }
    63% { transform: translateX(-50%); }
    66.666% { transform: translateX(-66.666%); }
    79% { transform: translateX(-66.666%); }
    83.333% { transform: translateX(-83.333%); }
    96% { transform: translateX(-83.333%); }
    100% { transform: translateX(0); }
}

/* ==========================================
   NEW ENHANCEMENTS: Stats, Brochures & Theme
   ========================================== */

/* Emerald Pulse Button */
.btn-gold-pulse, .btn-emerald-pulse {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    animation: emerald-pulse-anim 2.5s infinite;
}

.btn-gold-pulse:hover, .btn-emerald-pulse:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

@keyframes emerald-pulse-anim {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Stats Counter Bar */
.stats-bar {
    background: linear-gradient(135deg, #0B1E38 0%, #061224 100%);
    padding: 35px 0;
    border-top: 2px solid rgba(16, 185, 129, 0.35);
    border-bottom: 2px solid rgba(16, 185, 129, 0.35);
    color: #FFFFFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.15);
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(16, 185, 129, 0.25);
}

.stat-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.stat-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Project Actions Dual Buttons */
.project-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.project-actions .btn {
    flex: 1;
    font-size: 0.88rem;
    padding: 10px 14px;
    white-space: nowrap;
    justify-content: center;
}

/* Mobile Sticky CTA Button update */
.btn-brochure-mobile {
    flex: 1;
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Video Gallery Section */
.video-gallery {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.video-card video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
    border-bottom: 3px solid var(--primary-color);
}

.video-info {
    padding: 15px;
    text-align: center;
}

.video-info h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
}

