/* ============================================
   BIENES RAICES DRM - Estilos Fusionados
   Tema Tropical + Optimizado Google Ads
   ============================================ */

:root {
    --primary: #00856F;
    --primary-dark: #006854;
    --primary-light: #00A88A;
    --secondary: #FFB84D;
    --secondary-light: #FFCA70;
    --ocean: #00A8CC;
    --sand: #F4E4C1;
    --sunset: #FF6B6B;
    --jungle: #2D5016;
    --white: #FFFFFF;
    --cream: #FFF9F0;
    --dark: #2C3E34;
    --dark-light: #3D5043;
    --text: #2C3E34;
    --text-light: #5A6C5D;
    --border: #E8EDE9;
    --whatsapp: #25D366;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,133,111,0.08);
    --shadow-md: 0 4px 20px rgba(0,133,111,0.12);
    --shadow-lg: 0 8px 40px rgba(0,133,111,0.15);
    --shadow-xl: 0 16px 60px rgba(0,133,111,0.2);
    --radius: 16px;
    --radius-lg: 20px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 30px rgba(37,211,102,0.7), 0 0 0 15px rgba(37,211,102,0.1), 0 0 0 30px rgba(37,211,102,0.05); }
    100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
}

@keyframes bgMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ---- BUTTONS ---- */
.btn {
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

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

.btn-solid {
    background: var(--primary);
    color: var(--white);
}

.btn-solid:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-lg { padding: 1.1rem 2.8rem; font-size: 1.05rem; }

/* ---- HEADER / NAVBAR ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 40px;
}

.logo-text {
    font-family: var(--font-display);
    line-height: 1.1;
    font-size: 0.95rem;
    color: var(--text);
}

.logo-text strong {
    color: var(--primary);
    font-size: 1.3em;
    display: block;
}

.logo-accent {
    color: var(--secondary);
    font-size: 0.85em;
}

.nav-menu {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    letter-spacing: 0.3px;
}

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

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

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0,133,111,0.82) 0%,
        rgba(0,168,204,0.72) 50%,
        rgba(255,184,77,0.65) 100%),
        url('../img/hero-bg.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-highlight {
    color: var(--secondary);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.hero-ctas {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    animation: bounceDown 2s infinite;
    display: block;
}

/* ---- TRUST BAR ---- */
.trust-bar {
    background: var(--white);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.trust-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    animation: float 3s ease-in-out infinite;
}

.trust-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ---- SECTIONS ---- */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.section-alt { background: var(--white); }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-cta { text-align: center; margin-top: 3rem; }

.section-cta .btn-primary {
    background: var(--primary);
    color: var(--white);
}

.section-cta .btn-primary:hover {
    background: var(--primary-dark);
}

/* ---- FILTER BUTTONS ---- */
.properties-filter {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ---- PROPERTY CARDS (Parcelas) ---- */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.property-card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--ocean));
}

.property-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.property-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    gap: 8px;
}

.property-card__placeholder i { font-size: 3rem; }

.property-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.badge--rent { background: var(--secondary); color: var(--dark); }
.badge--invest { background: var(--ocean); color: var(--white); }

.property-card__price {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.75);
    color: var(--secondary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
}

.property-card__body { padding: 1.5rem; }

.property-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.property-card__location {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.property-card__location i { color: var(--sunset); }

.property-card__features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.property-card__features span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.property-card__features i { color: var(--primary); }

.property-card__desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-card .btn {
    width: 100%;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem;
    font-size: 0.9rem;
}

.property-card .btn:hover {
    background: var(--primary-dark);
}

/* ---- EMPTY STATE ---- */
.properties-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    grid-column: 1 / -1;
    color: var(--text-light);
}

.properties-empty i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 1rem;
}

.properties-empty p {
    max-width: 400px;
    margin-bottom: 1.5rem;
}

.properties-empty .btn {
    background: var(--primary);
    color: var(--white);
}

/* ---- BENEFITS / WHY INVEST ---- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--dark);
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.benefit-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, rgba(0,80,60,0.88) 0%, rgba(0,50,40,0.9) 50%, rgba(0,100,80,0.85) 100%),
        url('../img/parcela5.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.08)"/></svg>');
    animation: bgMove 30s linear infinite;
}

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

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- GALLERY / PROCESOS ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-caption i {
    color: var(--secondary);
}

@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 220px;
    }
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- ABOUT ---- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-real {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary), var(--ocean));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    gap: 12px;
    box-shadow: var(--shadow-xl);
}

.about-image-placeholder i { font-size: 4rem; }

.about-badge {
    position: absolute;
    bottom: -20px;
    left: 2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.about-badge-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.about-badge-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--cream);
    padding: 1rem 1.2rem;
    border-radius: 12px;
}

.value-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.value-text {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.about-text .btn {
    background: var(--primary);
    color: var(--white);
    margin-top: 0.5rem;
}

.about-text .btn:hover {
    background: var(--primary-dark);
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-display);
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--ocean));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-light);
}

.author-location i { color: var(--sunset); margin-right: 4px; }

/* ---- CONTACT ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-details h4 {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary);
    font-weight: 600;
}

.contact-details a:hover { text-decoration: underline; }

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 0.5rem;
}

.contact-social a {
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.contact-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ---- CONTACT FORM ---- */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.2rem; }

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

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--cream);
    color: var(--text);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0,133,111,0.1);
}

textarea.form-input { resize: vertical; }

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.8rem;
}

.form-disclaimer i { color: var(--whatsapp); }

/* ---- FOOTER ---- */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 80px;
    width: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-section p a {
    color: rgba(255,255,255,0.9);
}

.footer-section p a:hover { color: var(--secondary); }

.footer-section p i { color: var(--secondary); margin-right: 6px; }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--dark);
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 62px;
    height: 62px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 999;
    animation: whatsappPulse 2s ease-in-out infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.15);
    animation: none;
}

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible { opacity: 1; visibility: visible; }

.back-to-top:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.4s ease;
        box-shadow: var(--shadow-lg);
        list-style: none;
    }

    .nav-menu.active { left: 0; }
    .menu-toggle { display: flex; }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

    .about-image-placeholder { height: 350px; }
}

@media (max-width: 640px) {
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

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

    .trust-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .section { padding: 4rem 1.5rem; }

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

    .footer-content { grid-template-columns: 1fr; }

    .properties-filter { gap: 0.4rem; }
    .filter-btn { padding: 0.5rem 1rem; font-size: 0.8rem; }

    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ---- THANK YOU PAGE ---- */
.thankyou {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    padding: 40px 20px;
}

.thankyou__content { max-width: 500px; }

.thankyou__icon {
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--dark);
    animation: float 3s ease-in-out infinite;
}

.thankyou h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.thankyou p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}
