/* CSS Variables */
:root {
    --primary-color: #acd14f;
    --primary-hover: #bedb75;
    --primary-pale: #dcebb5;
    --secondary-color: #383536;
    --text-color: #5e5c5d;
    --text-muted: #838182;
    --light-bg: #eaeae9;
    --border-color: #abaaaa;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* RGB values for Primary (ACD14F = 172, 209, 79) */
    --primary-rgb: 172, 209, 79;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    /* Removed underlines from everything */
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
}

/* Utilities */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--white);
    margin-left: 15px;
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    color: var(--primary-hover);
    gap: 12px;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.bg-light {
    background-color: var(--light-bg);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-label {
    letter-spacing: 1px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    /* Filter removed to show original logo color */
}

.nav-middle .nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links li a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn-nav {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon-btn-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.whatsapp-icon:hover {
    background: #25D366;
    border-color: #25D366;
}

.lang-select {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
}

.lang-select option {
    background: var(--white);
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Hero Video: Force Clean Full Coverage */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    /* Ensure content container doesn't collapse */
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff !important;
    /* Force White */
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    /* Stronger shadow for contrast */
}

.hero-title span {
    color: var(--primary-color) !important;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 1;
    color: #ffffff !important;
    /* Force White */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Highlights Section */
.highlights {
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    text-align: center;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.about-static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Location Section */
.location-wrapper {
    display: flex;
    background: var(--white);
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    border-radius: 12px;
    overflow: hidden;
}

.location-map {
    flex: 1;
    min-height: 400px;
}

.location-benefits {
    flex: 1;
    padding: 50px;
    display: flex;
    align-items: center;
}

.benefit-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-list i {
    color: var(--primary-color);
    width: 25px;
    text-align: center;
}

/* Spaces Available */
.spaces-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-color);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.spaces-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.spaces-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.space-card {
    background: #fdfef9;
    border: 2px solid var(--primary-color);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

.space-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.use-case-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    font-weight: 500;
    color: var(--secondary-color);
    flex-wrap: wrap;
}

.use-case-list li {
    background: var(--primary-pale);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.avail-note {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

/* Amenities Grid Small */
.amenities-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.amenity-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.amenity-item:hover {
    background: var(--white);
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

.amenity-item i {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

/* Specifications */
.specs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.specs-col h3 {
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.specs-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.specs-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Why Invest */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.why-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonial-box {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-box p {
    font-size: 1.4rem;
    font-style: italic;
    font-family: var(--font-heading);
    margin: 20px 0;
}

/* Lead Capture */
.lead-capture {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('hero_background.jpeg');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
}

.lead-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.lead-text {
    flex: 1;
}

.lead-text h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.lead-benefits li {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.lead-benefits li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 10px;
}

.lead-form-box {
    background: var(--white);
    color: var(--text-color);
    padding: 30px;
    border-radius: 8px;
    width: 400px;
}

.lead-form-box h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.privacy-text {
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.7;
    margin-top: 10px;
}

/* Final CTA */
.cta-banner {
    background: var(--primary-color);
    padding: 60px 0;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.cta-banner .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-banner .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

.cta-banner .whatsapp-btn {
    background-color: #25D366;
    border-color: #25D366;
    color: var(--white);
}

.cta-banner .whatsapp-btn:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    color: var(--white);
}

/* Footer */
/* Footer */
.footer {
    background: #000000;
    color: #999;
    padding: 60px 0 20px;
}

.footer h4 {
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.f-logo {
    display: block;
    height: 60px;
    margin-bottom: 10px;
    /* Removed filter to show original logo */
    opacity: 0.8;
}

.social-icons a {
    color: var(--white);
    margin-right: 15px;
    font-size: 1.2rem;
}

.map-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-col p a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col p a:hover {
    color: var(--white);
    text-decoration: underline;
}

.developer-credit {
    margin-bottom: 15px;
    padding: 20px 0;
    border-top: 1px solid rgba(172, 209, 79, 0.2);
    border-bottom: 1px solid rgba(172, 209, 79, 0.2);
}

.credit-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.credit-company {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.float-whatsapp:hover {
    background-color: #1ebc57;
    transform: scale(1.1);
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

.my-float {
    margin-top: 1px;
}

/* Responsive */
.mobile-only-item {
    display: none;
}

@media (max-width: 900px) {

    .desktop-only {
        display: none !important;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn-secondary {
        margin-left: 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-buttons .btn-secondary {
        margin-left: 0;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .location-wrapper {
        flex-direction: column;
    }

    .location-map {
        min-height: 250px;
    }

    .specs-wrapper {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .lead-wrapper {
        flex-direction: column;
    }

    .lead-form-box {
        width: 100%;
    }

    .nav-middle .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        padding: 20px;
        text-align: center;
        box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    }

    .nav-middle .nav-links.active {
        display: flex !important;
    }

    .mobile-only-item {
        display: block;
        margin-top: 15px;
    }

    .mobile-icons-row {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .float-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}