:root {
    --gold: #C9A962;
    --gold-dark: #B8954F;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 30px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 169, 98, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    color: var(--gray);
    font-size: 12px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(201, 169, 98, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.logo-text span {
    color: var(--gold);
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark);
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 25px;
    transition: all 0.3s;
}

.header-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.header-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 25px;
    transition: all 0.3s;
    animation: whatsappPulse 2s infinite;
}

.header-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 15px 5px rgba(37, 211, 102, 0.2); }
}

.mobile-menu {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--gold);
    padding: 5px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.98) 0%, rgba(26, 26, 46, 0.95) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
    overflow: hidden;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--darker) 0%, transparent 50%, var(--darker) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero h1 span {
    color: var(--gold);
    display: inline-block;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 10px rgba(201, 169, 98, 0.5); }
    to { text-shadow: 0 0 30px rgba(201, 169, 98, 0.8), 0 0 60px rgba(201, 169, 98, 0.4); }
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

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

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 2px solid var(--gold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

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

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Stats Bar */
.stats-bar {
    background: var(--dark);
    padding: 50px 0;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

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

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* Section Styling */
.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 5px 14px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-subtitle {
    color: var(--gray);
    font-size: 15px;
    max-width: 550px;
    margin: 25px auto 0;
    line-height: 1.7;
}

/* Highlights Section */
.highlights {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

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

.highlight-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(201, 169, 98, 0.15);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover .highlight-icon {
    transform: rotateY(360deg);
    background: var(--gold);
}

.highlight-icon i {
    font-size: 32px;
    color: var(--gold);
    transition: all 0.3s;
}

.highlight-card:hover .highlight-icon i {
    color: var(--dark);
}

.highlight-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.highlight-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.highlight-card:hover h4 {
    color: var(--gold);
}

.highlight-card p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--gold);
    z-index: 1;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 18px;
}

.about-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 14px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(201, 169, 98, 0.1);
    transform: translateX(8px);
}

.feature-item i {
    color: var(--gold);
    font-size: 14px;
}

.feature-item span {
    font-size: 13px;
}

/* Developer Section */
.developer {
    background: var(--dark);
}

.developer-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: center;
}

.developer-logo {
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.02) 100%);
    border: 2px solid rgba(201, 169, 98, 0.3);
}

.developer-logo-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

.developer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 8px;
}

.developer-logo span {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.developer-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 18px;
}

.developer-content > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 14px;
}

.developer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.dev-stat {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: all 0.3s;
}

.dev-stat:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.dev-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--gold);
    font-weight: 700;
}

.dev-stat-label {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* Virtual Tour */
.virtual-tour {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

.tour-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tour-video {
    position: relative;
    border: 2px solid rgba(201, 169, 98, 0.3);
    overflow: hidden;
}

.tour-video img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s;
}

.tour-video:hover img {
    transform: scale(1.05);
}

.tour-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 98, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.tour-play-btn::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: pulse-ring 1.5s infinite;
}

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

.tour-play-btn i {
    font-size: 28px;
    color: var(--dark);
    margin-left: 4px;
}

.tour-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 18px;
}

.tour-content > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 14px;
}

.tour-features {
    display: grid;
    gap: 15px;
}

.tour-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--gold);
    transition: all 0.3s;
}

.tour-feature:hover {
    background: rgba(201, 169, 98, 0.1);
    transform: translateX(8px);
}

.tour-feature i {
    font-size: 20px;
    color: var(--gold);
}

.tour-feature strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.tour-feature p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

/* Amenities */
.amenities {
    background: var(--dark);
}

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

.amenity-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(201, 169, 98, 0.1);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.amenity-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.amenity-card:hover::after {
    transform: scaleX(1);
}

.amenity-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenity-card:hover .amenity-icon {
    transform: rotateY(180deg);
    background: var(--gold);
}

.amenity-icon i {
    font-size: 28px;
    color: var(--gold);
    transition: all 0.3s;
}

.amenity-card:hover .amenity-icon i {
    color: var(--dark);
}

.amenity-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.amenity-card p {
    color: var(--gray);
    font-size: 12px;
}

/* Gallery */
.gallery {
    background: var(--darker);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    width: 38px;
    height: 38px;
    background: var(--gold);
    border: none;
    color: var(--dark);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(201, 169, 98, 0.8);
    border: none;
    color: var(--dark);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    background: var(--gold);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

/* Mobile Lightbox */
@media (max-width: 768px) {
    .lightbox {
        padding: 60px 15px 80px;
    }
    
    .lightbox-content {
        max-width: 100%;
        max-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .lightbox-content img {
        max-width: 100%;
        max-height: 60vh;
        width: auto;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        position: fixed;
    }
    
    .lightbox-nav {
        position: fixed;
        top: auto;
        bottom: 80px;
        transform: none;
        width: 50px;
        height: 50px;
        background: var(--gold);
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
}

.lightbox-caption {
    padding: 15px 0 0;
}

.lightbox-caption h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 5px;
}

.lightbox-caption p {
    color: var(--gray);
    font-size: 13px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.12) 0%, rgba(201, 169, 98, 0.03) 100%);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.pricing-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 18px;
    right: -32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    padding: 4px 35px;
    font-size: 9px;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-type {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.pricing-size {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 25px;
}

.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 25px;
}

.pricing-price span {
    font-size: 14px;
    color: var(--gray);
}

/* Floor Plans */
.floor-plans {
    background: var(--dark);
}

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

.floor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.floor-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.floor-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.floor-image i {
    font-size: 50px;
    color: var(--gold);
    opacity: 0.5;
}

.floor-content {
    padding: 25px;
}

.floor-content h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.floor-content p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 18px;
}

/* FAQ */
.faq {
    background: var(--darker);
}

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

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

.faq-list {
    max-width: 100%;
    margin: 0;
}

.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(201, 169, 98, 0.15);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.faq-item:hover {
    border-color: rgba(201, 169, 98, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.15);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(201, 169, 98, 0.05);
}

.faq-question h4 {
    font-size: 14px;
    font-weight: 600;
    padding-right: 15px;
    transition: color 0.3s;
}

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

.faq-question i {
    color: var(--gold);
    transition: transform 0.4s ease;
    font-size: 14px;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 300px;
}

.faq-answer p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-grid .faq-list {
        margin-bottom: 0;
    }
}

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-map {
    height: 380px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 25px;
}

.location-features {
    display: grid;
    gap: 15px;
}

.location-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--gold);
    transition: all 0.3s;
}

.location-feature:hover {
    background: rgba(201, 169, 98, 0.1);
    transform: translateX(8px);
}

.location-feature i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 2px;
}

.location-feature strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.location-feature span {
    color: var(--gray);
    font-size: 12px;
}

/* Contact */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 14px;
}

.contact-details {
    display: grid;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-item i {
    width: 45px;
    height: 45px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    transition: all 0.3s;
}

.contact-item:hover i {
    background: var(--gold);
    color: var(--dark);
}

.contact-item span {
    font-size: 14px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: 40px;
}

.contact-form h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.2);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(201, 169, 98, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--gold);
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--dark);
    padding: 16px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

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

.rera-notice {
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: 18px;
    margin-top: 30px;
    text-align: center;
}

.rera-notice p {
    color: var(--gray);
    font-size: 11px;
    line-height: 1.7;
}

.rera-notice strong {
    color: var(--gold);
}

/* Popup Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    justify-content: center;
    align-items: flex-start;
    padding-top: 50px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
    display: flex !important;
}

body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

.modal-content {
    background: var(--dark);
    border: 2px solid var(--gold);
    max-width: 480px;
    width: calc(100% - 30px);
    max-height: none;
    position: relative;
    animation: fadeInModal 0.3s ease-out;
}

@keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    padding: 35px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, transparent 100%);
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--gray);
    font-size: 13px;
}

.modal-body {
    padding: 25px 30px 35px;
}

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

.modal-body .form-group label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.modal-body .form-group input,
.modal-body .form-group select {
    padding: 14px 16px;
    font-size: 14px;
}

.modal-body .checkbox-group {
    margin-top: 15px;
}

.modal-body .btn-submit {
    margin-top: 20px;
    padding: 16px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--gold);
    border: none;
    color: var(--dark);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--gold-dark);
    transform: rotate(90deg);
}

/* Mobile Fixed Footer - Only show on mobile */
.mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border-top: 2px solid var(--gold);
    padding: 8px 5px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.mobile-footer a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    border-radius: 6px;
    margin: 0 3px;
}

.mobile-footer .call-btn {
    background: var(--gold);
    color: #0f0f1a;
}

.mobile-footer .enquiry-btn {
    background: #e74c3c;
    color: white;
}

.mobile-footer .whatsapp-btn {
    background: #25D366;
    color: white;
}

/* Show only on mobile (below 992px) */
@media (max-width: 992px) {
    .mobile-footer {
        display: flex;
    }
    
    .mobile-footer.show {
        animation: slideUpFooter 0.3s ease-out;
    }
}

@keyframes slideUpFooter {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Floating Side Buttons (Mobile) */
.floating-side-btns {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 70px;
    padding: 0 10px;
    z-index: 9998;
    justify-content: space-between;
    pointer-events: none;
}

.floating-side-btns a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.side-call-btn {
    background: var(--gold);
    color: #0f0f1a;
}

.side-whatsapp-btn {
    background: #25D366;
    color: white;
}

@media (max-width: 992px) {
    .floating-side-btns {
        display: flex;
    }
}

/* Desktop Floating WhatsApp */
.floating-whatsapp-desktop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
}

.floating-whatsapp-desktop a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 26px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: whatsappBounce 2s infinite;
}

@keyframes whatsappBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-whatsapp-desktop a:hover {
    transform: scale(1.1);
    animation: none;
}

/* Loader */
.loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.98);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.loader.active {
    display: flex !important;
    animation: fadeIn 0.3s ease;
}

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

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

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 169, 98, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-content p {
    font-size: 13px;
    color: var(--gray);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    z-index: 1001;
    padding: 90px 25px 25px;
}

.mobile-nav.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-nav a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.mobile-nav a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.mobile-nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 28px;
    color: var(--gold);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 { font-size: 48px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .floor-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 992px) {
    nav { display: none; }
    .mobile-menu { display: block; }
    .floating-whatsapp-desktop { display: none !important; }
    .header-whatsapp { display: none !important; }
    
    .about-grid,
    .developer-grid,
    .tour-container,
    .location-grid,
    .contact-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .lightbox-nav { display: none; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 768px) {
    html {
        overflow-y: scroll;
        position: relative;
        height: 100%;
    }
    
    body {
        overflow-x: hidden;
        overflow-y: auto;
        position: relative;
        padding-bottom: 75px !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .hero h1 { font-size: 38px; }
    .hero-subtitle { font-size: 15px; }
    .hero-cta { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    
    .section { padding: 60px 0; }
    .section-title { font-size: 30px; }
    
    .stats-grid,
    .highlights-grid,
    .amenities-grid,
    .pricing-grid,
    .floor-grid,
    .gallery-grid { grid-template-columns: 1fr; }
    
    .developer-stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    
    .about-image img { height: 300px; }
    .tour-video img { height: 280px; }
    .location-map { height: 300px; }
    .contact-form { padding: 30px; }
    
    .header-btn span,
    .header-whatsapp span { display: none; }
    .header-btn, .header-whatsapp { padding: 10px 14px; }
}

@media (max-width: 576px) {
    .modal-overlay {
        padding-top: 30px;
        align-items: flex-start;
    }
    
    body.modal-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        touch-action: none;
    }
    
    .modal-content {
        width: calc(100% - 20px);
        margin: 0 auto;
        animation: fadeInModal 0.3s ease-out;
    }
    
    .modal-header {
        padding: 20px 15px 15px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 15px 15px 25px;
    }
    
    .modal-body .form-group {
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .header-content { padding: 10px 15px; }
    .logo-icon { width: 40px; height: 40px; font-size: 18px; }
    .logo-text { font-size: 18px; }
    .mobile-footer a { padding: 12px; font-size: 12px; }
}
