/* =====================================================
   PRESTIGE THEME - LUXURY STYLING FOR PORTO FRAMEWORK
   ===================================================== */

/* =====================================================
   ROOT VARIABLES - LUXURY PALETTE
   ===================================================== */
:root {
    /* Prestige Luxury Colors */
    --prestige-primary: #1a1a1a;
    --prestige-gold: #d4af37;
    --prestige-dark: #0a0a0a;
    --prestige-light: #f8f9fa;
    
    /* Typography */
    --prestige-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --prestige-font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing & Layout */
    --prestige-radius: 0;
    --prestige-radius-large: 0;
    
    /* Effects */
    --prestige-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --prestige-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --prestige-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   GLOBAL LUXURY ENHANCEMENTS
   ===================================================== */

/* Enhanced body typography */
body {
    font-family: var(--prestige-font-primary);
    font-weight: 400;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* =====================================================
   PRESTIGE TYPOGRAPHY SYSTEM - CONSISTENT ACROSS THEME
   ===================================================== */

/* Primary Headings - Page title (slightly larger than H2) */
h1 {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: 700 !important;
    color: var(--prestige-primary, #1a1a1a) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 2rem !important;
}

/* Section Headings - Block titles (H1-like styling) */
h2 {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 700 !important;
    color: var(--prestige-primary, #1a1a1a) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1.5rem !important;
    position: relative;
    display: inline-block;
}

/* Section subtitle accent line */
h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--bs-primary, #007bff);
}

/* Subsection Headings */
h3 {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    font-weight: 600 !important;
    color: var(--prestige-primary, #1a1a1a) !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
}

/* Content Headings */
h4 {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(1.1rem, 2vw, 1.25rem) !important;
    font-weight: 600 !important;
    color: var(--prestige-primary, #1a1a1a) !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
}

/* Small Headings */
h5, h6 {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(1rem, 1.8vw, 1.1rem) !important;
    font-weight: 500 !important;
    color: var(--prestige-primary, #1a1a1a) !important;
    line-height: 1.5 !important;
    margin-bottom: 0.5rem !important;
}

/* Enhanced buttons */
.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 0 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--prestige-transition);
    box-shadow: var(--prestige-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--prestige-shadow-hover);
}

/* Enhanced cards */
.card {
    border: none;
    border-radius: 0 !important;
    box-shadow: var(--prestige-shadow);
    transition: var(--prestige-transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--prestige-shadow-hover);
    transform: translateY(-5px);
}

/* Luxury glassmorphism effect for overlays */
.glass-overlay {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}




/* =====================================================
   PRESTIGE BROCHURE COLOR SYSTEM - PREMIUM AESTHETICS
   ===================================================== */

/* Gradient backgrounds for brochure sections */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--bs-primary, #007bff) 0%, var(--bs-dark, #343a40) 100%) !important;
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--bs-secondary, #6c757d) 0%, var(--bs-dark, #343a40) 100%) !important;
}

.bg-gradient-tertiary {
    background: linear-gradient(135deg, var(--bs-success, #28a745) 0%, var(--bs-primary, #007bff) 100%) !important;
}

.bg-gradient-quaternary {
    background: linear-gradient(135deg, var(--bs-warning, #ffc107) 0%, var(--bs-secondary, #6c757d) 100%) !important;
}

/* Enhanced text colors for brochure sections */
.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Brochure section styling */
.prestige-brochure-section {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.prestige-brochure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Brochure Feature Grid */
.prestige-brochure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

/* Individual Brochure Features */
.prestige-brochure-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out both;
}

.prestige-brochure-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Brochure Icons */
.prestige-brochure-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.prestige-brochure-icon.brochure-primary {
    background: linear-gradient(135deg, var(--bs-primary, #007bff) 0%, var(--bs-info, #17a2b8) 100%);
}

.prestige-brochure-icon.brochure-secondary {
    background: linear-gradient(135deg, var(--bs-secondary, #6c757d) 0%, var(--bs-dark, #343a40) 100%);
}

.prestige-brochure-icon.brochure-tertiary {
    background: linear-gradient(135deg, var(--bs-tertiary, #6f42c1) 0%, var(--bs-info, #17a2b8) 100%);
}

.prestige-brochure-icon.brochure-quaternary {
    background: linear-gradient(135deg, var(--bs-quaternary, #fd7e14) 0%, var(--bs-danger, #dc3545) 100%);
}

.prestige-brochure-feature:hover .prestige-brochure-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Brochure Text */
.prestige-brochure-text {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--prestige-primary, #1a1a1a);
    line-height: 1.4;
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .prestige-brochure-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .prestige-brochure-feature {
        padding: 1rem;
    }
    
    .prestige-brochure-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .prestige-brochure-text {
        font-size: 1rem;
    }
}

/* =====================================================
   PROPERTY PHOTOS GALLERY - CONSISTENT SIZING
   ===================================================== */

/* Ensure all gallery images have consistent sizing */
.portfolio-list .thumb-info-wrapper {
    position: relative;
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    overflow: hidden;
}

.portfolio-list .thumb-info-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .portfolio-list .thumb-info-wrapper {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .portfolio-list .thumb-info-wrapper {
        height: 180px;
    }
}

@media (max-width: 575px) {
    .portfolio-list .thumb-info-wrapper {
        height: 160px;
    }
}

/* =====================================================
   PROPERTY MAP COMPONENT - SEAMLESS DESIGN
   ===================================================== */

/* Map Section Styling */
.prestige-map-section {
    position: relative;
    padding: 0;
    margin: 0;
    background: var(--prestige-light, #f8f9fa);
    min-height: 70vh;
    overflow: hidden;
}

.prestige-map-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%);
    backdrop-filter: blur(15px);
    padding: 2rem 0;
    box-shadow: var(--prestige-shadow);
}

.prestige-map-container {
    width: 100%;
    height: 70vh;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

/* Nearby Places Section - Remove all spacing for seamless connection */
.prestige-nearby-places-section {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: linear-gradient(135deg, var(--prestige-light) 0%, #ffffff 100%);
    position: relative;
}

/* Header Section */
.prestige-nearby-header {
    background: linear-gradient(135deg, var(--prestige-light, #f8f9fa) 0%, #ffffff 100%);
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    min-height: 25vh;
    display: flex;
    align-items: center;
}

.prestige-nearby-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.prestige-nearby-title {
    position: relative;
    z-index: 2;
}

/* Uses global H2 styles */

/* Uses global paragraph styles */

/* Content Section */
.prestige-nearby-content {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent;
}

.prestige-nearby-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Category Styling */
.prestige-nearby-category {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 0 !important;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.prestige-nearby-category:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Category Headers */
.prestige-category-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(248, 249, 250, 0.9);
    border-bottom: 2px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prestige-category-header:hover {
    background: rgba(255, 255, 255, 1);
    border-bottom-color: var(--bs-primary, #007bff);
}

.prestige-category-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--prestige-gold), transparent);
    opacity: 0.1;
    transition: right 0.6s ease;
}

.prestige-category-header:hover::after {
    right: 100%;
}

.prestige-category-icon {
    width: 60px;
    height: 60px;
    background: var(--bs-primary, #007bff);
    color: white;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--prestige-shadow, 0 4px 20px rgba(0, 0, 0, 0.1));
}

.education-category .prestige-category-icon {
    background: var(--bs-primary, #007bff);
}

.transport-category .prestige-category-icon {
    background: var(--bs-secondary, #6c757d);
}

.healthcare-category .prestige-category-icon {
    background: var(--bs-tertiary, #6f42c1);
}

.lifestyle-category .prestige-category-icon {
    background: var(--bs-quaternary, #fd7e14);
}

.prestige-category-header:hover .prestige-category-icon {
    transform: scale(1.1);
    box-shadow: var(--prestige-shadow-hover);
}

.prestige-category-info {
    flex: 1;
}

.prestige-category-info h3 {
    font-family: var(--prestige-font-display) !important;
    font-size: clamp(1.2rem, 2.2vw, 1.4rem) !important;
    font-weight: 600 !important;
    color: var(--prestige-primary, #1a1a1a) !important;
    margin-bottom: 0.3rem !important;
    text-shadow: none;
}

.prestige-category-info p {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem) !important;
    color: #666 !important;
    margin: 0 !important;
}

.prestige-category-toggle {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.prestige-category-toggle:hover {
    transform: scale(1.2);
}

/* Category Content */
.prestige-category-content {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    display: none;
}

.prestige-category-content.active {
    display: block;
}

/* Subcategory Styling */
.prestige-subcategory {
    margin-bottom: 2rem;
}

.prestige-subcategory h4 {
    font-family: var(--prestige-font-primary, Inter, sans-serif) !important;
    font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
    font-weight: 600 !important;
    color: var(--prestige-primary, #1a1a1a) !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 2px solid var(--bs-primary, #007bff);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.education-category .prestige-subcategory h4 {
    border-bottom-color: var(--bs-primary, #007bff);
}

.transport-category .prestige-subcategory h4 {
    border-bottom-color: var(--bs-secondary, #6c757d);
}

.healthcare-category .prestige-subcategory h4 {
    border-bottom-color: var(--bs-tertiary, #6f42c1);
}

.lifestyle-category .prestige-subcategory h4 {
    border-bottom-color: var(--bs-quaternary, #fd7e14);
}

/* Places List */
.prestige-places-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Place Items */
.prestige-place-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(248, 249, 250, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.prestige-place-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.prestige-place-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--prestige-gold);
    transition: width 0.3s ease;
}

.prestige-place-item:hover::before {
    width: 4px;
}

.prestige-place-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.prestige-place-icon {
    width: 40px;
    height: 40px;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
}

.prestige-place-icon.education {
    background: var(--bs-primary, #007bff);
    color: white;
}

.prestige-place-icon.transport {
    background: var(--bs-secondary, #6c757d);
    color: white;
}

.prestige-place-icon.healthcare {
    background: var(--bs-tertiary, #6f42c1);
    color: white;
}

.prestige-place-icon.lifestyle {
    background: var(--bs-quaternary, #fd7e14);
    color: white;
}

.prestige-place-item:hover .prestige-place-icon {
    transform: scale(1.1);
}

.prestige-place-details {
    display: flex;
    flex-direction: column;
}

.prestige-place-name {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(1rem, 1.8vw, 1.1rem) !important;
    font-weight: 600 !important;
    color: var(--prestige-primary) !important;
    margin-bottom: 0.2rem;
}

.prestige-place-type {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem) !important;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prestige-place-distance {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(0.9rem, 1.6vw, 1rem) !important;
    font-weight: 700 !important;
    padding: 0.5rem 1rem;
    border-radius: 0 !important;
    color: white;
    text-align: center;
    min-width: 70px;
    transition: all 0.3s ease;
}

.prestige-place-distance.education {
    background: var(--bs-primary, #007bff);
    color: white !important;
}

.prestige-place-distance.transport {
    background: var(--bs-secondary, #6c757d);
    color: white !important;
}

.prestige-place-distance.healthcare {
    background: var(--bs-tertiary, #6f42c1);
    color: white !important;
}

.prestige-place-distance.lifestyle {
    background: var(--bs-quaternary, #fd7e14);
    color: white !important;
}

.prestige-place-item:hover .prestige-place-distance {
    transform: scale(1.05);
}

/* Property Map - Responsive Design */
@media (max-width: 992px) {
    .prestige-nearby-header {
        padding: 0 !important;
        min-height: 20vh;
    }
    
    .prestige-category-header {
        padding: 1.2rem;
    }
    
    .prestige-category-icon {
        width: 45px;
        height: 45px;
        margin-right: 1rem;
    }
}

@media (max-width: 768px) {
    .prestige-nearby-content {
        padding: 0 !important;
    }
    
    .prestige-category-content {
        padding: 1rem;
    }
    
    .prestige-place-item {
        padding: 0.8rem 1rem;
    }
    
    .prestige-place-icon {
        width: 35px;
        height: 35px;
        margin-right: 0.8rem;
    }
    
    .prestige-nearby-header {
        min-height: 15vh;
    }
    
    .prestige-category-header {
        padding: 1rem;
    }
    
    .prestige-category-icon {
        width: 40px;
        height: 40px;
    }
}

/* =====================================================
   PRESTIGE CALL-TO-ACTION COMPONENT
   ===================================================== */

/* Enhanced Heading Typography */
/* Uses global H3 styles for heading */

/* Enhanced Paragraph Typography */
.prestige-cta-paragraph {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0.2px !important;
}

/* Enhanced Button Typography */
.prestige-cta-btn {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    border-radius: 0 !important;
}

/* Responsive Typography */
@media (max-width: 768px) {
    /* CTA heading uses global responsive H1/H2 styles */
    
    .prestige-cta-paragraph {
        font-size: clamp(1.1rem, 4vw, 1.4rem) !important;
    }
    
    .prestige-cta-btn {
        font-size: clamp(1rem, 3.5vw, 1.2rem) !important;
    }
}

@media (max-width: 576px) {
    /* CTA heading uses global responsive H1/H2 styles */
    
    .prestige-cta-paragraph {
        font-size: clamp(1rem, 4.5vw, 1.3rem) !important;
    }
}

/* =====================================================
   PRESTIGE PROPERTY DESCRIPTION COMPONENT
   ===================================================== */

/* Remove spacing between all sections for seamless design */
.section {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.section + .section {
    border-top: none !important;
}

/* Remove container spacing */
.container.mb-0,
.container.py-5,
.container.pb-2 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

/* Enhanced Property Description Hero Section */
.prestige-property-description-hero {
    min-height: 80vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

.prestige-property-description-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.85) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(26, 26, 26, 0.75) 100%);
    z-index: 1;
}

.prestige-property-description-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 2;
    animation: subtleFloat 30s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-5px, -5px) rotate(0.5deg); }
    66% { transform: translate(5px, -3px) rotate(-0.5deg); }
}

.prestige-property-description-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1600px;
    margin: 0 auto;
    opacity: 1;
    width: 100%;
    padding: 2rem;
}

/* Enhanced Typography */
.prestige-property-description-content h4 {
    font-family: var(--prestige-font-display) !important;
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    color: white !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6) !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
}

.prestige-property-description-content h5 {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem) !important;
    font-weight: 400 !important;
    color: rgba(212, 175, 55, 0.95) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 2rem !important;
    opacity: 0.9 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4) !important;
}

.prestige-property-description-content p {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Enhanced container styling - Full Width Fluid */
.prestige-property-description-hero .container {
    position: relative;
    z-index: 3;
    max-width: 1400px !important;
    padding: 0 3rem !important;
    width: 100%;
    margin: 0 auto;
}

.prestige-property-description-hero .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .prestige-property-description-hero {
        min-height: 70vh;
    }
    
    .prestige-property-description-hero .container {
        padding: 0 2rem !important;
    }
    
    .prestige-property-description-content {
        padding: 1.5rem;
    }
    
    .prestige-property-description-content h4 {
        font-size: clamp(2.2rem, 7vw, 3.8rem) !important;
        margin-bottom: 1.2rem !important;
    }
    
    .prestige-property-description-content h5 {
        font-size: clamp(1.1rem, 3vw, 1.6rem) !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .prestige-property-description-content p {
        font-size: clamp(1rem, 3vw, 1.3rem) !important;
    }
}

@media (max-width: 768px) {
    .prestige-property-description-hero {
        min-height: 60vh;
        background-attachment: scroll;
    }
    
    .prestige-property-description-hero .container {
        padding: 0 1.5rem !important;
    }
    
    .prestige-property-description-hero .col {
        min-height: 55vh;
        padding: 2rem 0 0 0 !important;
    }
    
    .prestige-property-description-content {
        padding: 1rem;
    }
    
    .prestige-property-description-content h4 {
        font-size: clamp(2rem, 8vw, 3.2rem) !important;
    }
    
    .prestige-property-description-content h5 {
        font-size: clamp(1rem, 4vw, 1.4rem) !important;
        letter-spacing: 1px !important;
    }
    
    .prestige-property-description-content p {
        font-size: clamp(0.95rem, 4vw, 1.2rem) !important;
    }
}

@media (max-width: 576px) {
    .prestige-property-description-hero .container {
        padding: 0 1rem !important;
    }
    
    .prestige-property-description-hero .col {
        padding: 1.5rem 0 0 0 !important;
    }
    
    .prestige-property-description-content {
        padding: 0.5rem;
        max-width: 100%;
    }
}

/* =====================================================
   PRESTIGE PROPERTY FEATURES COMPONENT
   ===================================================== */

/* Section Structure */
.prestige-features-section {
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff;
    position: relative;
}

/* Minimal Header */
.prestige-features-header {
    padding: 4rem 0 2rem 0;
    background: #ffffff;
    text-align: center;
}

.prestige-header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main title uses global H1 styles */

.prestige-main-subtitle {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
    font-weight: 400 !important;
    color: #6c757d !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

/* Features Content */
.prestige-features-content {
    padding: 2rem 0 4rem 0;
    background: #ffffff;
}

/* Flat Categories */
.prestige-flat-category {
    padding: 3rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.prestige-flat-category:last-child {
    border-bottom: none;
}

/* Section Titles */
.prestige-flat-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Section titles use global H2 styles */
.prestige-flat-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.prestige-flat-section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Features List */
.prestige-flat-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Flat Feature Items */
.prestige-flat-feature {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.prestige-flat-feature:hover {
    background: rgba(248, 249, 250, 0.5);
    transform: translateX(8px);
}

.prestige-flat-feature:hover .prestige-flat-line {
    width: 100%;
}

/* Flat Icons */
.prestige-flat-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.prestige-flat-icon.primary {
    color: var(--bs-primary, #007bff);
}

.prestige-flat-icon.secondary {
    color: var(--bs-secondary, #6c757d);
}

.prestige-flat-icon.tertiary {
    color: var(--bs-tertiary, #6f42c1);
}

.prestige-flat-icon.quaternary {
    color: var(--bs-quaternary, #fd7e14);
}

.prestige-flat-feature:hover .prestige-flat-icon {
    transform: scale(1.2);
}

/* Flat Text */
.prestige-flat-text {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem) !important;
    font-weight: 500 !important;
    color: var(--prestige-primary, #1a1a1a) !important;
    line-height: 1.4 !important;
    flex: 1;
}

/* Flat Line Indicator */
.prestige-flat-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--bs-primary, #007bff);
    transition: width 0.4s ease;
}

.prestige-flat-feature:nth-child(4n+1) .prestige-flat-line {
    background: var(--bs-primary, #007bff);
}

.prestige-flat-feature:nth-child(4n+2) .prestige-flat-line {
    background: var(--bs-secondary, #6c757d);
}

.prestige-flat-feature:nth-child(4n+3) .prestige-flat-line {
    background: var(--bs-tertiary, #6f42c1);
}

.prestige-flat-feature:nth-child(4n+4) .prestige-flat-line {
    background: var(--bs-quaternary, #fd7e14);
}

/* Responsive Design */
@media (max-width: 992px) {
    .prestige-flat-features-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .prestige-features-header {
        padding: 3rem 0 1rem 0;
    }
    
    .prestige-header-content {
        padding: 0 1rem;
    }
    
    .prestige-flat-category {
        padding: 2rem 0;
    }
    
    .prestige-flat-section-title {
        margin-bottom: 2rem;
    }
    
    .prestige-flat-features-list {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .prestige-flat-feature {
        padding: 1.25rem 1rem;
    }
    
    .prestige-flat-icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
        margin-right: 0.75rem;
    }
}

@media (max-width: 576px) {
    .prestige-features-header {
        padding: 2rem 0 1rem 0;
    }
    
    .prestige-flat-category {
        padding: 1.5rem 0;
    }
    
    .prestige-flat-feature {
        padding: 1rem 0.5rem;
    }
    
    .prestige-flat-icon {
        margin-right: 0.5rem;
    }
}

/* =====================================================
   PRESTIGE PROPERTY DETAILS COMPONENT
   ===================================================== */

/* Remove all spacing for seamless connection */
.prestige-details-section {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: linear-gradient(135deg, var(--prestige-light, #f8f9fa) 0%, #ffffff 100%);
    position: relative;
}

/* Hero Stats Section */
.prestige-hero-stats {
    background: linear-gradient(135deg, var(--prestige-primary, #1a1a1a) 0%, var(--prestige-dark, #0a0a0a) 100%);
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.prestige-hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, var(--prestige-gold, #d4af37) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.08;
    z-index: 1;
}

.prestige-stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    width: 100%;
}

.prestige-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    min-height: 200px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.prestige-stat-item:last-child {
    border-right: none;
}

.prestige-stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--prestige-gold, #d4af37);
    transition: width 0.4s ease;
}

.prestige-stat-item:hover::before {
    width: 80%;
}

.prestige-stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.prestige-stat-icon {
    font-size: 2.5rem;
    color: var(--prestige-gold, #d4af37);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.prestige-stat-item:hover .prestige-stat-icon {
    transform: scale(1.1);
}

.prestige-stat-value {
    font-family: var(--prestige-font-display, 'Playfair Display', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.prestige-stat-label {
    font-family: var(--prestige-font-primary, Inter, sans-serif);
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Details Grid Section */
.prestige-details-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--prestige-light, #f8f9fa) 0%, #ffffff 50%, var(--prestige-light, #f8f9fa) 100%);
    position: relative;
    overflow: hidden;
}

.prestige-details-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.5;
    z-index: 1;
}

.prestige-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

.prestige-detail-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 0 !important;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 35px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.prestige-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.prestige-detail-card:hover::before {
    left: 100%;
}

.prestige-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 1);
}

.prestige-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.prestige-detail-icon {
    width: 50px;
    height: 50px;
    background: var(--bs-primary, #007bff);
    color: white;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.prestige-detail-card:hover .prestige-detail-icon {
    transform: scale(1.1);
    background: var(--prestige-gold, #d4af37);
    color: var(--prestige-primary, #1a1a1a);
}

/* Uses global H4/H5 styles */
.prestige-detail-title {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.prestige-detail-content {
    font-family: var(--prestige-font-primary, Inter, sans-serif);
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

/* Section Title Styling */
/* Uses global H1 styles */
.prestige-section-title {
    position: relative;
    display: inline-block;
}

.prestige-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--prestige-gold, #d4af37) 0%, var(--bs-primary, #007bff) 100%);
}

.prestige-section-subtitle {
    font-family: var(--prestige-font-primary, Inter, sans-serif);
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 400;
    color: rgba(26, 26, 26, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .prestige-hero-stats {
        min-height: 40vh;
    }
    
    .prestige-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prestige-stat-item {
        padding: 2rem 1rem;
        min-height: 150px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .prestige-stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .prestige-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .prestige-detail-card {
        padding: 2rem;
    }
    
    .prestige-details-content {
        padding: 3rem 0;
    }
    
    /* Section title uses global responsive H1 styles */
    
    .prestige-section-subtitle {
        font-size: clamp(1rem, 3vw, 1.1rem);
    }
}

@media (max-width: 480px) {
    .prestige-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .prestige-stat-item {
        border-right: none;
    }
}

/* =====================================================
   PRESTIGE PROPERTY MAP COMPONENT
   ===================================================== */

/* Map Base Styling */
#map { 
    height: 600px; 
    width: 100%;
    border-radius: 0 !important;
}

.prestige-map-section {
    padding: 0;
    margin: 0;
}

.prestige-map-container {
    padding: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
}

.prestige-map-title {
    background: linear-gradient(135deg, var(--prestige-light, #f8f9fa) 0%, #ffffff 100%);
    color: var(--prestige-primary, #1a1a1a);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.prestige-map-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}

/* Amenity Cards */
.prestige-amenity-card {
    border: none;
    border-radius: 0 !important;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.prestige-amenity-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.prestige-amenity-header {
    background: #1a1a1a;
    color: white;
    padding: 20px;
    border-bottom: 3px solid;
}

.prestige-amenity-body {
    padding: 0;
}

.prestige-amenity-item {
    background: white;
    border: none;
    border-radius: 0 !important;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
}

.prestige-amenity-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    border-left: 4px solid;
}

.prestige-amenity-item:last-child {
    border-bottom: none;
}

.prestige-amenity-content {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.prestige-amenity-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.prestige-amenity-text {
    flex-grow: 1;
}

.prestige-amenity-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
    font-size: 16px;
}

.prestige-distance-badge {
    background: #1a1a1a;
    color: white;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 0 !important;
    font-size: 14px;
}

/* Accordion Design */
.prestige-accordion {
    border: none;
    border-radius: 0 !important;
    box-shadow: none;
}

.prestige-accordion-item {
    border: none;
    border-radius: 0 !important;
    margin-bottom: 2px;
    overflow: hidden;
}

.prestige-accordion-header {
    background: #1a1a1a;
    border: none;
    border-radius: 0 !important;
    padding: 0;
    margin-bottom: 0;
}

.prestige-accordion-button {
    background: #1a1a1a !important;
    color: white !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.prestige-accordion-button:not(.collapsed) {
    background: #2c2c2c !important;
    color: white !important;
    transform: scale(1.02);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}

.prestige-accordion-button:hover {
    background: #333 !important;
    color: white !important;
}

.prestige-accordion-button:focus {
    border: none !important;
    box-shadow: none !important;
}

.prestige-accordion-button::after {
    content: '+';
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: auto;
    height: auto;
    margin: 0;
}

.prestige-accordion-button:not(.collapsed)::after {
    content: '−';
    transform: rotate(0deg);
}

.prestige-accordion-body {
    background: white;
    border: none;
    border-radius: 0 !important;
    padding: 0;
}

.prestige-accordion-content {
    padding: 0;
}

.prestige-amenity-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.prestige-amenity-list-item {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.prestige-amenity-list-item:last-child {
    border-bottom: none;
}

.prestige-amenity-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    background: white;
    border: none;
    width: 100%;
    cursor: pointer;
}

.prestige-amenity-link:hover {
    background: #f8f9fa;
    transform: translateX(10px);
    color: inherit;
    text-decoration: none;
}

.prestige-amenity-info {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.prestige-amenity-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.prestige-amenity-details {
    flex-grow: 1;
}

.prestige-amenity-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.3;
}

.prestige-amenity-subtitle {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.prestige-distance {
    background: #1a1a1a;
    color: white;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0 !important;
    min-width: 80px;
    text-align: center;
}

/* Category specific colors */
.education .prestige-amenity-icon-wrapper { color: #007bff; }
.education .prestige-amenity-link:hover { border-left: 4px solid #007bff; }

.transport .prestige-amenity-icon-wrapper { color: #28a745; }
.transport .prestige-amenity-link:hover { border-left: 4px solid #28a745; }

.healthcare .prestige-amenity-icon-wrapper { color: #dc3545; }
.healthcare .prestige-amenity-link:hover { border-left: 4px solid #dc3545; }

.lifestyle .prestige-amenity-icon-wrapper { color: #17a2b8; }
.lifestyle .prestige-amenity-link:hover { border-left: 4px solid #17a2b8; }

/* Nearby Places Section */
.prestige-nearby-places-section {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: linear-gradient(135deg, var(--prestige-light) 0%, #ffffff 100%);
    position: relative;
}

/* Header Section */
.prestige-nearby-header {
    background: linear-gradient(135deg, var(--prestige-light, #f8f9fa) 0%, #ffffff 100%);
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    min-height: 25vh;
    display: flex;
    align-items: center;
}

.prestige-nearby-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.prestige-nearby-title {
    position: relative;
    z-index: 2;
}

/* Uses global H2 styles */

/* Uses global paragraph styles */

/* Content Section */
.prestige-nearby-content {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent;
}

.prestige-nearby-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Category Styling */
.prestige-nearby-category {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 0 !important;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.prestige-nearby-category:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Category Headers */
.prestige-category-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(248, 249, 250, 0.9);
    border-bottom: 2px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prestige-category-header:hover {
    background: rgba(255, 255, 255, 1);
    border-bottom-color: var(--bs-primary, #007bff);
}

.prestige-category-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--prestige-gold), transparent);
    opacity: 0.1;
    transition: right 0.6s ease;
}

.prestige-category-header:hover::after {
    right: 100%;
}

.prestige-category-icon {
    width: 60px;
    height: 60px;
    background: var(--bs-primary, #007bff);
    color: white;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--prestige-shadow, 0 4px 20px rgba(0, 0, 0, 0.1));
}

.education-category .prestige-category-icon {
    background: var(--bs-primary, #007bff);
}

.transport-category .prestige-category-icon {
    background: var(--bs-secondary, #6c757d);
}

.healthcare-category .prestige-category-icon {
    background: var(--bs-tertiary, #6f42c1);
}

.lifestyle-category .prestige-category-icon {
    background: var(--bs-quaternary, #fd7e14);
}

.prestige-category-header:hover .prestige-category-icon {
    transform: scale(1.1);
    box-shadow: var(--prestige-shadow-hover);
}

.prestige-category-info {
    flex: 1;
}

.prestige-category-info h3 {
    font-family: var(--prestige-font-display) !important;
    font-size: clamp(1.2rem, 2.2vw, 1.4rem) !important;
    font-weight: 600 !important;
    color: var(--prestige-primary, #1a1a1a) !important;
    margin-bottom: 0.3rem !important;
    text-shadow: none;
}

.prestige-category-info p {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem) !important;
    color: #666 !important;
    margin: 0 !important;
}

.prestige-category-toggle {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.prestige-category-toggle:hover {
    transform: scale(1.2);
}

/* Category Content */
.prestige-category-content {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    display: none;
}

.prestige-category-content.active {
    display: block;
}

/* Subcategory Styling */
.prestige-subcategory {
    margin-bottom: 2rem;
}

.prestige-subcategory h4 {
    font-family: var(--prestige-font-primary, Inter, sans-serif) !important;
    font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
    font-weight: 600 !important;
    color: var(--prestige-primary, #1a1a1a) !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 2px solid var(--bs-primary, #007bff);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.education-category .prestige-subcategory h4 {
    border-bottom-color: var(--bs-primary, #007bff);
}

.transport-category .prestige-subcategory h4 {
    border-bottom-color: var(--bs-secondary, #6c757d);
}

.healthcare-category .prestige-subcategory h4 {
    border-bottom-color: var(--bs-tertiary, #6f42c1);
}

.lifestyle-category .prestige-subcategory h4 {
    border-bottom-color: var(--bs-quaternary, #fd7e14);
}

/* Places List */
.prestige-places-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Place Items */
.prestige-place-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(248, 249, 250, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.prestige-place-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.prestige-place-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--prestige-gold);
    transition: width 0.3s ease;
}

.prestige-place-item:hover::before {
    width: 4px;
}

.prestige-place-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.prestige-place-icon {
    width: 40px;
    height: 40px;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
}

.prestige-place-icon.education {
    background: var(--bs-primary, #007bff);
    color: white;
}

.prestige-place-icon.transport {
    background: var(--bs-secondary, #6c757d);
    color: white;
}

.prestige-place-icon.healthcare {
    background: var(--bs-tertiary, #6f42c1);
    color: white;
}

.prestige-place-icon.lifestyle {
    background: var(--bs-quaternary, #fd7e14);
    color: white;
}

.prestige-place-item:hover .prestige-place-icon {
    transform: scale(1.1);
}

.prestige-place-details {
    display: flex;
    flex-direction: column;
}

.prestige-place-name {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(1rem, 1.8vw, 1.1rem) !important;
    font-weight: 600 !important;
    color: var(--prestige-primary) !important;
    margin-bottom: 0.2rem;
}

.prestige-place-type {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem) !important;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prestige-place-distance {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(0.9rem, 1.6vw, 1rem) !important;
    font-weight: 700 !important;
    padding: 0.5rem 1rem;
    border-radius: 0 !important;
    color: white;
    text-align: center;
    min-width: 70px;
    transition: all 0.3s ease;
}

.prestige-place-distance.education {
    background: var(--bs-primary, #007bff);
    color: white !important;
}

.prestige-place-distance.transport {
    background: var(--bs-secondary, #6c757d);
    color: white !important;
}

.prestige-place-distance.healthcare {
    background: var(--bs-tertiary, #6f42c1);
    color: white !important;
}

.prestige-place-distance.lifestyle {
    background: var(--bs-quaternary, #fd7e14);
    color: white !important;
}

.prestige-place-item:hover .prestige-place-distance {
    transform: scale(1.05);
}

/* Map Component Responsive Design */
@media (max-width: 992px) {
    .prestige-nearby-header {
        padding: 0 !important;
        min-height: 20vh;
    }
    
    .prestige-category-header {
        padding: 1.2rem;
    }
    
    .prestige-category-icon {
        width: 45px;
        height: 45px;
        margin-right: 1rem;
    }
}

@media (max-width: 768px) {
    .prestige-nearby-content {
        padding: 0 !important;
    }
    
    .prestige-category-content {
        padding: 1rem;
    }
    
    .prestige-place-item {
        padding: 0.8rem 1rem;
    }
    
    .prestige-place-icon {
        width: 35px;
        height: 35px;
        margin-right: 0.8rem;
    }
    
    .prestige-nearby-header {
        min-height: 15vh;
    }
    
    .prestige-category-header {
        padding: 1rem;
    }
    
    .prestige-category-icon {
        width: 40px;
        height: 40px;
    }
}

/* Dropdown menu styling */
.dropdown-menu {
    border: none;
    border-radius: 0 !important;
    box-shadow: var(--prestige-shadow-hover);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    margin-top: 10px;
}

.dropdown-item {
    font-family: var(--prestige-font-primary);
    font-weight: 500;
    transition: var(--prestige-transition);
    border-radius: 0 !important;
    margin: 2px 8px;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    transform: translateX(5px);
}

/* =====================================================
   FOOTER MODERN PRESTIGE STYLING
   ===================================================== */

#footer {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif);
    background: #ffffff;
    position: relative;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

#footer .footer-copyright {
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

#footer .footer-copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

#footer .footer-copyright .container {
    position: relative;
    z-index: 2;
}

/* Logo Styling */
#footer .logo {
    transition: var(--prestige-transition, all 0.3s cubic-bezier(0.4, 0, 0.2, 1));
    display: inline-block;
}

#footer .logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

#footer .logo img {
    filter: brightness(1.1) contrast(1.1);
    transition: var(--prestige-transition, all 0.3s cubic-bezier(0.4, 0, 0.2, 1));
}

#footer .logo:hover img {
    filter: brightness(1.2) contrast(1.2);
}

/* Copyright Text Styling */
#footer p {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem) !important;
    font-weight: 400 !important;
    color: #6c757d !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

#footer p strong {
    font-weight: 600;
    color: var(--prestige-primary, #1a1a1a);
}

#footer p a {
    color: var(--bs-primary, #007bff) !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: var(--prestige-transition, all 0.3s cubic-bezier(0.4, 0, 0.2, 1));
    position: relative;
}

#footer p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bs-primary, #007bff);
    transition: width 0.3s ease;
}

#footer p a:hover {
    color: var(--bs-primary, #007bff) !important;
    transform: translateY(-1px);
}

#footer p a:hover::after {
    width: 100%;
}

/* Sub Menu Modern Styling */
#footer #sub-menu {
    position: relative;
}

#footer #sub-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

#footer #sub-menu li {
    display: flex;
    align-items: center;
    margin: 0;
    position: relative;
}

#footer #sub-menu li:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 12px;
    background: #dee2e6;
    margin-left: 1rem;
    flex-shrink: 0;
}

#footer #sub-menu li i {
    color: var(--bs-primary, #007bff);
    font-size: 0.75rem;
    margin-right: 0.5rem;
    transition: var(--prestige-transition, all 0.3s cubic-bezier(0.4, 0, 0.2, 1));
}

#footer #sub-menu a {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(0.8rem, 1.4vw, 0.9rem) !important;
    font-weight: 500 !important;
    color: #6c757d !important;
    text-decoration: none !important;
    transition: var(--prestige-transition, all 0.3s cubic-bezier(0.4, 0, 0.2, 1));
    position: relative;
    padding: 0.25rem 0;
}

#footer #sub-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bs-primary, #007bff);
    transition: width 0.3s ease;
}

#footer #sub-menu a:hover {
    color: var(--bs-primary, #007bff) !important;
    transform: translateY(-1px);
}

#footer #sub-menu a:hover::after {
    width: 100%;
}

#footer #sub-menu li:hover i {
    transform: translateX(2px) scale(1.1);
    color: var(--bs-primary, #007bff);
}

/* User Disclaimer Section Enhanced */
.bg-light.border-top {
    background: #f8f9fa !important;
    border-top: 1px solid #e9ecef !important;
}

.bg-light .bg-white {
    background: #ffffff !important;
    border: 1px solid #e9ecef !important;
    border-radius: 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--prestige-transition, all 0.3s cubic-bezier(0.4, 0, 0.2, 1));
}

.bg-light .bg-white:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.bg-light .text-primary {
    color: var(--bs-primary, #007bff) !important;
}

.bg-light .text-muted {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    color: #6c757d !important;
}

/* Responsive Footer */
@media (max-width: 992px) {
    #footer .footer-copyright {
        padding: 1.5rem 0;
    }
    
    #footer #sub-menu ul {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    #footer #sub-menu li:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    #footer .footer-copyright {
        padding: 1rem 0;
    }
    
    #footer .footer-copyright .row > div {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    #footer .footer-copyright .row > div:last-child {
        margin-bottom: 0;
    }
    
    #footer #sub-menu ul {
        margin-top: 0.5rem;
        gap: 0.5rem;
    }
}

/* =====================================================
   SLIDESHOW FLUID LUXURY STYLING
   ===================================================== */

/* Enhanced slideshow container */
.owl-carousel {
    position: relative;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

/* Slideshow owl items need height */
.owl-carousel .owl-item {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Gallery owl items should not have forced height */
.thumb-gallery-detail .owl-item,
.thumb-gallery-thumbs .owl-item {
    min-height: auto !important;
    height: auto !important;
    display: block !important;
    align-items: initial !important;
}

/* Consistent gallery image heights */
.thumb-gallery-detail .owl-item img {
    width: 100% !important;
    height: 500px !important;
    object-fit: cover !important;
    object-position: center !important;
}

.thumb-gallery-thumbs .owl-item img {
    width: 100% !important;
    height: 80px !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Prestige Property Table Styling */
.prestige-property-table {
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    overflow: hidden !important;
}

.prestige-property-table th {
    background: #f8f9fa !important;
    color: #2c3e50 !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 18px 24px !important;
    border: none !important;
    width: 35% !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0.3px !important;
}

.prestige-property-table td {
    color: #34495e !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    padding: 18px 24px !important;
    border: none !important;
    background: #fff !important;
    font-family: 'Inter', sans-serif !important;
}

.prestige-property-table tr {
    border-bottom: 1px solid #e9ecef !important;
}

.prestige-property-table tr:last-child {
    border-bottom: none !important;
}

.prestige-property-table tr:hover {
    background: #f8f9fa !important;
}

.prestige-property-table tr:hover td {
    background: #f8f9fa !important;
}

.prestige-property-table a {
    color: #dc3545 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.prestige-property-table a:hover {
    color: #a71e2a !important;
    text-decoration: underline !important;
}

/* Fluid slideshow content */
.owl-carousel .container {
    max-width: 1400px !important;
    padding: 0 3rem !important;
}

/* Large, fluid typography with high specificity */
.owl-carousel .owl-item h1.text-13.text-color-light,
.owl-carousel .owl-item h1.text-13 {
    font-family: var(--prestige-font-display) !important;
    font-size: clamp(3.5rem, 8vw, 6.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    text-shadow: 0 4px 30px rgba(0,0,0,0.7) !important;
    margin-bottom: 2rem !important;
    letter-spacing: -0.02em !important;
}

/* Larger paragraph text with high specificity */
.owl-carousel .owl-item p.text-4-5.text-color-light,
.owl-carousel .owl-item p.text-4-5 {
    font-size: clamp(1.4rem, 3vw, 2rem) !important;
    font-weight: 300 !important;
    line-height: 1.4 !important;
    margin-bottom: 3rem !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Enhanced slideshow buttons - respect custom colors */
.owl-carousel .btn.btn-modern:not([style*="background-color"]),
.owl-carousel .btn:not([style*="background-color"]) {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
    padding: 1.2rem 3rem !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1a1a1a !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
}

/* Custom color buttons keep their styling but get enhanced typography */
.owl-carousel .btn[style*="background-color"] {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
    padding: 1.2rem 3rem !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
}

.owl-carousel .btn.btn-modern:not([style*="background-color"]):hover,
.owl-carousel .btn:not([style*="background-color"]):hover {
    background: #fff !important;
    color: #1a1a1a !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.3) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
}

.owl-carousel .btn[style*="background-color"]:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.3) !important;
    opacity: 0.9 !important;
}

/* Refined navigation controls */
.owl-carousel .owl-nav button {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 0 !important;
    width: 70px !important;
    height: 70px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 2rem;
}

.owl-carousel .owl-nav button.owl-next {
    right: 2rem;
}

.owl-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Enhanced dot navigation */
.owl-carousel .owl-dots {
    position: absolute !important;
    bottom: 3rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 1rem !important;
}

.owl-carousel .owl-dots button {
    width: 16px !important;
    height: 16px !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(10px);
}

.owl-carousel .owl-dots button span {
    background: transparent !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    transition: var(--prestige-transition) !important;
}

.owl-carousel .owl-dots button.active,
.owl-carousel .owl-dots button:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

/* Overlay enhancements for better text readability */
.owl-carousel .owl-item.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.owl-carousel .owl-item .container {
    position: relative;
    z-index: 2;
}

/* =====================================================
   RESPONSIVE & UTILITIES
   ===================================================== */

/* Fade in animation for loaded state */
body.theme-loaded * {
    animation: themeLoadFadeIn 0.6s ease-out;
}

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

/* Responsive utilities */
@media (max-width: 768px) {
    :root {
        --prestige-radius: 0;
        --prestige-radius-large: 0;
    }
    
    .owl-carousel .owl-item {
        min-height: 70vh;
    }
    
    .owl-carousel .owl-item h1.text-13.text-color-light,
    .owl-carousel .owl-item h1.text-13 {
        font-size: clamp(2.5rem, 10vw, 4rem) !important;
        margin-bottom: 1.5rem !important;
    }
    
    .owl-carousel .owl-item p.text-4-5.text-color-light,
    .owl-carousel .owl-item p.text-4-5 {
        font-size: clamp(1.2rem, 4vw, 1.6rem) !important;
        margin-bottom: 2rem !important;
    }
    
    .owl-carousel .container {
        padding: 0 1.5rem !important;
    }
    
    .owl-carousel .btn {
        font-size: clamp(1rem, 3vw, 1.2rem) !important;
        padding: 1rem 2rem !important;
    }
    
    .owl-carousel .owl-nav button {
        width: 50px !important;
        height: 50px !important;
        font-size: 1rem;
    }
    
    .owl-carousel .owl-nav button.owl-prev {
        left: 1rem;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: 1rem;
    }
    
    .owl-carousel .owl-dots {
        bottom: 2rem !important;
    }
    
    .owl-carousel .owl-dots button {
        width: 12px !important;
        height: 12px !important;
    }
}

/* =====================================================
   PORTO PAGE BLOCKS LUXURY STYLING
   ===================================================== */

/* Container Enhancements for All Page Blocks */
.container.appear-animation {
    position: relative;
}

.container.appear-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, var(--prestige-gold) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.03;
    pointer-events: none;
}

/* Porto Heading Enhancements */
.heading.heading-border h1,
.heading.heading-border h2,
.heading.heading-border h3 {
    font-family: var(--prestige-font-display) !important;
    color: var(--prestige-primary) !important;
    position: relative;
}

.heading.heading-middle-border-center::after {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    height: 3px !important;
    border-radius: 0 !important;
}

/* =====================================================
   PROPERTY DESCRIPTION FLUID STYLING
   ===================================================== */

/* Property Description Container Enhancement - More Specific */
.container.mb-0.py-5.pb-2.appear-animation {
    padding: 4rem 0 2rem !important;
    position: relative;
}

/* Property Description Heading - Bigger, Fluid Typography */
.container.mb-0.py-5.pb-2.appear-animation .heading.heading-border.heading-middle-border.heading-middle-border-center.heading-border-lg h1.font-weight-normal {
    font-family: var(--prestige-font-display) !important;
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: var(--prestige-primary) !important;
    margin-bottom: 3rem !important;
    letter-spacing: -0.01em !important;
    text-align: center !important;
}

/* Enhanced heading border styling */
.container.mb-0.py-5.pb-2.appear-animation .heading.heading-border.heading-middle-border.heading-middle-border-center.heading-border-lg::after {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    height: 4px !important;
    width: 80px !important;
    border-radius: 0 !important;
    margin-top: 1.5rem !important;
}

/* Property Description Content - Larger, More Readable Text */
.container.mb-0.py-5.pb-2.appear-animation .row .col p.mb-0 {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #555 !important;
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* Enhanced container styling for better presentation */
.container.mb-0.py-5.pb-2.appear-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 0 !important;
    box-shadow: var(--prestige-shadow);
    z-index: -1;
    margin: 0 1rem;
}

/* Mobile responsive adjustments for property description */
@media (max-width: 768px) {
    .container.mb-0.py-5.pb-2.appear-animation .heading.heading-border.heading-middle-border.heading-middle-border-center.heading-border-lg h1.font-weight-normal {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        margin-bottom: 2rem !important;
    }
    
    .container.mb-0.py-5.pb-2.appear-animation .row .col p.mb-0 {
        font-size: clamp(1.1rem, 4vw, 1.3rem) !important;
        padding: 0 1rem !important;
    }
    
    .container.mb-0.py-5.pb-2.appear-animation {
        padding: 3rem 0 1.5rem !important;
    }
    
    .container.mb-0.py-5.pb-2.appear-animation .heading.heading-border.heading-middle-border.heading-middle-border-center.heading-border-lg::after {
        width: 60px !important;
        height: 3px !important;
        border-radius: 0 !important;
    }
}

/* =====================================================
   PRESTIGE PROPERTY DETAILS TABLE - ENHANCED DESIGN
   ===================================================== */

/* Property Details Section */
.prestige-property-details-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.prestige-property-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, var(--prestige-gold) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.03;
    pointer-events: none;
}

/* Section Headings */
.prestige-property-details-section .heading h2.font-size-36 {
    font-family: var(--prestige-font-display) !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
}

.prestige-property-details-section .heading p.text-3 {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
    line-height: 1.5 !important;
}

/* Feature Cards (Listing Information) */
.prestige-feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 0 !important;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
}

.prestige-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.95);
}

.prestige-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.prestige-feature-icon i {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(2.5rem, 4vw, 3rem) !important;
}

.prestige-feature-label {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem) !important;
    font-weight: 600 !important;
    color: var(--prestige-primary) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 0.5rem !important;
}

.prestige-feature-value {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(1rem, 2vw, 1.3rem) !important;
    font-weight: 500 !important;
    color: #333 !important;
    margin-bottom: 0 !important;
    line-height: 1.3 !important;
}

/* Info Cards (Project Information) */
.prestige-info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 0 !important;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.prestige-info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0,123,255,0.2);
}

.prestige-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.prestige-info-icon i {
    font-size: 1.2rem;
}

.prestige-info-content {
    flex: 1;
}

.prestige-info-label {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(0.85rem, 1.5vw, 1rem) !important;
    font-weight: 600 !important;
    color: var(--prestige-primary) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 0.25rem !important;
    opacity: 0.8;
}

.prestige-info-value {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(1rem, 1.8vw, 1.2rem) !important;
    font-weight: 500 !important;
    color: #333 !important;
    margin-bottom: 0 !important;
    line-height: 1.3 !important;
}

/* Elegant Divider */
.prestige-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.prestige-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,123,255,0.3) 50%, transparent 100%);
}

.prestige-divider-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.prestige-divider-icon i {
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .prestige-property-details-section {
        padding: 3rem 0;
    }
    
    .prestige-feature-card {
        padding: 1.5rem 1rem;
        min-height: 160px;
    }
    
    .prestige-feature-icon i {
        font-size: clamp(2rem, 5vw, 2.5rem) !important;
    }
    
    .prestige-info-card {
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .prestige-property-details-section .heading h2.font-size-36 {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    }
    
    .prestige-feature-card {
        padding: 1.2rem 0.8rem;
        min-height: 140px;
    }
    
    .prestige-feature-icon i {
        font-size: clamp(1.8rem, 6vw, 2.2rem) !important;
    }
    
    .prestige-feature-label {
        font-size: clamp(0.8rem, 2.5vw, 1rem) !important;
    }
    
    .prestige-feature-value {
        font-size: clamp(0.9rem, 2.8vw, 1.1rem) !important;
    }
    
    .prestige-info-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .prestige-info-icon {
        width: 40px;
        height: 40px;
    }
    
    .prestige-info-icon i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .prestige-divider {
        gap: 1rem;
    }
    
    .prestige-divider-icon {
        width: 35px;
        height: 35px;
    }
}

/* =====================================================
   PROPERTY MAP FLUID STYLING
   ===================================================== */

/* Property Map Wrapper Enhancement */
.property-map-wrapper {
    position: relative;
}

/* Map Container Enhancement */
.property-map-wrapper .container.mb-0.py-5.pb-2.appear-animation {
    padding: 4rem 0 2rem !important;
    position: relative;
}

/* Map Section Headings - Bigger, More Prominent */
.property-map-wrapper .container.mb-0.py-5.pb-2.appear-animation .heading.heading-border.heading-middle-border.heading-middle-border-center.heading-border-lg h1.font-weight-normal {
    font-family: var(--prestige-font-display) !important;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem) !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: var(--prestige-primary) !important;
    margin-bottom: 3rem !important;
    letter-spacing: -0.01em !important;
    text-align: center !important;
}

/* Enhanced Map Container */
.property-map-wrapper #map.google-map {
    height: 600px !important;
    border-radius: var(--prestige-radius-large) !important;
    box-shadow: var(--prestige-shadow-hover) !important;
    border: none !important;
    overflow: hidden !important;
    margin-bottom: 2rem !important;
}

/* Nearby Places Category Headings - Larger, More Readable */
.property-map-wrapper .container h4 {
    font-family: var(--prestige-font-display) !important;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem) !important;
    font-weight: 600 !important;
    color: var(--prestige-primary) !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: -0.005em !important;
    text-transform: uppercase !important;
    position: relative !important;
    padding-bottom: 0.5rem !important;
}

.property-map-wrapper .container h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 0 !important;
}

/* Enhanced List Group Items */
.property-map-wrapper .list-group-item.list-group-item-action.amenity-item {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: var(--prestige-radius) !important;
    padding: 1.2rem 1.5rem !important;
    margin-bottom: 1rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(1rem, 1.8vw, 1.15rem) !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
}

.property-map-wrapper .list-group-item.list-group-item-action.amenity-item:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: var(--prestige-shadow) !important;
    border-color: rgba(0,123,255,0.2) !important;
}

/* Enhanced Badges */
.property-map-wrapper .list-group-item .badge {
    font-size: clamp(0.8rem, 1.5vw, 1rem) !important;
    font-weight: 600 !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--prestige-radius) !important;
    letter-spacing: 0.3px !important;
}

/* Enhanced Icons */
.property-map-wrapper .list-group-item .fas.fa-map-marker-alt {
    font-size: clamp(1rem, 1.8vw, 1.2rem) !important;
    transition: all 0.3s ease !important;
}

/* Column Spacing Enhancement */
.property-map-wrapper .container .row .col-lg-4 {
    padding: 0 1rem;
}

.property-map-wrapper .container .row .col-lg-4.mb-lg-4 {
    margin-bottom: 3rem !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .property-map-wrapper .container.mb-0.py-5.pb-2.appear-animation {
        padding: 3rem 0 1.5rem !important;
    }
    
    .property-map-wrapper #map.google-map {
        height: 500px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .property-map-wrapper .container h4 {
        font-size: clamp(1.3rem, 3vw, 1.6rem) !important;
        margin-bottom: 1.2rem !important;
    }
    
    .property-map-wrapper .list-group-item.amenity-item {
        padding: 1rem 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .property-map-wrapper .container .row .col-lg-4.mb-lg-4 {
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 768px) {
    .property-map-wrapper .container.mb-0.py-5.pb-2.appear-animation .heading h1.font-weight-normal {
        font-size: clamp(2rem, 6vw, 2.8rem) !important;
        margin-bottom: 2rem !important;
    }
    
    .property-map-wrapper #map.google-map {
        height: 400px !important;
        border-radius: var(--prestige-radius) !important;
    }
    
    .property-map-wrapper .container h4 {
        font-size: clamp(1.2rem, 4vw, 1.5rem) !important;
        margin-bottom: 1rem !important;
    }
    
    .property-map-wrapper .list-group-item.amenity-item {
        padding: 0.9rem 1rem !important;
        font-size: clamp(0.95rem, 2.5vw, 1.1rem) !important;
    }
    
    .property-map-wrapper .container .row .col-lg-4 {
        padding: 0 0.5rem;
    }
    
    .property-map-wrapper .container .row .col-lg-4.mb-lg-4 {
        margin-bottom: 1.5rem !important;
    }
}

/* =====================================================
   PRESTIGE PROPERTY PHOTOS GALLERY - FULL WIDTH DESIGN
   ===================================================== */

/* Gallery Section Container */
.prestige-gallery-section {
    padding: 4rem 0 0;
    position: relative;
}

/* Gallery Heading Enhancements */
.prestige-gallery-section .heading h1.font-size-48 {
    font-family: var(--prestige-font-display) !important;
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1rem !important;
}

.prestige-gallery-section .heading p.text-3-5 {
    font-family: var(--prestige-font-primary) !important;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem) !important;
    line-height: 1.5 !important;
    opacity: 0.8;
}


/* =====================================================
   PRESTIGE CONTACT FORM - LUXURY STYLING
   ===================================================== */

/* Contact Form Container */
.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-radius: 0 !important;
    padding: 4rem 3rem;
    margin: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary, #007bff) 0%, var(--prestige-gold, #d4af37) 100%);
}

/* Form Section Headers */
.prestige-form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.prestige-form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Enhanced Labels */
.form-group .form-label {
    font-family: var(--prestige-font-primary) !important;
    font-weight: 600 !important;
    color: var(--prestige-primary, #1a1a1a) !important;
    font-size: 0.9rem !important;
    margin-bottom: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative;
}

.form-label span {
    color: var(--bs-primary, #007bff);
    margin-left: 3px;
}

/* Enhanced Form Controls */
.form-control.text-3 {
    border: 2px solid rgba(0,0,0,0.08) !important;
    border-radius: 0 !important;
    padding: 1rem 1.25rem !important;
    font-family: var(--prestige-font-primary) !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: rgba(255,255,255,0.9) !important;
    color: var(--prestige-primary, #1a1a1a) !important;
    min-height: 50px;
}

.form-control.text-3:focus {
    border-color: var(--bs-primary, #007bff) !important;
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb, 0, 123, 255), 0.1) !important;
    background: white !important;
    transform: translateY(-1px);
}

.form-control.text-3:hover:not(:focus) {
    border-color: rgba(0,0,0,0.15) !important;
    background: white !important;
}

/* Textarea Specific */
textarea.form-control.text-3 {
    resize: vertical;
    min-height: 120px;
}

/* Form Check (Checkboxes) */
.form-check {
    padding: 1.5rem;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 0;
    border: 1px solid rgba(0,0,0,0.06);
    margin-top: 1rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 0;
}

.form-check-input:checked {
    background-color: var(--bs-primary, #007bff);
    border-color: var(--bs-primary, #007bff);
}

.form-check-label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
    margin-left: 0.5rem;
}

/* Select Styling */
select.form-control.text-3 {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23666' d='m2 0-2 2h4zm0 5 2-2h-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px 10px;
    padding-right: 3rem !important;
}

/* Enhanced Submit Button */
.btn-register {
    background: linear-gradient(135deg, var(--bs-primary, #007bff) 0%, var(--prestige-primary, #1a1a1a) 100%) !important;
    border: none !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 1rem 3rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    color: white !important;
    min-width: 180px;
}

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

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

.btn-register:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
    background: linear-gradient(135deg, var(--prestige-primary, #1a1a1a) 0%, var(--bs-primary, #007bff) 100%) !important;
}

.btn-register:active {
    transform: translateY(-1px) !important;
}

.btn-register:disabled {
    opacity: 0.7;
    transform: none !important;
    cursor: not-allowed;
}

/* Alert Styling */
.alert {
    border-radius: 0 !important;
    border: none;
    font-weight: 500;
    margin-bottom: 2rem;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* reCAPTCHA Styling */
.g-recaptcha {
    margin: 1.5rem 0;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }
    
    .form-control.text-3 {
        padding: 0.875rem 1rem !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    .btn-register {
        width: 100%;
        padding: 1rem 2rem !important;
    }
    
    .form-check {
        padding: 1rem;
    }
}

/* Property Unit Mix Table Enhancements */
.table.table-striped {
    border-radius: var(--prestige-radius-large);
    overflow: hidden;
    box-shadow: var(--prestige-shadow);
    background: white;
    border: none;
}

.table.table-striped thead {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.table.table-striped th {
    font-family: var(--prestige-font-primary) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 1rem !important;
    border: none !important;
    color: white;
}

.table.table-striped td {
    padding: 1rem !important;
    border: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    transition: var(--prestige-transition);
    font-family: var(--prestige-font-primary);
}

.table.table-striped tbody tr:hover {
    background: var(--prestige-light) !important;
    transform: scale(1.01);
}

/* Button Enhancements */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--prestige-radius);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border: none;
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border: none;
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    border: none;
    color: var(--prestige-dark);
}

/* =====================================================
   ADDITIONAL CONTENT ENHANCEMENTS
   ===================================================== */

/* Image Full Width Components */
img.img-fluid {
    border-radius: var(--prestige-radius);
    transition: var(--prestige-transition);
    box-shadow: var(--prestige-shadow);
}

img.img-fluid:hover {
    transform: scale(1.02);
    box-shadow: var(--prestige-shadow-hover);
}

/* =====================================================
   RESPONSIVE ENHANCEMENTS
   ===================================================== */

@media (max-width: 992px) {
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .feature-box.feature-box-style-2 {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }
    
    .table.table-striped th,
    .table.table-striped td {
        padding: 0.5rem !important;
        font-size: 0.875rem;
    }
    
    .feature-box.feature-box-style-2 {
        padding: 0.75rem;
    }
    
    .feature-box-icon i {
        font-size: 1.2rem !important;
    }
}

/* =====================================================
   PRESTIGE PROPERTY DETAILS TABLE COMPONENT (INLINE CSS)
   ===================================================== */

/* Elegant Background Pattern */
.prestige-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212,175,55,0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.02) 50%, transparent 55%),
        radial-gradient(ellipse at center, transparent 0%, rgba(45,45,45,0.1) 70%);
    opacity: 1;
    z-index: 0;
}

#prestige-property-details .prestige-elegant-title,
#prestige-property-details h2.prestige-elegant-title,
#prestige-property-details h2.text-white.prestige-elegant-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
    font-weight: 300 !important;
    letter-spacing: -0.02em !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important;
}

#prestige-property-details .prestige-elegant-subtitle,
#prestige-property-details p.prestige-elegant-subtitle,
#prestige-property-details p.text-white-75.prestige-elegant-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem) !important;
    font-weight: 300 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Animation Enhancements */
@keyframes prestige-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.prestige-fluid-card:nth-child(even) {
    animation: prestige-float 6s ease-in-out infinite;
}

.prestige-fluid-card:nth-child(odd) {
    animation: prestige-float 6s ease-in-out infinite reverse;
}

/* Enhanced Focus States */
.prestige-fluid-card:focus-within,
.prestige-fluid-detail-card:focus-within {
    outline: 2px solid rgba(212, 175, 55, 0.5);
    outline-offset: 4px;
}

/* White Section Styling - Property Information */
.prestige-details-content .prestige-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.prestige-details-content .prestige-detail-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    border: 1px solid #dee2e6;
}

.prestige-details-content .prestige-detail-icon i {
    font-size: 1.2rem;
    color: #6c757d;
}

.prestige-details-content .prestige-detail-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
}

.prestige-details-content .prestige-detail-content {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #6c757d;
    line-height: 1.5;
    padding-left: 0;
}

.prestige-details-content .prestige-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.prestige-details-content .prestige-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #6c757d;
}

/* =====================================================
   PRESTIGE PROPERTY PHOTOS GALLERY COMPONENT (INLINE CSS)
   ===================================================== */

/* Gallery Container */
.prestige-content-block .row {
    margin: 0;
}

.prestige-photo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.prestige-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.prestige-photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.prestige-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.prestige-photo-card:hover .prestige-photo-img {
    transform: scale(1.05);
}

/* Photo Overlay */
.prestige-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prestige-photo-card:hover .prestige-photo-overlay {
    opacity: 1;
}

.prestige-photo-action {
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    font-size: 1.25rem;
    backdrop-filter: blur(10px);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.prestige-photo-card:hover .prestige-photo-action {
    transform: scale(1);
}

.prestige-photo-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Gallery Placeholder Styling */
.prestige-gallery-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #e9ecef;
    margin: 2rem 0;
}

.prestige-placeholder-icon {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 2rem;
}

.prestige-placeholder-title {
    color: #495057;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.prestige-placeholder-subtitle {
    color: #6c757d;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Photo Gallery Responsive Design */
@media (max-width: 768px) {
    .prestige-gallery-placeholder {
        padding: 3rem 1.5rem;
        margin: 1rem 0;
    }
    
    .prestige-placeholder-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .prestige-photo-wrapper {
        aspect-ratio: 16/10;
    }
}

/* =====================================================
   PRESTIGE PROPERTY FLOOR PLANS GALLERY COMPONENT (INLINE CSS)
   ===================================================== */

.prestige-floorplan-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
}

.prestige-floorplan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.prestige-floorplan-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #f8f9fa;
}

.prestige-floorplan-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    padding: 1rem;
}

.prestige-floorplan-card:hover .prestige-floorplan-img {
    transform: scale(1.03);
}

/* Floor Plan Overlay */
.prestige-floorplan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 50%, rgba(0,0,0,0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prestige-floorplan-card:hover .prestige-floorplan-overlay {
    opacity: 1;
}

.prestige-floorplan-action {
    background: rgba(255, 255, 255, 0.95);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.prestige-floorplan-card:hover .prestige-floorplan-action {
    transform: scale(1);
}

.prestige-floorplan-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Floor Plans Placeholder Styling */
.prestige-floorplans-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    background: #f8f9fa;
    border-radius: 16px;
    border: 2px dashed #e9ecef;
    margin: 2rem 0;
}

/* Enhanced hover effects for floor plans */
.prestige-floorplan-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #007bff, #0056b3, #007bff);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prestige-floorplan-card:hover::before {
    opacity: 0.7;
}

/* Floor Plans Responsive Design */
@media (max-width: 768px) {
    .prestige-floorplans-placeholder {
        padding: 3rem 1.5rem;
        margin: 1rem 0;
    }
    
    .prestige-floorplan-action {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .prestige-floorplan-wrapper {
        aspect-ratio: 4/3;
    }
}

/* =====================================================
   PRESTIGE PROPERTY MAP COMPONENT (INLINE CSS)
   ===================================================== */

/* Base Content Block */
.prestige-content-block {
    padding: 2rem 0;
    background: transparent;
}

.prestige-block-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.prestige-block-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.prestige-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

/* Map Container */
.prestige-map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.prestige-map {
    height: 450px;
    width: 100%;
    border: none;
}

.prestige-map .leaflet-container {
    height: 100% !important;
    width: 100% !important;
    border-radius: 12px;
}

.prestige-map .leaflet-control-zoom {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 6px;
}

/* Map Component Responsive Design */
@media (max-width: 768px) {
    .prestige-content-block {
        padding: 1rem 0;
    }
    
    .prestige-map {
        height: 350px;
    }
    
    .prestige-block-title {
        font-size: 1.5rem;
    }
}

/* =====================================================
   PRESTIGE IMAGE FULL WIDTH COMPONENT (INLINE CSS)
   ===================================================== */

/* Enhanced Magnific Popup styling for disclaimer */
.mfp-title {
    background: white !important;
    color: #333 !important;
    padding: 20px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-align: left !important;
    border-top: 3px solid #007bff !important;
    font-weight: normal !important;
    font-family: 'Inter', sans-serif !important;
}

.mfp-title::before {
    content: "ℹ️ " !important;
    font-size: 16px !important;
    margin-right: 8px !important;
}

/* Gallery Grid */
.prestige-gallery-grid .row {
    margin: 0 -0.5rem;
}

.prestige-gallery-grid [class*="col-"] {
    padding: 0 0.5rem;
}

/* Gallery Items */
.prestige-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
}

.prestige-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #007bff;
}

/* Image Wrapper */
.prestige-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8f9fa;
}

.prestige-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    display: block;
}

.prestige-gallery-item:hover .prestige-gallery-image {
    transform: scale(1.05);
}

/* Image Overlay */
.prestige-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prestige-gallery-item:hover .prestige-image-overlay {
    opacity: 1;
}

.prestige-image-action {
    background: rgba(255, 255, 255, 0.95);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    font-size: 1.25rem;
    backdrop-filter: blur(10px);
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.prestige-gallery-item:hover .prestige-image-action {
    transform: scale(1);
}

.prestige-image-counter {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Image Caption */
.prestige-image-caption {
    padding: 1rem;
    background: white;
    border-top: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
}

/* Single Image Layout */
.prestige-gallery-grid .col-12:only-child .prestige-image-wrapper {
    aspect-ratio: 16/9;
    max-height: 500px;
}

/* Two Images Layout */
.prestige-gallery-grid .col-md-6 .prestige-image-wrapper {
    aspect-ratio: 3/2;
}

/* Three Images Layout */
.prestige-gallery-grid .col-lg-4 .prestige-image-wrapper {
    aspect-ratio: 4/3;
}

/* Four or More Images Layout */
.prestige-gallery-grid .col-lg-3 .prestige-image-wrapper {
    aspect-ratio: 1/1;
}

/* Hover Effects */
.prestige-gallery-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #007bff, #0056b3, #007bff);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prestige-gallery-item:hover::before {
    opacity: 0.7;
}

/* Loading Animation */
.prestige-gallery-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: prestige-loading 1.5s infinite;
}

.prestige-gallery-image[src] {
    background: none;
    animation: none;
}

@keyframes prestige-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Image Gallery Responsive Design */
@media (max-width: 768px) {
    .prestige-gallery-grid .row {
        margin: 0 -0.25rem;
    }
    
    .prestige-gallery-grid [class*="col-"] {
        padding: 0 0.25rem;
        margin-bottom: 1rem;
    }
    
    .prestige-image-wrapper {
        aspect-ratio: 16/10;
    }
    
    .prestige-image-action {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prestige-image-caption {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .prestige-image-wrapper {
        aspect-ratio: 4/3;
    }
    
    .prestige-image-counter {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
    }
}

/* =====================================================
   PROPERTY UNIT MIX COMPONENT STYLES
   ===================================================== */

/* Unit Mix Section */
.prestige-unit-mix-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Elegant Background Pattern */
.prestige-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212,175,55,0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.02) 50%, transparent 55%),
        radial-gradient(ellipse at center, transparent 0%, rgba(45,45,45,0.1) 70%);
    opacity: 1;
    z-index: 0;
}

/* Unit Mix Grid in Dark Section */
.prestige-unit-mix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 1rem;
    position: relative;
    z-index: 2;
}

/* Brochure-style Unit Cards */
.prestige-unit-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.prestige-unit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.prestige-unit-card:hover::before {
    opacity: 1;
}

.prestige-unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #007bff;
}

/* Unit Header */
.prestige-unit-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.prestige-unit-icon {
    width: 50px;
    height: 50px;
    background: #007bff;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.prestige-unit-type h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.prestige-unit-count {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Unit Body */
.prestige-unit-body {
    position: relative;
    z-index: 1;
}

/* Unit Details */
.prestige-unit-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f8f9fa;
}

.prestige-unit-detail:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.prestige-unit-detail-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: #007bff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1rem;
}

.prestige-unit-detail-info {
    flex: 1;
}

.prestige-unit-detail-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.prestige-unit-detail-value {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

/* Call to Action Section */
.prestige-unit-cta-section {
    padding: 4rem 2rem;
}

.prestige-cta-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 4rem 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.prestige-cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 123, 255, 0.02) 0%, transparent 70%);
    z-index: 0;
}

.prestige-cta-content > * {
    position: relative;
    z-index: 1;
}

.prestige-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    font-size: 2rem;
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.3);
}

.prestige-cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
}

.prestige-cta-text {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prestige-cta-buttons {
    margin-bottom: 3rem;
}

.prestige-btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.prestige-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.prestige-btn-outline {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.prestige-btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.prestige-cta-features {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

.prestige-feature-item {
    padding: 1.5rem 1rem;
}

.prestige-feature-item i {
    font-size: 1.5rem;
}

.prestige-feature-item h6 {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

/* Unit Mix Responsive Design */
@media (max-width: 768px) {
    .prestige-unit-mix-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0.5rem;
    }
    
    .prestige-unit-card {
        padding: 1.5rem;
    }
    
    .prestige-unit-cta-section {
        padding: 3rem 1rem;
    }
    
    .prestige-cta-content {
        padding: 3rem 2rem;
    }
    
    .prestige-cta-title {
        font-size: 1.75rem;
    }
    
    .prestige-btn-primary,
    .prestige-btn-outline {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .prestige-unit-card {
        padding: 1rem;
    }
    
    .prestige-unit-cta-section {
        padding: 2rem 0.5rem;
    }
    
    .prestige-cta-content {
        padding: 2rem 1.5rem;
    }
    
    .prestige-cta-title {
        font-size: 1.5rem;
    }
    
    .prestige-cta-text {
        font-size: 1rem;
    }
    
    .prestige-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .prestige-feature-item {
        padding: 1rem 0.5rem;
    }
}

/* =====================================================
   CALL TO ACTION COMPONENT STYLES
   ===================================================== */

/* Split Layout CTA Styling - Only for non-button-centered layouts */
.call-to-action:not(.button-centered) {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    overflow: hidden;
}

.call-to-action:not(.button-centered)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.02) 0%, transparent 50%),
        linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.02) 50%, transparent 55%);
    opacity: 1;
    z-index: 0;
}

.call-to-action:not(.button-centered) .container {
    position: relative;
    z-index: 2;
}

/* CTA Content - Left Side (Split Layout Only) */
.call-to-action:not(.button-centered) .call-to-action-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 120px;
}

.call-to-action:not(.button-centered) .call-to-action-content h3 {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(1.75rem, 3vw, 2.25rem) !important;
    font-weight: 700 !important;
    color: #212529 !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.01em !important;
}

.call-to-action:not(.button-centered) .call-to-action-content p {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-size: clamp(1rem, 1.8vw, 1.15rem) !important;
    font-weight: 400 !important;
    color: #6c757d !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
}

/* CTA Button - Right Side (Split Layout Only) */
.call-to-action:not(.button-centered) .call-to-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 120px;
}

.call-to-action:not(.button-centered) .call-to-action-btn .btn {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 8px !important;
    padding: 1rem 2.5rem !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
    border: none !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.call-to-action:not(.button-centered) .call-to-action-btn .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.call-to-action:not(.button-centered) .call-to-action-btn .btn:hover::before {
    left: 100%;
}

.call-to-action:not(.button-centered) .call-to-action-btn .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3) !important;
    text-decoration: none !important;
}

/* Button Style Variants (Split Layout Only) */
.call-to-action:not(.button-centered) .call-to-action-btn .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    color: #ffffff !important;
}

.call-to-action:not(.button-centered) .call-to-action-btn .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%) !important;
    color: #ffffff !important;
}

.call-to-action:not(.button-centered) .call-to-action-btn .btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
    color: #ffffff !important;
}

.call-to-action:not(.button-centered) .call-to-action-btn .btn-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%) !important;
    color: #ffffff !important;
}

.call-to-action:not(.button-centered) .call-to-action-btn .btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%) !important;
    color: #212529 !important;
}

.call-to-action:not(.button-centered) .call-to-action-btn .btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%) !important;
    color: #ffffff !important;
}

/* Custom Button Sizes (Split Layout Only) */
.call-to-action:not(.button-centered) .call-to-action-btn .btn-xl {
    padding: 1.25rem 3rem !important;
    font-size: 1.1rem !important;
}

.call-to-action:not(.button-centered) .call-to-action-btn .btn-lg {
    padding: 1.125rem 2.75rem !important;
    font-size: 1.05rem !important;
}

/* Parallax CTA Styling (Split Layout Only) */
.parallax .call-to-action:not(.button-centered) {
    background: transparent;
    position: relative;
}

.parallax .call-to-action:not(.button-centered)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.parallax .call-to-action:not(.button-centered) .container {
    position: relative;
    z-index: 3;
}

.parallax .call-to-action:not(.button-centered) .call-to-action-content h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}

.parallax .call-to-action:not(.button-centered) .call-to-action-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
}

/* Responsive Design (Split Layout Only) */
@media (max-width: 768px) {
    .call-to-action:not(.button-centered) {
        padding: 3rem 0;
    }
    
    .call-to-action:not(.button-centered) .row {
        flex-direction: column;
        text-align: center;
    }
    
    .call-to-action:not(.button-centered) .call-to-action-content {
        margin-bottom: 2rem;
        min-height: auto;
    }
    
    .call-to-action:not(.button-centered) .call-to-action-btn {
        min-height: auto;
    }
    
    .call-to-action:not(.button-centered) .call-to-action-btn .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .call-to-action:not(.button-centered) {
        padding: 2rem 0;
    }
    
    .call-to-action:not(.button-centered) .call-to-action-content h3 {
        font-size: 1.5rem !important;
    }
    
    .call-to-action:not(.button-centered) .call-to-action-content p {
        font-size: 1rem !important;
    }
    
    .call-to-action:not(.button-centered) .call-to-action-btn .btn {
        padding: 1rem 2rem !important;
        font-size: 0.9rem !important;
    }
}

/* Base CTA Section */
.prestige-cta-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

/* Background Variants */
.prestige-cta-default {
    background: #ffffff;
    color: #212529;
}

.prestige-cta-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    color: #212529;
}

.prestige-cta-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
}

.prestige-cta-dark {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
    color: #ffffff;
}

/* Background Pattern */
.prestige-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.02) 0%, transparent 50%),
        linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.02) 50%, transparent 55%);
    opacity: 1;
    z-index: 0;
}

/* CTA Content */
.prestige-cta-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

/* CTA Heading */
.prestige-cta-heading {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.prestige-cta-default .prestige-cta-heading,
.prestige-cta-gradient .prestige-cta-heading {
    color: #212529;
}

.prestige-cta-primary .prestige-cta-heading,
.prestige-cta-dark .prestige-cta-heading {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* CTA Subtitle */
.prestige-cta-subtitle {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.prestige-cta-default .prestige-cta-subtitle,
.prestige-cta-gradient .prestige-cta-subtitle {
    color: #6c757d;
}

.prestige-cta-primary .prestige-cta-subtitle,
.prestige-cta-dark .prestige-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Description */
.prestige-cta-description {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prestige-cta-description p {
    margin-bottom: 1rem;
}

.prestige-cta-description p:last-child {
    margin-bottom: 0;
}

.prestige-cta-default .prestige-cta-description,
.prestige-cta-gradient .prestige-cta-description {
    color: #6c757d;
}

.prestige-cta-primary .prestige-cta-description,
.prestige-cta-dark .prestige-cta-description {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Buttons Container */
.prestige-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.text-start .prestige-cta-buttons {
    justify-content: flex-start;
}

.text-end .prestige-cta-buttons {
    justify-content: flex-end;
}

/* Primary CTA Button */
.prestige-btn-cta-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-family: var(--prestige-font-primary, 'Inter', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.prestige-btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: #ffffff;
    text-decoration: none;
}

/* Primary button variants for different backgrounds */
.prestige-cta-primary .prestige-btn-cta-primary,
.prestige-cta-dark .prestige-btn-cta-primary {
    background: #ffffff;
    color: #007bff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.prestige-cta-primary .prestige-btn-cta-primary:hover,
.prestige-cta-dark .prestige-btn-cta-primary:hover {
    background: #f8f9fa;
    color: #0056b3;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Secondary CTA Button */
.prestige-btn-cta-secondary {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 0.875rem 2.25rem;
    font-family: var(--prestige-font-primary, 'Inter', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.prestige-btn-cta-secondary:hover {
    background: #007bff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    text-decoration: none;
}

/* Secondary button variants for different backgrounds */
.prestige-cta-primary .prestige-btn-cta-secondary,
.prestige-cta-dark .prestige-btn-cta-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.prestige-cta-primary .prestige-btn-cta-secondary:hover,
.prestige-cta-dark .prestige-btn-cta-secondary:hover {
    background: #ffffff;
    color: #007bff;
    border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .prestige-cta-section {
        padding: 3rem 0;
    }
    
    .prestige-cta-content {
        padding: 1.5rem;
    }
    
    .prestige-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .prestige-btn-cta-primary,
    .prestige-btn-cta-secondary {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .prestige-cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .prestige-cta-section {
        padding: 2rem 0;
    }
    
    .prestige-cta-content {
        padding: 1rem;
    }
    
    .prestige-btn-cta-primary,
    .prestige-btn-cta-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* =====================================================
   CTA BROCHURE PRESTIGE COMPONENT STYLES
   ===================================================== */

/* Brochure Showcase Styling */
.prestige-brochure-showcase {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.prestige-brochure-floating {
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.prestige-brochure-floating:hover {
    transform: translateY(-10px);
}

.prestige-brochure-img {
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    transform: scale(1.05);
}

.prestige-brochure-floating:hover .prestige-brochure-img {
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

/* Brochure Badge */
.prestige-brochure-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #212529;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    z-index: 10;
    animation: pulse 2s infinite;
}

.prestige-brochure-badge i {
    margin-right: 0.5rem;
    color: #dc3545;
    font-size: 1rem;
}

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

/* Responsive Layout */
@media (max-width: 992px) {
    .prestige-brochure-showcase {
        margin-top: 2rem;
    }
    
    .prestige-brochure-img {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .prestige-brochure-img {
        max-width: 220px;
    }
    
    .prestige-brochure-badge {
        top: -10px;
        right: -10px;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* =====================================================
   PRESTIGE PARALLAX TYPOGRAPHY & CONTRAST
   ===================================================== */

/* Parallax Text Contrast Enhancements */
.section-parallax .prestige-section-title {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
}

.section-parallax .prestige-section-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.section-parallax .prestige-section-subtitle p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Half Parallax Content Styling */
.prestige-section-heading {
    font-family: var(--prestige-font-primary, 'Inter', sans-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--prestige-primary, #1a1a1a);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.prestige-section-description {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.6;
    font-weight: 400;
}

.prestige-section-description p {
    margin-bottom: 1rem;
    color: inherit;
}

.prestige-section-description strong {
    color: var(--prestige-primary, #1a1a1a);
    font-weight: 600;
}

/* Enhanced Contrast for Better Readability */
.section-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(26, 26, 26, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.section-parallax .container,
.section-parallax .scrollable-parallax-wrapper {
    position: relative;
    z-index: 2;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-parallax .prestige-section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .section-parallax .prestige-section-subtitle {
        font-size: 1.125rem;
    }
    
    .prestige-section-heading {
        font-size: 1.75rem;
    }
    
    .prestige-section-description {
        font-size: 1rem;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .section-parallax .prestige-section-title {
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.95);
        font-weight: 800;
    }
    
    .section-parallax .prestige-section-subtitle {
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
        font-weight: 500;
    }
    
    .section-parallax::before {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(26, 26, 26, 0.6) 50%,
            rgba(0, 0, 0, 0.8) 100%
        );
    }
}

/* =====================================================
   END PRESTIGE THEME STYLES
   ===================================================== */