/* ============================================
   PROPIEDADES CUERVO — Styles
   ============================================ */

:root {
    --white:      #FFFFFF;
    --cream:      #F7F4EF;
    --light:      #EDE8DF;
    --dark:       #1A2332;
    --dark2:      #243040;
    --teal:       #2B7D8E;
    --teal-light: #3A9DB0;
    --teal-soft:  rgba(43,125,142,0.1);
    --gold:       #C8923A;
    --text:       #1C1C1E;
    --text-soft:  #6B7280;
    --border:     #E2DDD6;
    --shadow:     0 4px 24px rgba(26,35,50,0.08);
    --shadow-lg:  0 12px 48px rgba(26,35,50,0.14);
    --radius:     16px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 40px;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(26,35,50,0.06);
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-logo { display: flex; align-items: baseline; gap: 6px; }
.logo-main {
    font-size: 18px; font-weight: 700;
    color: var(--white); transition: var(--transition); letter-spacing: -0.3px;
}
.logo-accent {
    font-size: 18px; font-weight: 300;
    color: rgba(255,255,255,0.75); transition: var(--transition);
}
.navbar.scrolled .logo-main { color: var(--dark); }
.navbar.scrolled .logo-accent { color: var(--teal); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.85); transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text-soft); }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--teal); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--dark); }

.mobile-menu {
    display: none; flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 15px; font-weight: 500; color: var(--text);
    padding: 14px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ============ HERO ============ */
.hero {
    position: relative; height: 100vh; min-height: 640px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=1920&q=85&fit=crop');
    background-size: cover; background-position: center;
    transform: scale(1.05);
    transition: transform 10s ease, opacity 0.6s ease;
    opacity: 0;
}
.hero-bg.loaded { opacity: 1; transform: scale(1.0); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(26,35,50,0.55) 0%, rgba(26,35,50,0.72) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; color: var(--white);
    padding: 0 24px; max-width: 800px;
}
.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px); color: var(--white);
    font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
    padding: 8px 22px; border-radius: 50px; margin-bottom: 24px;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700; line-height: 1.15;
    margin-bottom: 20px; letter-spacing: -1px;
}
.hero-content h1 em { font-style: italic; color: rgba(255,255,255,0.8); }
.hero-content p {
    font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.75);
    margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto;
}
.hero-locations {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px;
}
.hero-loc {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px; border-radius: 50px; backdrop-filter: blur(8px);
}
.hero-loc i { color: var(--teal-light); font-size: 11px; }
.hero-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--teal); color: var(--white);
    font-size: 15px; font-weight: 600;
    padding: 16px 36px; border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(43,125,142,0.45);
}
.hero-btn:hover {
    background: var(--teal-light); transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(43,125,142,0.55);
}
.hero-btn i { transition: var(--transition); }
.hero-btn:hover i { transform: translateY(3px); }

/* ============ SECTION COMMON ============ */
.section-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--teal); margin-bottom: 14px;
}
.section-tag.light { color: rgba(255,255,255,0.6); }
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700; line-height: 1.2;
    color: var(--dark); margin-bottom: 16px; letter-spacing: -0.5px;
}
.section-title.light { color: var(--white); }
.section-sub {
    font-size: 16px; color: var(--text-soft);
    max-width: 520px; margin-bottom: 56px;
}

/* ============ PROPERTIES ============ */
.properties { padding: 100px 0; background: var(--cream); }
.properties .container { text-align: center; }
.properties .section-sub { margin: 0 auto 56px; }

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

/* Property Card */
.prop-card {
    background: var(--white); border-radius: var(--radius);
    overflow: visible; box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex; flex-direction: column;
    border: 1px solid var(--border);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Gallery */
.prop-gallery-wrap { position: relative; }
.prop-gallery {
    position: relative; height: 260px;
    overflow: hidden; background: var(--light);
    border-radius: var(--radius) var(--radius) 0 0;
}
.gallery-track {
    display: flex; height: 100%;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}
.gallery-slide {
    min-width: 100%; height: 100%;
    background-size: cover; background-position: center;
    cursor: zoom-in;
    transition: transform 0.6s ease;
}
.gallery-prev, .gallery-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    color: var(--dark); font-size: 13px;
    transition: var(--transition); z-index: 3; opacity: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.prop-gallery:hover .gallery-prev,
.prop-gallery:hover .gallery-next { opacity: 1; }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-prev:hover, .gallery-next:hover {
    background: var(--white); transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.gallery-dots {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px; z-index: 3;
}
.gallery-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.5); transition: var(--transition); cursor: pointer;
}
.gallery-dot.active { background: var(--white); width: 20px; border-radius: 3px; }
.gallery-count {
    position: absolute; top: 12px; right: 12px; z-index: 3;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
    color: var(--white); font-size: 11px; font-weight: 600;
    padding: 4px 10px; border-radius: 20px;
}
.prop-badge {
    position: absolute; top: 14px; left: 14px; z-index: 4;
    background: var(--teal); color: var(--white);
    font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
    padding: 5px 14px; border-radius: 50px;
}
.prop-badge.featured { background: var(--gold); color: var(--white); }

/* Property Info */
.prop-info {
    padding: 22px 24px 24px; flex: 1;
    display: flex; flex-direction: column; gap: 12px;
}
.prop-type-location {
    display: flex; align-items: center; justify-content: space-between;
}
.prop-type {
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--teal);
}
.prop-location-text {
    font-size: 12px; color: var(--text-soft);
    display: flex; align-items: center; gap: 5px;
}
.prop-location-text i { font-size: 11px; color: var(--teal); }
.prop-title {
    font-family: 'Playfair Display', serif;
    font-size: 21px; font-weight: 700;
    color: var(--dark); line-height: 1.25;
}
.prop-amenities {
    display: flex; flex-wrap: wrap; gap: 7px;
}
.prop-amenity {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500; color: var(--text-soft);
    background: var(--cream); border-radius: 6px; padding: 5px 10px;
    border: 1px solid var(--border);
}
.prop-amenity i { color: var(--teal); font-size: 11px; }
.prop-desc {
    font-size: 13px; color: var(--text-soft);
    line-height: 1.7; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden; white-space: pre-line;
}
.prop-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px solid var(--border); margin-top: auto; gap: 12px;
}
.prop-price { font-size: 14px; font-weight: 700; color: var(--dark); }
.prop-price span { display: block; font-size: 11px; font-weight: 400; color: var(--text-soft); }
.prop-wa-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: var(--white);
    font-size: 13px; font-weight: 600;
    padding: 10px 20px; border-radius: 50px;
    transition: var(--transition); white-space: nowrap; flex-shrink: 0;
}
.prop-wa-btn:hover {
    background: #1ebe5a; transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.prop-wa-btn i { font-size: 15px; }

/* ============ REVIEWS ============ */
.reviews { padding: 100px 0; background: var(--cream); }
.reviews .container { text-align: center; }
.reviews .section-sub { margin: 0 auto 56px; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; text-align: left;
}

.review-card {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--border); padding: 28px 28px 24px;
    box-shadow: var(--shadow); transition: var(--transition);
    display: flex; flex-direction: column; gap: 14px;
    position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.review-stars { display: flex; gap: 3px; }
.review-stars i { color: var(--gold); font-size: 13px; }

.review-comment {
    font-size: 14px; line-height: 1.8; color: var(--text);
    flex: 1; position: relative; padding-left: 6px;
}
.review-comment::before {
    content: '\201C';
    font-size: 56px; line-height: 0.6;
    color: var(--teal); opacity: 0.13;
    font-family: 'Playfair Display', serif;
    position: absolute; top: 6px; left: -8px;
    pointer-events: none;
}

.review-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px; border-top: 1px solid var(--border);
    margin-top: auto;
}
.review-avatar {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: var(--teal-soft); border: 2px solid rgba(43,125,142,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: var(--teal);
}
.review-name { font-size: 14px; font-weight: 600; color: var(--dark); line-height: 1.3; }
.review-location { font-size: 12px; color: var(--text-soft); }

/* ============ PROPERTY CAL BUTTON ============ */
.prop-cal-btn {
    width: calc(100% + 48px); margin: 12px -24px -24px;
    padding: 12px 24px; background: var(--cream);
    border: none; border-top: 1px solid var(--border);
    color: var(--teal); font-size: 13px; font-weight: 600;
    font-family: 'Poppins', sans-serif; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s; border-radius: 0 0 var(--radius) var(--radius);
    letter-spacing: 0.2px;
}
.prop-cal-btn:hover { background: var(--teal); color: #fff; }
.prop-cal-btn i { font-size: 14px; }

/* ============ CALENDAR MODAL ============ */
.cal-modal-overlay {
    position: fixed; inset: 0; z-index: 1500;
    background: rgba(26,35,50,0.88); backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center; padding: 16px;
}
.cal-modal-overlay.open { display: flex; }
.cal-modal {
    background: var(--white); border-radius: 20px;
    width: 100%; max-width: 480px;
    box-shadow: 0 32px 80px rgba(26,35,50,0.35);
    animation: cal-modal-in 0.28s cubic-bezier(0.34,1.56,0.64,1);
    overflow: hidden;
}
@keyframes cal-modal-in {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cal-modal-header {
    background: var(--dark); padding: 18px 22px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.cal-modal-titles { min-width: 0; }
.cal-modal-title { font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-modal-subtitle { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.cal-modal-close {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: rgba(255,255,255,0.1); color: #fff; font-size: 13px;
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.cal-modal-close:hover { background: rgba(255,255,255,0.2); }

.cal-body { padding: 20px 22px 22px; }

/* Navigation */
.cal-nav {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
}
.cal-nav-btn {
    width: 32px; height: 32px; border-radius: 50%; border: none;
    background: var(--teal-soft); color: var(--teal); font-size: 12px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.cal-nav-btn:hover { background: var(--teal); color: #fff; }
.cal-month-label { font-size: 14px; font-weight: 700; color: var(--dark); text-transform: capitalize; }

/* Weekdays */
.cal-weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 4px;
}
.cal-wd { text-align: center; font-size: 10px; font-weight: 700; color: var(--text-soft); padding: 6px 0; text-transform: uppercase; }

/* Grid */
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-day {
    aspect-ratio: 1; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 500; cursor: pointer;
    transition: all 0.15s; position: relative; color: var(--text);
    user-select: none;
}
.cal-day:not(.empty):not(.past):not(.blocked):not(.selected):not(.in-range):hover {
    background: var(--teal-soft); color: var(--teal);
}
.cal-day.empty { cursor: default; }
.cal-day.past { color: #C8C8C8; cursor: not-allowed; }
.cal-day.blocked {
    background: rgba(220,60,60,0.1); color: #D94040;
    cursor: not-allowed; font-weight: 600;
}
.cal-day.blocked::after {
    content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: #D94040;
}
.cal-day.selected { background: var(--teal) !important; color: #fff !important; font-weight: 700; }
.cal-day.in-range { background: var(--teal-soft); color: var(--teal); border-radius: 0; }
.cal-day.range-start { border-radius: 8px 0 0 8px; }
.cal-day.range-end   { border-radius: 0 8px 8px 0; }
.cal-day.today:not(.selected):not(.blocked):not(.past)::before {
    content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: var(--teal);
}

/* Legend */
.cal-legend { display: flex; gap: 18px; justify-content: center; margin-top: 14px; }
.cal-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-soft); }
.cal-legend-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* Hint + continue */
.cal-sel-hint { text-align: center; font-size: 12px; color: var(--text-soft); margin-top: 14px; min-height: 18px; }
.cal-continue-btn {
    width: 100%; padding: 13px; background: var(--teal); color: #fff; border: none;
    border-radius: 10px; font-size: 14px; font-weight: 700; font-family: 'Poppins', sans-serif;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s; margin-top: 14px;
}
.cal-continue-btn:hover { background: var(--teal-light); transform: translateY(-1px); }

/* Step 2: Booking form */
.cal-back-btn {
    background: none; border: none; color: var(--teal); font-size: 13px; font-weight: 600;
    font-family: 'Poppins', sans-serif; cursor: pointer; padding: 0; margin-bottom: 16px;
    display: flex; align-items: center; gap: 7px; transition: color 0.2s;
}
.cal-back-btn:hover { color: var(--teal-light); }

.cal-dates-summary {
    background: var(--cream); border-radius: 10px; padding: 14px 18px;
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
    border: 1px solid var(--border);
}
.cal-dates-summary .date-range { font-size: 14px; font-weight: 700; color: var(--dark); }
.cal-dates-summary .cal-nights { font-size: 12px; color: var(--text-soft); margin-top: 2px; }

.cal-form-group { margin-bottom: 13px; }
.cal-form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--text-soft); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.cal-form-group input,
.cal-form-group select,
.cal-form-group textarea {
    width: 100%; padding: 11px 13px;
    border: 1.5px solid var(--border); border-radius: 8px;
    font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--text);
    background: var(--white); outline: none; transition: border-color 0.2s;
}
.cal-form-group input:focus,
.cal-form-group select:focus,
.cal-form-group textarea:focus { border-color: var(--teal); }
.cal-form-group textarea { resize: none; }

.cal-wa-btn {
    width: 100%; padding: 14px; background: #25D366; color: #fff; border: none;
    border-radius: 12px; font-size: 15px; font-weight: 700; font-family: 'Poppins', sans-serif;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all 0.2s; margin-top: 6px;
}
.cal-wa-btn:hover { background: #1ebe5a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.cal-wa-btn i { font-size: 19px; }

/* ============ CONTACT ============ */
.contact {
    padding: 100px 0;
    background: var(--dark);
    position: relative; overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 0% 50%, rgba(43,125,142,0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 100% 0%, rgba(43,125,142,0.1) 0%, transparent 50%);
}
.contact-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.contact-text p {
    color: rgba(255,255,255,0.55); font-size: 16px;
    line-height: 1.75; margin-bottom: 36px; max-width: 440px;
}
.contact-wa-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: #25D366; color: var(--white);
    font-size: 15px; font-weight: 600;
    padding: 16px 32px; border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}
.contact-wa-btn:hover {
    background: #1ebe5a; transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(37,211,102,0.45);
}
.contact-wa-btn i { font-size: 20px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
    display: flex; align-items: center; gap: 18px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px; padding: 18px 22px; transition: var(--transition);
}
.contact-card:hover {
    background: rgba(43,125,142,0.1); border-color: rgba(43,125,142,0.3);
}
.contact-card-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(43,125,142,0.15); border: 1px solid rgba(43,125,142,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-light); font-size: 18px; flex-shrink: 0;
}
.contact-card strong { display: block; color: var(--white); font-size: 15px; font-weight: 600; }
.contact-card span { color: rgba(255,255,255,0.4); font-size: 13px; }

/* ============ FOOTER ============ */
.footer {
    background: #0F1720; padding: 40px 0;
    text-align: center; position: relative;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.footer-inner .logo-main { font-size: 20px; font-weight: 700; color: var(--white); }
.footer-inner .logo-accent { font-size: 20px; font-weight: 300; color: var(--teal); margin-left: 6px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); margin-top: 14px; }
.footer-nubex { font-size: 11px; color: rgba(255,255,255,0.18); margin-top: 8px; }
.footer-nubex a { color: rgba(255,255,255,0.32); transition: var(--transition); }
.footer-nubex a:hover { color: rgba(255,255,255,0.6); }

/* ============ NUBEX BADGE ============ */
.nubex-badge {
    position: fixed; bottom: 28px; left: 28px; z-index: 999;
    display: flex; align-items: center; gap: 8px;
    background: rgba(10,10,15,0.9); border: 1px solid rgba(43,125,142,0.4);
    color: var(--teal-light); text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 8px 14px 8px 10px; border-radius: 50px;
    backdrop-filter: blur(12px); transition: var(--transition);
    animation: nubex-enter 0.6s ease 1s both;
}
.nubex-badge:hover {
    background: rgba(43,125,142,0.15); border-color: var(--teal);
    transform: translateY(-2px);
}
.nubex-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--teal-light); flex-shrink: 0;
    animation: nubex-pulse 2.5s ease-in-out infinite;
}
@keyframes nubex-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(43,125,142,0.6); }
    50% { box-shadow: 0 0 0 5px rgba(43,125,142,0); }
}
@keyframes nubex-enter {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============ WA FLOAT ============ */
.wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: var(--transition);
    animation: nubex-enter 0.6s ease 1.2s both;
}
.wa-float:hover {
    background: #1ebe5a; transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.95);
    display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img-wrap {
    max-width: 90vw; max-height: 85vh;
    display: flex; align-items: center; justify-content: center;
}
.lb-img-wrap img {
    max-width: 90vw; max-height: 85vh;
    object-fit: contain; border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}
.lb-close {
    position: absolute; top: 20px; right: 20px;
    color: var(--white); font-size: 18px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-prev, .lb-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    color: var(--white); font-size: 18px;
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }
.lb-counter {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 500;
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .properties-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { gap: 48px; }
}

@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { padding: 12px 20px; }

    .hero-content h1 { font-size: 36px; }
    .hero-locations { gap: 10px; }
    .hero-loc { font-size: 12px; padding: 7px 14px; }

    .properties { padding: 72px 0; }
    .properties-grid { grid-template-columns: 1fr; gap: 24px; }

    .reviews { padding: 72px 0; }
    .reviews-grid { grid-template-columns: 1fr; gap: 20px; }

    .contact { padding: 72px 0; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .contact-text p { max-width: 100%; }

    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 22px; }
    .nubex-badge { bottom: 20px; left: 20px; }
}

@media (max-width: 520px) {
    .cal-modal { border-radius: 16px 16px 0 0; align-self: flex-end; }
    .cal-modal-overlay { align-items: flex-end; padding: 0; }
    .cal-day { font-size: 12px; border-radius: 6px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 30px; }
    .hero-btn { padding: 14px 28px; font-size: 14px; }
    .prop-gallery { height: 220px; }
    .section-title { font-size: 26px; }
}
