:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #fafafa;
    --accent: #1a1a1a;
    --accent-gold: #c9a227;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-dark: rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1a1a1a;
    --accent: #ffffff;
    --accent-gold: #c9a227;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border: #2a2a2a;
    --border-light: #222222;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s;
}

[data-theme="dark"] .navbar {
    background: rgba(10, 10, 10, 0.95);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold), #d4af37);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--bg-primary) !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

[data-theme="dark"] .nav-cta {
    background: var(--accent-gold);
    color: #000 !important;
}

[data-theme="dark"] .nav-cta:hover {
    opacity: 0.8;
}

    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    .hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-gold), #d4af37);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--accent-gold), #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 56px;
}

.hero-stat {
    text-align: left;
    position: relative;
}

.hero-stat::after {
    content: '';
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-stat:last-child::after {
    display: none;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1;
}

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

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 80px var(--shadow-dark);
}

.hero-image-overlay {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 40px var(--shadow);
}

.hero-image-overlay i {
    font-size: 24px;
    color: var(--accent-gold);
}

.hero-image-overlay-text span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-overlay-text strong {
    font-size: 18px;
    font-weight: 700;
}

.section-padding {
    padding: 120px 48px;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.listing-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px var(--shadow-dark);
    border-color: transparent;
}

.listing-image-wrapper {
    position: relative;
    overflow: hidden;
}

.listing-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s;
}

.listing-card:hover .listing-image {
    transform: scale(1.05);
}

.listing-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--accent-gold), #d4af37);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.listing-price-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.listing-info {
    padding: 28px;
}

.listing-location {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.listing-building {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing-building i {
    font-size: 10px;
}

.listing-floor {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing-floor i {
    color: var(--accent-gold);
    font-size: 12px;
}

.modal-building {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-building i {
    font-size: 14px;
}

.listing-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.listing-address {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing-address i {
    color: var(--accent-gold);
    font-size: 12px;
}

.listing-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--border-light), var(--border), var(--border-light));
    margin-bottom: 24px;
}

.listing-features {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.listing-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.listing-feature i {
    color: var(--text-muted);
    font-size: 16px;
}

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

.listing-price {
    display: flex;
    flex-direction: column;
}

.listing-price-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.listing-price-main span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.btn-info {
    background: linear-gradient(135deg, var(--accent-gold), #d4af37);
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
}

.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}

.btn-info i {
    font-size: 16px;
}

.about {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 80px var(--shadow-dark);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    z-index: -1;
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

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

.about-feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 20px;
    color: var(--accent-gold);
}

.about-feature h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.trust {
    background: var(--bg-primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.trust-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
}

.trust-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    border: 2px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: var(--accent-gold);
    transition: all 0.3s;
}

.trust-card:hover .trust-icon {
    background: linear-gradient(135deg, var(--accent-gold), #d4af37);
    border-color: var(--accent-gold);
    color: #fff;
}

.trust-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.contact {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 60%);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.contact-content > p {
    opacity: 0.8;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background: transparent;
    color: #fff;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.btn-phone:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 80px 48px 40px;
}

[data-theme="dark"] .footer {
    background: #0a0a0a;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
}

.footer-brand .logo {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1280px;
    margin: 60px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlide 0.3s ease;
}

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

.modal-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-body {
    padding: 32px;
}

.modal-header {
    margin-bottom: 24px;
}

.modal-location {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.modal-address {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-address i {
    color: var(--accent-gold);
}

.modal-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.modal-detail:last-of-type {
    border-bottom: none;
}

.modal-detail span:first-child {
    color: var(--text-muted);
    font-size: 14px;
}

.modal-detail span:last-child {
    font-weight: 600;
    font-size: 15px;
}

.modal-price-section {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.03));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    text-align: center;
}

.modal-price-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.modal-price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.modal-whatsapp {
    width: 100%;
    justify-content: center;
    margin-top: 28px;
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    padding: 18px;
    font-size: 15px;
}

.modal-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

@media (max-width: 1024px) {
    .nav-container {
        height: 70px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        border-top: 1px solid var(--border);
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
        z-index: 99;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }
    
    .nav-links a:not(.nav-cta):not(.theme-toggle) {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        text-align: left;
        font-size: 16px;
    }
    
    .theme-toggle {
        margin: 16px 0;
        width: 100%;
        justify-content: center;
    }
    
    .nav-cta {
        margin-top: 24px;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 100px 24px 60px;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-image {
        height: 280px;
    }
    
    .hero-image-overlay {
        bottom: -12px;
        left: 12px;
        padding: 14px 18px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .hero-stat::after {
        display: none;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .listing-info {
        padding: 20px;
    }
    
    .listing-features {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .listing-footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .listing-price {
        text-align: center;
    }
    
    .btn-info {
        width: 100%;
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img {
        height: 280px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .trust-card {
        padding: 24px 16px;
    }
    
    .trust-icon {
        width: 56px;
        height: 56px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer {
        padding: 60px 24px 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 64px;
    }
    
    .nav-links {
        top: 64px;
    }
    
    .hero {
        padding-top: 64px;
    }
    
    .section-padding {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .listings-grid {
        grid-template-columns: 1fr;
    }
    
    .listing-image {
        height: 200px;
    }
    
    .about-image img {
        height: 240px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand p {
        max-width: none;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .btn-whatsapp,
    .btn-phone {
        width: 100%;
        justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-text > p {
        font-size: 1rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-content h2 {
        font-size: 1.75rem;
    }
    
    .modal-content {
        margin: 12px;
        max-height: calc(100vh - 24px);
    }
    
    .modal-image {
        height: 180px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-price-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .listing-title {
        font-size: 1.15rem;
    }
    
    .listing-price-main {
        font-size: 1.25rem;
    }
    
    .hero-image-overlay {
        display: none;
    }
    
    .floating-whatsapp {
        width: 56px;
        height: 56px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

.floating-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 90;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.faq {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    color: var(--accent-gold);
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}
