:root {
    /* Emaurri-inspired + Tropical Palette */
    --bg-white: #ffffff;
    --bg-sand: #f9f8f4;
    /* Tropical sand tone */
    --bg-light: #f5f4f0;
    --text-dark: #111111;
    --text-body: #2b2b2b;
    --text-muted: #888888;
    --border: #e1e1e1;
    --navy-blue: #0A192F;
    /* Deep Navy for Luxury/Nautical touch */
    --accent-green: #2d4f3c;
    /* Tropical forest green */
    --accent-gold: #b8a067;
    /* Warm tropical gold */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-jakarta: 'Plus Jakarta Sans', sans-serif;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Questrial', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-body);
    line-height: 1.8;
    font-weight: 400;
    overflow-x: hidden;
    /* Prevent horizontal scroll globally */
}

h1,
h2,
h3,
h4 {
    font-family: 'Questrial', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* --- Navigation --- */
#main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.brand {
    font-family: var(--font-jakarta);
    font-size: 1.6rem;
    letter-spacing: 6px;
    color: var(--bg-white);
    text-transform: uppercase;
    font-weight: 400;
    transition: var(--transition);
}

.sub-brand {
    font-family: var(--font-jakarta);
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-top: 4px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--bg-white);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.btn-contact {
    border: 1px solid var(--bg-white);
    padding: 12px 30px;
    color: var(--bg-white) !important;
    transition: var(--transition);
}

.btn-contact:hover {
    background: var(--bg-white);
    color: var(--navy-blue) !important;
}

/* --- Base Menu Toggle (Hidden on Desktop) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--bg-white);
    transition: var(--transition);
}

#main-nav.scrolled .menu-toggle span,
body.nav-solid #main-nav .menu-toggle span {
    background: var(--navy-blue);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--navy-blue) !important;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--navy-blue) !important;
}

/* Mobile menu styles moved to media query at the end of file */


/* Social Sidebar (Emaurri style) */
.social-sidebar {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-left: 1px solid var(--border);
    padding-left: 25px;
}

.social-sidebar a {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.social-sidebar a:hover {
    color: var(--accent-green);
}

/* --- Hero Section (New Grid Layout) --- */
.hero-new {
    padding: 160px 0 100px;
    background: var(--navy-blue);
    /* Base background for instant loading */
    background: url('assets/hero/hero-1.webp') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.5;
    transition: opacity 2s ease;
}

.hero-video-bg.loading {
    opacity: 0;
}

.hero-container {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1600px !important;
    position: relative;
    z-index: 1;
    /* Above the video */
}

.hero-content {
    flex: 0 0 35%;
    max-width: 500px;
}

.subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.subtitle-wrapper .line {
    width: 20px;
    height: 1px;
    background: var(--accent-gold);
}

.hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-subtitle::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--text-muted);
    opacity: 0.6;
}

.page-hero {
    padding: 220px 0 100px;
    background: var(--bg-sand);
    text-align: center;
}

.page-hero h1 {
    font-size: 5rem;
    margin-top: 20px;
    color: var(--navy-blue);
    letter-spacing: -2px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 35px;
    color: var(--bg-white);
    font-weight: 400;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.btn-whatsapp-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--bg-white);
    padding: 18px 40px;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-whatsapp-v2:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-more-v2 {
    display: inline-block;
    background: var(--navy-blue);
    color: var(--bg-white);
    padding: 18px 50px;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-more-v2:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

.hero-navigation {
    display: flex;
    gap: 15px;
    margin-top: 60px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-btn:hover {
    border-color: var(--navy-blue);
    color: var(--navy-blue);
    background: var(--bg-sand);
}

.hero-image-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    height: 600px;
    /* Reduced from 850px */
}

.image-item {
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.image-item.tall {
    grid-row: span 2;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2.8rem !important;
        /* Adjusted for Armonia Coson text */
        line-height: 1.1;
    }

    .hero-image-grid {
        width: 100%;
        height: 600px;
    }

    .subtitle-wrapper {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-image-grid {
        height: 450px;
        gap: 10px;
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* --- Services Section --- */
.services {
    padding: 140px 0;
    background: var(--bg-sand);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.service-item {
    text-align: left;
}

.service-number {
    font-size: 5rem;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px var(--border);
    line-height: 1;
    margin-bottom: 25px;
}

.service-item h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.link-more {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-green);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--accent-green);
    padding-bottom: 3px;
}

.link-more:hover {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

/* --- Featured Section --- */
.featured {
    padding: 140px 0 60px;
    /* Reduced bottom padding */
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 100px;
    align-items: center;
}

.featured-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.featured-img {
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.featured-img.large {
    grid-column: span 2;
}

.featured-img.large img {
    height: 380px;
}

.featured-content h2 {
    font-size: 2.5rem;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

.featured-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 45px;
    line-height: 1.9;
}

/* Tropical Leaf Decoration */
.tropical-accent {
    position: absolute;
    width: 200px;
    opacity: 0.08;
    pointer-events: none;
}

/* --- Projects Gallery Premium --- */
.projects-gallery {
    padding: 20px 0 140px;
    /* Reduced top padding to close gap */
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.projects-gallery .container {
    max-width: 1700px;
    /* Significantly wider layout */
    padding: 0 40px;
}

.gallery-header {
    text-align: center;
    align-items: center;
    margin-bottom: 90px;
}

.header-line {
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    margin: 20px auto 0;
}

.gallery-header h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--navy-blue);
    text-transform: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.gallery-item {
    position: relative;
    background: white;
    border-radius: 4px;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.item-img-wrapper {
    width: 100%;
    height: 700px;
    /* Vertical portrait format */
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: clip-path 0.5s ease;
}

.item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.item-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.4) 60%, transparent 100%);
    color: white;
    z-index: 2;
}

.project-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: block;
}

.gallery-item h4 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: white;
    font-family: 'Questrial', sans-serif;
}

.project-price-premium {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 20px;
}

.gallery-item .btn-view-premium {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.gallery-item:hover .item-img-wrapper img {
    transform: scale(1.1);
}

.gallery-item:hover .btn-view-premium {
    background: white;
    color: var(--navy-blue);
    border-color: white;
}

.project-card-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(10, 25, 47, 0.03);
    z-index: 1;
    line-height: 1;
}

/* --- Team Section --- */
.team {
    padding: 140px 0;
    background: var(--bg-white);
}

.team-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-image-wrapper {
    flex: 2.0;
    /* More prominence for the team photo */
    height: 750px;
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 0px var(--bg-sand);
}

.team-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.team-image-wrapper:hover .team-main-img {
    transform: scale(1.02);
}

.team-content {
    flex: 1;
}

/* Family Grid for About Us */
.family-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.family-image-wrapper {
    position: relative;
}

.family-image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 2px;
}

.section-tag {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 500;
}

.team-content h2 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 35px;
    color: var(--navy-blue);
    font-weight: 400;
}

.team-content .lead {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 25px;
    line-height: 1.6;
}

.team-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 45px;
}

.team-values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.value-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-weight: 500;
}

.value-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Response for Team Section */
@media (max-width: 992px) {
    .team {
        padding: 100px 0;
    }

    .team-flex {
        flex-direction: column;
        gap: 50px;
    }

    .team-image-wrapper {
        height: 450px;
        width: 100%;
        box-shadow: 15px 15px 0px var(--bg-sand);
    }

    .team-content h2 {
        font-size: 2.5rem;
    }
}

/* --- Contact Section --- */
.contact {
    padding: 140px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 0.95rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-details strong {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-green);
    font-weight: 400;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-green);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Contact Page Specific */
.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 120px;
    align-items: start;
    margin-bottom: 100px;
}

.contact-left .project-description h2 {
    color: var(--navy-blue);
    font-weight: 400;
}

.contact-left .project-description p {
    color: var(--text-body);
    font-size: 1.15rem;
    line-height: 1.8;
}

.contact-form-container {
    background: #fff;
    padding: 60px;
    border: 1px solid var(--border);
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.input-group {
    margin-bottom: 35px;
}

.input-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-weight: 400;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    font-family: 'Questrial', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--navy-blue);
}

.map-section {
    width: 100%;
    height: 500px;
    border-top: 1px solid var(--border);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.btn-primary {
    background: var(--navy-blue);
    color: var(--bg-white);
    border: none;
    padding: 18px 55px;
    font-family: inherit;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent-green);
}

/* --- Footer --- */
footer {
    padding: 70px 0;
    background: var(--navy-blue);
    color: var(--bg-sand);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand .brand {
    font-size: 1.1rem;
    letter-spacing: 5px;
    color: var(--bg-white);
}

.footer-brand p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

.footer-socials a {
    margin-left: 40px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--bg-white);
}

/* --- Blog Specific --- */
.blog-listings {
    padding: 180px 0 140px;
    background: var(--bg-sand);
}

.blog-hero-minimal {
    margin-bottom: 80px;
    text-align: center;
}

.blog-hero-minimal h1 {
    font-size: 3.5rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.05);
}

.blog-img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--navy-blue);
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Single Post Page */
.post-header {
    padding: 200px 0 80px;
    background: var(--bg-sand);
    text-align: center;
}

.post-category {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 20px;
    display: block;
}

.post-header h1 {
    font-size: 3.8rem;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.2;
    color: var(--navy-blue);
}

.post-meta-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.post-hero-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    margin-bottom: 100px;
}

.post-body-container {
    max-width: 850px;
    margin: 0 auto 140px;
    padding: 0 25px;
}

.post-content-inner {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-body);
}

.post-content-inner p {
    margin-bottom: 35px;
}

.post-content-inner h2 {
    font-size: 2rem;
    margin: 60px 0 30px;
    color: var(--navy-blue);
}

.post-content-inner blockquote {
    font-size: 1.5rem;
    font-style: italic;
    border-left: 2px solid var(--accent-green);
    padding: 20px 0 20px 40px;
    margin: 50px 0;
    color: var(--navy-blue);
}

.post-content-inner img {
    width: 100%;
    height: auto;
    margin: 40px 0;
}

/* --- Responsive --- */
@media (max-width: 1200px) {

    .container,
    .nav-container {
        padding: 0 50px;
    }

    .social-sidebar {
        display: none;
    }
}

@media (max-width: 1024px) {

    .hero-grid,
    .featured-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        padding-right: 0;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .container {
        padding: 0 25px;
    }

    /* Hide decorative lines on mobile */
    .subtitle-wrapper .line {
        display: none !important;
    }

    .hero-subtitle::before {
        display: none !important;
    }

    .subtitle-wrapper {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .gallery-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .item-img-wrapper {
        height: 250px;
    }

    /* Floating WhatsApp - Fixed for mobile */
    .floating-whatsapp {
        right: 15px !important;
        bottom: 15px !important;
        width: 55px !important;
        height: 55px !important;
    }

    /* Masterplan Gallery - Single column on mobile */
    .masterplan-gallery {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .masterplan-gallery .gallery-item {
        height: 200px;
    }

    /* Lightbox fixes for mobile */
    .lightbox-content {
        max-width: 95% !important;
        max-height: 70vh !important;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 10px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 30px;
    }

    #main-nav {
        width: 100vw !important;
        left: 0 !important;
        padding: 0 !important;
        height: 70px;
    }

    .nav-container {
        width: 100% !important;
        max-width: 100vw !important;
        padding: 0 20px !important;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        /* True center regardless of page width */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: auto;
        z-index: 10;
    }

    .brand {
        font-size: 1.1rem;
        letter-spacing: 4px;
        line-height: 1;
    }

    .sub-brand {
        font-size: 0.5rem;
        letter-spacing: 3px;
        margin-top: 4px;
    }

    .nav-links {
        display: none !important;
    }

    /* Redundant menu-toggle removed */


    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--navy-blue) !important;
    }

    /* Side-by-Side Sections (Fix today's changes on mobile) */
    [style*="display: grid"][style*="grid-template-columns: 1fr 1fr"],
    [style*="display: grid"][style*="grid-template-columns: 0.9fr 1.1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Fix image heights in side-by-side on mobile */
    .item-img-wrapper,
    .project-detail-hero img,
    [style*="height: 450px"],
    [style*="height: 350px"],
    [style*="height: 280px"],
    [style*="height: 500px"] {
        height: auto !important;
        min-height: 250px;
    }

    /* Adjust titles on mobile */
    h2[style*="font-size: 2rem"],
    h3[style*="font-size: 2.5rem"],
    .hero-content h1,
    .gradient-title {
        font-size: 1.8rem !important;
    }

    .gradient-title {
        font-size: 3rem !important;
    }
}

/* --- Restored Advanced Features --- */

.font-futura {
    font-family: var(--font-heading);
}

/* --- Project Detail Pages --- */
.project-detail-hero {
    padding-top: 250px !important;
    /* Force clear fixed nav */
    padding-bottom: 100px;
    background: var(--bg-white);
}

.project-header {
    margin-bottom: 60px;
}

.main-project-image {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    margin-bottom: 80px;
    border: 1px solid var(--border);
    image-rendering: -webkit-optimize-contrast;
}

/* Masterplan Gallery Grid */
.masterplan-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 50px;
    margin-bottom: 0;
    width: 100%;
}

.masterplan-gallery .gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 650px;
    /* High impact for full width */
    border: none;
    /* Remove internal borders */
}

.masterplan-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.masterplan-gallery .gallery-item:hover img {
    transform: scale(1.03);
}

/* Floor Plans Section */
.floor-row {
    margin-bottom: 60px;
    position: relative;
    padding-left: 60px;
    /* Space for vertical title */
}

.floor-row:last-child {
    margin-bottom: 0;
}

.floor-title {
    font-size: 0.75rem;
    color: var(--navy-blue);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
    writing-mode: vertical-rl;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
    white-space: nowrap;
}

.floor-grid {
    display: grid;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.floor-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.floor-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.floor-item {
    background: #fff;
    padding: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floor-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.floor-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.floor-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .floor-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .floor-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .floor-item {
        padding: 15px;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    padding: 15px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
    user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--accent-gold);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    #inicio .container {
        flex-direction: column;
        padding: 0 25px !important;
    }

    .hero-content {
        max-width: 100% !important;
        flex: auto !important;
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-images {
        width: 100%;
        height: 500px !important;
    }

    .funnel-cta-group {
        justify-content: center;
    }

    .masterplan-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.1) rotate(5deg);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        right: 15px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}

/* Project Hero Improvement - MATCHING IMAGE 0 */
.project-hero-banner {
    height: 85vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-title-container {
    position: relative;
    z-index: 2;
}

.gradient-title {
    font-size: 11rem;
    letter-spacing: 20px;
    margin: 0;
    line-height: 0.9;
    font-weight: 300;
    background: linear-gradient(to right, #4a90e2, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.gradient-subtitle {
    font-size: 1.8rem;
    letter-spacing: 35px;
    margin-top: 15px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    padding-left: 35px;
    /* Offset to center with letter-spacing */
}

/* Project Info Grid - MATCHING IMAGE 1 */
.project-info-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 100px;
    margin-top: 60px;
    align-items: start;
}

@media (max-width: 768px) {
    .project-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 30px;
    }

    .info-sidebar {
        position: static !important;
        top: auto !important;
        width: 100%;
    }

    .project-description h2 {
        font-size: 1.8rem;
    }

    .funnel-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn-funnel-whatsapp,
    .btn-funnel-brochure {
        width: 100%;
        text-align: center;
    }
}

.info-sidebar {
    position: sticky;
    top: 120px;
}

.info-sidebar h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--text-dark);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    margin-bottom: 35px;
}

.detail-list li strong {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-weight: 400;
}

.detail-list li span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 400;
}

.project-description h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    line-height: 1.2;
    color: var(--text-dark);
}

.project-description p {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Funnel Buttons - MATCHING IMAGE 1 */
.funnel-cta-group {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-funnel-whatsapp {
    background: #2ddc6c;
    /* Bright WhatsApp green */
    color: white;
    padding: 22px 45px;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 12px rgba(45, 220, 108, 0.2);
}

.btn-funnel-brochure {
    background: #0a192f;
    /* Deep Navy */
    color: white;
    padding: 22px 45px;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    border: none;
}

.btn-funnel-whatsapp:hover,
.btn-funnel-brochure:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Amenities Grid - MATCHING IMAGE 2 */
.timeline-item {
    background: white;
    padding: 50px 40px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.timeline-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.timeline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 400;
}

.timeline-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.amenity-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-sand);
    border-radius: 12px;
    /* Soft rounded for more premium look */
    transition: var(--transition);
    color: var(--accent-gold);
}

.svg-anim {
    width: 24px;
    height: 24px;
    stroke-width: 1.25px;
    /* Thinner stroke for elegance */
}

/* Pool Animation - Suave */
.pool-anim path {
    animation: wave-subtle 3s ease-in-out infinite;
}

@keyframes wave-subtle {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    33% {
        transform: translateY(1px) rotate(1deg);
    }

    66% {
        transform: translateY(-1px) rotate(-1deg);
    }
}

/* Restaurant Animation */
.restaurant-anim path:not(:last-child) {
    animation: steam-soft 2.5s ease-in-out infinite;
}

@keyframes steam-soft {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    30% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-5px);
        opacity: 0;
    }
}

/* Kids Animation */
.kids-anim {
    animation: bounce-gentle 2s ease-in-out infinite;
}

@keyframes bounce-gentle {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.02);
    }
}

/* BBQ Animation */
.bbq-anim path:first-child {
    animation: glow-soft 1.5s ease-in-out infinite;
}

@keyframes glow-soft {

    0%,
    100% {
        opacity: 0.6;
        stroke-width: 1.25px;
    }

    50% {
        opacity: 1;
        stroke-width: 1.75px;
    }
}

/* Nature Animation */
.nature-anim {
    animation: sway-soft 4s ease-in-out infinite;
}

@keyframes sway-soft {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

/* Location Animation */
.location-anim {
    animation: pulse-pin 2s ease-in-out infinite;
}

@keyframes pulse-pin {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.timeline-item:hover .amenity-icon {
    transform: translateY(-5px);
    background: var(--navy-blue);
    color: white;
    box-shadow: 0 10px 25px rgba(10, 25, 47, 0.1);
}

/* Footer */
footer {
    background: var(--navy-blue);
    padding: 60px 0 30px;
    border-top: none;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand .brand {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: #fff;
}

.footer-brand p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.footer-dev {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-dev p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.footer-dev strong {
    color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-wrap {
        flex-direction: column;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-dev {
        margin-top: 30px;
    }
}

/* --- Experiment: ArchCo Style (v3) --- */

:root {
    --font-jakarta: 'Plus Jakarta Sans', sans-serif;
    --whatsapp-green: #2ecc71;
}

.nav-v3 {
    padding: 30px 0 !important;
}

.nav-container-v3 {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-jakarta);
}

.nav-left,
.nav-right {
    flex: 1;
}

.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-links-v3 {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links-v3 a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-links-v3 a:hover {
    color: var(--accent-gold);
}

.nav-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.nav-icon-link {
    color: var(--bg-white);
    transition: var(--transition);
    opacity: 0.8;
}

.nav-icon-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.btn-minimal {
    font-size: 0.7rem;
    color: var(--bg-white);
    text-decoration: none;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-minimal:hover {
    background: var(--bg-white);
    color: var(--navy-blue);
    border-color: var(--bg-white);
}

/* Scrolled state for v3 */
#main-nav.nav-v3.scrolled,
body.nav-solid #main-nav.nav-v3 {
    background: var(--bg-white);
    padding: 15px 0;
    /* Removed !important to allow mobile overrides */
    border-bottom: 1px solid var(--border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

#main-nav.nav-v3.scrolled .brand,
body.nav-solid #main-nav.nav-v3 .brand {
    color: var(--navy-blue);
}

#main-nav.nav-v3.scrolled .sub-brand,
body.nav-solid #main-nav.nav-v3 .sub-brand {
    color: var(--accent-green);
}

#main-nav.nav-v3.scrolled .nav-links-v3 a,
body.nav-solid #main-nav.nav-v3 .nav-links-v3 a {
    color: var(--navy-blue);
}

#main-nav.nav-v3.scrolled .nav-icon-link,
body.nav-solid #main-nav.nav-v3 .nav-icon-link {
    color: var(--navy-blue);
}

#main-nav.nav-v3.scrolled .btn-minimal,
body.nav-solid #main-nav.nav-v3 .btn-minimal {
    border-color: var(--border);
    color: var(--text-body);
}

/* Hero v3 */
.hero-v3 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 50px;
    font-family: var(--font-jakarta);
    /* Base background for instant loading / Fallback */
    background: #0a192f url('assets/hero/hero-1.webp') no-repeat center center;
    background-size: cover;
}

/* Overlay for text contrast */
.hero-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.4);
    /* Dark tint */
    z-index: 1;
}

.hero-v3 .hero-video-bg {
    opacity: 1;
    z-index: 0;
    transition: opacity 2s ease;
}

.hero-v3 .hero-video-bg.loading {
    opacity: 0;
}

.hero-container-v3 {
    display: flex;
    width: 100%;
    align-items: stretch;
    position: relative;
    z-index: 2;
    max-width: 1600px !important;
}

.hero-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-text-main {
    padding-top: 20px;
}

.subtitle-wrapper-v3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.line-v3 {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.6;
}

.hero-subtitle-v3 {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.hero-title-v3 {
    font-family: var(--font-jakarta);
    font-size: 6rem;
    line-height: 0.9;
    color: var(--bg-white);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -3px;
}

.hero-lead-v3 {
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--bg-white);
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 15px;
}

.hero-description-v3 {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 25px;
}

.hero-actions-v3 {
    display: flex;
    gap: 20px;
}

.btn-pill-green {
    background: var(--whatsapp-green);
    color: #fff;
    padding: 18px 45px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-pill-navy {
    background: var(--navy-blue);
    color: #fff;
    padding: 18px 45px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-pill-green:hover,
.btn-pill-navy:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-attributes-v3 {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.attr-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.attr-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.attr-info h4 {
    color: var(--bg-white);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.attr-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Hero Right: Images v3 (ArchCo Layout) */
.hero-right {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-images-v3 {
    position: relative;
    width: 90%;
    height: 700px;
}

.image-main-v3 {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 70%;
    height: 600px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
    cursor: pointer;
}

.image-sub-v3 {
    position: absolute;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 3;
    box-shadow: 30px 0 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    cursor: pointer;
}

/* Swapped State */
.hero-images-v3.swapped .image-main-v3 {
    z-index: 3;
    transform: translateY(-50%) scale(1.02);
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.5);
}

.hero-images-v3.swapped .image-sub-v3 {
    z-index: 1;
    transform: translateY(-50%) scale(0.95);
    box-shadow: none;
}

.floating-circle-v3 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    z-index: 4;
}

.hero-images-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Adjustments for v3 */
@media (max-width: 1400px) {
    .hero-title-v3 {
        font-size: 5.5rem;
    }
}

@media (max-width: 991px) {
    .nav-center {
        display: none;
    }

    .nav-center:has(.nav-links-v3.active) {
        display: block;
    }

    /* Redundant menu-toggle removed */


    .hero-container-v3 {
        flex-direction: column;
        gap: 80px;
    }

    .hero-left,
    .hero-right {
        flex: 0 0 100%;
    }

    .hero-title-v3 {
        font-size: 4rem;
    }

    .hero-images-v3 {
        height: 500px;
        width: 100%;
        margin-top: 50px;
    }

    .image-main-v3 {
        width: 80%;
        height: 400px;
    }

    .image-sub-v3 {
        width: 60%;
        height: 250px;
        left: 0;
        top: 70%;
    }

    .floating-circle-v3 {
        width: 80px;
        height: 80px;
        top: -20px;
        left: 20%;
    }
}

/* ==========================================================================
   ARMONÍA PORTILLO - PREMIUM PAGE STYLES
   ========================================================================== */

.project-hero-banner-v2 {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-v2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-overlay-smooth {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content-glass {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.05);
    /* Slightly increased opacity */
    backdrop-filter: blur(25px);
    /* Slightly increased blur */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    max-width: 900px;
    animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 600;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.premium-heading {
    font-family: var(--font-jakarta);
    font-size: 5.5rem;
    line-height: 0.85;
    color: white;
    letter-spacing: 15px;
    margin-bottom: 45px;
    font-weight: 300;
}

.premium-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.badge-item span {
    font-size: 1.2rem;
    color: white;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.hero-line {
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
    margin: 40px auto 0;
    opacity: 0.5;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 20;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.indicator-mouse {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.indicator-mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 4px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, 10px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

/* Layout Utilities */
.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.top-nav-back {
    padding: 40px 0;
}

.btn-back-minimal {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-back-minimal:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

/* Concept Section */
.concept-section {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
}

.section-number-bg {
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(10, 25, 47, 0.02);
    z-index: -1;
    line-height: 1;
    user-select: none;
    letter-spacing: -20px;
}

.concept-centered-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.concept-editorial-text {
    max-width: 750px;
    margin: 40px auto;
}

.concept-content {
    max-width: 580px;
}

.body-text-p {
    font-family: var(--font-jakarta);
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-body);
    opacity: 0.8;
    margin-bottom: 30px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kicker {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.editorial-h2 {
    font-family: var(--font-jakarta);
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 300;
    color: var(--navy-blue);
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.accent-line {
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    margin-bottom: 40px;
}

.lead-text {
    font-family: var(--font-jakarta);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--navy-blue);
    margin-bottom: 30px;
    font-weight: 400;
}

.image-reveal-wrapper {
    position: relative;
    overflow: hidden;
    clip-path: inset(0 100% 0 0);
    animation: revealRight 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes revealRight {
    to {
        clip-path: inset(0 0 0 0);
    }
}

.parallax-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Amenities Section */
.amenities-premium {
    background: var(--bg-sand);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.section-header-left {
    margin-bottom: 80px;
}

.amenities-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.amenities-main-img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 4px;
}

.amenities-list-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.amenity-card-v2 {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(10, 25, 47, 0.05);
    transition: var(--transition);
}

.amenity-card-v2:hover {
    padding-left: 20px;
}

.amenity-num {
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent-gold);
    opacity: 0.8;
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.amenity-info h4 {
    font-size: 1.2rem;
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.amenity-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Gallery Masonry */
/* Master Plan & Floor Plans Premium Refinement */
.masterplan-premium {
    padding: 160px 0;
    background: #fff;
    position: relative;
}

.master-visual-sidebyside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 80px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.master-visual-item {
    position: relative;
    overflow: hidden;
}

.master-visual-item img {
    width: 100%;
    display: block;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.master-visual-item:hover img {
    transform: scale(1.05);
}

.master-info {
    max-width: 800px;
}

.floor-plans-editorial {
    padding: 160px 0;
    background: var(--bg-sand);
}

.floor-row-editorial {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    padding: 80px 0;
    border-bottom: 1px solid rgba(10, 25, 47, 0.08);
}

.floor-row-editorial:last-child {
    border-bottom: none;
}

.floor-meta {
    display: flex;
    flex-direction: column;
}

.floor-tag {
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.floor-meta h3 {
    font-size: 2.2rem;
    color: var(--navy-blue);
    margin-bottom: 25px;
    font-weight: 300;
}

.floor-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.floor-specs li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(10, 25, 47, 0.05);
    font-size: 0.9rem;
    color: var(--text-body);
}

.floor-specs li span:last-child {
    font-weight: 600;
    color: var(--navy-blue);
}

.floor-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.floor-card-v3 {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    cursor: pointer;
}

.floor-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.floor-card-v3 img {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 2px;
}

.floor-title-v3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--navy-blue);
    text-align: center;
}

@media (max-width: 1024px) {

    .master-grid-editorial,
    .floor-row-editorial {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .floor-visual-grid {
        grid-template-columns: 1fr;
    }
}

/* Location Section Premium */
.location-section {
    padding: 160px 0;
    background: #fff;
}

.location-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.location-card-v3 {
    padding: 40px;
    background: var(--bg-sand);
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid rgba(10, 25, 47, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-card-v3:hover {
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    transform: translateY(-10px);
    border-color: rgba(10, 25, 47, 0.08);
}

.loc-icon-v3 {
    font-size: 2rem;
    margin-bottom: 30px;
    display: block;
}

.loc-info-v3 h4 {
    font-size: 1.1rem;
    color: var(--navy-blue);
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 500;
}

.loc-info-v3 p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.loc-distance {
    margin-top: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .location-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .location-grid-premium {
        grid-template-columns: 1fr;
    }

    .container-wide {
        padding: 0 30px;
    }
}

/* --- Video Progress Section --- */
.video-progress-section {
    padding: 140px 0;
    background: var(--navy-blue);
    text-align: center;
}

.video-container {
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container video,
.video-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}

#video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.v-nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.v-nav-btn:hover {
    background: var(--accent-gold);
    color: var(--navy-blue);
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

/* --- Gallery Masonry --- */
.gallery-premium-v2 {
    padding: 140px 0;
    background: #fff;
}

.gallery-intro {
    margin-bottom: 80px;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 600px;
    gap: 30px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-item.wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .premium-heading {
        font-size: 2.8rem;
        letter-spacing: 5px;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 350px;
    }

    .masonry-item.wide {
        grid-column: span 1;
    }

    .section-number-bg {
        font-size: 8rem;
        top: -10px;
    }
}

/* Investment Benefits Premium */
.investment-section-premium {
    padding: 160px 0;
    background: var(--navy-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.investment-layout-v2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.benefit-grid-v3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.benefit-card-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 4px;
    transition: var(--transition);
}

.benefit-card-glass:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.benefit-card-glass h4 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.benefit-card-glass p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.7;
}

.investment-visual-v2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-confotur {
    width: 300px;
    height: 300px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    position: relative;
    animation: rotateSlow 20s linear infinite;
}

.badge-inner {
    animation: counterRotate 20s linear infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.badge-inner .number {
    font-size: 5rem;
    font-weight: 300;
    color: var(--accent-gold);
    line-height: 1;
}

.badge-inner .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .investment-layout-v2 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .investment-visual-v2 {
        order: -1;
    }
}

/* Benefits Section */
.benefits-v2 {
    padding: 140px 0;
    background: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
}

.benefit-card {
    padding: 50px;
    background: var(--bg-sand);
    border-radius: 4px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.benefit-card h4 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-card h4 span {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 140px 0;
    background: var(--navy-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.testimonial-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
}

.testimonial-card-v2::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 5rem;
    opacity: 0.1;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--accent-gold);
}

.author-info span {
    font-size: 0.8rem;
    opacity: 0.5;
}

@media (max-width: 991px) {

    .benefits-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 44px !important;
        height: 44px !important;
        align-self: center !important;
        margin: 0 !important;
    }

    .menu-toggle span {
        background: #ffffff !important;
        width: 25px;
        height: 2px;
        margin: 3px 0 !important;
        display: block;
    }

    #main-nav.scrolled .menu-toggle span {
        background: var(--navy-blue) !important;
    }

    .nav-v3,
    #main-nav.nav-v3.scrolled {
        padding: 0px 0 !important;
    }

    .nav-container-v3 {
        padding: 0 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 70px !important;
    }

    .nav-left,
    .nav-right {
        display: flex !important;
        align-items: center !important;
        flex: 1;
        height: 70px !important;
    }

    .nav-right {
        justify-content: flex-end !important;
    }

    .nav-center {
        display: block !important;
    }

    .nav-links-v3 {
        display: none;
    }

    .nav-links.active,
    .nav-links-v3.active {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
    }

    .nav-links.active a,
    .nav-links-v3.active a {
        font-size: 1.5rem;
        color: var(--navy-blue) !important;
        text-decoration: none;
    }



    .nav-actions {
        gap: 12px;
    }

    .nav-icon-link {
        display: none;
    }

    .brand {
        font-size: 1.1rem !important;
        letter-spacing: 3px !important;
    }

    .sub-brand {
        font-size: 0.55rem !important;
        letter-spacing: 2px !important;
    }

    .premium-heading {
        font-size: 2.2rem !important;
        letter-spacing: 4px !important;
        line-height: 1.2 !important;
    }

    .editorial-h2 {
        font-size: 2.2rem !important;
    }

    .concept-grid,
    .amenities-layout {
        grid-template-columns: 1fr !important;
    }

    .container {
        padding: 0 20px !important;
    }

    section {
        padding: 60px 0 !important;
    }

    /* Contact Page Mobile */
    .page-hero {
        padding: 120px 0 40px !important;
    }

    .page-hero h1 {
        font-size: 2.8rem !important;
        letter-spacing: -1px !important;
    }

    .contact-wrapper {
        display: block !important;
        margin-bottom: 40px !important;
    }

    .contact-left,
    .contact-right {
        width: 100% !important;
    }

    .contact-left {
        margin-bottom: 50px !important;
    }

    .contact-left .project-description h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .contact-form-container {
        padding: 25px !important;
    }

    .form-row {
        display: block !important;
    }

    .form-row .input-group {
        margin-bottom: 25px !important;
    }

    .map-section {
        height: 300px !important;
    }

    /* Blog & Post Mobile */
    .blog-hero-minimal {
        margin-bottom: 40px !important;
    }

    .blog-hero-minimal h1 {
        font-size: 2.5rem !important;
    }

    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .blog-img-box {
        height: 200px !important;
    }

    .post-header {
        padding: 140px 0 40px !important;
    }

    .post-header h1 {
        font-size: 2.2rem !important;
        margin-bottom: 20px !important;
    }

    .post-meta-details {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: center !important;
    }

    .post-hero-image {
        height: 350px !important;
        margin-bottom: 50px !important;
    }

    .post-body-container {
        margin-bottom: 80px !important;
    }

    .post-content-inner {
        font-size: 1.05rem !important;
        line-height: 1.8 !important;
    }

    /* About Us Mobile */
    .family-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .family-image-wrapper img {
        height: 400px !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .timeline-item {
        padding: 30px !important;
    }

    /* Generic Page Hero Mobile */
    .page-hero {
        padding: 120px 0 40px !important;
    }

    .page-hero h1 {
        font-size: 2.8rem !important;
        letter-spacing: -1px !important;
    }

    /* GLOBAL MOBILE OVERFLOW KILLER */
    html,
    body {
        overflow-x: hidden !important;
        position: relative !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    /* Target specific offenders */
    .social-sidebar,
    .floating-socials {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    /* Precise Footer Fix */
    footer,
    .footer-wrap,
    .footer-socials {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: hidden !important;
    }

    .footer-socials {
        flex-direction: column !important;
        /* Stack them to be safe */
        align-items: center !important;
        gap: 15px !important;
        padding: 20px 0 !important;
    }

    .footer-socials a {
        margin: 0 !important;
        padding: 5px 0 !important;
        width: auto !important;
        display: block !important;
        font-size: 0.9rem !important;
    }

    .footer-brand {
        margin-bottom: 20px !important;
    }

    /* Floor Specs Mobile Fix */
    .floor-specs li {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
        padding: 15px 0 !important;
    }

    .floor-specs li span:last-child {
        text-align: left !important;
    }

    .floor-visual-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .floor-card-v3 {
        padding: 20px !important;
    }

    /* General responsive improvements */
    .tech-specs-grid {
        grid-template-columns: 1fr !important;
    }
}


/* --- Additional Mobile Fixes --- */
@media (max-width: 768px) {
    .hero-visual {
        display: none !important;
    }

    .hero-content {
        padding: 40px 0 !important;
        text-align: center !important;
    }

    .hero-actions {
        justify-content: center !important;
        gap: 15px !important;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px !important;
        font-size: 0.65rem !important;
    }
}


/* --- Hero v3 Mobile Fixes (Final) --- */
@media (max-width: 768px) {
    .hero-right {
        display: none !important;
    }

    .hero-container-v3 {
        gap: 20px !important;
        padding-top: 120px !important;
        padding-bottom: 60px !important;
    }

    .hero-title-v3 {
        font-size: 3.5rem !important;
        margin-bottom: 25px !important;
        line-height: 1.1 !important;
    }

    .hero-lead-v3 {
        font-size: 1.25rem !important;
        margin-bottom: 15px !important;
    }

    .hero-description-v3 {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin-bottom: 35px !important;
        opacity: 0.9;
    }

    .hero-actions-v3 {
        gap: 10px !important;
        display: flex !important;
        width: 100% !important;
    }

    .btn-pill-green,
    .btn-pill-navy {
        padding: 14px 15px !important;
        font-size: 0.75rem !important;
        min-width: unset !important;
        flex: 1 !important;
        border-radius: 4px !important;
        text-align: center !important;
        height: auto !important;
    }

    .hero-attributes-v3 {
        margin-top: 40px !important;
    }

    .attr-item {
        padding: 12px 0 !important;
        gap: 15px !important;
    }

    .attr-info h4 {
        font-size: 0.85rem !important;
        margin-bottom: 2px !important;
    }

    .attr-info p {
        font-size: 0.75rem !important;
    }
}
