:root {
    color-scheme: light;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-parallax {
    isolation: isolate;
    background-image:
        linear-gradient(105deg, rgba(8, 30, 76, .92) 0%, rgba(19, 64, 134, .78) 42%, rgba(15, 23, 42, .28) 100%),
        url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1800&q=85");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 -90px 120px rgba(15, 23, 42, .22);
}

.hero-parallax::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .14);
    color: #ffffff;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .18);
}

@media (max-width: 767px) {
    .hero-parallax {
        background-attachment: scroll;
        background-position: center top;
    }
}

.property-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.property-card:hover {
    transform: translateY(-2px);
    border-color: #bfdbfe;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.property-card img,
.detail-gallery img {
    background: #e2e8f0;
}

.clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    border-radius: 999px;
    background: #16a34a;
    padding: 0 18px;
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 18px 35px rgba(22, 163, 74, .28);
    transition: transform .2s ease, background .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    background: #15803d;
}

.form-field {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #fff;
    padding: 11px 12px;
    font-size: 14px;
    color: #0f172a;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .14);
}

.section-band {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.icon-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1e40af;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.skip-link {
    position: absolute;
    left: -999px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 100;
    border-radius: 8px;
    background: #1e40af;
    color: #fff;
    padding: 10px 12px;
}

@media (max-width: 640px) {
    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        min-height: 48px;
        padding: 0 14px;
        font-size: 14px;
    }
}