/**
 * Landing Page - Premium Minimal Design
 * Visual System: Spacing, Typography, Colors, Shadows
 */

/* ========== VISUAL SYSTEM ========== */
:root {
    /* Spacing */
    --section-spacing-desktop: 64px;
    --section-spacing-tablet: 40px;
    --section-spacing-mobile: 24px;
    --card-padding: 18px;
    --grid-gap: 28px;
    
    /* Border Radius */
    --radius-card: 14px;
    --radius-button: 10px;
    --radius-input: 8px;
    --radius-pill: 999px;
    --radius-badge: 6px;
    
    /* Shadows */
    --shadow-card: 0 6px 18px rgba(0,0,0,0.06);
    --shadow-hover: 0 14px 32px rgba(0,0,0,0.08);
    --shadow-float: 0 4px 16px rgba(37, 211, 102, 0.25);
    
    /* Colors */
    --color-primary: #111827;
    --color-whatsapp: #22c55e;
    --color-bg: #F8F9FB;
    --color-text: #1F2937;
    --color-text-secondary: #6B7280;
    --color-divider: #E5E7EB;
    --color-white: #FFFFFF;
    --color-dark: #111827;
    --color-black: #000000;
}

/* Global smooth transitions */
* {
    transition: all 0.2s ease;
}

/* Typography improvements */
body {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.6;
}

h1 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.1px;
}

.secondary-text {
    color: var(--color-text-secondary);
}

.section {
    margin-top: 32px;
}

.property-grid {
    margin-top: 10px;
}

/* ========== HERO SECTION ========== */
.lp-hero {
    background: linear-gradient(165deg, #0F172A 0%, #1E293B 100%);
    color: var(--color-white);
    padding: 60px 20px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.lp-hero .container {
    position: relative;
    z-index: 10;
}

.trust-badges {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
    width: 100%;
}

.trust-badges::-webkit-scrollbar {
    display: none;
}

.trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 99px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ========== BREADCRUMBS ========== */
.lp-breadcrumbs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #F1F5F9; /* Brighter slate */
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    padding: 2px 0;
}

.lp-breadcrumbs::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.lp-breadcrumbs a {
    color: #FFFFFF !important;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.2s ease;
    font-weight: 500;
}

.lp-breadcrumbs a:hover {
    opacity: 1;
    color: #B89A4A !important;
}

.crumb-separator {
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    margin: 0 4px;
}

.current-crumb {
    color: #B89A4A !important;
    font-weight: 700;
}

.trust-badges span::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
}

.trust-badges span:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

.lp-hero h1 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 14px; /* Slightly smaller for better fit */
    color: rgba(255,255,255,0.7);
    max-width: 1100px; /* Increased to allow one line on desktop */
    margin: 0 auto 24px;
    line-height: 1.2;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .hero-subtitle {
        white-space: normal;
        font-size: 13px;
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 32px;
    }
    
    .lp-hero {
        padding: 85px 16px 40px;
        text-align: left;
    }
    
    .lp-breadcrumbs, .trust-badges, .hero-actions {
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.whatsapp-cta {
    background: #22c55e;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
    animation: whatsappPulse 3s infinite;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.whatsapp-cta:hover {
    background: #16a34a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    border-color: var(--color-white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.section-header-compact {
    margin-bottom: 12px;
    text-align: left;
    border-left: 4px solid #22c55e;
    padding-left: 20px;
}

.section-header-compact h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.section-header-compact p {
    color: var(--color-text-secondary);
    font-size: 13px;
    margin-bottom: 0px;
}

/* ========== PROPERTY LISTINGS ========== */
.lp-listings {
    padding: 16px 20px;
    background: #FFFFFF;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.property-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-image {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #F3F4F6;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.property-card:hover .card-image img {
    transform: scale(1.1);
}

/* Glassmorphic Verified Badge */
.badge-verified {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(34, 197, 94, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Premium Featured Badge */
.property-badge-hybrid {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #B89A4A;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(184, 154, 74, 0.4);
    z-index: 10;
}

.card-content {
    padding: 12px 14px;
}

.property-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-meta {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 8px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.04);
    padding-top: 10px;
}

@media (max-width: 480px) {
    .property-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .actions {
        width: 100%;
        justify-content: center;
    }
    
    .price {
        width: 100%;
    }
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
}

.amount-words {
    font-size: 10px;
    color: #6B7280;
    display: block;
    margin-top: 2px;
    font-weight: 500;
    text-transform: capitalize;
}

.actions {
    display: flex;
    gap: 8px;
}

.btn-view {
    background: #111827;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.btn-view:hover {
    background: #000000;
    transform: translateY(-1px);
}

.btn-whatsapp-sm {
    background: transparent;
    color: #22c55e;
    border: 1px solid #22c55e;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
}
.btn-whatsapp-sm:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

/* ========== INLINE CTA ========== */
.inline-cta {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    padding: 48px 40px;
    border-radius: var(--radius-card);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2);
    position: relative;
    overflow: hidden;
}

.inline-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.inline-cta h3 {
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.inline-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.inline-cta .btn-primary {
    background: white;
    color: #16a34a;
    font-weight: 600;
    padding: 14px 32px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.inline-cta .btn-primary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* ========== RELATED SEARCHES ========== */
.lp-related {
    padding: var(--section-spacing-desktop) 20px;
    background: #F9FAFB;
}

.lp-related h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.lp-related h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    margin: 16px auto 0;
    border-radius: 2px;
}

.pill-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
}

.pill-links::-webkit-scrollbar {
    display: none;
}

.pill {
    padding: 10px 20px;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-pill);
    text-decoration: none;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: white;
}

.pill:hover {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.05);
    color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

/* ========== SEO CONTENT ========== */
.lp-seo {
    padding: var(--section-spacing-desktop) 20px;
    background: var(--color-bg);
}

.seo-content {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.seo-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
}

.seo-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 32px;
    margin-bottom: 16px;
}

.seo-content p {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.seo-content ul {
    list-style: none;
    padding: 0;
}

.seo-content li {
    padding: 12px 0;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-divider);
}

.seo-content li:last-child {
    border-bottom: none;
}

.seo-content strong {
    color: var(--color-text);
    font-weight: 600;
}

/* ========== SELL CTA + FAQ ========== */
.lp-sell-cta,
.lp-faq {
    padding: var(--section-spacing-tablet) 20px;
    background: #FFFFFF;
}

.sell-cta-shell {
    background: linear-gradient(180deg, #0F172A 0%, #111827 100%);
    color: #FFFFFF;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

.sell-cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #bbf7d0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sell-cta-intro h2 {
    color: #FFFFFF;
    margin: 14px 0 8px;
}

.sell-cta-intro p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 920px;
    margin-bottom: 18px;
}

.sell-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.sell-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.sell-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.sell-cta-link {
    border-color: rgba(255, 255, 255, 0.24);
}

.sell-process-grid,
.sell-review-grid,
.faq-list {
    display: grid;
    gap: 18px;
}

.sell-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 22px;
}

.sell-process-card,
.sell-review-card,
.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.sell-process-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    box-shadow: none;
}

.sell-process-index {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #86efac;
    letter-spacing: 0.08em;
}

.sell-process-card h3,
.sell-review-card strong,
.faq-item h3 {
    margin-bottom: 8px;
}

.sell-process-card p {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 0;
}

.sell-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.sell-review-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.sell-review-copy,
.faq-item p {
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.sell-review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sell-review-meta span {
    color: var(--color-text-secondary);
    font-size: 13px;
}

.faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ========== LEAD FORM ========== */
.lp-lead-form-section {
    padding: 0 20px var(--section-spacing-tablet);
    background: #F8FAFC;
}

.lp-lead-form-section.is-visible {
    display: block;
}

.lead-form-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 24px;
    align-items: start;
}

.lead-form-copy {
    padding: 12px 0;
}

.lead-form-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--color-text);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lead-form-copy h2 {
    margin: 14px 0 10px;
}

.lead-form-copy p {
    max-width: 620px;
    color: var(--color-text-secondary);
}

.lead-form-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.lead-form-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.lead-progress-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-secondary);
    background: #FFFFFF;
}

.lead-progress-step.is-active {
    background: var(--color-text);
    border-color: var(--color-text);
    color: #FFFFFF;
}

.lead-progress-line {
    flex: 1;
    height: 1px;
    background: rgba(15, 23, 42, 0.12);
}

.lead-form-feedback {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.5;
}

.lead-form-feedback.is-success {
    background: #ECFDF3;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.lead-form-feedback.is-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.lead-field,
.lead-field-grid {
    margin-bottom: 16px;
}

.lead-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.lead-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text);
    font-size: 13px;
    font-weight: 700;
}

.lead-field input,
.lead-field select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
    background: #FFFFFF;
    color: var(--color-text);
    font-size: 15px;
}

.lead-field input:focus,
.lead-field select:focus {
    outline: none;
    border-color: rgba(15, 23, 42, 0.28);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.lead-field small {
    display: block;
    min-height: 18px;
    margin-top: 6px;
    color: #B91C1C;
    font-size: 12px;
}

.lead-form-actions,
.lead-field-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

.lead-form-actions .btn-primary,
.lead-form-actions .btn-secondary,
.lead-field-actions .btn-primary {
    min-width: 160px;
}

/* ========== FLOATING WHATSAPP ========== */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--color-whatsapp);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-float);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-wa:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-fallback {
    position: fixed;
    bottom: 88px;
    right: 24px;
    background: #0f172a;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-fallback.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== CHATBOT ========== */
.chatbot {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 360px;
    max-height: 480px;
    background: var(--color-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-hover);
    z-index: 999;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot.visible {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

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

.chatbot-header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-divider);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    font-size: 24px;
}

.chatbot-info strong {
    display: block;
    font-size: 15px;
    color: var(--color-text);
}

.chatbot-info small {
    display: block;
    font-size: 12px;
    color: var(--color-text-secondary);
}

.close-btn {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: var(--color-bg);
}

.chatbot-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    max-height: 400px;
}

.bot-message,
.user-message {
    margin-bottom: 12px;
}

.message-bubble {
    padding: 12px 14px;
    border-radius: 12px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.5;
}

.message-bubble.bot {
    background: var(--color-bg);
    color: var(--color-text);
}

.message-bubble.user {
    background: var(--color-dark);
    color: var(--color-white);
    margin-left: auto;
}

.user-message {
    display: flex;
    justify-content: flex-end;
}

.bot-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.bot-option-btn {
    background: var(--color-white);
    border: 1px solid var(--color-divider);
    padding: 10px 14px;
    border-radius: var(--radius-button);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-size: 14px;
}

.bot-option-btn:hover {
    border-color: var(--color-primary);
    background: rgba(184, 154, 74, 0.05);
}

/* ========== NO RESULTS ========== */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .lp-hero,
    .lp-listings,
    .lp-related,
    .lp-seo {
        padding: var(--section-spacing-tablet) 20px;
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .lp-hero,
    .lp-listings,
    .lp-related,
    .lp-seo,
    .lp-lead-form-section,
    .lp-sell-cta,
    .lp-faq {
        padding: var(--section-spacing-mobile) 16px;
    }
    
    .lp-hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .trust-badges {
        gap: 12px;
    }
    
    .trust-badges span {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .sell-cta-shell {
        padding: 22px 18px;
    }

    .sell-cta-actions {
        flex-direction: column;
    }

    .sell-cta-actions .btn-primary,
    .sell-cta-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

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

    .lead-field-grid {
        grid-template-columns: 1fr;
    }

    .lead-form-actions,
    .lead-field-actions {
        flex-direction: column;
    }

    .lead-form-actions .btn-primary,
    .lead-form-actions .btn-secondary,
    .lead-field-actions .btn-primary {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary,
    .btn-whatsapp,
    .whatsapp-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 16px;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sell-process-grid,
    .sell-review-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .inline-cta {
        padding: 36px 24px;
    }
    
    .inline-cta h3 {
        font-size: 22px;
    }
    
    .card-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-view,
    .btn-whatsapp-sm {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .location {
        font-size: 14px;
    }
    
    .price {
        font-size: 24px;
    }
    
    .specs {
        gap: 12px;
        font-size: 13px;
    }
    
    .chatbot {
        width: calc(100% - 32px);
        right: 16px;
        bottom: 80px;
    }
    
    .floating-wa {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }
    
    .lp-hero h1 {
        font-size: 28px;
        letter-spacing: -0.04em;
    }
    
    .specs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .card-image {
        height: 180px;
    }
}
@media (max-width: 1100px) { .main-nav { gap: 0.85rem !important; } .main-nav a { font-size: 12.5px !important; } } .site-header { background: rgba(15, 23, 42, 0.95) !important; backdrop-filter: blur(12px); } .header-content { max-width: 1280px !important; }
