/* CSS Variables - Luxury Tropical Theme */
:root {
    --color-beige: #181818;
    /* Secondary background */
    --color-white: #0F0F0F;
    /* Primary background */
    --color-olive: #C9A66B;
    /* Accent color */
    --color-olive-dark: #E0B877;
    /* Accent hover */
    --color-brown: #F5F5F5;
    /* Primary text */
    --color-brown-light: #B5B5B5;
    /* Secondary text */

    --bg-primary: #0F0F0F;
    --bg-secondary: #181818;

    --text-primary: #F5F5F5;
    --text-secondary: #B5B5B5;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader Styled */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0F0F0F;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-logo {
    width: 120px;
    height: auto;
    border-radius: 12px;
    animation: loaderPulse 2s infinite ease-in-out;
}

.loader-line {
    width: 140px;
    height: 2px;
    background-color: rgba(201, 166, 107, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-olive);
    animation: loadingLine 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes loadingLine {
    to { left: 100%; }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Typography Specials */
.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    color: var(--color-olive);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-brown);
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--color-olive);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--color-olive-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--color-olive);
    color: var(--color-olive);
}

.btn-outline:hover {
    background-color: var(--color-olive);
    color: #ffffff;
}

.btn-link {
    color: var(--color-olive);
    font-weight: 600;
    padding: 0;
    display: inline-flex;
    align-items: center;
}

.btn-link:hover {
    color: var(--color-olive-dark);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-transparent {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-transparent:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Info Cards Section */
.section-padding-small {
    padding: 1rem 0 4rem;
}

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

.info-card {
    background-color: var(--bg-secondary);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(201, 166, 107, 0.1);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-olive);
    box-shadow: 0 10px 30px rgba(201, 166, 107, 0.1);
}

.info-card h3 {
    font-size: 1rem;
    color: var(--color-olive);
    margin-bottom: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .info-card {
        padding: 1rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: var(--transition);
    background-color: #000000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background-color: #000000;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--color-brown);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.logo-link {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-olive);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition);
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-logo {
        height: 50px;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(15, 15, 15, 0.95);
        padding: 2rem;
        text-align: center;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('Images/Hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(30, 30, 30, 0.8), rgba(30, 30, 30, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-subtext {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Lifestyle Section */
.lifestyle {
    background-color: var(--bg-primary);
}

.lifestyle-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* About Section */
.about {
    background-color: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.7s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-experience {
    position: absolute;
    bottom: -1px;
    left: -1px;
    background-color: #ffffff;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top-right-radius: 8px;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #000000;
    line-height: 1;
}

.exp-text {
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
}

/* Architecture Section */
.architecture {
    background-color: var(--bg-secondary);
}

.architecture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.teaser-video-container {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teaser-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(201, 166, 107, 0.2);
}

.teaser-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .teaser-video-container {
        max-width: 320px;
    }
}

/* Highlights Section */
.highlights {
    background-color: var(--bg-primary);
}

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

.highlight-card {
    background-color: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.highlight-card .icon {
    width: 70px;
    height: 70px;
    background-color: #f3eee9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.25rem;
    color: var(--color-brown);
}

/* Location Section */
.location {
    background-color: var(--bg-secondary);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-list {
    margin-top: 2rem;
}

.location-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.location-list li:last-child {
    border-bottom: none;
}

.loc-name {
    font-weight: 600;
    color: var(--color-brown);
}

.loc-time {
    color: var(--color-olive);
    font-weight: 500;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Amenities Section */
.amenities {
    background-color: var(--bg-primary);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.amenity-item {
    padding: 2rem;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.amenity-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: rgba(201, 166, 107, 0.1);
    color: var(--color-olive);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.amenity-item:hover .amenity-icon {
    background-color: rgba(201, 166, 107, 0.2);
}

.amenity-item h4 {
    color: var(--color-brown);
    font-size: 1.125rem;
}

/* Interior Gallery Section */
.interior-gallery {
    background-color: var(--bg-secondary);
}

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

.interior-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.interior-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.interior-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--color-brown);
}

.interior-overlay h5 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.interior-item:hover img {
    transform: scale(1.05);
}

.interior-item:hover .interior-overlay h5 {
    transform: translateY(0);
    opacity: 1;
}

/* Investment Potential Section */
.investment {
    background-color: var(--bg-primary);
}

.investment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.investment-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.investment-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s;
}

.investment-image:hover img {
    transform: scale(1.05);
}

.investment-list {
    margin-top: 1.5rem;
}

.investment-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-brown);
    font-weight: 500;
}

.investment-list li:before {
    content: "✓";
    color: var(--color-olive);
    margin-right: 10px;
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    align-items: stretch;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.large-h {
    grid-column: span 1;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-item .overlay span {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay span {
    transform: translateY(0);
}

/* Developer Section */
.developer {
    background-color: var(--color-olive-dark);
    color: #ffffff;
}

.developer-content {
    max-width: 800px;
}

.developer-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.developer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background-color: #000000;
}

.contact p,
.contact .section-title {
    color: #ffffff;
}

.contact .form-group label {
    color: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-items {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item strong {
    display: block;
    color: var(--color-olive);
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.contact-form-container {
    background-color: var(--color-beige);
    padding: 3rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-brown);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: transparent;
    color: #ffffff;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-olive);
    box-shadow: 0 0 0 3px rgba(96, 108, 56, 0.1);
}

/* Footer */
.footer {
    background-color: #0A0A0A;
    color: var(--color-brown);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    image-rendering: -webkit-optimize-contrast;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul a,
.footer-legal ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul a:hover,
.footer-legal ul a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer-disclaimer-text {
    max-width: 1000px;
    margin: 1.5rem auto 0;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-disclaimer-text p {
    margin-bottom: 0.75rem;
}

/* Legal Page Styles */
.page-legal .navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-legal .logo,
.page-legal .nav-links a {
    color: var(--color-brown);
}

.legal-content {
    padding-top: 120px;
    background-color: var(--color-beige);
    min-height: calc(100vh - 300px);
}

.legal-container {
    max-width: 800px;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-style: italic;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-olive);
}

.legal-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Animations Tools */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item.large-h {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }

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

    .hero-title {
        font-size: 2.8rem;
        margin-top: 1rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .about-grid,
    .location-grid,
    .contact-wrapper,
    .architecture-grid,
    .investment-grid,
    .organicism-grid,
    .lead-capture-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: 2;
    }

    .about-text {
        order: 1;
        text-align: center;
    }

    .architecture-text {
        text-align: center;
    }

    .investment-text {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-brand p {
        margin: 1rem auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.large,
    .gallery-item.large-h {
        grid-column: span 1;
        grid-row: span 1;
    }

    .interior-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--color-white);
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-brown-light);
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--color-brown);
    transform: scale(1.1);
}

/* Floating Action Buttons */
.floating-actions-desktop {
    display: none;
}

@media (min-width: 769px) {
    .floating-actions-desktop {
        display: flex;
        position: fixed;
        bottom: 30px;
        width: 100%;
        justify-content: space-between;
        pointer-events: none;
        /* Let clicks pass through container */
        z-index: 999;
        padding: 0 40px;
    }

    .float-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        pointer-events: auto;
        /* Re-enable clicks on buttons */
    }

    .float-btn:hover {
        transform: translateY(-6px) scale(1.05);
    }

    .float-whatsapp {
        background-color: #25D366;
    }

    .float-call {
        background-color: var(--color-olive);
        color: #000;
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-family: var(--font-heading);
    color: var(--color-olive-dark);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
    color: white;
}

/* --- New Sections Styles --- */
:root {
    --new-primary-brown: #8A4B37;
    --new-beige-bg: #EDE6DC;
    --new-sand: #B8A17C;
    --new-light-cream: #F7F3EE;
    --new-green-status: #C8E6C9;
    --new-text-dark: #2E2E2E;
}

.mt-4 {
    margin-top: 1.5rem;
}

.section-subtitle-new {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* 1. Refined Tropical Organicism */
.organicism {
    background-color: #2a2a2a;
}

.organicism-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.organicism-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.og-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 250px;
}

.og-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.og-item:hover {
    transform: translateY(-5px);
}

.status-badge {
    display: inline-block;
    background-color: var(--new-beige-bg);
    color: var(--new-primary-brown);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

/* 2. Availability & Configuration */
.availability {
    background-color: var(--bg-primary);
}

.table-card {
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    margin-top: 2rem;
    overflow-x: auto;
}

.luxury-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.luxury-table th {
    text-align: left;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid var(--new-beige-bg);
    color: var(--new-sand);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.125rem;
}

.luxury-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--new-beige-bg);
    color: #ffffff;
    font-weight: 500;
}

.luxury-table tr:last-child td {
    border-bottom: none;
}

.luxury-table tr {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.luxury-table tbody tr:hover {
    transform: translateY(-2px);
    background-color: #2a2a2a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.badge-green {
    background-color: var(--new-green-status);
    color: #1b5e20;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* 3. Lead Capture */
.lead-capture {
    background-color: var(--new-beige-bg);
}

.lead-capture-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    margin-top: 2.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    font-size: 1.125rem;
}

.lead-capture-form-container {
    background-color: #ffffff;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.btn-brown {
    background-color: var(--new-primary-brown);
    color: #ffffff;
    border-radius: 8px;
    padding: 1.2rem;
    font-size: 1.125rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-brown:hover {
    background-color: #6a392a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 75, 55, 0.2);
}

.luxury-form input,
.luxury-form textarea {
    border: 1px solid var(--new-beige-bg);
    border-radius: 8px;
    background-color: #ffffff;
}

.luxury-form input:focus,
.luxury-form textarea:focus {
    border-color: var(--new-primary-brown);
    box-shadow: 0 0 0 3px rgba(138, 75, 55, 0.1);
}

.location-section {
    padding: 6rem 1.5rem;
    background-color: #000000;
}

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

.location-map {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-card {
    background-color: #0A0A0A;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.location-card h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.location-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.location-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.location-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
}

.location-features li span {
    color: var(--color-olive);
    font-weight: 600;
}

@media (max-width: 991px) {
    .location-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Responsive Overrides for New Sections */
@media (max-width: 900px) {

    .organicism-grid,
    .lead-capture-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .organicism-gallery {
        grid-template-columns: 1fr;
    }

    .og-item {
        height: 200px;
    }

    .lead-capture-form-container {
        padding: 2rem;
    }

    .table-card {
        padding: 1.5rem;
    }
}

/* Mobile Action Bar */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #0F0F0F;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: none;
    border: none;
    color: #ffffff !important;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    padding: 10px 0;
}

.action-btn span {
    color: #ffffff !important;
    margin-top: 4px;
}

.action-btn svg {
    stroke: #ffffff !important;
}

.action-btn:hover,
.action-btn:active {
    background-color: #2a2a2a;
}

.action-btn svg {
    margin-bottom: 4px;
    width: 20px;
    height: 20px;
}

.action-divider {
    width: 1px;
    height: 100%;
    background-color: #E5E5E5;
}

@media (max-width: 768px) {
    .mobile-action-bar {
        display: flex;
    }

    .whatsapp-float {
        display: none;
        /* Hide floating button when action bar is visible to prevent overlap */
    }

    body {
        padding-bottom: 60px;
        /* Prevent content from being hidden behind bar */
    }
}

/* --- New Sections Additions --- */
.new-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.new-split-section.reverse {
    direction: rtl;
}

.new-split-section.reverse>* {
    direction: ltr;
}

.new-text-content p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.new-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.new-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.new-image-wrapper:hover img {
    transform: scale(1.05);
}

.new-image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.new-image-gallery .img-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.new-image-gallery .img-box:hover img {
    transform: scale(1.05);
}

.new-image-gallery .img-box:first-child {
    grid-column: span 2;
    height: 300px;
}

.why-invest-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-invest-list .invest-point {
    text-align: center;
    padding: 2rem;
}

.why-invest-list .icon {
    width: 70px;
    height: 70px;
    background-color: #1a1a1a;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-olive);
}

.new-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.new-amenity-card {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.loc-highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.loc-card {
    text-align: center;
    padding: 1.5rem;
}

@media (max-width: 900px) {

    .why-invest-list,
    .new-amenities-grid,
    .loc-highlight-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .new-split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .new-split-section.reverse {
        direction: ltr;
        /* Reset to natural stacking */
    }

    .new-image-gallery {
        grid-template-columns: 1fr;
    }

    .new-image-gallery .img-box:first-child {
        grid-column: span 1;
        height: auto;
    }

    .why-invest-list,
    .new-amenities-grid,
    .loc-highlight-cards {
        grid-template-columns: 1fr;
    }
}

/* Specifications Section */
.specifications {
    background-color: var(--bg-primary);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.specs-card {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.3s ease;
    border-left: 4px solid var(--color-olive);
}

.specs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.specs-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(201, 166, 107, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-olive);
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.specs-card:hover .specs-icon {
    background-color: rgba(201, 166, 107, 0.2);
}

.specs-category {
    font-size: 1.25rem;
    color: var(--color-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.specs-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list li:before {
    content: "✓";
    color: var(--color-olive);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: -0.05rem;
}

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

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}