/* ========================================
   Omaxe ESTATES - LANDING PAGE STYLES
   ======================================== */

:root {
    --gold: #B8860B;
    --gold-light: #D4A843;
    --gold-dark: #8B6914;
    --gold-glow: rgba(184, 134, 11, 0.25);
    --gold-subtle: rgba(184, 134, 11, 0.07);
    --gold-border: rgba(184, 134, 11, 0.2);
    --bg-body: #FAF9F6;
    --bg-section: #F3F0EA;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFFDF8;
    --bg-elevated: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #333333;
    --text-muted: #777777;
    --text-light-muted: #999999;
    --border-color: #E8E2D9;
    --border-light: #F0EBE3;
    --success: #22C55E;
    --error: #DC2626;
    --whatsapp: #25D366;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 30px rgba(184, 134, 11, 0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

input,
select,
textarea {
    font-family: var(--font-body);
    outline: none;
}

::selection {
    background: var(--gold);
    color: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold {
    color: var(--gold);
}

.section {
    padding: 60px 0;
}

.section-alt {
    background-color: var(--bg-section);
}

.section-header {
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-dark);
    background: rgb(255 255 255);
    border: 1px solid var(--gold-border);
    padding: 8px 22px;
    border-radius: 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 0px;
}

.section-divider {
    width: 100px;
    display: none;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 2px;
}

.section-subtitle {
    max-width: 600px;
    color: var(--text-muted);
    font-size: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 35px rgba(184, 134, 11, 0.3);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
    color: #fff;
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-submit .btn-submit-loader {
    display: none;
}

.btn-submit.loading .btn-submit-text {
    display: none;
}

.btn-submit.loading .btn-submit-loader {
    display: inline-flex;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-body);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 180px;
    margin-bottom: 24px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 10001;
    transition: width 0.1s linear;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    transition: all var(--transition-normal);
    background-color: rgb(6 6 6 / 18%);
}

#navbar.scrolled {
    background: rgb(6 6 6 / 18%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    width: auto;
    transition: height var(--transition-normal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.3px;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #e8dd88, var(--gold-dark));
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
    color: #fff;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--bg-card);
    z-index: 999;
    padding: 80px 30px 30px;
    transition: right var(--transition-normal);
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    background: var(--gold-subtle);
    color: var(--gold);
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.mobile-nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #fff;
}

/* Hero */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 10s ease;
}

#hero:hover .hero-bg img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.55) 0%, rgba(26, 26, 26, 0.40) 40%, rgba(26, 26, 26, 0.65) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
    border: 1px solid rgba(212, 168, 67, 0.6);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    background: rgba(184, 134, 11, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: #FFFFFF;
    line-height: 1.1;
}

.hero-gold {
    background: linear-gradient(135deg, #F0D678, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-location {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-location i {
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
}

.hero-price {
    color: #F0D678;
    font-weight: 700;
    font-size: 22px;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.hero-scroll-indicator a:hover {
    color: var(--gold-light);
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
}

/* Overview */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1ac4;
    margin-bottom: 2px;
}

.overview-text {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.9;
}

.overview-text-highlight {
    color: var(--gold-dark);
    font-style: italic;
    font-weight: 500;
    border-left: 3px solid var(--gold);
    padding-left: 16px;
    margin: 20px 0;
}

.overview-img-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.overview-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.overview-img-wrapper:hover img {
    transform: scale(1.05);
}

.overview-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Price */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-border);
    box-shadow: var(--shadow-gold);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card-featured {
    border-color: var(--gold-border);
    background: linear-gradient(180deg, var(--gold-subtle), var(--bg-card));
    transform: scale(1.02);
}

.price-card-featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.price-card-badge {
    position: absolute;
    top: 16px;
    right: -30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.price-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--gold-subtle);
    border-radius: var(--radius-md);
    font-size: 24px;
    color: var(--gold);
    transition: all var(--transition-normal);
}

.price-card:hover .price-card-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.price-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.price-card-size {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price-card-amount {
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.price-starting {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-dark);
}

.price-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light-muted);
    margin-top: 40px;
}

/* Floor Plan */
.floorplan-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.floorplan-main {
    display: flex;
}

.floorplan-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.floorplan-img-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    flex: 1;
    min-height: 199px;
}

.floorplan-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    filter: blur(5px) grayscale(30%);
    transition: filter 0.5s ease, transform 0.6s ease;
}

.floorplan-img-wrap:hover img {
    filter: blur(0) grayscale(0);
    transform: scale(1.04);
}

.floorplan-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.85));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.floorplan-img-wrap:hover .floorplan-label {
    opacity: 0;
}

.floorplan-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 3;
    transition: opacity 0.35s ease;
}

.floorplan-img-wrap:hover .floorplan-hover-overlay {
    opacity: 1;
}

.floorplan-hover-overlay .btn {
    transform: translateY(12px);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0;
}

.floorplan-img-wrap:hover .floorplan-hover-overlay .btn {
    transform: translateY(0);
    opacity: 1;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.amenity-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.amenity-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width var(--transition-normal);
}

.amenity-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-border);
    box-shadow: var(--shadow-gold);
    background: var(--bg-card-hover);
}

.amenity-card:hover::after {
    width: 80%;
}

.amenity-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--gold-subtle);
    border-radius: var(--radius-md);
    font-size: 22px;
    color: var(--gold);
    transition: all var(--transition-normal);
}

.amenity-card:hover .amenity-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    transform: scale(1.15) rotate(5deg);
}

.amenity-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.amenity-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.location-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.location-text {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all var(--transition-normal);
}

.location-feature:hover {
    border-color: var(--gold-border);
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.location-feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-subtle);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.location-feature-text strong {
    display: block;
    color: var(--gold-dark);
    font-size: 16px;
    font-weight: 700;
}

.location-feature-text span {
    font-size: 13px;
    color: var(--text-muted);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-color);
    height: 100%;
    min-height: 479px;
    transition: border-color var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.map-wrapper:hover {
    border-color: var(--gold-border);
}

.map-wrapper img {
    height: stretch;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-light);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-overlay i {
    font-size: 24px;
    color: var(--gold-light);
    transform: scale(0.5);
    transition: transform var(--transition-normal);
}

.gallery-overlay span {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--gold);
    color: #fff;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: #fff;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

/* Videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.video-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-border);
    box-shadow: var(--shadow-gold);
}

.video-thumb {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.video-card:hover .video-thumb img {
    transform: scale(1.08);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    z-index: 5;
    box-shadow: 0 4px 30px rgba(184, 134, 11, 0.4);
    transition: all var(--transition-normal);
}

.video-play-btn i {
    margin-left: 3px;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 6px 40px rgba(184, 134, 11, 0.55);
}

.video-play-btn::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid rgba(212, 168, 67, 0.4);
    border-radius: 50%;
    animation: playPulse 2s ease-in-out infinite;
}

.video-card-info {
    padding: 20px 24px;
    border-top: 1px solid var(--border-light);
}

.video-card-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.video-card-info p {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-card-info p i {
    color: var(--gold);
    font-size: 12px;
}

/* CTA */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #2A1F0A, #1A1408, #2A1F0A);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(184, 134, 11, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #3e3e3e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 36px;
    color: rgb(84 84 84 / 70%);
    font-size: 15px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.cta-contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-contact-item i {
    color: var(--gold-light);
}

.cta-contact-item a {
    color: rgb(96 96 96 / 85%);
    transition: color var(--transition-fast);
}

.cta-contact-item a:hover {
    color: var(--gold-light);
}

/* Footer */
.footer {
    background: #1A1A1A;
    padding: 64px 0 0;
    border-top: 1px solid #2A2A2A;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #2A2A2A;
}

.footer-logo {
    width: 160px;
    margin-bottom: 16px;
    /*filter: brightness(0) invert(1);*/
}

.footer-about p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2A2A2A;
    border: 1px solid #333;
    border-radius: var(--radius-sm);
    color: #999;
    font-size: 14px;
    transition: all var(--transition-normal);
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    font-size: 13px;
    color: #999;
    transition: all var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-contact h4 {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #999;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: #999;
    transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.footer-disclaimer {
    font-size: 11px !important;
    max-width: 600px;
    margin: 8px auto 0;
    line-height: 1.5;
}

/* Fixed Buttons */
.fixed-enquiry-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: none;
    padding: 16px 12px;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    box-shadow: -4px 0 20px rgba(184, 134, 11, 0.25);
    transition: all var(--transition-normal);
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.fixed-enquiry-btn:hover {
    padding-right: 18px;
    box-shadow: -6px 0 30px rgba(184, 134, 11, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #fff;
}

.fixed-enquiry-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.fixed-enquiry-icon {
    writing-mode: horizontal-tb;
    font-size: 18px;
    animation: enquiryPulse 2s ease-in-out infinite;
}

.fixed-enquiry-icon i.fas.fa-comment-dots {
    rotate: 90deg;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all var(--transition-normal);
    animation: whatsappFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--gold);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* Popups */
.center-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    backdrop-filter: blur(4px);
}

.center-overlay.active {
    opacity: 1;
    visibility: visible;
}

.center-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 440px;
    max-width: 92vw;
    max-height: 90vh;
    background: var(--bg-card);
    z-index: 2001;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gold-border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(184, 134, 11, 0.1);
}

.center-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.side-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.side-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-popup {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: var(--bg-card);
    z-index: 2001;
    overflow-y: auto;
    transition: right var(--transition-normal);
    border-left: 2px solid var(--gold-border);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
}

.side-popup.active {
    right: 0;
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.popup-close:hover {
    background: var(--error);
    border-color: var(--error);
    color: #fff;
}

.popup-header {
    padding: 36px 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.popup-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--gold-subtle);
    border-radius: var(--radius-md);
    font-size: 22px;
    color: var(--gold);
}

.popup-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.popup-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

.popup-body1 {
    padding: 24px 30px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    color: var(--text-light-muted);
    font-size: 14px;
    transition: color var(--transition-fast);
    z-index: 1;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 13px 14px 13px 42px;
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.input-wrapper input::placeholder {
    color: var(--text-light-muted);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
    background: var(--bg-card);
}

.input-wrapper:focus-within i {
    color: var(--gold);
}

.input-wrapper select {
    appearance: none;
    cursor: pointer;
}

.input-wrapper-textarea {
    align-items: flex-start;
}

.input-wrapper-textarea i {
    top: 14px;
}

.input-wrapper textarea {
    width: 100%;
    padding: 13px 14px 13px 42px;
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
    transition: all var(--transition-fast);
}

.input-wrapper textarea::placeholder {
    color: var(--text-light-muted);
}

.input-wrapper textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
    background: var(--bg-card);
}

.form-error {
    display: none;
    font-size: 11px;
    color: var(--error);
    margin-top: 4px;
    padding-left: 4px;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error .input-wrapper input,
.form-group.error .input-wrapper select,
.form-group.error .input-wrapper textarea {
    border-color: var(--error);
}

.popup-footer {
    padding: 16px 30px 24px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.popup-footer p {
    font-size: 11px;
    color: var(--text-light-muted);
    margin-bottom: 6px;
}

.popup-footer p i {
    color: var(--success);
    margin-right: 4px;
}

.popup-phone a {
    color: var(--gold) !important;
    font-weight: 600;
}

/* Reveal */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Keyframes */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes preloaderPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.3);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(212, 168, 67, 0);
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    20% {
        opacity: 0.5;
    }

    80% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

@keyframes enquiryPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes whatsappFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes playPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floorplan-grid {
        grid-template-columns: 1fr;
    }

    .floorplan-main .floorplan-img-wrap img {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content {
        padding: 100px 16px 60px;
    }

    .hero-title-line {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-img-wrapper img {
        height: 350px;
    }

    .price-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .price-card-featured {
        transform: none;
    }

    .price-card-featured:hover {
        transform: translateY(-8px);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .gallery-item-large {
        grid-column: span 2;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .fixed-enquiry-btn {
        padding: 12px 10px;
    }

    .fixed-enquiry-text {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .center-popup {
        max-width: 95vw;
        max-height: 92vh;
    }

    .side-popup {
        width: 100%;
        max-width: 100vw;
    }

    .popup-body1 {
        padding: 20px;
    }

    .popup-header {
        padding: 30px 20px 16px;
    }

    .popup-footer {
        padding: 14px 20px 20px;
    }

    .whatsapp-float {
        bottom: 16px;
        left: 16px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
    }

    .floorplan-side {
        flex-direction: column;
    }

    .floorplan-img-wrap img {
        min-height: 220px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-thumb {
        height: 240px;
    }

    .video-play-btn {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 50px 0;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item-large {
        grid-column: span 1;
    }

    .price-value {
        font-size: 24px;
    }

    .video-thumb {
        height: 200px;
    }
}