/* ============================================
   GODREJ WOODS - MAIN STYLES
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --navy: #0a2540;
    --navy-light: #1a365d;
    --gold: #b89359;
    --gold-light: #d4b483;
    --cream: #f8f5f0;
    --slate: #64748b;
    --white: #ffffff;
    --black: #1a202c;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #b89359, #d4b483);
    --gradient-navy: linear-gradient(135deg, #0a2540, #1a365d);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    
    /* Transitions */
    --transition: 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-4 { margin-top: var(--space-md); }

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.loading-screen.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    color: white;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* Navigation */
.luxury-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 100px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.brand-text h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--navy);
}

.brand-text p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--slate);
    font-weight: 500;
}

.luxury-nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 0;
    position: relative;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
}

.cta-button {
    background: var(--gradient-gold);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 147, 89, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
}

/* Main Content */
#app-content {
    padding-top: 80px;
    min-height: 60vh;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hero Section - FIXED */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    z-index: 0;
    padding: 0;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    overflow: visible
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(36, 134, 0, 0.123) 0%, 
        rgba(0, 52, 7, 0.637) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
    width: 100%;
}

.hero-section .container {
    position: relative;
    z-index: 4;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Location Section - FIXED */
.location-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    z-index: 0;
    padding: 0;
}

.location-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.location-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    overflow: visible
}

.location-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.118) 0%, 
        rgba(0, 40, 5, 0.484) 100%);
    z-index: 2;
}

.location-content {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
    width: 100%;
}

.location-section .container {
    position: relative;
    z-index: 4;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-whatsapp {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 147, 89, 0.3);
}

.btn-secondary {
    background: transparent;
    color: darkred;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: aliceblue;
    color: var(--navy);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

/* Remove conflicting styles */
.hero-background {
    display: none;
}

/* Properties Section */
.properties-section {
    padding: var(--space-xl) 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--slate);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: var(--space-lg);
}

.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.property-image {
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-content {
    padding: 1.5rem;
}

.property-price {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.property-size {
    color: var(--slate);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--slate);
    font-size: 0.9rem;
}

.property-features i {
    color: var(--gold);
}

.property-actions {
    display: flex;
    gap: 1rem;
}

.btn-view, .btn-enquire {
    flex: 1;
    padding: 0.75rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-view {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-view:hover {
    background: var(--navy);
    color: white;
}

.btn-enquire {
    background: var(--gradient-gold);
    color: white;
}

.btn-enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 147, 89, 0.3);
}

/* CTA Section */
.cta-section {
    padding: var(--space-xl) 0;
    background: var(--navy);
    color: rgb(0, 0, 0);
    text-align: center;
}

.cta-content h2 {
    color: rgb(156, 156, 156);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: var(--navy);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Content Section */
.content-section {
    padding: var(--space-xl) 0;
    text-align: center;
}

.content-section h2 {
    margin-bottom: 1rem;
}

.content-section p {
    color: var(--slate);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Error Section */
.error-section {
    padding: 100px 0;
    text-align: center;
}

.error-content i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.error-content h2 {
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--slate);
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.main-footer {
    background: var(--navy);
    color: white;
    padding: var(--space-xl) 0 var(--space-md);
    text-align: center;
}

.main-footer p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
}

/* Property Details Modal */
.property-details-modal .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.property-details-modal .modal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.property-details-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--navy);
    cursor: pointer;
    line-height: 1;
}

.property-details-modal h2 {
    margin-bottom: 1rem;
}

.property-details-modal .property-price {
    color: var(--gold);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.property-details-modal .property-size {
    color: var(--slate);
    margin-bottom: 2rem;
}

.property-features-list {
    margin: 2rem 0;
}

.property-features-list h4 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.property-features-list ul {
    list-style: none;
    column-count: 2;
    column-gap: 2rem;
}

.property-features-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.property-features-list i {
    color: var(--gold);
    margin-top: 3px;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
    flex: 1;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 10000;
        width: 44px; /* Minimum touch target size */
        height: 44px; /* Minimum touch target size */
        padding: 12px;
        background: none;
        border: none;
        cursor: pointer;
        margin-left: auto;
    }
    
    .mobile-menu-toggle i {
        font-size: 24px;
        color: var(--navy);
        pointer-events: none; /* Makes the icon not interfere with clicks */
    }
    
    .luxury-nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 9999; /* Ensure it's above other content */
    }
    
    .luxury-nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px; /* Fixed height for consistency */
    }
    
    /* Ensure brand logo doesn't interfere */
    .brand {
        z-index: 10001;
        position: relative;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .property-features-list ul {
        column-count: 1;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .property-actions {
        flex-direction: column;
    }
    
    /* Larger touch targets on very small screens */
    .mobile-menu-toggle {
        width: 48px;
        height: 48px;
        padding: 14px;
    }
    
    .mobile-menu-toggle i {
        font-size: 26px;
    }
}

/* ============================================
   NEW HOME PAGE SECTIONS STYLES
   ============================================ */

/* Slideshow Section - Place ABOVE your existing hero section */
.slideshow-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    z-index: 2;
}

/* Slides Container */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center 15%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Active Slide */
.slideshow-slide.active {
    opacity: 1;
}

/* Slide Content */
.slideshow-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    /* background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(5px); */
    margin: 0 1rem;
}

.slideshow-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.slideshow-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.slideshow-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Slide Buttons */
.slideshow-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.slideshow-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.slideshow-btn-primary {
    background-color: #4a6ee0;
    color: white;
    border: 2px solid #4a6ee0;
}

.slideshow-btn-primary:hover {
    background-color: #3a5ed0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slideshow-btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.slideshow-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Navigation Arrows */
.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slideshow-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-prev {
    left: 20px;
}

.slideshow-next {
    right: 20px;
}

/* Slide Counter */
.slideshow-counter {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: white;
    font-size: 1.2rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    z-index: 10;
}

/* Scroll Down Button */
.scroll-down-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .slideshow-title {
        font-size: 2.5rem;
    }
    
    .slideshow-subtitle {
        font-size: 1.3rem;
    }
    
    .slideshow-description {
        font-size: 1.1rem;
    }
    
    .slideshow-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slideshow-prev {
        left: 10px;
    }
    
    .slideshow-next {
        right: 10px;
    }
    
    .scroll-down-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .slideshow-section {
        height: 55vh;
    }
    .slideshow-title {
        font-size: 2rem;
    }
    .slideshow-subtitle {
        font-size: 1.1rem;
    }
    .slideshow-buttons {
        flex-direction: column;
        align-items: center;
    }
    .slideshow-btn {
        width: 80%;
    }
    .scroll-down-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 15px;
    }
}

/* Location Section */
.location-section {
    padding: var(--space-xl) 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.map-placeholder {
    border-radius: 400px;
    padding: 400px;
    border-radius: 0px;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--slate);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.connectivity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.connectivity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 10px;
    transition: var(--transition);
}

.connectivity-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.connectivity-item i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 147, 89, 0.1);
    border-radius: 8px;
}

.connectivity-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.connectivity-item p {
    font-size: 0.9rem;
    color: var(--slate);
    margin: 0;
}

.location-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(184, 147, 89, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.location-cta h4 {
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Amenities Preview */
.amenities-preview {
    padding: var(--space-xl) 0;
    background: var(--cream);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: var(--space-lg);
}

.amenity-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.amenity-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.amenity-card p {
    color: var(--slate);
    font-size: 0.95rem;
    margin: 0;
}

/* Floor Plans Section */
.floorplans-section {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.floorplan-gallery {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.floorplan-item {
    flex: 1;
    max-width: 500px;
}

.floorplan-image {
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.floorplan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.floorplan-item:hover .floorplan-image img {
    transform: scale(1.05);
}

.floorplan-info {
    padding: 1.5rem;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.floorplan-info h4 {
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.floorplan-info p {
    color: var(--slate);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.btn-download-small {
    background: var(--navy);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.btn-download-small:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* Gallery Preview */
.gallery-preview {
    padding: var(--space-xl) 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: var(--space-lg);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 37, 64, 0.9));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: var(--space-xl) 0;
    background: var(--navy);
    color: white;
}

.about-section .section-header h2 {
    color: rgb(255, 255, 255);
}

.about-section .section-subtitle {
    color: rgb(255, 255, 255);
    opacity: 0.8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-text h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.about-cta {
    margin-top: 2rem;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact CTA */
.contact-cta {
    padding: var(--space-xl) 0;
    background: linear-gradient(rgba(10, 37, 64, 0.95), rgba(10, 37, 64, 0.95)),
                url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.contact-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.cta-text h2 {
    color: antiquewhite;
    margin-bottom: 1rem;
}

.cta-text p {
    color: antiquewhite;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-item h4 {
    color: antiquewhite;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.cta-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.cta-form h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.cta-form p {
    color: var(--slate);
    margin-bottom: 2rem;
}

.alternative-contacts {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.alternative-contacts p {
    color: var(--slate);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: var(--cream);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

.contact-btn.whatsapp:hover {
    background: #25D366;
}

/* Final CTA */
.final-cta {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-note {
    color: var(--gold);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note i {
    font-size: 1rem;
}

/* Property Details Modal Enhancements */
.property-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.details-section h4 {
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-section h4 i {
    color: var(--gold);
}

.details-section ul {
    list-style: none;
    padding: 0;
}

.details-section li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--slate);
}

.details-section li i {
    color: var(--gold);
    margin-top: 3px;
}

.property-cta {
    background: rgba(184, 147, 89, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--gold);
}

.property-cta p {
    margin: 0;
    color: var(--navy);
}

/* ===== MOBILE RESPONSIVENESS ===== */

/* 1. Location Section Mobile */
@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-placeholder {
        padding: 200px !important;
        border-radius: 15px;
        margin-bottom: 1rem;
    }
    
    .connectivity-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .connectivity-item {
        padding: 1rem;
    }
    
    .location-cta {
        text-align: center;
        padding: 1.5rem;
    }
}

/* 2. Amenities Section Mobile */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-card h3 {
        font-size: 1.3rem;
    }
}

/* 3. Floor Plans Section Mobile */
@media (max-width: 768px) {
    .floorplan-gallery {
        flex-direction: column;
        gap: 2rem;
    }
    
    .floorplan-item {
        width: 100%;
    }
    
    .floorplan-image {
        height: 250px;
    }
    
    .floorplan-info {
        padding: 1.5rem;
    }
    
    .floorplan-info h4 {
        font-size: 1.3rem;
    }
    
    .btn-download-small {
        width: 100%;
        justify-content: center;
    }
}

/* 4. Gallery Section Mobile */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(10, 37, 64, 0.8));
    }
    
    .gallery-overlay h4 {
        font-size: 1.2rem;
    }
}

/* 5. About Section Mobile */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item h4 {
        font-size: 1.5rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        border-radius: 15px;
    }
}

/* 6. Contact CTA Mobile */
@media (max-width: 768px) {
    .contact-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-form {
        padding: 1.5rem;
    }
}

/* 7. Final CTA Mobile */
@media (max-width: 768px) {
    .final-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .final-actions .btn-primary,
    .final-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-note {
        font-size: 0.9rem;
        text-align: center;
    }
}

/* 8. General Mobile Adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    section {
        padding: 0 !important;
    }
}

/* 9. Small Phones */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .connectivity-item {
        padding: 0.8rem;
    }
    
    .map-placeholder {
        padding: 180px !important;
    }
}

/* 10. Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        padding: 250px !important;
    }
}

/* Existing Responsive Design */
@media (max-width: 1024px) {
    .location-content,
    .about-content,
    .contact-cta-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .connectivity-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .property-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .floorplans-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .final-actions {
        flex-direction: column;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

/* Animation Enhancements */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-icon, .amenity-icon {
    animation: float 3s ease-in-out infinite;
}

/* Hover Effects Enhancement */
.property-card, .amenity-card, .floorplan-card {
    position: relative;
    overflow: hidden;
}

.property-card::before, .amenity-card::before, .floorplan-card::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: 0.5s;
}

.property-card:hover::before, .amenity-card:hover::before, .floorplan-card:hover::before {
    left: 100%;
}

/* Loading Animation for Images */
.gallery-item img, .property-image img, .floorplan-image img {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery-item img.loading, .property-image img.loading, .floorplan-image img.loading {
    opacity: 0.5;
}

/* Smooth Scrolling for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .cta-button, .btn-primary, .btn-secondary, .btn-enquire, .btn-view, .btn-download,
    .contact-cta, .final-cta, .modal-overlay {
        display: none !important;
    }
}

/* ============================================
   AMENITIES PAGE STYLES
   ============================================ */

/* Page Header Specific */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.9)),
                url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Section Variations */
.section-light {
    padding: var(--space-xl) 0;
    background: var(--cream);
}

.section-white {
    padding: var(--space-xl) 0;
    background: white;
}

.section-green {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #0a2540, #1a365d);
    color: white;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.stat-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.stat-card p {
    color: var(--slate);
    margin: 0;
    font-size: 0.9rem;
}

/* Amenities Categories */
.amenities-category {
    margin-bottom: 4rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream);
}

.category-title i {
    color: var(--gold);
    font-size: 1.5rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.amenity-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.amenity-image {
    height: 300px;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenity-content {
    padding: 2rem;
}

.amenity-content h4 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.amenity-content p {
    color: var(--slate);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.amenity-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.amenity-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate);
}

.amenity-features i {
    color: var(--gold);
    font-size: 0.9rem;
}

.amenity-timing {
    color: var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

/* Landscape Grid */
.landscape-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.landscape-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.landscape-image {
    height: 200px;
}

.landscape-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landscape-content {
    padding: 1.5rem;
}

.landscape-content h3 {
    margin-bottom: 1rem;
}

.landscape-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.landscape-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.feature-tag i {
    font-size: 0.8rem;
}

/* Floor Plan Tabs */
.floorplan-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: var(--cream);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
}

.tab-button.active {
    background: var(--gradient-gold);
    color: white;
}

.tab-button:hover:not(.active) {
    background: #e5e7eb;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.floorplan-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.floorplan-view {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--cream);
}

.floorplan-image {
    width: 100%;
    height: auto;
    display: block;
}

.floorplan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.floorplan-view:hover .floorplan-overlay {
    opacity: 1;
}

.btn-view-large {
    background: white;
    color: var(--navy);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-view-large:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

.floorplan-info h3 {
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.floorplan-size {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.specifications h4 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.specifications ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.specifications li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate);
}

.specifications i {
    color: var(--gold);
    width: 20px;
}

.btn-download-full {
    width: 100%;
    background: var(--navy);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-download-full:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.service-icon.security {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.service-icon.maintenance {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.service-icon.convenience {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.service-icon.sustainability {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.service-card p {
    color: var(--slate);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--slate);
}

.service-features li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* Specifications Tabs */
.specs-tabs {
    margin-top: 3rem;
}

.specs-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--cream);
    padding-bottom: 1rem;
}

.specs-nav-btn {
    padding: 0.75rem 1.5rem;
    background: var(--cream);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: var(--slate);
    cursor: pointer;
    transition: var(--transition);
}

.specs-nav-btn.active {
    background: var(--gradient-gold);
    color: white;
}

.specs-nav-btn:hover:not(.active) {
    background: #e5e7eb;
    color: var(--navy);
}

.specs-content {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.specs-content.active {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.specs-content h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream);
}

.specs-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-item {
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.spec-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.spec-item h4 i {
    color: var(--gold);
}

.spec-item p {
    color: var(--slate);
    margin: 0;
    line-height: 1.5;
}

/* CTA Section */
.section-cta {
    padding: var(--space-xl) 0;
    background: linear-gradient(rgba(10, 37, 64, 0.95), rgba(10, 37, 64, 0.95)),
                url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: rgb(0, 0, 0);
    text-align: center;
}

.cta-content h2 {
    color: rgb(0, 0, 0);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact p {
    color: rgba(0, 0, 0, 0.8);
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-contact i {
    color: var(--gold);
}

.cta-contact strong {
    color: rgb(0, 0, 0);
    font-weight: 600;
}

/* Floorplan Modal */
.floorplan-modal .modal-content {
    max-width: 900px;
    padding: 2rem;
}

.modal-floorplan-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .amenity-detail-card {
        grid-template-columns: 1fr;
    }
    
    .floorplan-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specs-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header .lead {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .landscape-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
        text-align: center;
    }
    
    .specs-nav {
        flex-direction: column;
    }
    
    .specs-nav-btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions button,
    .cta-actions a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .amenity-image {
        height: 200px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

/* Print Styles */
@media print {
    .cta-button, .btn-primary, .btn-secondary, .btn-download-full,
    .btn-view-large, .section-cta, .floorplan-overlay {
        display: none !important;
    }
    
    .amenity-detail-card {
        break-inside: avoid;
    }
}

/* Add to css/style.css */
#app-content {
    min-height: 60vh;
    transition: opacity 0.3s ease, transform 0.3s ease;
    /* Ensure content is visible */
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force visibility for all page content */
section {
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
}

/* Override any hiding styles */
.tab-content {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.tab-content:not(.active) {
    display: none !important;
}

.specs-content {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.specs-content:not(.active) {
    display: none !important;
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding: 1rem 0;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.filter-btn.active {
    background: var(--gradient-gold);
    color: white;
    border-color: var(--gold);
}

.filter-btn:hover:not(.active) {
    background: white;
    border-color: var(--gold-light);
}

/* Gallery Container */
.gallery-container {
    margin-top: 2rem;
}

.gallery-container h2 {
    color: var(--navy);
}

.gallery-category {
    margin-bottom: 4rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream);
}

.category-title i {
    color: var(--gold);
    font-size: 1.5rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 37, 64, 0.9));
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Floorplan Gallery */
.floorplan-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.floorplan-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.floorplan-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.floorplan-image {
    height: 200px;
    overflow: hidden;
}

.floorplan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.floorplan-item:hover .floorplan-image img {
    transform: scale(1.05);
}

.floorplan-info {
    padding: 1.5rem;
    text-align: center;
}

.floorplan-info h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.floorplan-info p {
    color: var(--slate);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.btn-download-small {
    background: var(--navy);
    color: rgb(81, 81, 81);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.btn-download-small:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* Virtual Tour */
.virtual-tour-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.tour-player {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.tour-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.tour-placeholder h3 {
    margin-bottom: 1rem;
}

.tour-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.tour-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.tour-feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tour-feature-list i {
    color: var(--gold);
    margin-top: 3px;
}

.tour-cta {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.tour-cta p {
    margin-bottom: 1rem;
}

/* Video Gallery */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    transition: var(--transition);
}

.video-card:hover .play-button {
    background: var(--gold);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.video-info p {
    color: var(--slate);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.video-duration {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    background: rgb(0, 0, 0);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-nav:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
    min-height: 400px;
}

#lightboxImage {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(184, 147, 89, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s linear infinite;
}

.lightbox-info {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.lightbox-info h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    color: var(--slate);
    margin-bottom: 1rem;
}

.lightbox-counter {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.lightbox-actions {
    padding: 1.5rem;
    background: var(--cream);
    display: flex;
    gap: 1rem;
}

.lightbox-actions .btn-primary,
.lightbox-actions .btn-secondary {
    flex: 1;
}

/* Video Modal */
.video-modal .modal-content {
    max-width: 800px;
    padding: 2rem;
}

.video-container {
    margin: 1rem 0;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: white;
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .virtual-tour-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .category-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .floorplan-gallery {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .lightbox-actions {
        flex-direction: column;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-info,
    .lightbox-actions {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .category-filters,
    .play-button,
    .lightbox-modal,
    .section-cta,
    .btn-primary,
    .btn-secondary,
    .btn-download-small {
        display: none !important;
    }
    
    .gallery-category {
        break-inside: avoid;
    }
    
    .gallery-item {
        height: auto;
        margin-bottom: 1rem;
    }
    
    .gallery-overlay {
        position: relative;
        transform: none;
        background: var(--cream);
        color: var(--navy);
        padding: 1rem;
    }
    
    .gallery-overlay h4 {
        color: var(--navy);
    }
    
    .gallery-overlay p {
        color: var(--slate);
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--gold);
}

.method-description {
    color: var(--slate);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.method-details {
    text-align: left;
    margin-bottom: 1.5rem;
}

.method-details p {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.phone-numbers, .email-addresses {
    margin-bottom: 1rem;
}

.phone-item, .email-item {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.phone-item:last-child, .email-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.phone-item strong, .email-item strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.phone-link, .email-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: block;
    word-break: break-all;
}

.phone-link:hover, .email-link:hover {
    color: var(--navy);
}

.timing-note, .response-note {
    color: var(--slate);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 1rem;
}

.timing-note i, .response-note i {
    color: var(--gold);
}

.whatsapp-info {
    text-align: left;
    margin-top: 1rem;
}

.whatsapp-info p {
    color: var(--slate);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-info i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Contact Form & Map Grid */
.contact-form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--slate);
}

/* Form Styles */
#contactPageForm .form-group {
    margin-bottom: 1.5rem;
}

#contactPageForm label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
}

#contactPageForm input,
#contactPageForm select,
#contactPageForm textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--cream);
}

#contactPageForm input:focus,
#contactPageForm select:focus,
#contactPageForm textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 151, 88, 0.1);
}

#contactPageForm .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
    color: var(--slate);
}

.checkbox-group a {
    color: var(--gold);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: var(--navy);
}

.form-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.form-footer p {
    color: var(--slate);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-footer i {
    color: var(--gold);
}

/* Map Container */
.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.map-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: white;
}

.map-header h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.map-placeholder {
    padding: 0;
}

.map-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
}

.map-marker i {
    font-size: 1.5rem;
    color: var(--gold);
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.location-details {
    padding: 2rem;
}

.location-details h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details h3 i {
    color: var(--gold);
}

.location-info {
    margin-bottom: 1.5rem;
}

.location-info p {
    color: var(--slate);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.location-info i {
    color: var(--gold);
    margin-top: 3px;
    min-width: 16px;
}

.location-features {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    margin-top: 4rem;
}

.location-features h4 {
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-features h3 {
    color: var(--black);
}

.location-features h4 i {
    color: var(--gold);
}

.location-features ul {
    list-style: none;
    padding: 0;
}

.location-features li {
    color: var(--slate);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-features li i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Sales Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    height: 200px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.member-role {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-bio {
    color: var(--slate);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.member-contact {
    background: var(--cream);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.member-contact p {
    color: var(--slate);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.member-contact p:last-child {
    margin-bottom: 0;
}

.member-contact i {
    color: var(--gold);
    width: 16px;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
    font-size: 0.9rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--slate);
    line-height: 1.6;
}

/* Contact CTA */
.section-cta {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: rgb(118, 118, 118);
    text-align: center;
    padding: 4rem 2rem;
}

.cta-content h2 {
    color: rgb(0, 0, 0);
    margin-bottom: 1rem;
}

.cta-content > p {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    color:#000;
    max-width: 800px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    color:#000;
}

.feature i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.feature p {
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Terms Modal */
.terms-modal {
    display: none;
}

.terms-modal.active {
    display: block;
}

.terms-content {
    max-width: 700px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.terms-content-scroll {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.terms-content h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.terms-content h3 {
    color: var(--navy);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem;
}

.terms-content p {
    color: var(--slate);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.terms-actions {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

/* Contact form feedback */
.contact-form-feedback {
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    border-left: 4px solid transparent;
    background: #f8fafc;
}

.contact-form-feedback[hidden] {
    display: none;
}

.contact-form-feedback .feedback-title {
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.contact-form-feedback .reference {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.35rem;
}

.contact-form-feedback.success {
    border-color: #047857;
    background: #ecfdf5;
    color: #065f46;
}

.contact-form-feedback.error {
    border-color: #dc2626;
    background: #fef2f2;
    color: #991b1b;
}

/* Success Message */
.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.lead-id {
    background: var(--cream);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: var(--slate);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.lead-id i {
    color: var(--gold);
}

.next-steps {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: left;
}

.next-steps h4 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    color: var(--slate);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.next-steps li i {
    color: var(--gold);
    margin-top: 3px;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-form-map-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-methods-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-methods-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .contact-method-card {
        padding: 1.5rem;
    }
    
    .form-header h2,
    .map-header h2 {
        font-size: 1.5rem;
    }
    
    #contactPageForm .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-features {
        grid-template-columns: repeat(2, 1fr);
        color:#000;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-answer.active {
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-map-grid {
        margin-top: 2rem;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        color:#000;
    }
    
    .member-image {
        height: 180px;
    }
    
    .map-image {
        height: 100px;
        width: 100px;
    }
    
    .location-details {
        padding: 1.5rem;
    }
    
    .section-cta {
        padding: 3rem 1rem;
    }
}

/* Print Styles */
@media print {
    .contact-form-container,
    .map-container,
    .contact-method-card,
    .team-member {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .cta-actions,
    .form-footer {
        display: none;
    }
}
/* ==============================================
   PRICING SECTION STYLES - REVISED
   ============================================== */

.pricing-section {
    padding: 90px 0;
    background: radial-gradient(circle at 20% 20%, rgba(184, 147, 89, 0.08), transparent 35%),
                radial-gradient(circle at 80% 10%, rgba(10, 37, 64, 0.08), transparent 32%),
                linear-gradient(135deg, #f8f9fa 0%, #eef2f6 100%);
    position: relative;
    overflow: hidden;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    color: var(--navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-header p {
    color: var(--slate);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-table-wrapper {
    background: white;
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(10, 37, 64, 0.10);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(10, 37, 64, 0.06);
    position: relative;
    z-index: 1;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.pricing-table thead {
    background: linear-gradient(120deg, #0a2540, #b89359);
    color: white;
}

.pricing-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.pricing-table th:first-child {
    padding-left: 30px;
    border-top-left-radius: 18px;
}

.pricing-table th:last-child {
    text-align: center;
    width: 150px;
    border-top-right-radius: 18px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    background-color: rgba(184, 147, 89, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 18px;
}

.pricing-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 18px;
}

.pricing-table td {
    padding: 22px 18px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.pricing-table td:first-child {
    padding-left: 30px;
}

.apartment-type {
    min-width: 200px;
}

.type-info h4 {
    margin: 0 0 5px 0;
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 600;
}

.type-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.area-info {
    min-width: 180px;
}

.area-range {
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
}

.price-info {
    min-width: 200px;
}

.price-amount {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2px;
}

.price-note {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
}

.action-cell {
    text-align: center;
    min-width: 120px;
}

.btn-enquire-price {
    background: linear-gradient(120deg, #b89359, #d4b483);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 26px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-enquire-price:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(184, 147, 89, 0.3);
    background: linear-gradient(120deg, #a8844a, #c9a26e);
}

.btn-enquire-price:active {
    transform: translateY(-1px);
}

.btn-enquire-price i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-enquire-price:hover i {
    transform: translateX(3px);
}

.pricing-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.pricing-note {
    background: linear-gradient(135deg, rgba(255, 249, 236, 0.9), rgba(255, 243, 205, 0.9));
    border: 1px solid #ffe3a3;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pricing-note:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 147, 89, 0.15);
}

.pricing-note i {
    color: #856404;
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-note p {
    margin: 0;
    color: #6d5200;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing CTA */
.pricing-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    border-radius: 16px;
    padding: 32px 32px 40px;
    text-align: center;
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.10), 0 1.5px 8px 0 rgba(184,147,89,0.10);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(10, 37, 64, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(184, 147, 89, 0.15);
}

/* 3D Blobs behind pricing-cta */
.pricing-cta-blob {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    pointer-events: none;
    animation: blobFloat 20s ease-in-out infinite alternate;
}

.pricing-cta-blob.blob1 {
    width: 320px;
    height: 220px;
    background: radial-gradient(circle at 30% 40%, #b89359 0%, #d4b483 100%);
    top: -80px;
    left: -120px;
    animation-delay: 0s;
}

.pricing-cta-blob.blob2 {
    width: 220px;
    height: 160px;
    background: radial-gradient(circle at 70% 60%, #0a2540 0%, #1a365d 100%);
    bottom: -60px;
    right: -80px;
    animation-delay: 5s;
}

.pricing-cta-blob.blob3 {
    width: 140px;
    height: 100px;
    background: radial-gradient(circle at 50% 50%, #b89359 0%, #fff3cd 100%);
    top: 60px;
    right: 40px;
    animation-delay: 10s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(20px, -15px) scale(1.05) rotate(3deg);
    }
    66% {
        transform: translate(-15px, 10px) scale(0.95) rotate(-2deg);
    }
    100% {
        transform: translate(10px, -20px) scale(1.08) rotate(5deg);
    }
}

.pricing-cta .cta-content {
    position: relative;
    z-index: 1;
}

.pricing-cta h4 {
    margin: 0 0 16px 0;
    color: var(--navy);
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

.pricing-cta p {
    color: var(--slate);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-cta .btn-primary {
    background: linear-gradient(135deg, #b89359, #d4b483);
    border: none;
    padding: 16px 40px;
    border-radius: 32px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,1.4,.6,1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(184, 147, 89, 0.2);
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-cta .btn-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 ease;
    z-index: -1;
}

.pricing-cta .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(184, 147, 89, 0.3), 0 4px 12px rgba(0,0,0,0.1);
}

.pricing-cta .btn-primary:hover::before {
    left: 100%;
}

.pricing-cta .btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.pricing-cta .btn-primary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.pricing-cta .btn-primary:hover i {
    transform: translateX(4px);
}

/* Animation for table rows */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-table tbody tr {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--row-index) * 0.05s);
    opacity: 0;
}

/* Highlight popular row */
.pricing-table tbody tr.popular {
    background: linear-gradient(to right, rgba(184, 147, 89, 0.05), rgba(184, 147, 89, 0.02));
    border-left: 4px solid var(--gold);
    position: relative;
}

.pricing-table tbody tr.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-container {
        max-width: 95%;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 18px 12px;
    }
    
    .pricing-table th:first-child,
    .pricing-table td:first-child {
        padding-left: 24px;
    }
    
    .price-amount {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .pricing-table-wrapper {
        overflow-x: auto;
        border-radius: 12px;
    }
    
    .pricing-table {
        min-width: 700px;
        font-size: 0.85rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 16px 10px;
    }
    
    .pricing-table th:first-child,
    .pricing-table td:first-child {
        padding-left: 20px;
    }
    
    .type-info h4 {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 1.1rem;
    }
    
    .pricing-footer {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-note {
        padding: 20px;
    }
    
    .pricing-cta {
        padding: 28px 24px;
    }
    
    .pricing-cta-blob {
        filter: blur(30px);
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .pricing-header h2 {
        font-size: 1.75rem;
    }
    
    .pricing-header p {
        font-size: 1rem;
    }
    
    .pricing-table {
        min-width: 600px;
        font-size: 0.8rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 14px 8px;
    }
    
    .pricing-table th:first-child,
    .pricing-table td:first-child {
        padding-left: 16px;
    }
    
    .btn-enquire-price {
        padding: 10px 18px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .pricing-note {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 16px;
    }
    
    .pricing-note i {
        align-self: center;
        font-size: 1.5rem;
    }
    
    .pricing-cta h4 {
        font-size: 1.25rem;
    }
    
    .pricing-cta .btn-primary {
        padding: 14px 32px;
        font-size: 1rem;
        border-radius: 28px;
    }
    
    .pricing-cta-blob {
        display: none; /* Hide blobs on very small screens */
    }
}

/* Print Styles */
@media print {
    .pricing-section {
        background: white !important;
        padding: 20px 0 !important;
    }
    
    .pricing-table-wrapper {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .btn-enquire-price,
    .pricing-cta .btn-primary,
    .pricing-cta-blob {
        display: none !important;
    }
}