/* ========================================
   OPTIMIZED NEIGHBORHOOD DETAIL PAGE
   Compact, Premium, Less Scrolling
   ======================================== */

:root {
    --primary-color: #0d1b2a;
    --secondary-color: #d4af37;
    --accent-color: #e67e22;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-navy: linear-gradient(135deg, #0d1b2a 0%, #1a3c6d 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.neighborhood-detail-page {
    background: #f8f9fa;
}

/* Hide main content until JavaScript loads */
.neighborhood-detail-page .neighborhood-hero-premium,
.neighborhood-detail-page .properties-showcase-premium,
.neighborhood-detail-page .overview-section-compact,
.neighborhood-detail-page .amenities-section-tabs,
.neighborhood-detail-page .investment-reasons-compact,
.neighborhood-detail-page .final-cta-premium {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.neighborhood-detail-page.content-loaded .neighborhood-hero-premium,
.neighborhood-detail-page.content-loaded .properties-showcase-premium,
.neighborhood-detail-page.content-loaded .overview-section-compact,
.neighborhood-detail-page.content-loaded .amenities-section-tabs,
.neighborhood-detail-page.content-loaded .investment-reasons-compact,
.neighborhood-detail-page.content-loaded .final-cta-premium {
    opacity: 1;
}

/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */

.breadcrumb-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    margin-top: 90px; /* Below fixed header */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.breadcrumb-nav .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-link {
    color: #1a3c6d;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumb-link:hover {
    color: #d4af37;
}

.breadcrumb-link i {
    font-size: 0.85rem;
}

.breadcrumb-separator {
    color: #95a5a6;
    font-size: 0.9rem;
    user-select: none;
}

.breadcrumb-current {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========================================
   COMPACT HERO - 60VH instead of 85VH
   ======================================== */

.neighborhood-hero-premium {
    position: relative;
    height: 60vh;
    min-height: 500px;
    max-height: 750px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 90px; /* Account for fixed header */
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 27, 42, 0.75) 0%,
        rgba(13, 27, 42, 0.4) 40%,
        rgba(13, 27, 42, 0.85) 100%
    );
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0 1.5rem 0;
}

/* Back button removed - using breadcrumbs instead */

.hero-title-section {
    margin-bottom: 2.5rem;
}

.badge-premium {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #d4af37 100%);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(212, 175, 55, 0.8); }
}

.hero-title-premium {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0.75rem 0;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero-subtitle-premium {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

/* Hero Stats - Compact Grid */
.hero-stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFD700 0%, #d4af37 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

/* ========================================
   PROPERTIES SHOWCASE - NOW AT TOP
   ======================================== */

.properties-showcase-premium {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-header-center .content-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title-premium {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.75rem 0;
    font-family: 'Playfair Display', serif;
}

.section-title-premium i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    font-size: 0.9em;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.properties-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Property Card - Enhanced */
.property-card-showcase {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.property-card-showcase:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.property-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card-showcase:hover .property-image-container img {
    transform: scale(1.1);
}

.property-badge-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #d4af37 100%);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.property-card-content {
    padding: 1.75rem;
}

.property-title-showcase {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.property-location-showcase {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.property-features-row {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.25rem;
}

.feature-item-showcase {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.feature-item-showcase i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.property-price-row-showcase {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-price-showcase {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-view-property {
    width: 45px;
    height: 45px;
    background: var(--gradient-navy);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.btn-view-property:hover {
    background: var(--gradient-gold);
    color: var(--primary-color);
    transform: scale(1.1);
}

/* ========================================
   OVERVIEW SECTION - COMPACT
   ======================================== */

.overview-section-compact {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.overview-compact-layout {
    max-width: 900px;
    margin: 0 auto;
}

.overview-text {
    text-align: center;
    margin-bottom: 2.5rem;
}

.description-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 750px;
    margin: 1.5rem auto 0;
}

/* Highlights - Horizontal Pills */
.highlights-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.highlight-pill i {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.highlight-pill span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   AMENITIES - TABBED INTERFACE
   ======================================== */

.amenities-section-tabs {
    padding: 4rem 0;
    background: white;
}

.amenity-tabs-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.amenity-tabs {
    display: flex;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3c6d 100%);
    overflow-x: auto;
}

.amenity-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.amenity-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}

.amenity-tab.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.amenity-tab i {
    font-size: 1.5rem;
}

.amenity-tab span {
    font-size: 0.85rem;
    font-weight: 600;
}

.amenity-content-area {
    padding: 2.5rem;
    min-height: 250px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.amenity-tab-content {
    display: none;
}

.amenity-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.amenity-list-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenity-list-compact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.amenity-list-compact li:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateX(5px);
}

.amenity-list-compact li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ========================================
   INVESTMENT REASONS - COMPACT GRID
   ======================================== */

.investment-reasons-compact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reasons-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.reason-card-compact {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reason-card-compact:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.reason-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reason-card-compact h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.reason-card-compact p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   FINAL CTA - SIMPLIFIED
   ======================================== */

/* ========================================
   PREMIUM CTA SECTION - LUXURY REDESIGN
   ======================================== */

.final-cta-premium {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628 0%, #0d1b2a 50%, #1a3c6d 100%);
    overflow: hidden;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(26, 60, 109, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-center {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.cta-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 208, 63, 0.15) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.cta-badge-premium i {
    font-size: 1.1rem;
    animation: pulse-crown 2s ease-in-out infinite;
}

@keyframes pulse-crown {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-title-luxury {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle-luxury {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-cta-luxury-primary,
.btn-cta-luxury-secondary {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2.5rem;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.btn-cta-luxury-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-cta-luxury-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.6s;
}

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

.btn-cta-luxury-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.btn-cta-luxury-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-cta-luxury-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
}

.btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(13, 27, 42, 0.15);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-cta-luxury-primary .btn-icon-wrapper {
    background: rgba(13, 27, 42, 0.15);
    color: var(--primary-color);
}

.btn-cta-luxury-secondary .btn-icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.btn-main-text {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-cta-luxury-primary .btn-main-text {
    color: var(--primary-color);
}

.btn-cta-luxury-secondary .btn-main-text {
    color: white;
}

.btn-sub-text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.btn-cta-luxury-primary .btn-sub-text {
    color: rgba(13, 27, 42, 0.7);
}

.btn-cta-luxury-secondary .btn-sub-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Trust Indicators - Premium Cards */
.trust-indicators-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.trust-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 208, 63, 0.1) 100%);
    border-radius: 12px;
    font-size: 1.3rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.3px;
}

.trust-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ========================================
   GOLDEN VISA BADGE OVERLAY
   ======================================== */

.golden-visa-badge-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0d1b2a;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.7);
    }
}

/* ========================================
   NO PROPERTIES MESSAGE
   ======================================== */

.no-properties-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.no-properties-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-properties-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.no-properties-message h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-properties-message p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-contact-us {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-navy);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-contact-us:hover {
    background: var(--gradient-gold);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   PREMIUM SCROLLBAR STYLING
   ======================================== */

.amenity-tabs::-webkit-scrollbar {
    height: 4px;
}

.amenity-tabs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.amenity-tabs::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 2px;
}

.amenity-tabs::-webkit-scrollbar-thumb:hover {
    background: #f4d03f;
}

/* ========================================
   SMOOTH SCROLL BEHAVIOR
   ======================================== */

html {
    scroll-behavior: smooth;
}

/* ========================================
   PREMIUM VISUAL EFFECTS
   ======================================== */

/* Subtle fade-in animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.properties-showcase-premium,
.overview-section-compact,
.amenities-section-tabs,
.investment-reasons-compact,
.final-cta-premium {
    animation: fadeInUp 0.6s ease-out;
}

/* Premium gradient text effect */
.section-title-premium {
    position: relative;
}

.section-title-premium::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.overview-text .section-title-premium::after,
.investment-reasons-compact .section-title-premium::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Enhanced container max-widths for better readability */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Premium box shadow on scroll */
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================
   LOADING OVERLAY
   ======================================== */

.page-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3c6d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .neighborhood-hero-premium {
        height: auto;
        min-height: 600px;
        max-height: none;
        padding-top: 70px;
        padding-bottom: 2rem;
    }

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

    .hero-video {
        position: absolute;
        top: 0;
        left: 50%;
        width: auto;
        height: 100%;
        min-width: 100%;
        transform: translateX(-50%);
        object-fit: cover;
        object-position: center;
    }

    .breadcrumb-nav {
        padding: 0.75rem 0;
        margin-top: 70px; /* Adjusted for smaller mobile header */
    }
    
    .breadcrumb-link,
    .breadcrumb-separator,
    .breadcrumb-current {
        font-size: 0.8rem;
    }

    .hero-content-wrapper {
        padding: 1.5rem 0;
    }

    .hero-title-section {
        margin-bottom: 2rem;
    }

    .badge-premium {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .hero-title-premium {
        font-size: 2rem;
        margin: 0.5rem 0;
    }

    .hero-subtitle-premium {
        font-size: 1rem;
    }

    .hero-stats-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .hero-stat-card {
        padding: 1rem 1.25rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .section-title-premium {
        font-size: 2rem;
    }

    .properties-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .property-image-container {
        height: 240px;
    }

    .property-card-content {
        padding: 1.5rem;
    }

    .amenity-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .amenity-tab {
        flex: 0 0 auto;
        min-width: 120px;
        padding: 1rem 0.75rem;
    }

    .amenity-tab i {
        font-size: 1.3rem;
    }

    .amenity-tab span {
        font-size: 0.75rem;
    }

    .amenity-content-area {
        padding: 1.5rem;
        min-height: 200px;
    }

    .amenity-list-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .amenity-list-compact li {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }

    .reasons-grid-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Premium CTA Mobile Responsive */
    .final-cta-premium {
        padding: 3rem 0;
    }

    .cta-badge-premium {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .cta-title-luxury {
        font-size: 1.85rem;
        margin-bottom: 1rem;
    }

    .cta-subtitle-luxury {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons-group {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .btn-cta-luxury-primary,
    .btn-cta-luxury-secondary {
        min-width: 100%;
        padding: 1.25rem 1.75rem;
        gap: 1rem;
    }

    .btn-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .btn-main-text {
        font-size: 0.95rem;
    }

    .btn-sub-text {
        font-size: 0.75rem;
    }

    .trust-indicators-premium {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-card {
        padding: 1.25rem;
    }

    .trust-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .trust-title {
        font-size: 0.95rem;
    }

    .trust-desc {
        font-size: 0.8rem;
    }

    .overview-section-compact {
        padding: 2.5rem 0;
    }

    .section-title-premium {
        font-size: 1.75rem;
    }

    .description-text {
        font-size: 1rem;
    }

    .highlights-pills {
        gap: 0.5rem;
    }

    .highlight-pill {
        padding: 0.6rem 1.2rem;
    }

    .highlight-pill i {
        font-size: 1.1rem;
    }

    .highlight-pill span {
        font-size: 0.85rem;
    }

    .amenities-section-tabs {
        padding: 3rem 0;
    }

    .investment-reasons-compact {
        padding: 3rem 0;
    }

    .reason-card-compact {
        padding: 1.5rem;
    }

    .reason-card-compact h3 {
        font-size: 1.1rem;
    }

    .reason-card-compact p {
        font-size: 0.9rem;
    }

    .final-cta-premium {
        padding: 3rem 0;
    }

    .cta-icon-mega {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .cta-content-center h2 {
        font-size: 1.75rem;
    }

    .cta-content-center p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons-group {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .btn-final-cta-primary,
    .btn-final-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .trust-item {
        font-size: 0.85rem;
    }
}

/* ========================================
   EXTRA SMALL MOBILE (< 480px)
   ======================================== */

@media (max-width: 480px) {
    .neighborhood-hero-premium {
        min-height: 550px;
        padding-top: 70px;
    }

    .hero-title-premium {
        font-size: 1.75rem;
    }

    .hero-subtitle-premium {
        font-size: 0.95rem;
    }

    .section-header-center {
        margin-bottom: 2rem;
    }

    .section-title-premium {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .content-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}
