/* =====================================================
   ZUHAUSE ESTADIAS — Premium Design System
   ===================================================== */

/* --- CSS Variables --- */
:root {
    /* Brand Colors */
    --gold: #C6A97D;
    --gold-light: #D4BC96;
    --gold-dark: #A88B5E;
    --gold-glow: rgba(198, 169, 125, 0.15);

    /* Dark Palette */
    --bg-primary: #0B0E13;
    --bg-secondary: #0F1319;
    --bg-tertiary: #141820;
    --bg-card: #161B24;
    --bg-card-hover: #1C222E;
    --bg-elevated: #1E2430;

    /* Text */
    --text-primary: #F5F0EB;
    --text-secondary: #A0A8B8;
    --text-muted: #6B7385;

    /* Borders */
    --border: rgba(198, 169, 125, 0.1);
    --border-hover: rgba(198, 169, 125, 0.25);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}

a:hover { color: var(--gold-light); }

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

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 24px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: preloaderBar 1.8s var(--ease-out) forwards;
}

@keyframes preloaderBar {
    0% { width: 0; }
    100% { width: 100%; }
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

#navbar.scrolled {
    padding: 12px 0;
    background: rgba(11, 14, 19, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo:hover { color: var(--text-primary); }

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s var(--ease-out);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.nav-link-cta {
    color: var(--bg-primary);
    background: var(--gold);
    padding: 8px 24px;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s var(--ease-out);
}

.nav-link-cta::after { display: none; }

.nav-link-cta:hover {
    color: var(--bg-primary);
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(198, 169, 125, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(15, 52, 96, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(22, 33, 62, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 860px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(198, 169, 125, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(198, 169, 125, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 28px;
    line-height: 1.1;
}

.title-line {
    display: block;
    font-size: clamp(42px, 7vw, 80px);
}

.title-italic {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s var(--ease-out);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(198, 169, 125, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-sm {
    font-size: 13px;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--bg-primary);
    border-radius: 100px;
}

.btn-sm:hover {
    background: var(--gold-light);
    color: var(--bg-primary);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.stat { text-align: center; }

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator { width: 1px; height: 60px; position: relative; }

.scroll-line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 30px;
    background: var(--gold);
    animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
    0% { top: 0; height: 0; opacity: 0; }
    30% { opacity: 1; }
    50% { top: 0; height: 100%; }
    80% { top: 100%; height: 0; opacity: 0; }
    100% { top: 100%; height: 0; opacity: 0; }
}

/* --- Section Common --- */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-stack {
    position: relative;
    height: 500px;
}

.about-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-img-1 {
    width: 320px;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 260px;
    height: 300px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.img-placeholder svg { width: 80%; height: 80%; opacity: 0.6; }

.about-decoration {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.about-text strong { color: var(--text-primary); }
.about-text em { color: var(--gold); font-style: italic; }

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--gold);
}

.feature-icon svg { width: 20px; height: 20px; }

.feature h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Properties Section --- */
.properties { background: var(--bg-secondary); }

.properties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.property-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.property-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.property-image { position: relative; overflow: hidden; }

.property-img-inner {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.6s var(--ease-out);
}

.property-card:hover .property-img-inner { transform: scale(1.03); }

.property-img-icon {
    opacity: 0.4;
    transition: opacity 0.3s;
}

.property-img-icon svg { width: 80px; height: 80px; }

.property-card:hover .property-img-icon { opacity: 0.6; }

.property-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.property-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 6px 16px;
    border-radius: 100px;
}

.property-info { padding: 28px; }

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.property-location svg { color: var(--gold); flex-shrink: 0; }

.property-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.property-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.property-amenities-mini {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.property-amenities-mini span {
    font-size: 11px;
    padding: 4px 12px;
    background: var(--gold-glow);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--gold-light);
    letter-spacing: 0.3px;
}

.property-footer {
    display: flex;
    justify-content: flex-end;
}

/* --- Amenities Section --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.amenity-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s var(--ease-out);
}

.amenity-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    background: var(--bg-card-hover);
}

.amenity-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: var(--radius-sm);
    color: var(--gold);
    transition: all 0.3s var(--ease-out);
}

.amenity-card:hover .amenity-icon {
    background: var(--gold);
    color: var(--bg-primary);
}

.amenity-icon svg { width: 24px; height: 24px; }

.amenity-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.amenity-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Neighborhoods Section --- */
.neighborhoods { background: var(--bg-secondary); }

.neighborhoods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.neighborhood-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s var(--ease-out);
    border: 1px solid var(--border);
}

.neighborhood-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
}

.neighborhood-large {
    grid-column: span 2;
    min-height: 340px;
}

.neighborhood-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s var(--ease-out);
}

.neighborhood-card:hover .neighborhood-bg { transform: scale(1.05); }

.neighborhood-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    background: linear-gradient(0deg, rgba(11, 14, 19, 0.95) 0%, rgba(11, 14, 19, 0.4) 100%);
    width: 100%;
}

.neighborhood-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.neighborhood-content h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.neighborhood-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
}

.neighborhood-highlights {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.neighborhood-highlights span {
    font-size: 11px;
    padding: 4px 14px;
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

/* --- Experience / Testimonials --- */
.experience-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.experience-rating { margin-top: 20px; }

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.stars svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.rating-text {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonial-stack { position: relative; min-height: 320px; }

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 72px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: -10px;
    opacity: 0.4;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold-glow);
    border: 1px solid var(--border-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold);
    font-weight: 500;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-nav {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    justify-content: center;
}

.testimonial-btn {
    width: 32px;
    height: 3px;
    background: var(--border);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.testimonial-btn.active {
    background: var(--gold);
    width: 48px;
}

/* --- CTA Section --- */
.cta-section { padding: 40px 0 0; }

.cta-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 80px 60px;
    text-align: center;
    border: 1px solid var(--border);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 50%, rgba(198, 169, 125, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-content h2 em {
    color: var(--gold);
    font-style: italic;
}

.cta-content p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Contact Section --- */
.contact { background: var(--bg-secondary); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--gold);
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-languages {
    display: flex;
    gap: 8px;
    margin-top: 32px;
}

.lang-badge {
    font-size: 12px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.3s var(--ease-out);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7385' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* --- Footer --- */
.footer {
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.3s var(--ease-out);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal { font-size: 12px !important; }

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s var(--ease-out);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    color: white;
}

.whatsapp-float svg { width: 26px; height: 26px; }

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    :root { --section-padding: 80px; }

    .about-grid { gap: 40px; }
    .properties-grid { gap: 20px; }
    .experience-wrapper { gap: 40px; }
    .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px; }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(11, 14, 19, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 999;
    }

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

    .nav-link {
        font-size: 20px;
        font-family: var(--font-display);
    }

    .nav-link-cta { font-size: 16px; }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-content { padding: 100px 20px 60px; }

    .hero-stats { gap: 20px; }
    .stat-number { font-size: 32px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-stack {
        height: 360px;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-img-1 { width: 240px; height: 280px; }
    .about-img-2 { width: 200px; height: 240px; }

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

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

    .neighborhoods-grid { grid-template-columns: 1fr; }
    .neighborhood-large { grid-column: span 1; }

    .experience-wrapper { grid-template-columns: 1fr; }

    .testimonial-stack { min-height: 360px; }

    .cta-card { padding: 48px 28px; }

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

    .form-row { grid-template-columns: 1fr; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

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

    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .contact-form { padding: 24px; }
}

/* --- Grain texture overlay (subtle luxury feel) --- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}
