/* ===================================
   ULTRA-LUXURY REAL ESTATE LANDING PAGE
   Premium Dark Theme with Gold Accents
   =================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --charcoal: #2a2a2a;
    --beige: #d4c5b9;
    --gold: #c9a961;
    --gold-light: #e5d4a6;
    --white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--gold-light));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ===== SCROLL PROGRESS INDICATOR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 10000;
    transition: width 0.1s ease;
}

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition-fast);
    animation: floatPulse 2s ease-in-out infinite;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.call-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.call-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 35px rgba(201, 169, 97, 0.5);
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-btn i {
    animation: iconRotate 3s ease-in-out infinite;
}

@keyframes iconRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}


/* ===== HEADER STYLES ===== */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 9999;
    transition: var(--transition-smooth);
    background: transparent;
}

.luxury-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo h1 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

.nav-menu li a:hover {
    color: var(--gold);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-menu .cta-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-dark);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-menu .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.nav-menu .cta-btn::after {
    display: none;
}

/* Navigation Phone Number */
.nav-phone {
    position: relative;
}

.phone-link {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 25px !important;
    background: linear-gradient(135deg, #c9a961, #e5d4a6) !important;
    color: #0a0a0a !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    position: relative !important;
    overflow: visible !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    animation: phoneBlink 2s ease-in-out infinite !important;
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.6), 0 0 40px rgba(201, 169, 97, 0.4) !important;
}

@keyframes phoneBlink {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 169, 97, 0.6), 
                    0 0 40px rgba(201, 169, 97, 0.4);
        border-color: rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 35px rgba(201, 169, 97, 1), 
                    0 0 70px rgba(201, 169, 97, 0.8),
                    0 0 100px rgba(201, 169, 97, 0.6);
        border-color: rgba(255, 255, 255, 0.8);
    }
}

.phone-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: phoneShine 2.5s linear infinite;
}

@keyframes phoneShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.phone-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(201, 169, 97, 1), 
                0 0 80px rgba(201, 169, 97, 0.8),
                0 0 120px rgba(201, 169, 97, 0.6);
    animation: none;
    border-color: rgba(255, 255, 255, 1);
}

.phone-link i {
    font-size: 16px !important;
    animation: phoneRing 1.5s ease-in-out infinite !important;
    position: relative !important;
    z-index: 2 !important;
    display: inline-block !important;
}

@keyframes phoneRing {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-20deg); }
    20% { transform: rotate(20deg); }
    30% { transform: rotate(-20deg); }
    40% { transform: rotate(20deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.phone-link span {
    font-size: 16px !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
    position: relative !important;
    z-index: 2 !important;
    display: inline-block !important;
}

.phone-link::after {
    display: none !important;
}

.nav-menu .cta-btn::after {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-luxury {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.btn-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
}

.btn-luxury-outline {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    transition: var(--transition-fast);
}

.btn-luxury-outline:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== GLASSMORPHISM FORM ===== */
.glassmorphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-form h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-form p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.enquiry-form .form-group {
    margin-bottom: 20px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition-fast);
}

.enquiry-form select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #000;
    font-size: 15px;
    transition: var(--transition-fast);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: var(--text-muted);
}

.enquiry-form select {
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
    display: block;
}

/* ===== SECTION COMMON STYLES ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 400;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 0 auto;
}

/* ===== OVERVIEW SECTION ===== */
.overview-section {
    background: var(--secondary-dark);
}

.overview-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.overview-image:hover img {
    transform: scale(1.1);
}

.overview-content h3 {
    font-family: var(--font-serif);
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--gold);
}

.overview-content p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 40px;
}

.overview-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ARCHITECTURE SECTION ===== */
.architecture-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
}

.architecture-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.2);
}

.arch-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-dark);
    transition: var(--transition-fast);
}

.architecture-card:hover .arch-icon {
    transform: rotateY(360deg);
}

.architecture-card h4 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.architecture-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== AMENITIES SECTION ===== */
.amenities-section {
    background: var(--secondary-dark);
}

.amenity-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.amenity-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-dark);
    transition: var(--transition-fast);
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.2) rotate(360deg);
}

.amenity-card h5 {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay h4 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--gold);
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background: var(--secondary-dark);
}

.location-content h3 {
    font-family: var(--font-serif);
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--gold);
}

.location-list {
    list-style: none;
}

.location-list li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-list li i {
    color: var(--gold);
    font-size: 20px;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== LIFESTYLE SECTION ===== */
.lifestyle-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.lifestyle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.lifestyle-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.95));
    transform: translateY(60px);
    transition: var(--transition-smooth);
}

.lifestyle-card:hover .lifestyle-content {
    transform: translateY(0);
}

.lifestyle-card:hover img {
    transform: scale(1.1);
}

.lifestyle-content h4 {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--gold);
    /*margin-bottom: 10px;*/
    margin-bottom: 30px;
}

/*.lifestyle-content p {*/
/*    font-size: 15px;*/
/*    color: var(--text-light);*/
/*}*/

.lifestyle-content p {
    font-size: 15px;
    color: var(--text-light);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
}

/* Hover pe show hoga */
.lifestyle-card:hover .lifestyle-content p {
    opacity: 1;
    max-height: 100px;
    margin-top: 8px;
}

/* Mobile responsive - hover nahi hota properly */
@media (max-width: 991px) {
    .lifestyle-content {
        transform: translateY(0);
    }

    .lifestyle-content p {
        opacity: 1;
        max-height: 100px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--secondary-dark);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-smooth);
    height: 100%;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.2);
}

.testimonial-quote {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author h5 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(10, 10, 10, 0.9)),
                url('building-exterior-2.jpeg') center/cover;
    padding: 120px 0;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-muted);
}

.cta-form {
    max-width: 500px;
    margin-left: auto;
}

.cta-form h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--white);
}

/* ===== FOOTER ===== */
.luxury-footer {
    background: var(--primary-dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-about p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact ul li {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact ul li i {
    color: var(--gold);
    font-size: 16px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== POPUP MODAL ===== */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 90%;
    animation: modalSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.modal-close:hover,
.modal-close:active {
    background: var(--gold);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.modal-body h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--white);
    margin-bottom: 10px;
}

.modal-body p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .overview-stats {
        justify-content: center;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .nav-wrapper {
        padding: 0 30px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px;
        gap: 30px;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-phone .phone-link {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 10000;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-luxury,
    .btn-luxury-outline {
        text-align: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .overview-content h3,
    .location-content h3 {
        font-size: 28px;
    }
    
    .overview-stats {
        gap: 30px;
    }
    
    .stat-item h4 {
        font-size: 36px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .lifestyle-card {
        height: 350px;
        margin-bottom: 30px;
    }
    
    .cta-content h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .cta-form {
        margin-left: 0;
        margin-top: 40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .nav-wrapper {
        padding: 0 20px;
    }
    
    .logo h1 {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .nav-menu {
        width: 280px;
        padding: 100px 30px;
    }
    
    .phone-link {
        padding: 10px 20px;
    }
    
    .phone-link span {
        font-size: 14px;
    }
    
    .phone-link i {
        font-size: 14px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .btn-luxury,
    .btn-luxury-outline {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .glassmorphism {
        padding: 30px 20px;
    }
    
    .hero-form h3,
    .cta-form h3 {
        font-size: 26px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 12px;
    }
    
    .overview-content h3,
    .location-content h3 {
        font-size: 24px;
    }
    
    .overview-content p,
    .location-list li {
        font-size: 15px;
    }
    
    .overview-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-item h4 {
        font-size: 32px;
    }
    
    .architecture-card,
    .amenity-card {
        padding: 30px 20px;
    }
    
    .arch-icon,
    .amenity-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .architecture-card h4 {
        font-size: 20px;
    }
    
    .amenity-card h5 {
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .lifestyle-card {
        height: 300px;
    }
    
    .lifestyle-content h4 {
        font-size: 22px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-quote {
        font-size: 36px;
    }
    
    .testimonial-card p {
        font-size: 15px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .luxury-footer {
        padding: 60px 0 20px;
    }
    
    .footer-about h3 {
        font-size: 24px;
    }
    
    .footer-about p {
        font-size: 14px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 18px;
        margin-top: 30px;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-close {
        width: 50px;
        height: 50px;
        font-size: 28px;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.4);
    }
    
    .modal-body h2 {
        font-size: 28px;
    }
    
    /* Floating buttons mobile */
    .floating-buttons {
        bottom: 90px;
        right: 20px;
        gap: 12px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn-luxury,
    .btn-luxury-outline {
        padding: 12px 25px;
        font-size: 13px;
    }
}

/* ===== ANIMATIONS & MICRO-INTERACTIONS ===== */

/* Smooth Page Load */
body {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Button Ripple Effect */
.btn-luxury,
.btn-luxury-outline,
.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-luxury::before,
.btn-luxury-outline::before,
.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-luxury:hover::before,
.btn-luxury-outline:hover::before,
.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

/* Parallax Effect */
.hero-background {
    will-change: transform;
}

/* Image Hover Effects */
.overview-image,
.location-map,
.gallery-item,
.lifestyle-card {
    position: relative;
    overflow: hidden;
}

.overview-image::after,
.location-map::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
    transition: left 0.8s;
}

.overview-image:hover::after,
.location-map:hover::after {
    left: 100%;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Scroll Reveal Enhancement */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom Cursor Effect (Optional Enhancement) */
@media (min-width: 1024px) {
    .amenity-card,
    .gallery-item,
    .lifestyle-card {
        cursor: pointer;
    }
}

/* Print Styles */
@media print {
    .luxury-header,
    .popup-modal,
    .scroll-progress {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
