/* ===========================
   CSS Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Tropical Vibrant Color Scheme */
    --primary-turquoise: #00BCD4;
    --primary-teal: #0097A7;
    --accent-coral: #FF6B6B;
    --accent-orange: #FF8A65;
    --bg-cream: #FFFEF7;
    --bg-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-medium: #546E7A;
    --text-light: #90A4AE;
    --gradient-tropical: linear-gradient(135deg, rgba(0, 188, 212, 1) 0%, rgba(0, 151, 167, 1) 100%);
    --gradient-sunset: linear-gradient(135deg, #FF6B6B 0%, #FF8A65 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    height: 100%;
    height: -webkit-fill-available;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    min-height: -webkit-fill-available;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ===========================
   Navigation - Floating Round Button
   =========================== */
.nav-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-tropical);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 188, 212, 0.6);
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hide nav toggle when lightbox is open */
.lightbox.active ~ .nav-toggle {
    opacity: 0;
    pointer-events: none;
}

/* Contact Toggle Button */
.contact-toggle {
    position: fixed;
    top: 2rem;
    right: 6.5rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-tropical);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 188, 212, 0.6);
}

.contact-toggle svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

/* Hide contact toggle when lightbox is open */
.lightbox.active ~ .contact-toggle {
    opacity: 0;
    pointer-events: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: none; /* Hidden by default, shown on mobile */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 2000;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Hide WhatsApp button when lightbox is open */
.lightbox.active ~ .whatsapp-float {
    opacity: 0;
    pointer-events: none;
}

/* WhatsApp Contact Item Styling */
.contact-item.whatsapp-contact .contact-icon svg {
    fill: #25D366;
    stroke: none;
}

.contact-item.whatsapp-contact a {
    color: #25D366;
    font-weight: 600;
}

.contact-item.whatsapp-contact a:hover {
    color: #128C7E;
}

.nav-menu {
    position: fixed;
    top: 5rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    display: none;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    min-width: 250px;
    border: 2px solid rgba(0, 188, 212, 0.1);
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: translateY(0) scale(1);
}

.nav-menu-header {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-teal);
    border-bottom: 2px solid rgba(0, 188, 212, 0.1);
    font-family: 'Poppins', sans-serif;
}

.nav-menu ul {
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-teal);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-menu a:hover {
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.1) 0%, transparent 100%);
    color: var(--primary-teal);
    padding-left: 2rem;
}

.nav-menu a:hover svg {
    stroke: var(--primary-turquoise);
    transform: scale(1.15);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-cream);
}

/* Gaussian blur at top - blurs the hero image and dissolves into background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    pointer-events: none;
    z-index: 4;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: linear-gradient(to bottom, 
        rgba(255, 254, 247, 1) 0%, 
        rgba(255, 254, 247, 0.9) 15%,
        rgba(255, 254, 247, 0.7) 30%,
        rgba(255, 254, 247, 0.4) 50%,
        rgba(255, 254, 247, 0.2) 70%,
        rgba(255, 254, 247, 0.05) 85%,
        rgba(255, 254, 247, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 20%, transparent 100%);
}

/* Gaussian blur at bottom - blurs the hero image and dissolves into background */
.hero::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    z-index: 4;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    background: linear-gradient(to top, 
        rgba(255, 254, 247, 1) 0%, 
        rgba(255, 254, 247, 1) 10%,
        rgba(255, 254, 247, 0.85) 30%,
        rgba(255, 254, 247, 0.5) 60%,
        rgba(255, 254, 247, 0) 100%);
    mask-image: linear-gradient(to top, black 0%, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 0%, black 20%, transparent 100%);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1160px;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-tropical);
    opacity: 0.05;
    z-index: 2;
}

.for-sale-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--accent-coral);
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-upper {
    flex: 0 0 auto;
    padding-top: 4rem;
    color: white;
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1396px) {
    .hero-upper {
        padding-top: 6rem;
    }
}

.hero-lower {
    flex: 0 0 auto;
    padding-bottom: 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0;
    opacity: 0.95;
}

.hero-price {
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.0rem;
    color: var(--primary-teal);
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-cream);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: inline-block;
    box-shadow: var(--shadow-sm);
}


/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: white;
    box-shadow: var(--shadow-md);
}

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

/* ===========================
   Quick Stats
   =========================== */
.quick-stats {
    background-color: var(--bg-cream);
    padding-top: 7rem;
    padding-bottom: 2rem;
    margin-top: -5rem;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--primary-teal);
}

.stat-info h3 {
    font-size: 2rem;
    color: var(--primary-teal);
    font-weight: 700;
}

.stat-info p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-sunset);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ===========================
   Floorplan Section
   =========================== */
.floorplan-section {
    margin-top: -4rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    background-color: var(--bg-cream);
}

.floorplan-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 0rem;
    margin-bottom: -10rem;
}

.floorplan-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

/* Square Footage Table */
.sqft-table-container {
    margin: 13rem auto 0;
    max-width: 800px;
}

.sqft-table-container h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.sqft-table-wrapper {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    overflow-x: auto;
}

.sqft-table {
    width: 100%;
    border-collapse: collapse;
}

.sqft-table thead {
    background: var(--gradient-tropical);
    color: white;
}

.sqft-table th {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.sqft-table th:first-child {
    border-radius: 12px 0 0 0;
    text-align: left;
}

.sqft-table th:last-child {
    border-radius: 0 12px 0 0;
}

.sqft-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.sqft-table tbody tr:hover {
    background-color: rgba(0, 188, 212, 0.05);
}

.sqft-table td {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.sqft-table td:first-child {
    text-align: left;
}

.sqft-table td:last-child {
    text-align: right;
    font-weight: 500;
    color: var(--text-dark);
}

.sqft-table .total-row {
    background-color: rgba(0, 188, 212, 0.1);
    border-top: 2px solid var(--primary-turquoise);
    border-bottom: none;
}

.sqft-table .total-row td {
    padding: 1rem 0.75rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.sqft-table .total-row td:first-child {
    border-radius: 0 0 0 12px;
}

.sqft-table .total-row td:last-child {
    border-radius: 0 0 12px 0;
}

.sqft-table .total-row:hover {
    background-color: rgba(0, 188, 212, 0.15);
}

/* Responsive table for mobile */
@media (max-width: 768px) {
    .sqft-table-wrapper {
        padding: 1rem;
    }
    
    .sqft-table-container h3 {
        font-size: 1.5rem;
    }
    
    .sqft-table th,
    .sqft-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .sqft-table th {
        font-size: 0.95rem;
    }
    
    .sqft-table .total-row td {
        font-size: 1rem;
    }
    
}

/* ===========================
   Location Map Section
   =========================== */
.location-map-section {
    margin-top: -2rem;
    padding: 1rem 0;
    background-color: var(--bg-white);
}

.location-coords {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
    font-family: 'Courier New', monospace;
    font-weight: 500;
}

.property-map {
    width: 100%;
    max-width: 800px;
    height: 500px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    overflow: hidden;
    /* # center the map on the page */
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0 auto;
}

.map-caption {
    text-align: center;
    font-size: 1rem;
    color: var(--text-medium);
    font-style: italic;
    margin-top: 1rem;
}

/* Leaflet popup styling */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.leaflet-popup-content {
    margin: 12px;
}

@media (max-width: 768px) {
    .property-map {
        height: 400px;
    }
    
    .location-coords {
        font-size: 0.95rem;
    }
    
    /* Make Leaflet popup more compact on mobile */
    .leaflet-popup-content-wrapper {
        max-width: 220px;
    }
    
    .leaflet-popup-content {
        margin: 10px;
        font-size: 0.8rem;
    }
 
    .floorplan-container {
        margin-bottom: -10rem;
    }
}

/* Landscape orientation - rotate floorplan 90 degrees */
@media (orientation: landscape) {
    .floorplan-image {
        transform: rotate(-90deg);
        max-width: 80vh;
        max-height: 90vw;
        margin-top: -10rem;
        margin-bottom: -5rem;
        z-index: 0;
    }
}

/* ===========================
   Overview Section
   =========================== */
.overview {
    padding: 0rem 0;
    background-color: var(--bg-cream);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.overview-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.overview-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.overview-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.overview-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: -2rem;
}

.highlight-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-turquoise);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-turquoise);
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.highlight-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Pricing Details Section */
.pricing-details {
    margin-top: 0rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    background-color: var(--bg-cream);
}

/* Pricing Section */
.pricing-section {
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #E0F7FA 100%);
    border-radius: 16px;
    margin-top: 2rem;
}

.pricing-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-teal);
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.price-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.price-card.featured {
    border-color: var(--primary-turquoise);
    background: linear-gradient(135deg, var(--bg-white) 0%, #E0F7FA 100%);
    transform: scale(1.05);
}

.price-card:hover {
    border-color: var(--accent-coral);
    transform: translateY(-5px);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.price-amount {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-teal);
    margin: 0.5rem 0;
    white-space: nowrap;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Property Financial Info */
.property-financial-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.financial-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.financial-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.financial-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-coral);
}

.financial-item h4 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.financial-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   Gallery Section
   =========================== */
.gallery {
    padding: 2rem 0;
    margin-top: -2rem;
    background-color: var(--bg-cream);
}

.gallery-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-coral);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    z-index: 5;
}

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

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

/* ===========================
   Amenities Section
   =========================== */
.amenities {
    padding: 0rem 0;
    background-color: var(--bg-cream);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.amenity-category {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.amenity-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.amenity-header svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-teal);
    flex-shrink: 0;
}

.amenity-category h3 {
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin: 0;
}

.amenity-category ul {
    list-style: none;
}

.amenity-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.amenity-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-coral);
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background-color: var(--bg-cream);
}

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

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-teal);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-teal);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

/* Location Section */
.location-section {
    padding: 0rem 0;
    background-color: var(--bg-cream);
}

/* Location Info */
.location-info {
    padding: 2rem;
    background: linear-gradient(135deg, #E0F7FA 0%, var(--bg-cream) 100%);
    border-radius: 16px;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.location-header svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-teal);
}

.location-info h3 {
    font-size: 2rem;
    color: var(--primary-teal);
    margin: 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.location-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.location-item h4 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.location-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Additional Info Section */
.additional-info-section {
    padding: 3rem 0;
    background-color: var(--bg-cream);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.info-header svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-teal);
}

.info-header h3 {
    font-size: 2rem;
    color: var(--primary-teal);
    margin: 0;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-column ul {
    background: var(--bg-cream);
    padding: 1rem;
    border-radius: 12px;
}

.info-column li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    border-bottom: 1px solid #E0E0E0;
}

.info-column li:last-child {
    border-bottom: none;
}

.info-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-turquoise);
    font-weight: 700;
    font-size: 1.5rem;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #E0F7FA 50%, var(--bg-cream) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-teal);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-turquoise);
}

.contact-item h4 {
    color: var(--primary-teal);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--text-medium);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-turquoise);
}

.contact-item p {
    color: var(--text-medium);
}

.response-time {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-coral);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.response-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.response-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-coral);
}

.response-time strong {
    color: var(--primary-teal);
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--bg-cream);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-turquoise);
    background-color: var(--bg-white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
    display: block;
}

.form-message.error {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
    display: block;
}

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

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-turquoise);
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-coral);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.7;
}

/* ===========================
   Lightbox
   =========================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for modern browsers */
    background-color: rgb(255, 255, 255);
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.lightbox.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.lightbox-content-wrapper {
    display: flex;
    gap: 0.5rem;
    max-width: 98%;
    max-height: calc(100vh - 100px);
    align-items: stretch;
    margin-bottom: 0.5rem;
    margin-top: 0rem;
    transition: margin-bottom 0.4s ease;
}

.lightbox-image-container {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0;
    margin: 0;
    /* Ensure minimap doesn't inherit sizing from flex container */
    overflow: visible;
    transition: margin-bottom 0.4s ease;
}

.lightbox-content {
    max-width: 100%;
    max-height: calc(100vh - 250px);
    width: auto;
    height: auto;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    position: fixed;
    top: 2rem;
    left: 2rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10001;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    color: white;
    background-color: var(--accent-coral);
    transform: rotate(90deg);
    border-color: var(--accent-coral);
}

.lightbox-caption {
    color: rgba(0, 0, 0, 0.95);
    font-size: 1.05rem;
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    max-width: 90%;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    transform: translateY(0);
    opacity: 1;
}

/* Navigation arrows removed - users can use thumbnail carousel */

/* Lightbox Thumbnails */
.lightbox-thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    max-width: 95%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: -50px;
    transition: all 0.4s ease;
    transform: translateY(0);
    opacity: 1;
}

.lightbox-thumbnails::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Hide all scrollbars globally while maintaining scroll */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.lightbox-thumbnail {
    flex: 0 0 90px;
    height: 65px;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lightbox-thumbnail:hover {
    opacity: 0.85;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.lightbox-thumbnail.active {
    opacity: 1;
    border-color: var(--primary-turquoise);
    box-shadow: 0 0 0 2px var(--primary-turquoise), 0 4px 12px rgba(0, 188, 212, 0.5);
    transform: scale(1.05);
}

.lightbox-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================
   Floorplan Minimap
   =========================== */
.lightbox-minimap {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 150px;
    height: 318px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 4px;
    display: block;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(0);
    z-index: 100;
    overflow: hidden;
    /* Desktop: Vertical orientation, fixed dimensions */
}

.lightbox.zoomed .lightbox-minimap {
    transform: translateY(150%) !important;
    opacity: 0;
    pointer-events: none;
}

.lightbox-minimap.active {
    opacity: 1;
}

.lightbox-minimap:not(.active) {
    opacity: 0;
    pointer-events: none;
}

#minimap-floorplan {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    /* PNG stretches to fill rotated container exactly - no letterboxing */
}

.minimap-toggle {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    transform: translateY(0);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 101;
}

.lightbox.zoomed .minimap-toggle {
    transform: translateY(150%) !important;
    opacity: 0;
    pointer-events: none;
}

.minimap-toggle svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.minimap-toggle:hover {
    background: rgba(0, 188, 212, 0.9);
    border-color: var(--primary-turquoise);
    transform: scale(1.1);
}

.minimap-toggle.active {
    background: var(--primary-turquoise);
    border-color: var(--primary-turquoise);
}

/* ===========================
   Responsive Design
   =========================== */

/* Medium screens - no navigation arrows */

/* No special minimap styles needed for medium screens - desktop styles apply */

/* Tablet */
@media (max-width: 768px) {
    /* Show WhatsApp floating button on mobile */
    .whatsapp-float {
        display: flex;
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        left: 1.5rem;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .hero-lower {
        padding-bottom: 0rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Mobile nav adjustments */
    .nav-toggle {
        width: 55px;
        height: 55px;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .nav-toggle span {
        width: 22px;
    }
    
    .contact-toggle {
        width: 55px;
        height: 55px;
        top: 1.5rem;
        right: 5.5rem;
    }
    
    .contact-toggle svg {
        width: 26px;
        height: 26px;
    }
    
    .nav-menu {
        right: 1.5rem;
        top: 4.5rem;
        min-width: 220px;
    }
    
    .lightbox-minimap {
        transform: rotate(-90deg) translateX(0) !important;
        transform-origin: center center !important;
        bottom: -50px !important;
        right: 60px !important;
        width: 100px !important;
        height: 211px !important;
        padding: 4px !important;
        /* Tablet: Horizontal orientation (rotated), fixed dimensions */
    }
    
    .lightbox.zoomed .lightbox-minimap {
        transform: rotate(-90deg) translateX(-150%) !important;
    }
    
    .lightbox-minimap #minimap-floorplan {
        transform: none !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Position caption and carousel fixed from bottom */
    .lightbox-caption {
        position: fixed !important;
        bottom: 110px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 85% !important;
        max-width: 85% !important;
        margin-bottom: 0 !important;
        z-index: 10002 !important;
    }
    
    .lightbox-thumbnails {
        position: fixed !important;
        bottom: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 95% !important;
        max-width: 95% !important;
        margin-bottom: 0 !important;
        border-radius: 12px !important;
        z-index: 10002 !important;
    }
    
    /* When zoomed, slide caption and carousel down from fixed positions */
    .lightbox.zoomed .lightbox-caption {
        transform: translateX(-50%) translateY(200%) !important;
        opacity: 0;
    }
    
    .lightbox.zoomed .lightbox-thumbnails {
        transform: translateX(-50%) translateY(200%) !important;
        opacity: 0;
    }
    .floorplan-container {
        margin-bottom: -10rem;
    }


}

/* Mobile - Below 450px per memory */
@media (max-width: 449px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .for-sale-badge {
        top: 23px;
        left: 15px;
        right: auto;
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .hero-upper {
        padding-top: 3.5rem;
    }
    
    .hero-lower {
        padding-bottom: 8rem;
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
        margin-bottom: -9rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .hero-price {
        font-size: 2rem;
        margin-bottom: 1rem;
        margin-top: 0;
        padding: 0.2rem 0.2rem;    
        max-width: 260px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-price {
        text-align: center;
        width: 100%;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .btn-primary {
        position: relative;
        z-index: 6;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .quick-stats {
        padding-top: 6rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .overview-text {
        font-size: 1rem;
    }
    
    .overview-text .lead {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .price-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .price-card {
        padding: 1rem 0.8rem;
    }
    
    .price-label {
        font-size: 0.75rem;
    }
    
    .price-note {
        font-size: 0.75rem;
    }
    
    .price-card.featured {
        grid-column: 1;
    }
    
    /* Property Tax card should span full width below */
    .price-card:nth-child(2) {
        grid-column: 1 / -1;
    }
    
    /* Lot Size card in top right */
    .price-card:nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    /* Mobile Lightbox Improvements */
    .lightbox.active {
        padding: 0;
    }
    
    .lightbox-content-wrapper {
        max-height: 100%;
        gap: 0.5rem;
        margin-bottom: 0;
    }
    
    .lightbox-image-container {
        max-height: none;
    }
    
    .lightbox-content {
        max-height: calc(100vh - 160px);
    }
    
    /* Position caption and carousel fixed from bottom */
    .lightbox-caption {
        position: fixed !important;
        bottom: 110px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 90% !important;
        margin-bottom: 0 !important;
        z-index: 10002 !important;
    }
    
    .lightbox-thumbnails {
        position: fixed !important;
        bottom: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
        border-radius: 8px !important;
        z-index: 10002 !important;
    }
    
    .lightbox-minimap {
        transform: rotate(-90deg) translateX(0) !important;
        transform-origin: center center !important;
        bottom: -35px !important;
        right: 42px !important;
        width: 70.75px !important;
        height: 150px !important;
        padding: 4px !important;
        /* Mobile: Horizontal orientation (rotated), fixed dimensions */
    }
    
    .lightbox.zoomed .lightbox-minimap {
        transform: rotate(-90deg) translateX(150%) !important;
    }
    
    .lightbox-minimap #minimap-floorplan {
        transform: none !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* When zoomed, slide caption and carousel down from their fixed positions */
    .lightbox.zoomed .lightbox-caption {
        transform: translateX(-50%) translateY(200%) !important;
        opacity: 0;
    }
    
    .lightbox.zoomed .lightbox-thumbnails {
        transform: translateX(-50%) translateY(200%) !important;
        opacity: 0;
    }
    
    .minimap-toggle {
        width: 30px;
        height: 30px;
        bottom: 10px;
        right: 10px;
    }
    
    .minimap-toggle svg {
        width: 16px;
        height: 16px;
    }
    
    /* Navigation arrows removed */
    
    .lightbox-close {
        right: 0.75rem;
        top: 0.75rem;
        font-size: 35px;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-counter {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        top: 0.75rem;
        left: 0.75rem;
    }
    
    .lightbox-caption {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
    
    .lightbox-thumbnails {
        max-width: 100%;
        padding: 0.85rem;
        gap: 0.5rem;
        margin-bottom: 0;
        border-radius: 0;
    }
    
    .lightbox-thumbnail {
        flex: 0 0 70px;
        height: 52px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-toggle {
        width: 50px;
        height: 50px;
        top: 1rem;
        right: 1rem;
    }
    
    .contact-toggle {
        width: 50px;
        height: 50px;
        top: 1rem;
        right: 4.5rem;
    }
    
    .contact-toggle svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        left: 1rem;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .nav-menu {
        right: 1rem;
        top: 4rem;
        min-width: 200px;
    }

}

/* Mobile Landscape Orientation */
@media (max-width: 1024px) and (orientation: landscape) {
    .quick-stats {
        padding-top: 7rem;
    }
    
    .hero-lower {
        padding-bottom: 0rem;
        padding-top: 8rem;
    }
    
    .floorplan-container {
        margin-bottom: -10rem;
    }
}

/* Large Desktop - Blur edges when hero image is at max-width */
@media (min-width: 1161px) {
    /* Left edge blur */
    .hero-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 80px;
        pointer-events: none;
        z-index: 2;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        background: linear-gradient(to right, 
            rgba(255, 254, 247, 1) 0%, 
            rgba(255, 254, 247, 0.9) 15%,
            rgba(255, 254, 247, 0.7) 30%,
            rgba(255, 254, 247, 0.4) 55%,
            rgba(255, 254, 247, 0.15) 75%,
            rgba(255, 254, 247, 0) 100%);
        mask-image: linear-gradient(to right, black 0%, black 20%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, black 0%, black 20%, transparent 100%);
    }
    
    /* Right edge blur */
    .hero-image::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 80px;
        pointer-events: none;
        z-index: 2;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        background: linear-gradient(to left, 
            rgba(255, 254, 247, 1) 0%, 
            rgba(255, 254, 247, 0.9) 15%,
            rgba(255, 254, 247, 0.7) 30%,
            rgba(255, 254, 247, 0.4) 55%,
            rgba(255, 254, 247, 0.15) 75%,
            rgba(255, 254, 247, 0) 100%);
        mask-image: linear-gradient(to left, black 0%, black 20%, transparent 100%);
        -webkit-mask-image: linear-gradient(to left, black 0%, black 20%, transparent 100%);
    }
    .floorplan-container {
        margin-top: -5rem;
        margin-bottom: -22rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    .floorplan-container {
        margin-top: -5rem;
        margin-bottom: -20rem;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }

}

