@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --ev-primary: #1f2937;
    --ev-teal: #456760;
    --ev-teal-light: #e3ece9;
    --ev-teal-dark: #304a44;
    --ev-teal-ink: #ffffff;
    --ev-orange: #f59e0b;
    --ev-red: #ef4444;
    --ev-bg: #f8fafc;
    --ev-white: #ffffff;
    --ev-muted: #6b7280;
    --ev-border: #e5e7eb;
    --ev-footer: #1e293b;
    --ev-announce: #1a1a2e;
    --ev-shadow: rgba(0,0,0,0.08);
    --ev-radius: 12px;
    --ev-radius-lg: 16px;
    --ev-radius-xl: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    color: var(--ev-primary);
    background-color: var(--ev-bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

::selection { background-color: rgba(69,103,96,0.35); }
*:focus-visible { outline: 2px solid var(--ev-teal); outline-offset: 2px; border-radius: 4px; }

/* ===== ANNOUNCEMENT BAR ===== */
.ev-announce {
    background: var(--ev-announce);
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
    padding: 8px 16px;
    position: relative;
}
.ev-announce a { color: #fbbf24; text-decoration: underline; }

/* ===== HEADER ===== */
.ev-header {
    background: var(--ev-white);
    border-bottom: 1px solid var(--ev-border);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px var(--ev-shadow);
}
.ev-header-top {
    background: #f1f5f9;
    border-bottom: 1px solid var(--ev-border);
    font-size: 0.78rem;
    padding: 6px 0;
    color: var(--ev-muted);
}
.ev-header-main {
    padding: 12px 0;
}
.ev-logo { height: var(--ev-logo-height, 44px); width: auto; max-height: 100%; }
.ev-logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ev-teal);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.ev-logo-text span { color: var(--ev-primary); }

.ev-nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--ev-primary);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 150ms;
    position: relative;
}
.ev-nav-link:hover, .ev-nav-link[aria-current="page"] {
    color: var(--ev-teal-dark);
    background: var(--ev-teal-light);
}
.ev-nav-link svg { margin-left: 4px; }

.ev-header-phone {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ev-primary);
    text-decoration: none;
}
.ev-header-phone small {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--ev-muted);
}

.ev-icon-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--ev-border);
    background: var(--ev-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 150ms;
    color: var(--ev-primary);
}
.ev-icon-btn:hover {
    border-color: var(--ev-teal);
    color: var(--ev-teal);
}

/* Header action buttons (search/favs/member/random) */
.ev-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: transparent;
    color: var(--ev-primary);
    text-decoration: none;
    transition: all 200ms;
    position: relative;
    cursor: pointer;
}
.ev-action-btn:hover {
    background: var(--ev-teal-light);
    color: var(--ev-teal-dark);
    transform: translateY(-1px);
}
.ev-action-btn-primary {
    background: var(--ev-teal);
    color: var(--ev-teal-ink);
}
.ev-action-btn-primary:hover {
    background: var(--ev-teal-dark);
    color: var(--ev-teal-ink);
}

.ev-header-search {
    position: relative;
}
.ev-header-search-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: -72px;
    width: min(420px, calc(100vw - 32px));
    border: 1px solid var(--ev-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15,23,42,0.18);
    z-index: 80;
    overflow: hidden;
}
.ev-header-search-panel::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 86px;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    background: #fff;
    border-left: 1px solid var(--ev-border);
    border-top: 1px solid var(--ev-border);
}
.ev-header-search-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px;
    border-bottom: 1px solid var(--ev-border);
}
.ev-header-search-icon {
    color: var(--ev-muted);
    flex: 0 0 auto;
}
.ev-header-search-input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ev-primary);
}
.ev-header-search-input::placeholder {
    color: #9ca3af;
}
.ev-header-search-close {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #f8fafc;
    color: var(--ev-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.ev-header-search-close:hover {
    background: var(--ev-teal-light);
    color: var(--ev-teal-dark);
}
.ev-header-search-results {
    max-height: 380px;
    overflow-y: auto;
    padding: 8px;
}
.ev-header-search-empty {
    padding: 18px 14px;
    color: var(--ev-muted);
    font-size: 0.9rem;
    text-align: center;
}
.ev-header-search-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition: background-color 150ms ease;
}
.ev-header-search-item:hover {
    background: #f8fafc;
}
.ev-header-search-thumb {
    width: 64px;
    height: 52px;
    border-radius: 8px;
    background: var(--ev-teal-light);
    color: var(--ev-teal-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-weight: 800;
}
.ev-header-search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ev-header-search-item-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ev-header-search-item-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--ev-primary);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.25;
}
.ev-header-search-item-meta {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--ev-muted);
    font-size: 0.78rem;
}
.ev-header-search-item-price {
    color: var(--ev-teal-dark);
    font-size: 0.82rem;
    font-weight: 800;
}
.ev-header-search-all {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-top: 1px solid var(--ev-border);
    color: var(--ev-teal);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
}
.ev-header-search-all:hover {
    background: var(--ev-teal-light);
    color: var(--ev-teal-dark);
}

/* Social chips (facebook/instagram) */
.ev-social-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px 10px 3px 3px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ev-muted);
    text-decoration: none;
    transition: all 200ms;
}
.ev-social-chip:hover { color: var(--ev-primary); }
.ev-social-chip-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.ev-social-chip-fb .ev-social-chip-icon { background: #1877f2; }
.ev-social-chip-ig .ev-social-chip-icon { background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%); }

/* ===== BUTTONS ===== */
.ev-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 200ms;
    white-space: nowrap;
}
.ev-btn-teal {
    background: var(--ev-teal);
    color: var(--ev-teal-ink);
}
.ev-btn-teal:hover {
    background: var(--ev-teal-dark);
    color: var(--ev-teal-ink);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(242,207,90,0.35);
}
.ev-btn-gradient {
    background: linear-gradient(135deg, var(--ev-orange), var(--ev-red));
    color: #fff;
}
.ev-btn-gradient:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(239,68,68,0.3);
}
.ev-btn-outline {
    background: transparent;
    color: var(--ev-primary);
    border: 1.5px solid var(--ev-border);
}
.ev-btn-outline:hover {
    border-color: var(--ev-teal);
    color: var(--ev-teal-dark);
    background: var(--ev-teal-light);
}
.ev-btn-white {
    background: var(--ev-white);
    color: var(--ev-primary);
    box-shadow: 0 2px 8px var(--ev-shadow);
}

/* ===== HERO ===== */
.ev-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
}
.ev-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.3));
    z-index: 1;
}
.ev-hero-content { position: relative; z-index: 2; color: #fff; }
.ev-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 12px;
}
.ev-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}
@media (max-width: 768px) {
    .ev-hero { min-height: 320px; }
    .ev-hero h1 { font-size: 1.75rem; }
}

/* ===== SEARCH FORM ===== */
.ev-search-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.ev-search {
    background: var(--ev-white);
    border-radius: var(--ev-radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 8px;
    display: flex;
    align-items: stretch;
    gap: 2px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.ev-search-field {
    flex: 1;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--ev-border);
    min-width: 0;
}
.ev-search-field:last-of-type { border-right: 0; }
.ev-search-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ev-muted);
    margin-bottom: 4px;
}
.ev-search-input {
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ev-primary);
    background: transparent;
    border: 0;
    outline: none;
    padding: 0;
    width: 100%;
}
.ev-search-btn {
    margin: 4px;
    padding: 0 28px;
    border-radius: var(--ev-radius);
    background: var(--ev-teal);
    color: var(--ev-teal-ink);
    font-weight: 700;
    font-size: 0.9rem;
    border: 0;
    cursor: pointer;
    transition: all 200ms;
    white-space: nowrap;
}
.ev-search-btn:hover {
    background: var(--ev-teal-dark);
    color: var(--ev-teal-ink);
}
@media (max-width: 768px) {
    .ev-search {
        flex-direction: column;
        border-radius: var(--ev-radius);
        padding: 12px;
    }
    .ev-search-field {
        border-right: 0;
        border-bottom: 1px solid var(--ev-border);
        padding: 10px 4px;
    }
    .ev-search-field:last-of-type { border-bottom: 0; }
    .ev-search-btn {
        margin: 8px 0 0;
        padding: 12px;
        border-radius: 8px;
    }
}

/* ===== ADVANCED SEARCH ===== */
.ev-advanced {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 12px;
}
.ev-advanced-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ev-white);
    color: var(--ev-primary);
    border: 1px solid var(--ev-border);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: all 200ms;
}
.ev-advanced-toggle:hover {
    color: var(--ev-teal-dark);
    background: var(--ev-teal-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
@media (max-width: 768px) {
    .ev-advanced { margin-top: 10px; }
    .ev-advanced-toggle {
        width: 100%;
        justify-content: center;
    }
}
.ev-advanced-chev {
    transition: transform 200ms ease;
    color: var(--ev-muted);
}
.ev-advanced.is-open .ev-advanced-chev {
    transform: rotate(180deg);
    color: var(--ev-teal);
}
.ev-advanced-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--ev-teal-dark);
    color: var(--ev-teal-ink);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}
.ev-advanced-count.hidden { display: none; }

.ev-advanced-panel {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, calc(100% - 16px));
    background: var(--ev-white);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15,23,42,0.18), 0 4px 12px rgba(15,23,42,0.06);
    border: 1px solid rgba(15,23,42,0.06);
    overflow: hidden;
    animation: evAdvFade 160ms ease;
}
@keyframes evAdvFade {
    from { opacity: 0; transform: translate(-50%, -6px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}
.ev-advanced-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--ev-border);
    color: var(--ev-muted);
}
.ev-advanced-search-input {
    flex: 1;
    border: 0;
    outline: none;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--ev-primary);
    background: transparent;
    padding: 4px 0;
}
.ev-advanced-search-input::placeholder { color: var(--ev-muted); }

.ev-advanced-body {
    max-height: 380px;
    overflow-y: auto;
    padding: 16px 20px 8px;
}
.ev-advanced-body::-webkit-scrollbar { width: 6px; }
.ev-advanced-body::-webkit-scrollbar-thumb { background: rgba(15,23,42,0.18); border-radius: 999px; }

.ev-advanced-group { margin-bottom: 18px; }
.ev-advanced-group-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ev-muted);
    margin: 0 0 10px;
}
.ev-advanced-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
}
.ev-advanced-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 150ms ease;
}
.ev-advanced-item:hover { background-color: var(--ev-teal-light); }
.ev-advanced-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--ev-teal-dark);
    cursor: pointer;
    flex-shrink: 0;
}
.ev-advanced-item-text {
    font-size: 0.9rem;
    color: var(--ev-primary);
    line-height: 1.3;
}
.ev-advanced-empty {
    text-align: center;
    color: var(--ev-muted);
    font-size: 0.9rem;
    padding: 24px 0;
}

.ev-advanced-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    border-top: 1px solid var(--ev-border);
    background: #f8fafc;
}
.ev-advanced-clear {
    background: transparent;
    border: 0;
    color: var(--ev-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 4px;
}
.ev-advanced-clear:hover { color: var(--ev-red); }
.ev-advanced-apply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ev-teal);
    color: var(--ev-teal-ink);
    border: 0;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 200ms;
}
.ev-advanced-apply:hover { background: var(--ev-teal-dark); color: var(--ev-teal-ink); }

@media (max-width: 768px) {
    .ev-advanced-panel {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 12px;
    }
    .ev-advanced-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .ev-advanced-body { max-height: 320px; }
}

/* ===== SECTION ===== */
.ev-section {
    padding: 48px 0;
}
.ev-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.ev-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--ev-primary);
}
.ev-section-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ev-teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.ev-section-link:hover { text-decoration: underline; color: var(--ev-teal-dark); }

/* ===== VILLA CARD ===== */
.ev-card {
    background: var(--ev-white);
    border-radius: var(--ev-radius);
    box-shadow: 0 2px 12px var(--ev-shadow);
    transition: all 250ms;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    isolation: isolate;
}
.ev-card::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--ev-radius) + 3px);
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 25%, #ec4899 50%, #8b5cf6 75%, #3b82f6 100%);
    opacity: 0;
    filter: blur(14px);
    z-index: -1;
    transition: opacity 280ms ease;
    pointer-events: none;
}
.ev-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.ev-card:hover::before {
    opacity: 0.85;
}
.ev-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e2e8f0;
    border-top-left-radius: var(--ev-radius);
    border-top-right-radius: var(--ev-radius);
}
.ev-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--ev-white);
    border-bottom-left-radius: var(--ev-radius);
    border-bottom-right-radius: var(--ev-radius);
}
.ev-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 400ms;
}
.ev-card:hover .ev-card-img img { transform: scale(1.05); }
.ev-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-teal-dark));
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
}
.ev-card-badge {
    position: absolute;
    top: 10px; left: 10px;
    display: flex; flex-wrap: wrap; gap: 6px;
    z-index: 3;
}
.ev-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}
.ev-badge-location {
    background: rgba(255,255,255,0.92);
    color: var(--ev-teal);
}
.ev-badge-feature {
    background: rgba(69,103,96,0.92);
    color: #fff;
}
.ev-card-fav {
    position: absolute;
    top: 10px; right: 10px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    border: none;
    color: #9ca3af;
    transition: all 200ms;
    z-index: 3;
}
.ev-card-fav:hover { color: var(--ev-red); background: #fff; }
.ev-card-fav.is-active {
    color: var(--ev-red);
    background: #fff;
}
.ev-card-fav.is-active svg {
    fill: currentColor;
}
.ev-card-fav:disabled {
    opacity: 0.65;
    cursor: wait;
}

.ev-card-code {
    font-size: 0.7rem;
    color: var(--ev-muted);
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}
.ev-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--ev-primary);
    line-height: 1.3;
}
.ev-card-desc {
    font-size: 0.82rem;
    color: var(--ev-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

/* Capacity Pills */
.ev-caps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.ev-cap {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid var(--ev-border);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ev-primary);
    background: #f9fafb;
}
.ev-cap svg { width: 14px; height: 14px; color: var(--ev-teal); flex-shrink: 0; }

/* Price + CTA */
.ev-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--ev-border);
    margin-top: auto;
}
.ev-price-label {
    font-size: 0.7rem;
    color: var(--ev-muted);
}
.ev-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ev-teal);
}
.ev-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--ev-orange), var(--ev-red));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 200ms;
}
.ev-card-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(239,68,68,0.25);
}

/* ===== HORIZONTAL CARD (list view) ===== */
.ev-card-h {
    display: flex;
    flex-direction: row;
    background: var(--ev-white);
    border-radius: var(--ev-radius);
    overflow: hidden;
    box-shadow: 0 2px 12px var(--ev-shadow);
    transition: all 250ms;
    text-decoration: none;
    color: inherit;
}
.ev-card-h:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ev-card-h .ev-card-img {
    width: 320px;
    min-width: 280px;
    aspect-ratio: auto;
    height: 100%;
}
.ev-card-h .ev-card-body {
    padding: 20px;
    flex: 1;
}
@media (max-width: 768px) {
    .ev-card-h {
        flex-direction: column;
    }
    .ev-card-h .ev-card-img {
        width: 100%;
        min-width: auto;
        aspect-ratio: 16/9;
    }
}

/* ===== SIDEBAR FILTERS ===== */
.ev-sidebar {
    background: var(--ev-white);
    border-radius: var(--ev-radius);
    padding: 24px;
    box-shadow: 0 2px 12px var(--ev-shadow);
    position: sticky;
    top: 80px;
}
.ev-sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 4px;
}
.ev-sidebar-sub {
    font-size: 0.8rem;
    color: var(--ev-muted);
    margin: 0 0 20px;
}
.ev-filter-group { margin-bottom: 20px; }
.ev-filter-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ev-primary);
    margin-bottom: 8px;
    display: block;
}
.ev-filter-select, .ev-filter-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--ev-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.85rem;
    background: #f9fafb;
    color: var(--ev-primary);
    outline: none;
    transition: border-color 150ms;
}
.ev-filter-select:focus, .ev-filter-input:focus {
    border-color: var(--ev-teal);
    box-shadow: 0 0 0 3px rgba(69,103,96,0.18);
}

/* ===== TRUST/WHY US ===== */
.ev-trust-card {
    background: var(--ev-white);
    border-radius: var(--ev-radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 12px var(--ev-shadow);
    transition: all 250ms;
}
.ev-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.ev-trust-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--ev-teal-light);
    color: var(--ev-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ev-trust-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
}
.ev-trust-desc {
    font-size: 0.82rem;
    color: var(--ev-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== STATS ===== */
.ev-stat { text-align: center; }
.ev-stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ev-teal);
    line-height: 1;
}
.ev-stat-label {
    font-size: 0.82rem;
    color: var(--ev-muted);
    margin-top: 4px;
}

/* ===== FOOTER ===== */
.ev-footer {
    background: var(--ev-footer);
    color: #cbd5e1;
    margin-top: 0;
}
.ev-footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 150ms;
}
.ev-footer a:hover { color: #fff; }
.ev-footer-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ev-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 0.78rem;
    color: #94a3b8;
}

/* ===== FLOATING BUTTONS ===== */
.ev-float {
    position: fixed;
    bottom: 24px;
    z-index: 45;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: transform 200ms;
    text-decoration: none;
}
.ev-float:hover { transform: scale(1.1); }
.ev-float-phone { right: 24px; background: var(--ev-teal); color: #fff; }
.ev-float-wa { right: 84px; background: #25d366; }

/* ===== MOBILE OVERLAY ===== */
.ev-mobile-overlay {
    position: fixed; inset: 0;
    background: var(--ev-white);
    z-index: 60;
    display: none;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}
.ev-mobile-overlay.is-open { display: flex; }

/* ===== BREADCRUMB ===== */
.ev-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--ev-muted);
    flex-wrap: wrap;
}
.ev-breadcrumb a { color: var(--ev-muted); text-decoration: none; }
.ev-breadcrumb a:hover { color: var(--ev-teal-dark); text-decoration: underline; }
.ev-breadcrumb-sep { color: var(--ev-muted); opacity: 0.6; }

.ev-breadcrumb-on-hero { color: rgba(255,255,255,0.85); }
.ev-breadcrumb-on-hero a { color: rgba(255,255,255,0.85); }
.ev-breadcrumb-on-hero a:hover { color: #fff; }
.ev-breadcrumb-on-hero .ev-breadcrumb-sep { color: rgba(255,255,255,0.6); }

/* ===== CONTACT FORM ===== */
.ev-form-group { margin-bottom: 16px; }
.ev-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ev-primary);
}
.ev-form-input, .ev-form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--ev-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--ev-white);
    color: var(--ev-primary);
    outline: none;
    transition: border-color 150ms;
}
.ev-form-input:focus, .ev-form-textarea:focus {
    border-color: var(--ev-teal);
    box-shadow: 0 0 0 3px rgba(69,103,96,0.18);
}
.ev-form-textarea { resize: vertical; min-height: 120px; }

/* ===== UTILITY ===== */
.ev-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.ev-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ev-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ev-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 1024px) {
    .ev-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .ev-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .ev-grid-4, .ev-grid-3, .ev-grid-2 { grid-template-columns: 1fr; }
}

/* Scrollable row */
.ev-scroll-row {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 34px 24px 46px 44px;
    margin: 0 0 -18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-padding-left: 44px;
}
.ev-scroll-row::-webkit-scrollbar { display: none; }
.ev-scroll-row > * {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: calc(25% - 21px);
}
@media (max-width: 1024px) {
    .ev-scroll-row > * { width: calc(50% - 14px); }
}
@media (max-width: 640px) {
    .ev-scroll-row > * { width: 85%; }
}

/* Alert box */
.ev-alert {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}
.ev-alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.ev-alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }

/* ===== HOMEPAGE: VILLA TYPE TABS ===== */
.ev-types-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 2px 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}
.ev-types-tabs::-webkit-scrollbar { height: 6px; }
.ev-types-tabs::-webkit-scrollbar-thumb { background: rgba(15,23,42,0.12); border-radius: 999px; }
.ev-types-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--ev-border);
    background: var(--ev-white);
    color: var(--ev-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 180ms ease;
    white-space: nowrap;
}
.ev-types-tab:hover {
    border-color: var(--ev-teal);
    color: var(--ev-teal-dark);
    background: var(--ev-teal-light);
}
.ev-types-tab.is-active {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}

/* ===== HOMEPAGE: REGIONS ===== */
.ev-regions { background: #f1f5f9; }
.ev-region-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--ev-primary);
    transition: transform 200ms ease;
}
.ev-region-card:hover { transform: translateY(-2px); }
.ev-region-card-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    overflow: hidden;
    background: #e2e8f0;
    box-shadow: 0 6px 20px rgba(15,23,42,0.08);
}
.ev-region-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 400ms;
}
.ev-region-card:hover .ev-region-card-img img { transform: scale(1.05); }
.ev-region-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-teal-dark));
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}
.ev-region-card-label {
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ev-primary);
}

/* ===== HOMEPAGE: FAQ + NEWSLETTER ===== */
.ev-home-faq {
    position: relative;
}
.ev-home-faq::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 30%, rgba(69,103,96,0.10) 0%, rgba(69,103,96,0) 26%),
        radial-gradient(circle at 82% 74%, rgba(69,103,96,0.10) 0%, rgba(69,103,96,0) 28%);
}
.ev-home-faq-head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
}
.ev-home-faq-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(69,103,96,0.10);
    color: var(--ev-teal);
    font-size: 0.85rem;
    font-weight: 700;
}
.ev-home-faq-title {
    margin: 16px 0 10px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    font-weight: 800;
    color: #0f172a;
}
.ev-home-faq-title span {
    color: var(--ev-teal);
}
.ev-home-faq-subtitle {
    margin: 0;
    font-size: 1rem;
    color: #334155;
}
.ev-home-faq-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}
.ev-home-news-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(226,232,240,0.95);
    border-radius: 26px;
    box-shadow: 0 20px 60px rgba(15,23,42,0.07);
    padding: 40px 44px;
}
.ev-home-news-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-teal-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(69,103,96,0.24);
    margin-bottom: 18px;
}
.ev-home-news-title {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
}
.ev-home-news-copy {
    margin: 10px 0 0;
    color: #334155;
    font-size: 0.98rem;
}
.ev-home-news-form {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ev-home-news-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.ev-home-news-input-wrap {
    position: relative;
}
.ev-home-news-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    display: inline-flex;
}
.ev-home-news-input {
    width: 100%;
    height: 62px;
    border-radius: 18px;
    border: 1px solid #dbe2ea;
    background: #fff;
    padding: 0 18px 0 58px;
    font: inherit;
    font-size: 1rem;
    color: #0f172a;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}
.ev-home-news-input::placeholder {
    color: #94a3b8;
}
.ev-home-news-input:focus {
    outline: none;
    border-color: rgba(69,103,96,0.45);
    box-shadow: 0 0 0 4px rgba(69,103,96,0.14);
}
.ev-home-news-textarea-wrap {
    position: relative;
}
.ev-home-news-textarea {
    width: 100%;
    min-height: 148px;
    border-radius: 18px;
    border: 1px solid #dbe2ea;
    background: #fff;
    padding: 18px 18px;
    font: inherit;
    font-size: 1rem;
    color: #0f172a;
    resize: vertical;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}
.ev-home-news-textarea::placeholder {
    color: #94a3b8;
}
.ev-home-news-textarea:focus {
    outline: none;
    border-color: rgba(69,103,96,0.45);
    box-shadow: 0 0 0 4px rgba(69,103,96,0.14);
}
.ev-home-news-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.ev-home-news-btn {
    min-height: 62px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-teal-dark));
    color: #fff;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(69,103,96,0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.ev-home-news-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(69,103,96,0.28);
    filter: saturate(1.05);
}
.ev-home-news-success {
    margin-top: 22px;
    border: 1px solid rgba(69,103,96,0.18);
    background: rgba(227,236,233,0.78);
    color: var(--ev-teal-dark);
    border-radius: 18px;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 600;
}
.ev-home-news-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 28px 0;
}
.ev-home-news-note {
    margin: 0;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.75;
}
.ev-home-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ev-home-faq-item {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(226,232,240,0.95);
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(15,23,42,0.05);
    overflow: hidden;
}
.ev-home-faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}
.ev-home-faq-item summary::-webkit-details-marker {
    display: none;
}
.ev-home-faq-toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid #dbe2ea;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform 180ms ease, background-color 180ms ease;
}
.ev-home-faq-item[open] .ev-home-faq-toggle {
    transform: rotate(180deg);
    background: var(--ev-teal-light);
}
.ev-home-faq-item p {
    margin: 0;
    padding: 0 24px 22px;
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.75;
}
.ev-home-faq-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 64px;
    padding: 0 34px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-teal-dark));
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(69,103,96,0.22);
    transition: transform 180ms ease, box-shadow 180ms ease;
    align-self: flex-start;
}
.ev-home-faq-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(69,103,96,0.28);
}
@media (max-width: 1024px) {
    .ev-home-faq-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .ev-home-news-card {
        padding: 26px 22px;
        border-radius: 22px;
    }
    .ev-home-news-form {
        gap: 12px;
    }
    .ev-home-news-form-grid {
        grid-template-columns: 1fr;
    }
    .ev-home-news-input,
    .ev-home-news-btn {
        height: 62px;
        border-radius: 18px;
    }
    .ev-home-faq-item summary {
        padding: 18px 18px;
        font-size: 0.95rem;
    }
    .ev-home-faq-item p {
        padding: 0 18px 18px;
    }
    .ev-home-faq-toggle {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }
    .ev-home-faq-link {
        width: 100%;
    }
}

/* ===== VILLA DETAIL: FEATURE PILLS & INFO BLOCKS ===== */
.ev-feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--ev-border);
    border-radius: 10px;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ev-primary);
    transition: border-color 150ms ease, box-shadow 150ms ease;
}
.ev-feature-pill:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgba(15,23,42,0.05);
}
.ev-feature-pill .ev-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ev-included-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--ev-border);
    border-radius: 12px;
    background: #fff;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}
.ev-included-tile:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgba(15,23,42,0.05);
}
.ev-included-tile-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ev-inc-i-bolt  { background: #fef3c7; color: #d97706; }
.ev-inc-i-drop  { background: #dbeafe; color: #2563eb; }
.ev-inc-i-wifi  { background: #e0e7ff; color: #4f46e5; }
.ev-inc-i-leaf  { background: #dcfce7; color: #16a34a; }
.ev-inc-i-flame { background: #fee2e2; color: #dc2626; }
.ev-inc-i-broom { background: #e0f2fe; color: #0284c7; }
.ev-inc-i-check { background: var(--ev-teal-light); color: var(--ev-teal-dark); }
.ev-included-tile-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ev-primary);
    line-height: 1.25;
}

.ev-time-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--ev-border);
    border-radius: 12px;
    background: #fff;
}
.ev-time-tile-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ev-time-tile-in  { background: #dcfce7; color: #16a34a; }
.ev-time-tile-out { background: #fee2e2; color: #dc2626; }
.ev-time-tile-label { font-size: 0.78rem; color: var(--ev-muted); }
.ev-time-tile-value { font-size: 1.25rem; font-weight: 800; color: var(--ev-primary); line-height: 1.1; }

.ev-deposit-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1e3a8a, #3730a3);
    color: #fff;
    box-shadow: 0 6px 18px rgba(30,58,138,0.25);
}
.ev-deposit-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.ev-deposit-title { font-size: 1.05rem; font-weight: 800; margin: 0 0 4px; }
.ev-deposit-text  { font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.45; margin: 0; }
.ev-deposit-amount {
    margin-left: auto;
    background: #fff;
    color: #1e3a8a;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 10px 18px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Pool block */
.ev-pool-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--ev-border);
}
.ev-pool-row:last-child { border-bottom: 0; }
.ev-pool-row-label { font-size: 0.92rem; color: var(--ev-primary); font-weight: 500; }
.ev-pool-row-value { font-size: 0.95rem; color: var(--ev-primary); font-weight: 700; }
.ev-pool-dims {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--ev-border);
    font-size: 0.85rem;
}
.ev-pool-dim-label { color: var(--ev-muted); margin-right: 4px; }
.ev-pool-dim-value { color: var(--ev-primary); font-weight: 700; }
.ev-pool-sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--ev-primary);
    margin-top: 14px;
}
.ev-pool-sub-title .ev-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .ev-pool-dims { grid-template-columns: 1fr; gap: 6px; }
    .ev-deposit-card { flex-direction: column; align-items: flex-start; }
    .ev-deposit-amount { margin-left: 0; }
}

/* ===== VILLA DETAIL: AVAILABILITY CALENDAR ===== */
.nova-day {
    border: 0;
    background: transparent;
    font-size: 0.82rem;
    color: var(--ev-primary);
    border-radius: 8px;
    position: relative;
    outline: none;
    line-height: 1;
}
.nova-day.is-available {
    background: #fff;
    border: 1px solid transparent;
    color: var(--ev-primary);
}
.nova-day.is-available:hover {
    background: var(--ev-teal-light);
    color: var(--ev-teal-dark);
}
.nova-day.is-blocked,
.nova-day.is-reserved {
    background: #e5e7eb;
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 0.74rem;
}
.nova-day.is-today {
    box-shadow: inset 0 0 0 2px var(--ev-teal);
}

/* Range: in-between days */
.nova-day.is-in-range,
.nova-day.is-hover-range {
    background: var(--ev-teal-light);
    color: var(--ev-teal-dark);
    border-radius: 0;
    border: 1px solid transparent;
}
.nova-day.is-hover-range {
    background: rgba(69,103,96,0.1);
}

/* Range: start/end bookends */
.nova-day.is-range-start,
.nova-day.is-range-end {
    background: var(--ev-teal);
    color: #fff;
    font-weight: 700;
    border: 1px solid var(--ev-teal);
}
.nova-day.is-range-start {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.nova-day.is-range-end {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
/* Same-day (only check-in set) keeps full rounded corners */
.nova-day.is-range-start.is-range-end {
    border-radius: 8px;
}

/* Today ring should still show when day is selected */
.nova-day.is-today.is-range-start,
.nova-day.is-today.is-range-end,
.nova-day.is-today.is-in-range {
    box-shadow: inset 0 0 0 2px #fff;
}


/* ===== BOOKING LIVE QUOTE ===== */
.ev-quote {
    margin-top: 12px;
    padding: 14px 16px;
    border: 1px solid var(--ev-border);
    border-radius: 12px;
    background: var(--ev-teal-light);
    transition: opacity 200ms ease;
}
.ev-quote.is-loading { opacity: 0.7; }
.ev-quote-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}
.ev-quote-row + .ev-quote-row { margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(15,23,42,0.08); }
.ev-quote-label {
    font-size: 0.82rem;
    color: var(--ev-muted);
    font-weight: 500;
}
.ev-quote-value {
    font-size: 0.88rem;
    color: var(--ev-primary);
    font-weight: 600;
}
.ev-quote-row-total .ev-quote-label {
    color: var(--ev-primary);
    font-weight: 700;
    font-size: 0.9rem;
}
.ev-quote-total {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ev-teal-dark);
    letter-spacing: -0.01em;
}
.ev-quote-note {
    margin: 8px 0 0;
    font-size: 0.74rem;
    color: var(--ev-red);
    line-height: 1.4;
}


/* ===== BLOG CARDS ===== */
.ev-blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ev-border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.ev-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -20px rgba(15,23,42,0.18);
    border-color: rgba(15,23,42,0.12);
}
.ev-blog-card-img {
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
    overflow: hidden;
}
.ev-blog-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}
.ev-blog-card:hover .ev-blog-card-img img { transform: scale(1.04); }
.ev-blog-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--ev-teal-light), #e2e8f0);
    color: var(--ev-teal-dark);
}
.ev-blog-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; }
.ev-blog-card-date {
    font-size: 0.72rem;
    color: var(--ev-muted);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.ev-blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ev-primary);
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ev-blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--ev-muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 2px 0 8px;
}
.ev-blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ev-teal-dark);
    font-size: 0.82rem;
    font-weight: 700;
    margin-top: auto;
}


/* ===== TOURISM LICENSE BADGE ===== */
.ev-tourism-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px 3px 6px;
    border-radius: 6px;
    border: 1px solid #fecaca;
    background: #fef2f2;
    font-size: 0.72rem;
    font-weight: 700;
    color: #991b1b;
    white-space: nowrap;
    transition: border-color 150ms;
}
.ev-tourism-badge:hover { border-color: #f87171; }
.ev-tourism-badge-text { letter-spacing: 0.04em; }
