@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --vh-sea: #00a6a6;
    --vh-sea-dark: #007f88;
    --vh-sky: #77d6ff;
    --vh-sand: #f4d9a4;
    --vh-sun: #f6b84b;
    --vh-coral: #ff7a59;
    --vh-ink: #113044;
    --vh-muted: #6b7b86;
    --vh-soft: #f4faf9;
    --vh-white: #fff;
    --vh-radius: 26px;
    --vh-shadow: 0 22px 60px rgba(17, 48, 68, .12);
    --vh-font-title: "Noto Serif", serif;
    --vh-font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: var(--vh-font-body);
    color: var(--vh-ink);
    background: #fff;
    line-height: 1.65
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.vh-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.vh-section {
    padding: 92px 0
}

.vh-eyebrow {
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--vh-sea);
    font-weight: 800
}

.vh-title {
    font-family: var(--vh-font-title);
    font-size: clamp(38px, 5vw, 48px);
    line-height: .98;
    margin: 12px 0 18px;
    font-weight: 600
}

.vh-lead {
    font-size: 18px;
    color: var(--vh-muted);
    max-width: 720px
}

.vh-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .25s
}

.vh-btn-primary {
    background: linear-gradient(135deg, var(--vh-sea), var(--vh-sky));
    color: #fff;
    box-shadow: 0 16px 34px rgba(0, 166, 166, .25)
}

.vh-btn-light {
    background: rgba(255, 255, 255, .92);
    color: var(--vh-ink) !important;
}

.vh-btn-outline {
    border-color: rgba(17, 48, 68, .18);
    color: var(--vh-ink);
    background: white
}

.vh-btn:hover {
    transform: translateY(-2px)
}

.vh-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 22px 0;
    transition: .25s
}

.vh-nav.scrolled {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(17, 48, 68, .08);
    padding: 12px 0
}

.vh-nav-inner {
    width: min(1300px, calc(100% - 36px));
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin: auto
}

.vh-nav-links {
    display: flex;
    gap: 28px;
    align-items: center
}

.vh-nav-links.right {
    justify-content: flex-end
}

.vh-nav a {
    font-size: 14px;
    font-weight: 800;
    color: white
}

.vh-nav.scrolled a {
    color: var(--vh-ink)
}

.vh-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff !important;
    letter-spacing: .36em;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900
}

.vh-nav.scrolled .vh-logo-mark {
    filter: invert(0)
}

.vh-logo-mark {
    width: fit-content;
    max-width: 150px;
    filter: invert(1);
}

.vh-logo-footer {
    align-items: flex-start;
}

.vh-logo-footer .vh-logo-mark {
    filter: invert(0);
    width: fit-content;
    max-width: 150px;
    text-align: left;
}


.vh-menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 30px
}

.vh-nav.scrolled .vh-menu-toggle {
    color: var(--vh-ink)
}

.vh-mobile-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 127, 136, .96), rgba(119, 214, 255, .94));
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center
}

.vh-mobile-menu.open {
    display: flex
}

.vh-mobile-menu button {
    position: absolute;
    top: 22px;
    left: 24px;
    background: none;
    border: 0;
    color: white;
    font-size: 42px
}

.vh-mobile-menu a {
    display: block;
    color: white;
    font-family: var(--vh-font-title);
    font-size: 44px;
    margin: 12px 0
}

.vh-lang {
    display: inline-flex;
    gap: 8px
}

.vh-lang a {
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, .35);
    padding: 5px 8px;
    border-radius: 20px
}

.vh-nav.scrolled .vh-lang a {
    border-color: rgba(17, 48, 68, .15)
}

.vh-hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #123
}

.vh-hero-grid {
    position: absolute;
    inset: 0;
    display: grid;
    opacity: 0.5;
    grid-template-columns: 1.15fr .85fr 1fr
}

.vh-hero-img {
    background-size: cover;
    background-position: center;
    filter: saturate(1.05)
}

.vh-hero-img:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, .18), rgba(0, 0, 0, .18)), url('/assets/vivahomes/images/placeholder-property.png')
}

.vh-hero-img:nth-child(2) {
    background-image: url('/assets/vivahomes/images/placeholder-property.png')
}

.vh-hero-img:nth-child(3) {
    background-image: url('/assets/vivahomes/images/placeholder-property.png')
}

.vh-hero:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 48, 68, .42), rgba(0, 166, 166, .1), rgba(17, 48, 68, .2))
}

.vh-hero-wave {
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: -1px;
    height: 110px;
    background: white;
    clip-path: polygon(0 55%, 100% 25%, 100% 100%, 0 100%);
    z-index: 3
}

.vh-hero-content {
    position: relative;
    z-index: 4;
    padding: 0 0 150px;
    color: #fff
}

.vh-hero h1 {
    font-family: var(--vh-font-title);
    font-size: clamp(48px, 8vw, 68px);
    line-height: .92;
    margin: 0 0 20px;
    text-shadow: 0 12px 40px rgba(0, 0, 0, .25)
}

.vh-hero p {
    font-size: 20px;
    max-width: 560px;
    color: rgba(255, 255, 255, .9)
}

.vh-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px
}

.vh-hero-badge {
    position: absolute;
    right: 8%;
    bottom: 130px;
    z-index: 5;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(10px);
    padding: 22px;
    border-radius: 22px;
    box-shadow: var(--vh-shadow);
    max-width: 300px
}

.vh-hero-badge strong {
    font-family: var(--vh-font-title);
    font-size: 34px;
    display: block;
    color: var(--vh-sea-dark)
}

.vh-hero-badge span {
    color: var(--vh-muted);
    font-size: 14px
}

.vh-intro {
    text-align: center
}

.vh-intro .vh-logo-mark {
    margin: 0 auto 22px
}

.vh-feature-strip {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 18px;
    margin-top: 42px
}

.vh-feature-card {
    min-height: 280px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #ddd;
    box-shadow: var(--vh-shadow)
}

.vh-feature-card img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.vh-feature-card span {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, .9);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
    color: var(--vh-sea-dark)
}

.vh-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 66px;
    align-items: center
}

.vh-soft {
    background: linear-gradient(180deg, #fff, var(--vh-soft))
}

.vh-checkgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 34px
}

.vh-check {
    background: white;
    border: 1px solid rgba(17, 48, 68, .08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 32px rgba(17, 48, 68, .06)
}

.vh-check b {
    display: block;
    margin-bottom: 6px
}

.vh-photo-stack {
    position: relative;
    min-height: 520px
}

.vh-photo-main,
.vh-photo-small {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--vh-shadow)
}

.vh-photo-main {
    right: 0;
    top: 0;
    width: 78%
}

.vh-photo-small {
    left: 0;
    bottom: 0;
    width: 58%;
    border: 10px solid white
}

.vh-photo-main img {
    height: 500px;
    width: 100%;
    object-fit: cover
}

.vh-photo-small img {
    height: 260px;
    width: 100%;
    object-fit: cover
}

.vh-property-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 34px
}

.vh-property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.vh-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 48, 68, .08);
    box-shadow: 0 14px 40px rgba(17, 48, 68, .08);
    transition: .25s
}

.vh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(17, 48, 68, .16)
}

.vh-card-img {
    height: 250px;
    position: relative;
    overflow: hidden
}

.vh-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s
}

.vh-card:hover img {
    transform: scale(1.05)
}

.vh-chip {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--vh-sun), var(--vh-coral));
    color: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 900
}

.vh-card-body {
    padding: 20px
}

.vh-card h3 {
    font-family: var(--vh-font-title);
    font-size: 24px;
    margin: 0 0 8px;
    text-align:left;
}

.vh-price {
    color: var(--vh-sea-dark);
    font-weight: 900
}

.vh-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--vh-muted);
    font-size: 13px;
    margin-top: 15px
}

.vh-marquee {
    overflow: hidden;
    white-space: nowrap;
    color: rgba(0, 166, 166, .13);
    font-family: var(--vh-font-title);
    font-size: 64px;
    padding: 38px 0
}

.vh-marquee span {
    display: inline-block;
    animation: vh-marquee 28s linear infinite
}

@keyframes vh-marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.vh-stats {
    background: linear-gradient(rgba(17, 48, 68, .58), rgba(0, 127, 136, .5)), url('/assets/vivahomes/images/placeholder-property.png') center/cover fixed;
    color: #fff;
    text-align: center
}

.vh-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px
}

.vh-stat strong {
    font-family: var(--vh-font-title);
    font-size: 58px;
    display: block
}

.vh-stat span {
    color: rgba(255, 255, 255, .8)
}

.vh-lifestyle {
    text-align: center
}

.vh-lifestyle-grid {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 54px;
    text-align: left;
    align-items: center;
    margin-top: 48px
}

.vh-collage {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 18px;
    align-items: center
}

.vh-collage img {
    border-radius: 24px;
    box-shadow: var(--vh-shadow);
    height: 380px;
    width: 100%;
    object-fit: cover
}

.vh-collage img:first-child {
    height: 260px
}

.vh-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    margin-top: 58px
}

.vh-icon {
    text-align: center;
    color: var(--vh-muted);
    font-size: 13px
}

.vh-icon i {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--vh-soft);
    color: var(--vh-sea-dark);
    font-size: 22px
}

.vh-testimonial {
    background: linear-gradient(rgba(17, 48, 68, .15), rgba(17, 48, 68, .12)), url('/assets/vivahomes/images/placeholder-property.png') center/cover;
    color: white
}

.vh-testimonial-card {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(0, 166, 166, .94), rgba(119, 214, 255, .92));
    padding: 42px;
    border-radius: 28px;
    max-width: 650px;
    box-shadow: var(--vh-shadow)
}

.vh-testimonial-card p {
    font-size: 22px
}

.vh-platforms {
    display: flex;
    gap: 42px;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--vh-muted);
    font-weight: 900;
    margin-top: 28px
}

.vh-contact {
    background: #EEF5F6 url(/assets/vivahomes/images/contact-bg.png) right bottom no-repeat;
    background-size: 50em;
}

.vh-contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: start
}

.vh-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.vh-form .full {
    grid-column: 1/-1
}

.vh-form input,
.vh-form textarea,
.vh-form select {
    width: 100%;
    border: 1px solid rgba(17, 48, 68, .12);
    border-radius: 12px;
    padding: 16px;
    background: white;
    outline: none;
    color: var(--vh-ink)
}

.vh-form textarea {
    min-height: 130px
}

.vh-form button {
    justify-content: center;
    border: 0
}

.vh-footer {
    background: #0573bd;
    color: white;
    padding: 56px 0 20px
}

.vh-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr 1fr .7fr;
    gap: 36px
}

.vh-footer a,
.vh-footer p {
    color: rgba(255, 255, 255, .82);
    font-size: 14px
}

.vh-footer h4 {
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase
}

.vh-copy {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-top: 18px;
    margin-top: 32px;
    color: rgba(255, 255, 255, .75)
}

.vh-page-hero {
    height: 430px;
    display: grid;
    place-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(17, 48, 68, .5), rgba(0, 127, 136, .35)), var(--hero-img) center/cover;
    position: relative
}

.vh-page-hero:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 76px;
    background: #fff;
    clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%)
}

.vh-page-hero h1 {
    font-family: var(--vh-font-title);
    font-size: clamp(44px, 6vw, 68px);
    position: relative;
    z-index: 2
}

.vh-filter {
    background: white;
    border-radius: 22px;
    box-shadow: var(--vh-shadow);
    padding: 22px;
    margin-top: -45px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr) auto;
    gap: 12px
}

.vh-filter input,
.vh-filter select {
    border: 1px solid rgba(17, 48, 68, .12);
    border-radius: 12px;
    padding: 13px
}

.vh-detail-gallery {
    display: grid;
    grid-template-columns: 1.3fr .85fr .85fr;
    height: 560px
}

.vh-detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vh-detail-info {
    padding: 70px 0
}

.vh-detail-meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    color: var(--vh-muted);
    font-size: 18px
}

.vh-content {
    font-size: 18px;
    color: var(--vh-muted)
}

.vh-team-list {
    display: grid;
    gap: 28px
}

.vh-team-member {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 36px;
    align-items: center;
    background: #f5f5f5;
    padding: 28px;
    border-radius: 26px
}

.vh-team-member img {
    width: 210px;
    height: 260px;
    object-fit: cover;
    filter: grayscale(1);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(17, 48, 68, .12);
    transform: rotate(-2deg)
}

@media(max-width:920px) {
    .vh-nav-inner {
        grid-template-columns: auto 1fr auto
    }

    .vh-nav-links {
        display: none
    }

    .vh-menu-toggle {
        display: block
    }

    .vh-logo {
        justify-self: center
    }

    .vh-hero-grid {
        grid-template-columns: 1fr
    }

    .vh-hero-img:nth-child(2),
    .vh-hero-img:nth-child(3) {
        display: none
    }

    .vh-hero-badge {
        display: none
    }

    .vh-feature-strip,
    .vh-split,
    .vh-property-grid,
    .vh-stats-grid,
    .vh-lifestyle-grid,
    .vh-contact-grid,
    .vh-footer-grid,
    .vh-filter {
        grid-template-columns: 1fr
    }

    .vh-checkgrid,
    .vh-icons {
        grid-template-columns: 1fr 1fr
    }

    .vh-detail-gallery {
        height: auto;
        grid-template-columns: 1fr
    }

    .vh-detail-gallery img {
        height: 280px
    }

    .vh-team-member {
        grid-template-columns: 1fr
    }

    .vh-photo-stack {
        min-height: auto
    }

    .vh-photo-main,
    .vh-photo-small {
        position: relative;
        width: 100%;
        margin-bottom: 18px
    }

    .vh-photo-main img,
    .vh-photo-small img {
        height: 320px
    }

    .vh-form {
        grid-template-columns: 1fr
    }

    .vh-section {
        padding: 64px 0
    }
}

@media(max-width:900px) {
    .vh-nav-inner {
        display: flex;
        justify-content: space-between
    }

    .vh-menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center
    }

    .vh-nav-links a:not(.vh-btn),
    .vh-nav-links.right {
        display: none
    }

    .vh-logo-mark {
        max-width: 120px
    }

    .vh-filter {
        grid-template-columns: 1fr !important
    }

    .vh-page-hero {
        min-height: 330px
    }

    .vh-property-grid {
        grid-template-columns: 1fr !important
    }

    .vh-map-canvas {
        height: 330px
    }
}

.vh-map-canvas {
    height: 430px;
    border-radius: 28px;
    overflow: hidden;
    background: #eaf5f4;
    border: 1px solid rgba(17, 48, 68, .12);
    position: relative
}

.vh-map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    background: #00a6a6;
    color: white;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    white-space: nowrap
}

.vh-map-pin:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #00a6a6
}

.vh-empty {
    padding: 30px;
    border-radius: 24px;
    background: #f4faf9;
    color: #6b7b86;
    z-index: -1;
}

.vh-filter {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    background: #fff;
    padding: 18px;
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(17, 48, 68, .12);
    margin-top: -44px;
    position: relative;
    z-index: 3
}

.vh-filter input,
.vh-filter select {
    height: 48px;
    border: 1px solid rgba(17, 48, 68, .14);
    border-radius: 999px;
    padding: 0 15px
}



.vh-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #111;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 30;
}

.vh-menu-toggle-lines {
    width: 18px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vh-menu-toggle-lines span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

@media(max-width: 991px) {
    .vh-menu-toggle {
        display: inline-flex !important;
    }

    .vh-nav-links>a {
        display: none;
    }

    .vh-nav-links.right {
        display: none;
    }
}

/* Scroll polish effects */
.vh-scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease
}

.vh-scroll-reveal.in-view {
    opacity: 1;
    transform: none
}

.vh-card,
.vh-feature-card,
.vh-stat,
.vh-team-member,
.vh-check,
.vh-photo-main,
.vh-photo-small {
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease
}

.vh-card:hover,
.vh-feature-card:hover,
.vh-team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(17, 48, 68, .14)
}

.vh-photo-main:hover img,
.vh-photo-small:hover img,
.vh-card:hover img {
    transform: scale(1.045)
}

.vh-photo-main img,
.vh-photo-small img,
.vh-card img {
    transition: transform 1s ease
}

.vh-btn {
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease
}

.vh-btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.05)
}


/* Property detail styles moved from Blade */
.vh-property-detail-page {
    padding: 0px 0 10px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%)
}

.vh-property-detail-shell {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto
}

.vh-pd-banner {
    position: relative;
    min-height: 290px;
    background-size: cover;
    background-position: center;
    overflow: hidden
}

.vh-pd-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 22, 34, .58) 0%, rgba(8, 22, 34, .26) 45%, rgba(8, 22, 34, .08) 100%)
}

.vh-pd-banner-inner {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    padding: 112px 0 54px;
    color: #fff
}

.vh-pd-breadcrumbs {
    font-size: 13px;
    font-weight: 700;
    opacity: .88;
    margin-bottom: 14px
}

.vh-pd-breadcrumbs a {
    opacity: .9
}

.vh-pd-banner-title {
    margin: 0;
    font-family: var(--vh-font-title);
    font-size: clamp(38px, 4.4vw, 64px);
    line-height: 1;
    color: #fff;
    font-weight: 600;
    max-width: 760px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .25)
}

.vh-pd-content-wrap {
    position: relative;
    z-index: 2
}

.vh-pd-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, .88fr);
    gap: 18px;
    margin-bottom: 26px
}

.vh-pd-gallery-main,
.vh-pd-gallery-side-item {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 18px 48px rgba(17, 48, 68, .10);
    background: #eaf1f4
}

.vh-pd-gallery-main {
    min-height: 420px
}

.vh-pd-gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px
}

.vh-pd-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.vh-pd-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #4f6372;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(17, 48, 68, .10)
}

.vh-pd-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1bb8cc
}

.vh-pd-gallery-button {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(17, 17, 17, .58);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    backdrop-filter: blur(6px);
    cursor: pointer
}

.vh-pd-gallery-button i {
    font-size: 16px
}

.vh-pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 24px;
    align-items: start
}

.vh-pd-main {
    min-width: 0
}

.vh-pd-sidebar {
    position: sticky;
    top: 90px;
    display: grid;
    gap: 16px
}

.vh-pd-title-block {
    padding: 4px 6px 8px 6px
}

.vh-pd-title {
    margin: 0 0 10px;
    font-family: var(--vh-font-title);
    font-weight: 600;
    font-size: clamp(42px, 5vw, 42px);
    line-height: .97;
    color: #163754
}

.vh-pd-price {
    color: #14a9b7;
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 24px
}

.vh-pd-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none
}

.vh-pd-meta li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #5f7080;
    font-size: 16px;
    font-weight: 700
}

.vh-pd-meta i {
    color: #6482a0;
    font-size: 18px;
    width: 20px;
    text-align: center
}

.vh-pd-description {
    color: #6a7b8b;
    font-size: 16px;
    line-height: 1.8;
    max-width: 760px;
    margin: 0
}

.vh-pd-divider {
    margin: 26px 0 28px;
    height: 1px;
    background: rgba(17, 48, 68, .10)
}

.vh-pd-section-title {
    margin: 0 0 18px;
    color: #173959;
    font-size: 20px;
    font-weight: 900
}

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

.vh-pd-overview-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 92px;
    padding: 18px 20px;
    background: #fbfdff;
    border: 1px solid #e7edf2;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(17, 48, 68, .03)
}

.vh-pd-overview-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #4579b0;
    font-size: 18px
}

.vh-pd-overview-icon.status-dot {
    color: #18b5c0;
    font-size: 16px
}

.vh-pd-overview-text small {
    display: block;
    color: #7e8ea0;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px
}

.vh-pd-overview-text strong {
    display: block;
    color: #183754;
    font-size: 18px;
    font-weight: 800
}

.vh-pd-about {
    margin-top: 28px
}

.vh-pd-about p {
    color: #5c6f80;
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 18px
}

.vh-pd-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.vh-pd-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 12px;
    background: #f7fafc;
    border: 1px solid #e8eef3;
    color: #576c82;
    font-size: 13px;
    font-weight: 800
}

.vh-pd-chip i {
    color: #6b88a5;
    font-size: 14px
}

.vh-pd-location {
    margin-top: 30px
}

.vh-pd-location-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px
}

.vh-pd-location-line {
    margin: 0 0 14px;
    color: #617383;
    font-size: 15px
}

.vh-pd-open-map {
    font-size: 14px;
    font-weight: 800;
    color: #255a88
}

.vh-pd-map-card {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #e5edf1;
    background: #eef6f7
}

.vh-pd-map-card iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block
}

.vh-pd-summary-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid #e7edf2;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 14px;
    background: #fff
}

.vh-pd-summary-item {
    padding: 18px 16px;
    border-right: 1px solid #edf1f4
}

.vh-pd-summary-item:last-child {
    border-right: 0
}

.vh-pd-summary-item strong {
    display: block;
    color: #173754;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px
}

.vh-pd-summary-item span {
    color: #77889a;
    font-size: 14px;
    font-weight: 600
}

.vh-pd-side-card {
    background: #fff;
    border: 1px solid #e6edf2;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(17, 48, 68, .05);
    overflow: hidden
}

.vh-pd-side-card-body {
    padding: 24px
}

.vh-pd-side-price {
    color: #14a9b7;
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 10px
}

.vh-pd-side-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.vh-pd-side-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #e9eff3;
    color: #556c80;
    font-size: 16px;
    font-weight: 700
}

.vh-pd-side-list li:last-child {
    border-bottom: 0
}

.vh-pd-side-list i {
    width: 20px;
    text-align: center;
    color: #607f98
}

.vh-pd-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 56px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 16px;
    transition: .2s ease
}

.vh-pd-btn+.vh-pd-btn {
    margin-top: 12px
}

.vh-pd-btn-primary {
    background: linear-gradient(90deg, #08a9b5, #69c9ff);
    color: #fff;
    box-shadow: 0 10px 22px rgba(0, 166, 166, .20)
}

.vh-pd-btn-outline {
    border: 2px solid #74b3df;
    color: #22456a;
    background: #fff
}

.vh-pd-help-card {
    background: #f7fbfd
}

.vh-pd-help-title {
    margin: 0 0 10px;
    color: #193a57;
    font-size: 18px;
    font-weight: 900
}

.vh-pd-help-text {
    color: #6d7d8d;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 18px
}

.vh-pd-advisor {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e8eef3;
    border-radius: 18px;
    padding: 18px;
    margin-top: 14px
}

.vh-pd-advisor-name {
    margin: 0;
    color: #1b3a59;
    font-size: 18px;
    font-weight: 900
}

.vh-pd-advisor-role {
    display: block;
    color: #6fa7dd;
    font-size: 14px;
    font-weight: 700;
    margin: 3px 0 10px
}

.vh-pd-advisor-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4e667d;
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px
}

.vh-pd-advisor-contact i {
    width: 18px;
    text-align: center;
    color: #5d83aa
}

.vh-pd-trust-list {
    display: grid;
    gap: 16px
}

.vh-pd-trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.vh-pd-trust-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    background: #eff7fb;
    border: 1px solid #dbe9f4;
    display: grid;
    place-items: center;
    color: #6aa2d8
}

.vh-pd-trust-item strong {
    display: block;
    color: #173855;
    font-size: 16px;
    margin-bottom: 4px
}

.vh-pd-trust-item span {
    display: block;
    color: #748596;
    font-size: 14px;
    line-height: 1.5
}

.vh-gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(4, 12, 18, .88);
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px
}

.vh-gallery-modal.open {
    display: flex
}

.vh-gallery-modal-dialog {
    width: min(1120px, 100%);
    max-height: 92vh;
    background: #0d1822;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45)
}

.vh-gallery-modal-main {
    position: relative;
    background: #0d1822;
    height: min(70vh, 760px);
    display: flex;
    align-items: center;
    justify-content: center
}

.vh-gallery-modal-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.vh-gallery-modal-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    color: #fff
}

.vh-gallery-modal-title {
    font-weight: 800
}

.vh-gallery-modal-close {
    border: 0;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer
}

.vh-gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 20px;
    cursor: pointer
}

.vh-gallery-modal-prev {
    left: 18px
}

.vh-gallery-modal-next {
    right: 18px
}

.vh-gallery-modal-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
    gap: 10px;
    padding: 14px 18px 18px;
    background: #0f1d29
}

.vh-gallery-thumb {
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: .76
}

.vh-gallery-thumb.active {
    border-color: #6ad2ff;
    opacity: 1
}

.vh-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media (max-width:1200px) {
    .vh-pd-layout {
        grid-template-columns: minmax(0, 1fr) 340px
    }
}

@media (max-width:1024px) {

    .vh-pd-gallery,
    .vh-pd-layout {
        grid-template-columns: 1fr
    }

    .vh-pd-sidebar {
        position: static
    }

    .vh-pd-banner {
        min-height: 240px
    }

    .vh-pd-content-wrap {
        margin-top: -40px
    }
}

@media (max-width:768px) {

    .vh-property-detail-shell,
    .vh-pd-banner-inner {
        width: min(100% - 24px, 1280px)
    }

    .vh-pd-gallery-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none
    }

    .vh-pd-gallery-main {
        min-height: 300px
    }

    .vh-pd-title {
        font-size: 42px
    }

    .vh-pd-overview-grid {
        grid-template-columns: 1fr
    }

    .vh-pd-summary-strip {
        grid-template-columns: 1fr 1fr
    }

    .vh-gallery-modal {
        padding: 16px
    }

    .vh-gallery-modal-main {
        height: 52vh
    }
}

@media (max-width:560px) {
    .vh-pd-gallery-side {
        grid-template-columns: 1fr
    }

    .vh-pd-summary-strip {
        grid-template-columns: 1fr
    }

    .vh-pd-summary-item {
        border-right: 0;
        border-bottom: 1px solid #edf1f4
    }

    .vh-pd-summary-item:last-child {
        border-bottom: 0
    }

    .vh-pd-meta {
        gap: 14px
    }

    .vh-pd-meta li {
        width: 100%
    }

    .vh-pd-banner-inner {
        padding: 104px 0 42px
    }

    .vh-pd-location-head {
        flex-direction: column;
        align-items: flex-start
    }
}

/* Demirağ front-end polish, filters, MapLibre pins and 3D cards */
.vh-filter-clean {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 18px;
    padding: 30px;
    margin-top: 28px;
    border: 1px solid rgba(17, 48, 68, .08);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(244, 250, 249, .92));
    box-shadow: 0 30px 70px rgba(17, 48, 68, .10), inset 0 1px 0 rgba(255, 255, 255, .8);
    transform-style: preserve-3d;
}

.vh-filter-clean input,
.vh-filter-clean select {
    width: 100%;
    height: 58px;
    border: 1px solid rgba(17, 48, 68, .13);
    border-radius: 999px;
    background: #fff;
    padding: 0 24px;
    font: inherit;
    font-weight: 700;
    color: var(--vh-ink);
    outline: none;
    transition: .22s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.vh-filter-clean input:focus,
.vh-filter-clean select:focus {
    border-color: rgba(0, 166, 166, .55);
    box-shadow: 0 0 0 5px rgba(0, 166, 166, .10)
}

.vh-filter-clean .vh-btn {
    height: 58px;
    justify-content: center;
    padding-inline: 26px
}

.vh-project-filter {
    grid-template-columns: 1.4fr repeat(3, minmax(160px, 1fr)) auto auto
}

.vh-map-filter {
    width: 100%;
    height: 520px;
    margin-top: 28px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(17, 48, 68, .10);
    background: #eef5f7;
    position: relative;
    isolation: isolate
}

.vh-map-filter-3d {
    box-shadow: 0 34px 80px rgba(17, 48, 68, .14), 0 4px 0 rgba(255, 255, 255, .85) inset;
    transform: perspective(1200px) rotateX(.6deg);
}

.vh-map-filter-small {
    height: 360px;
    margin-top: 10px;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(17, 48, 68, .08)
}

.vh-map-canvas {
    width: 100%;
    height: 100%;
    min-height: inherit;
    position: relative;
    z-index: 1
}

.maplibregl-canvas {
    outline: none
}

.maplibregl-popup {
    z-index: 20
}

.vh-map-marker {
    width: 52px;
    height: 62px;
    display: grid;
    place-items: center;
    text-decoration: none;
    filter: drop-shadow(0 16px 18px rgba(10, 26, 36, .28));
    transition: .2s ease;
    cursor: pointer
}

.vh-map-marker:hover {
    transform: translateY(-5px) scale(1.04)
}

.vh-map-marker-dot {
    width: 48px;
    height: 48px;
    border-radius: 18px 18px 18px 4px;
    background: linear-gradient(135deg, #0aa6ad, #73d2ff);
    transform: rotate(-45deg);
    display: grid;
    place-items: center;
    border: 4px solid #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28)
}

.vh-map-marker-dot i {
    transform: rotate(45deg);
    color: #fff;
    font-size: 18px
}

.vh-map-marker-project .vh-map-marker-dot {
    background: linear-gradient(135deg, #163754, #13b2bd)
}

.vh-map-popup {
    min-width: 230px;
    font-family: inherit
}

.vh-map-popup-title {
    font-size: 15px;
    font-weight: 900;
    color: #111;
    margin-bottom: 6px
}

.vh-map-popup-location {
    font-size: 13px;
    color: #66717b;
    margin-bottom: 6px
}

.vh-map-popup-price {
    font-size: 14px;
    font-weight: 900;
    color: #0aa6ad;
    margin-bottom: 10px
}

.vh-map-popup-link {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    background: #111;
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none
}

.vh-card-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: transform .28s ease, box-shadow .28s ease
}

.vh-card-3d:hover {
    transform: translateY(-8px) perspective(900px) rotateX(2deg);
    box-shadow: 0 34px 80px rgba(17, 48, 68, .16)
}

.vh-side-3d {
    transform-style: preserve-3d;
    box-shadow: 0 30px 80px rgba(17, 48, 68, .11) !important
}

.vh-project-content {
    margin-top: 28px
}

.vh-project-gallery {
    margin-bottom: 34px
}

.vh-project-summary-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.vh-project-detail .vh-pd-layout {
    align-items: start
}

@media(max-width:1100px) {

    .vh-filter-clean,
    .vh-project-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .vh-project-filter input {
        grid-column: 1/-1
    }
}

@media(max-width:720px) {

    .vh-filter-clean,
    .vh-project-filter {
        grid-template-columns: 1fr;
        padding: 20px;
        border-radius: 24px
    }

    .vh-map-filter {
        height: 390px;
        border-radius: 22px
    }

    .vh-map-filter-small {
        height: 300px
    }

    .vh-project-summary-strip {
        grid-template-columns: 1fr 1fr
    }

    .vh-map-marker {
        width: 46px;
        height: 56px
    }

    .vh-map-marker-dot {
        width: 42px;
        height: 42px
    }
}

.vh-blog-category-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px
}

.vh-blog-category-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, .12);
    background: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    color: #13233a;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
    transition: .22s ease
}

.vh-blog-category-bar a:hover,
.vh-blog-category-bar a.active {
    transform: translateY(-2px);
    background: #10233f;
    color: #fff;
    border-color: #10233f;
    box-shadow: 0 18px 40px rgba(16, 35, 63, .18)
}


.vh-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(37, 211, 102, .35);
    transition: all .25s ease;
    backdrop-filter: blur(10px);
}

.vh-whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 40px rgba(37, 211, 102, .45);
    color: #fff;
}

.vh-whatsapp-float i {
    font-size: 26px;
}

.vh-whatsapp-float span {
    font-size: 15px;
    line-height: 1;
}

@media(max-width:768px) {
    .vh-whatsapp-float {
        width: 58px;
        height: 58px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .vh-whatsapp-float span {
        display: none;
    }

    .vh-whatsapp-float i {
        font-size: 30px;
    }
}

/* Demirağ final fixes: visible interactive map markers + controlled detail gallery ratios */
.maplibregl-marker .vh-map-marker,
.vh-map-marker {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    z-index: 25;
}

.vh-map-marker:focus-visible {
    outline: 3px solid rgba(13, 183, 196, .35);
    outline-offset: 5px;
    border-radius: 18px;
}

.maplibregl-popup-content {
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 22px 56px rgba(12, 32, 46, .22);
    border: 1px solid rgba(17, 48, 68, .08);
}

.maplibregl-popup-close-button {
    font-size: 20px;
    right: 8px;
    top: 6px;
    color: #687789;
}

.vh-pd-gallery {
    align-items: stretch;
    min-height: 0;
}

.vh-pd-gallery-main,
.vh-pd-gallery-side {
    height: clamp(480px, 62vh, 720px);
    max-height: 720px;
}

.vh-pd-gallery-main {
    min-height: 0;
}

.vh-pd-gallery-side-item {
    min-height: 0;
}

.vh-pd-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media(max-width:1024px) {

    .vh-pd-gallery-main,
    .vh-pd-gallery-side {
        height: auto;
        max-height: none;
    }

    .vh-pd-gallery-main {
        aspect-ratio: 16/11;
    }

    .vh-pd-gallery-side {
        display: grid;
    }

    .vh-pd-gallery-side-item {
        aspect-ratio: 16/10;
    }
}

@media(max-width:560px) {

    .vh-pd-gallery-main,
    .vh-pd-gallery-side-item {
        aspect-ratio: 4/3;
    }
}

/* Property detail: gallery counter, amenities and video tour */
.vh-pd-gallery-side-item {
    cursor: pointer
}

.vh-pd-gallery-more {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    background: rgba(6, 18, 29, .48);
    color: #fff;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: .02em;
    text-shadow: 0 8px 26px rgba(0, 0, 0, .34);
    backdrop-filter: blur(2px)
}

.vh-pd-amenities {
    padding-top: 4px
}

.vh-pd-video {
    margin-top: 30px
}

.vh-pd-video-card {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #e5edf1;
    background: #0d1822;
    box-shadow: 0 18px 48px rgba(17, 48, 68, .08)
}

.vh-pd-video-card iframe,
.vh-pd-video-card video {
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 320px;
    border: 0;
    display: block;
    background: #0d1822
}

.vh-pd-video-card video {
    height: auto;
    object-fit: contain
}

@media(max-width:768px) {

    .vh-pd-video-card iframe,
    .vh-pd-video-card video {
        min-height: 220px
    }
}

/* Property detail gallery and rich content fixes */
.vh-pd-gallery-main-trigger {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    border: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    appearance: none;
}

.vh-pd-gallery-main-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vh-pd-gallery-side-item {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    text-align: inherit;
    appearance: none;
    cursor: pointer;
}

.vh-pd-gallery-button {
    z-index: 4;
}

.vh-gallery-thumb {
    padding: 0;
    margin: 0;
    background: transparent;
    appearance: none;
}

.vh-pd-rich-content {
    color: #5c6f80;
    font-size: 16px;
    line-height: 1.85;
    overflow-x: auto;
}

.vh-pd-rich-content> :first-child {
    margin-top: 0;
}

.vh-pd-rich-content> :last-child {
    margin-bottom: 0;
}

.vh-pd-rich-content p,
.vh-pd-rich-content div {
    color: #5c6f80;
    font-size: 16px;
    line-height: 1.85;
}

.vh-pd-rich-content p {
    margin: 0 0 18px;
}

.vh-pd-rich-content h1,
.vh-pd-rich-content h2,
.vh-pd-rich-content h3,
.vh-pd-rich-content h4 {
    color: #173959;
    line-height: 1.25;
    margin: 24px 0 12px;
}

.vh-pd-rich-content ul,
.vh-pd-rich-content ol {
    margin: 0 0 18px 22px;
    padding: 0;
}

.vh-pd-rich-content li {
    margin: 6px 0;
}

.vh-pd-rich-content table {
    width: 100%;
    min-width: 560px;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    background: #fff;
    border: 1px solid #e5edf1;
    border-radius: 16px;
    overflow: hidden;
}

.vh-pd-rich-content th,
.vh-pd-rich-content td {
    padding: 13px 15px;
    border-right: 1px solid #e5edf1;
    border-bottom: 1px solid #e5edf1;
    text-align: left;
    vertical-align: top;
}

.vh-pd-rich-content th {
    color: #173959;
    background: #f4f9fb;
    font-weight: 900;
}

.vh-pd-rich-content tr:last-child td {
    border-bottom: 0;
}

.vh-pd-rich-content th:last-child,
.vh-pd-rich-content td:last-child {
    border-right: 0;
}

.vh-pd-rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.vh-pd-rich-content iframe {
    max-width: 100%;
}
/* Demirağ listing enhancements: one-by-one hero slider, price tables, privacy map areas */
.vh-hero-slider{min-height:100vh;display:block;background:#123}.vh-hero-slider:after{pointer-events:none}.vh-home-splide,.vh-home-splide .splide__track,.vh-home-splide .splide__list,.vh-home-splide .splide__slide{height:100vh;min-height:680px}.vh-hero-slide{position:relative;overflow:hidden}.vh-hero-media{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.vh-hero-bg{background-size:cover;background-position:center}.vh-hero-slide:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(17,48,68,.58),rgba(0,166,166,.12),rgba(17,48,68,.24));z-index:1}.vh-hero-slider .vh-hero-content{position:absolute;left:50%;top:0;bottom:0;transform:translateX(-50%);width:100%;display:flex;flex-direction:column;justify-content:flex-end;padding-bottom:150px;z-index:4}.vh-home-splide .splide__arrow{width:48px;height:48px;background:rgba(255,255,255,.86);box-shadow:0 12px 32px rgba(0,0,0,.16)}.vh-home-splide .splide__pagination{bottom:118px;z-index:6}.vh-home-splide .splide__pagination__page{background:rgba(255,255,255,.65);opacity:1}.vh-home-splide .splide__pagination__page.is-active{background:#fff;transform:scale(1.35)}.vh-filter-wide{grid-template-columns:repeat(5,minmax(150px,1fr))}.vh-filter-check{min-height:58px;border:1px solid rgba(17,48,68,.13);border-radius:999px;background:#fff;display:flex;align-items:center;gap:10px;padding:0 20px;font-weight:800;color:var(--vh-ink)}.vh-filter-check input{width:18px!important;height:18px!important;padding:0;accent-color:#0aa6ad}.vh-reference-code{display:inline-flex;align-items:center;gap:6px;width:max-content;font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;color:#0b8b92;background:#eaf9fa;border:1px solid rgba(10,166,173,.18);border-radius:999px;padding:5px 9px;margin-bottom:8px}.vh-chip-gold{left:auto!important;right:14px;background:linear-gradient(135deg,#b88923,#f4cf74)!important;color:#fff!important}.vh-pd-inline-badges{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 16px}.vh-pd-inline-badges span{display:inline-flex;border-radius:999px;padding:8px 12px;background:#effbfc;color:#077a81;font-size:13px;font-weight:900;border:1px solid rgba(10,166,173,.16)}.vh-price-info-section{margin:30px 0;border:1px solid #e5edf1;border-radius:18px;overflow:hidden;background:#fff;box-shadow:0 18px 45px rgba(17,48,68,.06)}.vh-price-info-title{background:#099a9d;color:#fff;font-weight:900;text-align:center;padding:13px 18px;font-size:18px}.vh-price-options-table{display:grid;gap:12px;padding:12px}.vh-price-option-card{display:grid;grid-template-columns:1.05fr repeat(4,minmax(90px,1fr)) 1.35fr minmax(160px,.9fr);gap:10px;align-items:center;border:1px solid #edf2f4;background:#fff;padding:14px;border-radius:10px}.vh-price-option-unit span{font-weight:900;color:#173959}.vh-price-option-cell{display:grid;gap:6px;justify-items:center;text-align:center;color:#111}.vh-price-option-cell small{font-size:13px;color:#111}.vh-price-option-cell i{font-size:27px;color:#099a9d}.vh-price-option-cell strong{font-size:15px}.vh-price-option-price{position:relative}.vh-old-price{text-decoration:line-through;color:#99a1aa;font-size:12px}.vh-price-option-price em{display:inline-grid;place-items:center;min-width:32px;height:28px;padding:0 7px;border-radius:8px;background:#ff5a54;color:#fff;font-style:normal;font-weight:900;font-size:11px}.vh-price-option-cta{display:flex;align-items:center;justify-content:center;min-height:50px;border-radius:8px;background:#dedede;color:#173044;text-decoration:none;font-weight:800;text-align:center;padding:8px 12px}.vh-price-option-cta:hover{background:#0aa6ad;color:#fff}.vh-citizenship-notice{display:grid;grid-template-columns:86px 1fr;gap:18px;align-items:center;margin:26px 0;padding:18px 22px;border:1px solid #bddbed;border-radius:10px;background:#eef8ff}.vh-citizenship-media img{width:68px;height:68px;object-fit:contain}.vh-citizenship-body strong{display:block;color:#0b3d63;font-size:17px;margin-bottom:6px}.vh-citizenship-body p{margin:0;color:#22485c;line-height:1.65;font-style:italic}.vh-citizenship-body a{display:inline-flex;margin-top:8px;font-weight:900;color:#006fc9}.vh-map-area-label{display:inline-flex;align-items:center;gap:8px;border:0;border-radius:999px;background:rgba(255,255,255,.94);color:#087d82;font-weight:900;padding:10px 13px;box-shadow:0 14px 32px rgba(17,48,68,.18);cursor:pointer}.vh-map-area-label i{color:#0aa6ad}.vh-pd-location-line{color:#6b7885;line-height:1.6}
@media(max-width:1200px){.vh-filter-wide{grid-template-columns:repeat(3,minmax(0,1fr))}.vh-price-option-card{grid-template-columns:repeat(3,minmax(0,1fr))}.vh-price-option-unit,.vh-price-option-cta{grid-column:1/-1}}@media(max-width:760px){.vh-home-splide,.vh-home-splide .splide__track,.vh-home-splide .splide__list,.vh-home-splide .splide__slide{height:88vh;min-height:620px}.vh-hero-slider .vh-hero-content{padding:0 18px 128px}.vh-home-splide .splide__pagination{bottom:90px}.vh-hero-badge{display:none}.vh-filter-wide{grid-template-columns:1fr}.vh-filter-check{border-radius:20px}.vh-price-option-card{grid-template-columns:repeat(2,minmax(0,1fr));padding:12px}.vh-price-option-price,.vh-price-option-unit,.vh-price-option-cta{grid-column:1/-1}.vh-citizenship-notice{grid-template-columns:1fr;text-align:left}.vh-citizenship-media img{width:58px;height:58px}.vh-chip-gold{top:52px!important;left:14px!important;right:auto!important}}
.vh-location-content{margin:22px 0 28px;padding:24px;border:1px solid #e3edf2;border-radius:20px;background:linear-gradient(180deg,#fff,#f7fcfd);text-align:left;box-shadow:0 16px 42px rgba(17,48,68,.06)}.vh-location-content .vh-title{font-size:clamp(28px,4vw,44px);margin:6px 0 10px}.vh-location-content .vh-lead{max-width:980px;margin:0 0 16px;color:#4d6476}.vh-location-content .vh-pd-rich-content{background:#fff;border-radius:16px;padding:18px;border:1px solid #edf2f4}

/* 2026-06-22 refine Demirag filters + hero slider */
.vh-search-panel-wrap{
    margin-top:-38px;
    position:relative;
    z-index:8;
}

.vh-filter-panel{
    display:grid;
    gap:22px;
    padding:38px;
    margin:0 auto 8px;
    border:1px solid rgba(17,48,68,.08);
    border-radius:40px;
    background:linear-gradient(145deg,#ffffff,rgba(247,251,251,.98));
    box-shadow:0 26px 70px rgba(17,48,68,.11);
}

.vh-filter-row{
    display:grid;
    gap:20px;
    align-items:stretch;
}

.vh-filter-row-5{
    grid-template-columns:repeat(5,minmax(0,1fr));
}

.vh-filter-row-actions{
    grid-template-columns:minmax(0,260px);
}

.vh-filter-row-actions-inline{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.vh-filter-field{
    min-width:0;
}

.vh-filter-panel input,
.vh-filter-panel select{
    width:100%;
    height:76px;
    border:1px solid rgba(17,48,68,.10);
    border-radius:999px;
    background:#fff;
    padding:0 28px;
    font:inherit;
    font-size:17px;
    font-weight:800;
    color:var(--vh-ink);
    outline:none;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.85);
    appearance:none;
}

.vh-filter-panel select{
    background-image:linear-gradient(45deg,transparent 50%, #173959 50%),linear-gradient(135deg,#173959 50%, transparent 50%);
    background-position:calc(100% - 28px) calc(50% - 3px),calc(100% - 22px) calc(50% - 3px);
    background-size:6px 6px,6px 6px;
    background-repeat:no-repeat;
    padding-right:52px;
}

.vh-filter-panel input::placeholder,
.vh-filter-panel select,
.vh-filter-check span{
    color:#183650;
}

.vh-filter-panel input::placeholder{opacity:.65}

.vh-filter-panel input:focus,
.vh-filter-panel select:focus{
    border-color:rgba(0,166,166,.55);
    box-shadow:0 0 0 5px rgba(0,166,166,.10);
}

.vh-filter-field-checkbox .vh-filter-check{
    min-height:76px;
    height:100%;
    border:1px solid rgba(17,48,68,.10);
    border-radius:28px;
    padding:0 28px;
    display:flex;
    align-items:center;
    gap:14px;
    background:#fff;
    font-size:16px;
    line-height:1.2;
}

.vh-filter-field-checkbox .vh-filter-check span{
    font-weight:800;
}

.vh-filter-field-checkbox .vh-filter-check input{
    width:22px !important;
    height:22px !important;
    margin:0;
    padding:0;
    border-radius:6px;
    flex:0 0 auto;
}

.vh-filter-field-submit .vh-btn,
.vh-filter-field-clear .vh-btn{
    width:100%;
    min-height:76px;
    justify-content:center;
    font-size:17px;
}

.vh-filter-field-clear .vh-btn{
    box-shadow:none;
}

.vh-hero-slider,
.vh-home-splide,
.vh-home-splide .splide__track,
.vh-home-splide .splide__list,
.vh-home-splide .splide__slide{
    min-height:100vh;
}

.vh-home-splide .splide__arrow{
    width:56px;
    height:56px;
    opacity:.95;
}

.vh-home-splide .splide__arrow--prev{left:18px}
.vh-home-splide .splide__arrow--next{right:18px}

.vh-home-splide .splide__pagination{
    bottom:58px;
}

.vh-hero-slide:after{
    background:linear-gradient(90deg,rgba(10,30,48,.68) 0%, rgba(11,49,71,.45) 42%, rgba(11,49,71,.14) 100%);
}

.vh-hero-content{
    position:absolute;
    inset:0;
    z-index:4;
    padding:0;
    display:flex;
    align-items:flex-end;
}

.vh-hero-shell{
    width:min(1320px, calc(100% - 60px));
    margin:0 auto;
    padding:140px 0 88px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:48px;
}

.vh-hero-copy{
    max-width:min(920px, calc(100% - 360px));
    color:#fff;
}

.vh-hero-copy .vh-eyebrow{
    display:block;
    margin-bottom:18px;
    color:#0bb9c0;
    text-shadow:0 10px 22px rgba(0,0,0,.25);
}

.vh-hero-copy h1{
    max-width:15ch;
    font-size:clamp(54px,5.2vw,86px);
    line-height:.96;
    margin:0 0 22px;
}

.vh-hero-copy p{
    max-width:620px;
    font-size:clamp(18px,1.45vw,26px);
    line-height:1.55;
    margin:0;
}

.vh-hero-actions{
    margin-top:34px;
    gap:16px;
}

.vh-hero-actions .vh-btn{
    min-height:56px;
    padding:14px 28px;
}

.vh-hero-stat{
    width:min(260px, 100%);
    background:rgba(255,255,255,.92);
    color:var(--vh-ink);
    border-radius:24px;
    padding:28px 28px 24px;
    box-shadow:0 24px 55px rgba(17,48,68,.18);
    backdrop-filter:blur(8px);
    flex:0 0 auto;
}

.vh-hero-stat strong{
    display:block;
    font-family:var(--vh-font-title);
    font-size:50px;
    line-height:1;
    color:var(--vh-sea-dark);
    margin-bottom:12px;
}

.vh-hero-stat span{
    display:block;
    color:#5d6c77;
    font-size:16px;
    line-height:1.55;
}

.vh-hero-wave{
    height:72px;
    clip-path:polygon(0 72%,100% 18%,100% 100%,0 100%);
}

@media (max-width: 1280px){
    .vh-hero-shell{width:min(1200px, calc(100% - 48px)); gap:32px}
    .vh-hero-copy{max-width:min(780px, calc(100% - 280px));}
    .vh-filter-panel{padding:30px}
}

@media (max-width: 1080px){
    .vh-filter-row-5{grid-template-columns:repeat(2,minmax(0,1fr));}
    .vh-filter-row-actions{grid-template-columns:minmax(0,1fr)}
    .vh-search-panel-wrap{margin-top:-24px}
    .vh-hero-shell{
        align-items:flex-start;
        flex-direction:column;
        padding:128px 0 88px;
    }
    .vh-hero-copy,
    .vh-hero-stat{max-width:100%}
    .vh-hero-copy h1{max-width:12ch}
}

@media (max-width: 760px){
    .vh-search-panel-wrap{margin-top:-12px}
    .vh-filter-panel{padding:18px 18px 20px; gap:16px; border-radius:28px}
    .vh-filter-row,
    .vh-filter-row-5{grid-template-columns:1fr}
    .vh-filter-row-actions-inline{display:grid; grid-template-columns:1fr; gap:14px}
    .vh-filter-panel input,
    .vh-filter-panel select,
    .vh-filter-field-checkbox .vh-filter-check,
    .vh-filter-field-submit .vh-btn,
    .vh-filter-field-clear .vh-btn{min-height:64px; height:auto; font-size:16px}
    .vh-home-splide,
    .vh-home-splide .splide__track,
    .vh-home-splide .splide__list,
    .vh-home-splide .splide__slide{height:88vh; min-height:720px}
    .vh-home-splide .splide__arrow{width:48px; height:48px; top:58%}
    .vh-home-splide .splide__arrow--prev{left:10px}
    .vh-home-splide .splide__arrow--next{right:10px}
    .vh-home-splide .splide__pagination{bottom:24px}
    .vh-hero-shell{width:calc(100% - 30px); padding:110px 0 78px; gap:20px}
    .vh-hero-copy h1{font-size:clamp(38px, 10vw, 56px); max-width:100%}
    .vh-hero-copy p{font-size:17px; max-width:100%}
    .vh-hero-actions{margin-top:24px; display:grid; grid-template-columns:1fr}
    .vh-hero-actions .vh-btn{justify-content:center}
    .vh-hero-stat{padding:22px; border-radius:20px}
    .vh-hero-stat strong{font-size:40px}
    .vh-hero-wave{height:40px}
}

/* 2026-06-22 listing sidebar layout */
.vh-listing-section{padding-top:42px}
.vh-listing-shell{
    display:grid;
    grid-template-columns:minmax(0,1fr) 340px;
    gap:34px;
    align-items:start;
}
.vh-listing-main{min-width:0}
.vh-listing-sidebar{
    position:sticky;
    top:110px;
    display:grid;
    gap:18px;
}
.vh-sidebar-card,
.vh-sidebar-filter .vh-sidebar-card{
    background:#fff;
    border:1px solid rgba(17,48,68,.08);
    border-radius:18px;
    padding:22px;
    box-shadow:0 18px 45px rgba(17,48,68,.08);
}
.vh-sidebar-card h3{
    margin:0 0 16px;
    font-size:24px;
}
.vh-sidebar-fields{display:grid; gap:12px}
.vh-sidebar-fields input,
.vh-sidebar-fields select{
    width:100%;
    height:52px;
    border:1px solid #d8e2e8;
    border-radius:12px;
    padding:0 16px;
    background:#fff;
    font:inherit;
}
.vh-sidebar-two{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.vh-sidebar-check{
    display:flex; align-items:center; gap:10px; padding:10px 4px 4px;
    font-weight:700; color:var(--vh-ink);
}
.vh-sidebar-check input{width:18px; height:18px; margin:0}
.vh-listing-toolbar{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:flex-start;
    margin-bottom:18px;
    flex-wrap:wrap;
}
.vh-listing-tabs{display:flex; gap:0; flex-wrap:wrap}
.vh-tab-btn{
    display:inline-flex; align-items:center; justify-content:center;
    min-height:48px; padding:12px 18px; font-weight:800;
    border:1px solid var(--vh-sea); color:var(--vh-sea-dark); background:#fff;
}
.vh-tab-btn:first-child{border-radius:8px 0 0 8px}
.vh-tab-btn:last-child{border-radius:0 8px 8px 0}
.vh-tab-btn.active{background:var(--vh-sea); color:#fff}
.vh-sort-block{display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.vh-sort-block>span{font-weight:700; color:#6a7b86}
.vh-sort-buttons{display:flex; flex-wrap:wrap}
.vh-sort-btn{
    display:inline-flex; align-items:center; justify-content:center;
    min-height:48px; padding:12px 18px; background:#fff; color:var(--vh-sea-dark);
    border:1px solid rgba(17,48,68,.12); font-weight:800;
}
.vh-sort-btn + .vh-sort-btn{border-left:none}
.vh-sort-btn:first-child{border-radius:8px 0 0 8px}
.vh-sort-btn:last-child{border-radius:0 8px 8px 0}
.vh-sort-btn.active{background:var(--vh-sea); color:#fff; border-color:var(--vh-sea)}
.vh-listing-summary{margin:14px 0 22px; color:#61737f; display:flex; gap:8px; align-items:center}
.vh-listing-summary strong{font-size:22px; color:var(--vh-ink)}
.vh-selected-search{display:grid; gap:10px; list-style:none; margin:0; padding:0}
.vh-selected-search li{
    display:flex; align-items:center; justify-content:space-between;
    padding:10px 12px; border:1px solid #e0e7eb; border-radius:10px; font-weight:700;
}
.vh-sidebar-link-list{display:grid; gap:8px; max-height:540px; overflow:auto}
.vh-sidebar-link-list a{
    display:flex; align-items:center; justify-content:space-between;
    padding:11px 14px; border:1px solid #dfe7ec; border-radius:10px; color:var(--vh-ink);
    background:#fff; font-weight:700;
}
.vh-sidebar-link-list a b{color:#81909a}
.vh-sidebar-link-list a.active,
.vh-sidebar-link-list a:hover{border-color:var(--vh-sea); color:var(--vh-sea-dark); background:#f1fbfc}

@media (max-width: 1080px){
    .vh-listing-shell{grid-template-columns:1fr}
    .vh-listing-sidebar{position:static; order:-1}
}

@media (max-width: 760px){
    .vh-listing-toolbar,
    .vh-sort-block,
    .vh-sort-buttons,
    .vh-listing-tabs{display:grid; width:100%}
    .vh-tab-btn,
    .vh-sort-btn{border-radius:8px !important; border-left:1px solid rgba(17,48,68,.12) !important}
    .vh-sidebar-two{grid-template-columns:1fr}
}

/* 2026-06-23 Terra-like list cards, filters, tags, payment plans */
.vh-listing-main .vh-property-grid{display:grid;grid-template-columns:1fr;gap:28px}
.vh-list-card{display:grid;grid-template-columns:42% 58%;align-items:stretch;border-radius:0;background:#fff;box-shadow:0 8px 24px rgba(17,48,68,.08);border:1px solid #e8edf0;overflow:hidden;transform:none!important}
.vh-list-card:hover{box-shadow:0 18px 38px rgba(17,48,68,.14);transform:translateY(-2px)!important}
.vh-list-card-img{height:100%;min-height:260px;border-radius:0;position:relative;overflow:hidden}
.vh-list-card-img img{width:100%;height:100%;object-fit:cover}
.vh-list-card-body{padding:28px 32px 0;display:flex;flex-direction:column;min-width:0}
.vh-list-title-row{display:flex;gap:16px;align-items:flex-start;justify-content:space-between}
.vh-list-title-row h3{margin:0;font-size:25px;line-height:1.22;color:#30363b;font-family:var(--vh-font-body)}
.vh-list-price-row{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin:16px 0;border-bottom:1px solid #edf1f3;padding-bottom:14px}
.vh-list-card .vh-price{font-size:24px;color:var(--vh-sea-dark);font-weight:900;margin:0}
.vh-old-price-inline{text-decoration:line-through;color:#a1abb3;font-size:15px;font-weight:700}
.vh-discount-inline{display:inline-grid;place-items:center;min-height:30px;padding:4px 9px;border-radius:7px;background:#ff4e5c;color:#fff;font-weight:900;font-size:13px}
.vh-list-excerpt{font-size:18px;line-height:1.45;color:#46515b;margin:0 0 20px;min-height:52px}
.vh-list-meta{margin:auto -32px 0!important;padding:14px 30px;background:#f7f7f7;border-top:1px solid #e2e6e8;display:grid!important;grid-template-columns:1.45fr .8fr .65fr .55fr;gap:14px;color:#34404a}
.vh-list-meta span{font-size:16px;font-weight:600}.vh-list-meta i{font-size:22px;color:var(--vh-sea-dark)}
.vh-list-ref{position:absolute;left:0;bottom:0;background:var(--vh-sea-dark);color:#fff;font-weight:900;padding:9px 18px;font-size:15px;z-index:3}
.vh-list-featured{position:absolute;left:24px;top:24px;background:#ffa500;color:#fff;font-weight:900;padding:10px 17px;font-size:15px;z-index:3}
.vh-list-discount{position:absolute;left:calc(24px + 112px);top:24px;background:#e9003d;color:#fff;font-weight:900;padding:10px 17px;font-size:15px;z-index:3}
.vh-list-ribbon{position:absolute;right:0;top:42px;background:#55cef1;color:#fff;font-weight:900;font-size:22px;padding:15px 24px;z-index:3;min-width:130px;text-align:center;clip-path:polygon(20px 0,100% 0,100% 100%,20px 100%,0 50%)}
.vh-payment-badge{background:#19943a;color:#fff;font-weight:900;padding:9px 15px;font-size:18px;white-space:nowrap}
.vh-sidebar-hot-buttons{display:grid;gap:14px}.vh-hot-offer-btn,.vh-office-btn{display:flex;align-items:center;justify-content:center;gap:8px;min-height:54px;color:#fff;font-weight:900;text-transform:uppercase;border-radius:4px;box-shadow:0 8px 18px rgba(17,48,68,.16)}.vh-hot-offer-btn{background:#f20d0d}.vh-office-btn{background:#ffa000}
.vh-payment-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:4px}.vh-payment-grid a{display:grid;place-items:center;min-height:86px;text-align:center;color:#fff;font-weight:800;padding:8px;background:#f4b300}.vh-payment-grid a:nth-child(1){background:#099aa0}.vh-payment-grid a:nth-child(4){background:#a7d400}.vh-payment-grid a:nth-child(5){background:#43ac32}.vh-payment-grid a:nth-child(6){background:#198c3b}.vh-payment-grid a strong{font-size:21px;line-height:1}.vh-payment-grid a span{font-size:13px}.vh-payment-grid a em{font-style:normal}.vh-payment-grid a.active{outline:3px solid rgba(17,48,68,.25);outline-offset:-3px}
.vh-sidebar-card h3{color:var(--vh-sea-dark);font-size:20px;display:flex;gap:7px;align-items:center}.vh-sidebar-card h3:before{content:'\f02e';font-family:'Font Awesome 6 Free';font-weight:900;font-size:15px;color:var(--vh-sea-dark)}
.vh-listing-main #vhLocationOverview{margin-bottom:26px}.vh-location-content{background:#fff;border:1px solid #e7eef2;border-radius:12px;padding:18px;box-shadow:0 8px 28px rgba(17,48,68,.06)}.vh-location-content img,.vh-location-content .vh-location-image img{width:100%;border-radius:8px;margin-bottom:18px}
@media(max-width:1180px){.vh-list-card{grid-template-columns:1fr}.vh-list-card-img{min-height:300px}.vh-list-meta{grid-template-columns:1fr 1fr}}
@media(max-width:760px){.vh-list-card-body{padding:20px}.vh-list-title-row{display:block}.vh-payment-badge{display:inline-flex;margin-top:12px}.vh-list-meta{margin:0 -20px!important;padding:13px 18px;grid-template-columns:1fr}.vh-list-ribbon{font-size:16px}.vh-list-featured,.vh-list-discount{top:14px;left:14px}.vh-list-discount{top:58px;left:14px}.vh-payment-grid{grid-template-columns:repeat(2,1fr)}}

/* 2026-06-23 compact Terra-like cards + visible tags */
.vh-listing-main .vh-property-grid{
    gap:22px !important;
}
.vh-list-card{
    grid-template-columns:minmax(300px, 380px) minmax(0, 1fr) !important;
    min-height:0 !important;
    max-width:100% !important;
    align-items:stretch !important;
}
.vh-list-card-img{
    height:245px !important;
    min-height:245px !important;
    max-height:245px !important;
}
.vh-list-card-img img{
    height:245px !important;
}
.vh-list-card-body{
    min-height:245px !important;
    padding:18px 24px 0 !important;
}
.vh-list-title-row h3{
    font-size:22px !important;
    line-height:1.25 !important;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.vh-list-price-row{
    margin:10px 0 12px !important;
    padding-bottom:10px !important;
}
.vh-list-card .vh-price{
    font-size:21px !important;
}
.vh-list-excerpt{
    font-size:16px !important;
    line-height:1.42 !important;
    min-height:0 !important;
    margin-bottom:12px !important;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.vh-list-meta{
    margin:auto -24px 0!important;
    padding:11px 22px !important;
    gap:10px !important;
}
.vh-list-meta span{
    font-size:15px !important;
}
.vh-list-meta i{
    font-size:20px !important;
}
.vh-list-featured,
.vh-list-discount{
    top:16px !important;
    font-size:14px !important;
    padding:8px 14px !important;
}
.vh-list-featured{left:16px !important;}
.vh-list-discount{left:120px !important;}
.vh-list-ribbon{
    top:32px !important;
    font-size:17px !important;
    padding:11px 18px !important;
    min-width:108px !important;
}
.vh-list-ref{
    font-size:14px !important;
    padding:8px 15px !important;
}
.vh-payment-badge{
    font-size:15px !important;
    padding:7px 12px !important;
}
.vh-card-tag-row{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:8px 0 0;
}
.vh-card-tag-row span{
    display:inline-flex;
    align-items:center;
    min-height:26px;
    padding:4px 9px;
    border-radius:999px;
    background:#eefbfc;
    border:1px solid rgba(0,166,166,.18);
    color:var(--vh-sea-dark);
    font-size:12px;
    font-weight:900;
}
@media(max-width:1180px){
    .vh-list-card{grid-template-columns:320px minmax(0,1fr) !important;}
}
@media(max-width:860px){
    .vh-list-card{grid-template-columns:1fr !important;}
    .vh-list-card-img,.vh-list-card-img img{height:260px !important;min-height:260px!important;max-height:260px!important;}
    .vh-list-card-body{min-height:auto!important;}
}

/* 2026-06-25 full listing upgrade */
.vh-currency-switcher{display:inline-flex;gap:6px;align-items:center;flex-wrap:wrap;margin-right:8px}
.vh-currency-switcher a{font-size:11px!important;border:1px solid rgba(255,255,255,.35);padding:5px 7px;border-radius:18px;color:#fff}
.vh-currency-switcher a.active{background:#fff;color:var(--vh-sea-dark)!important}
.vh-nav.scrolled .vh-currency-switcher a{color:var(--vh-ink);border-color:rgba(17,48,68,.15)}
.vh-nav.scrolled .vh-currency-switcher a.active{background:var(--vh-sea);color:#fff!important}
.vh-top-search-bar{display:flex;gap:10px;margin:0 0 22px;align-items:center}
.vh-top-search-bar input{flex:1;height:54px;border:1px solid #dfe7ec;border-radius:10px;padding:0 18px;font:inherit;font-weight:700}.vh-top-search-bar .vh-btn{height:54px}.vh-sidebar-fields select[name="listing_type"]{display:none!important}
.vh-list-card{display:grid!important;grid-template-columns:360px minmax(0,1fr);min-height:0!important;border-radius:0!important;box-shadow:0 10px 25px rgba(17,48,68,.08)!important;border:1px solid #e6edf1;background:#fff;overflow:hidden;margin-bottom:28px}.vh-property-grid{display:block!important}.vh-list-card-img{height:236px!important;border-radius:0!important}.vh-list-card-img img{height:100%!important;width:100%;object-fit:cover}.vh-list-card-body{padding:22px 26px 0!important;display:flex;flex-direction:column}.vh-list-title-row h3{font-size:24px!important;line-height:1.25;margin:0 0 8px;color:#2d343a;font-family:var(--vh-font-body)!important}.vh-list-price-row{display:flex;align-items:center;gap:12px;padding:6px 0 14px;border-bottom:1px solid #edf1f3}.vh-list-price-row .vh-price{font-size:22px;font-weight:900;color:#008d91}.vh-list-excerpt{font-size:17px!important;line-height:1.45;color:#4e5963;margin:16px 0 18px}.vh-list-meta{margin:auto -26px 0!important;background:#f5f6f7;border-top:1px solid #e5eaee;padding:13px 24px!important;display:flex!important;gap:34px!important;flex-wrap:wrap}.vh-list-meta span{font-size:15px!important;font-weight:700;color:#44515b}.vh-list-meta i{font-size:22px;color:#008d91}.vh-list-ref{position:absolute;left:0;bottom:0;background:#069a9d;color:#fff;font-weight:900;padding:9px 16px;font-size:15px}.vh-list-featured,.vh-list-discount{position:absolute;top:18px;left:18px;background:#ffa900;color:#fff;font-weight:900;padding:8px 14px;border-radius:0;font-size:14px}.vh-list-discount{left:120px;background:#e9003a}.vh-list-ribbon{position:absolute;right:0;top:50px;background:#5acff1;color:#fff;padding:12px 28px;font-weight:900;font-size:18px}.vh-payment-badge{background:#22953b;color:#fff;font-weight:900;padding:8px 12px;border-radius:0;white-space:nowrap}.vh-card-tag-row{display:flex;gap:7px;flex-wrap:wrap;margin:8px 0}.vh-card-tag-row span{font-size:12px;font-weight:900;background:#eefafa;color:#007f88;border:1px solid rgba(0,166,166,.18);border-radius:999px;padding:4px 8px}.vh-old-price-inline{text-decoration:line-through;color:#9aa4ac;font-size:15px}.vh-discount-inline{background:#ff4d55;color:#fff;border-radius:6px;padding:3px 7px;font-size:13px;font-weight:900}.vh-gallery-category-select{height:34px;border:1px solid #d9e5ea;border-radius:8px;padding:0 8px;background:#fff}.vh-selected-chip{cursor:grab}.vh-mini-check{display:flex;align-items:center;gap:6px;font-size:12px;font-weight:800}.vh-gallery-category-nav{display:flex;gap:10px;flex-wrap:wrap;margin:22px 0}.vh-gallery-category-nav a{background:#effafa;color:#00858c;border:1px solid rgba(0,166,166,.18);border-radius:999px;padding:10px 14px;font-weight:900}.vh-gallery-category-section{margin:36px 0}.vh-gallery-category-section h3{font-size:28px;margin:0 0 14px}.vh-gallery-category-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.vh-gallery-category-grid button{border:0;padding:0;border-radius:14px;overflow:hidden;background:#eef2f3;cursor:pointer}.vh-gallery-category-grid img{width:100%;height:210px;object-fit:cover}.vh-pd-chip-row.features-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.vh-pd-chip-row.features-grid .vh-pd-chip{justify-content:flex-start;border-radius:0;background:#fff;border:0;font-size:16px}.vh-pd-chip-row.features-grid .vh-pd-chip i{color:#008d91}.vh-sidebar-fields select[name="construction_status"],.vh-sidebar-fields input[name="max_sea_distance"]{display:block!important}
@media(max-width:980px){.vh-list-card{grid-template-columns:1fr}.vh-list-card-img{height:260px!important}.vh-list-meta{gap:16px!important}.vh-gallery-category-grid{grid-template-columns:1fr 1fr}.vh-pd-chip-row.features-grid{grid-template-columns:1fr 1fr}.vh-top-search-bar{display:grid}}
@media(max-width:640px){.vh-gallery-category-grid{grid-template-columns:1fr}.vh-pd-chip-row.features-grid{grid-template-columns:1fr}.vh-list-title-row h3{font-size:22px!important}.vh-list-card-img{height:220px!important}}

/* 2026-06-30 listing refinements: no listing map, city filter, compact cards, sane pagination */
.vh-city-quick-filter{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin:0 0 18px;
}
.vh-city-quick-filter span{
    color:#61737f;
    font-weight:800;
    margin-right:4px;
}
.vh-city-quick-filter a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:8px 14px;
    border:1px solid #dce7ec;
    border-radius:999px;
    background:#fff;
    color:var(--vh-ink);
    font-weight:800;
    box-shadow:0 6px 18px rgba(17,48,68,.05);
}
.vh-city-quick-filter a.active,
.vh-city-quick-filter a:hover{
    background:var(--vh-sea);
    border-color:var(--vh-sea);
    color:#fff;
}
.vh-location-landing-copy{
    margin:16px 0 24px;
    padding:28px;
    border:1px solid #e4edf2;
    border-radius:18px;
    background:#fff;
    box-shadow:0 16px 44px rgba(17,48,68,.06);
}
.vh-location-landing-copy .vh-title{
    font-size:clamp(30px,3vw,46px);
    margin-bottom:14px;
}
.vh-location-details{
    margin-top:14px;
}
.vh-location-details summary{
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    min-height:42px;
    padding:10px 16px;
    border-radius:999px;
    background:#effafa;
    color:#00858c;
    font-weight:900;
    border:1px solid rgba(0,166,166,.18);
}
.vh-location-details[open] summary{
    margin-bottom:18px;
}
.vh-card-img > .vh-chip:not(.vh-chip-gold){display:none!important;}
.vh-list-card{
    grid-template-columns:330px minmax(0,1fr)!important;
}
.vh-list-card-img{
    height:220px!important;
    min-height:220px!important;
    max-height:220px!important;
}
.vh-list-card-body{padding:18px 22px 0!important;}
.vh-list-title-row h3{font-size:22px!important;line-height:1.22!important;}
.vh-list-excerpt{font-size:15px!important;margin:12px 0 14px!important;line-height:1.45!important;}
.vh-list-price-row .vh-price{font-size:20px!important;}
.vh-list-meta{padding:10px 20px!important;gap:24px!important;}
.vh-list-meta span{font-size:14px!important;}
.vh-list-meta i{font-size:18px!important;}
.vh-list-featured{display:none!important;}
.vh-list-ribbon{top:18px!important;font-size:15px!important;padding:9px 20px!important;}
.vh-pagination,
.vh-pagination nav,
.vh-pagination .pagination{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
    margin:26px 0;
}
.vh-pagination a,
.vh-pagination span{
    width:auto!important;
    height:auto!important;
    min-width:34px!important;
    min-height:34px!important;
    max-width:none!important;
    max-height:none!important;
    padding:7px 10px!important;
    font-size:14px!important;
    line-height:1.2!important;
}
.vh-pagination svg{
    width:18px!important;
    height:18px!important;
    max-width:18px!important;
    max-height:18px!important;
}
.vh-pagination p{display:none!important;}

@media(max-width:980px){
    .vh-list-card{grid-template-columns:1fr!important;}
    .vh-list-card-img{height:240px!important;min-height:240px!important;max-height:240px!important;}
}
@media(max-width:640px){
    .vh-location-landing-copy{padding:20px;border-radius:14px;}
    .vh-city-quick-filter{display:grid;grid-template-columns:1fr 1fr;}
    .vh-city-quick-filter span{grid-column:1/-1;}
}

/* 2026-06-30 Terra-style right filters + currency dropdown */
.vh-currency-switcher{display:inline-flex;align-items:center;margin-right:10px}
.vh-currency-switcher .vh-currency-select{
    min-width:92px;
    height:38px;
    border:1px solid rgba(17,48,68,.16);
    border-radius:20px;
    background:#fff;
    color:var(--vh-ink);
    font-weight:800;
    font-size:13px;
    padding:0 30px 0 12px;
    outline:none;
    cursor:pointer;
}
.vh-currency-switcher .vh-currency-select:focus{border-color:var(--vh-sea);box-shadow:0 0 0 4px rgba(0,166,166,.10)}
.vh-nav:not(.scrolled) .vh-currency-switcher .vh-currency-select{background:rgba(255,255,255,.86)}

.vh-top-search-bar{margin:0 0 18px;display:flex;gap:14px;align-items:center}
.vh-top-search-bar input{height:58px;border:1px solid #dfe8ee;border-radius:12px;padding:0 20px;font-size:16px;font-weight:700;flex:1;min-width:0;background:#fff}
.vh-top-search-bar .vh-btn{height:58px;min-width:120px;border-radius:999px}
.vh-listing-toolbar{align-items:center;border-bottom:1px solid rgba(17,48,68,.10);padding-bottom:14px;margin-bottom:18px}
.vh-listing-tabs .vh-tab-btn,.vh-sort-buttons .vh-sort-btn{min-height:42px;border-radius:0;font-size:14px;padding:10px 14px}
.vh-listing-tabs .vh-tab-btn:first-child,.vh-sort-buttons .vh-sort-btn:first-child{border-radius:5px 0 0 5px}
.vh-listing-tabs .vh-tab-btn:last-child,.vh-sort-buttons .vh-sort-btn:last-child{border-radius:0 5px 5px 0}
.vh-listing-sidebar{gap:16px}
.vh-sidebar-card{border-radius:0;box-shadow:none;border:0;background:#f7f7f7;padding:18px}
.vh-sidebar-card h3{font-size:18px;color:var(--vh-sea-dark);text-align:center;margin-bottom:14px}
.vh-sidebar-link-list{gap:4px;max-height:none;overflow:visible}
.vh-sidebar-link-list a{border-radius:0;border:1px solid #e3e3e3;background:#fff;padding:10px 14px;font-size:15px}
.vh-sidebar-link-list a.active,.vh-sidebar-link-list a:hover{background:#f0fbfb;border-color:var(--vh-sea);color:var(--vh-sea-dark)}
.vh-selected-search li{border-radius:0;background:#fff;border-color:#e3e3e3}
.vh-selected-search li a{font-size:22px;line-height:1;color:#ff3b3b;font-weight:800;text-decoration:none}
.vh-sidebar-fields input,.vh-sidebar-fields select{height:46px;border-radius:0;border-color:#e3e3e3;background:#fff;font-size:14px}
.vh-sidebar-fields .vh-btn{min-height:46px;border-radius:0}
.vh-hot-offer-btn,.vh-office-btn{border-radius:0!important;min-height:46px!important;box-shadow:0 4px 10px rgba(17,48,68,.12)!important}
.vh-payment-grid a{border-radius:0!important}

@media (max-width: 1080px){
    .vh-top-search-bar{display:grid;grid-template-columns:1fr}
    .vh-top-search-bar .vh-btn{width:100%}
}

/* 2026-07-01 detail + header + overview refinements */
.vh-nav-inner{grid-template-columns:minmax(0,1fr) auto minmax(360px,1fr);gap:26px}
.vh-nav-links-main{justify-content:flex-start;flex-wrap:wrap;gap:24px}
.vh-nav-utilities{gap:16px;flex-wrap:nowrap}
.vh-nav-utilities>a:not(.vh-btn){display:none}
.vh-nav .vh-logo{justify-self:center}
.vh-nav .vh-logo-mark{max-width:170px}
.vh-currency-switcher{margin-right:0}

.vh-pd-inline-badges{display:flex;gap:8px;flex-wrap:wrap;align-items:center;margin:10px 0 12px}
.vh-pd-inline-badges span,
.vh-detail-tag-row span,
.vh-side-tags span{
    display:inline-flex;align-items:center;gap:6px;padding:7px 12px;border-radius:999px;
    background:#eefafa;color:var(--vh-sea-dark);font-weight:900;font-size:13px;line-height:1.15;
}
.vh-pd-inline-badges .vh-badge-citizenship{background:#fff3d9;color:#a56700}
.vh-pd-inline-badges .vh-badge-payment,.vh-side-payment-pill{background:#e8f7ea;color:#178635}
.vh-pd-inline-badges .vh-badge-discount{background:#fff0f1;color:#e2203b}
.vh-detail-tag-row{display:flex;gap:8px;flex-wrap:wrap;margin:0 0 14px}
.vh-detail-tag-row span:nth-child(3n+1){background:#eaf8ff;color:#0780a0}
.vh-detail-tag-row span:nth-child(3n+2){background:#fff7db;color:#a56700}
.vh-detail-tag-row span:nth-child(3n+3){background:#f0f7ec;color:#2d8a28}
.vh-deal-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:22px 0;background:#f8fbfc;border:1px solid #e5edf2;border-radius:18px;padding:12px}
.vh-deal-strip div{display:grid;grid-template-columns:36px 1fr;grid-template-rows:auto auto;gap:2px 10px;align-items:center;background:#fff;border-radius:14px;padding:14px;border:1px solid #edf3f6}
.vh-deal-strip i{grid-row:1/3;width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#0aa7aa;color:#fff}
.vh-deal-strip strong{font-size:17px;color:var(--vh-ink)}
.vh-deal-strip span{font-size:12px;font-weight:800;color:#6b7d89;text-transform:uppercase;letter-spacing:.04em}
.vh-side-price-box{background:linear-gradient(135deg,#f6fbfc,#fff);border:1px solid #e6eef2;border-radius:18px;padding:18px;margin-bottom:14px}
.vh-side-price-box small{display:block;color:#7a8b96;font-weight:800;margin-bottom:6px;text-transform:uppercase;font-size:11px;letter-spacing:.08em}
.vh-side-price-box strong{display:block;color:var(--vh-sea-dark);font-size:26px;line-height:1.15}
.vh-side-price-box span,.vh-side-payment-pill{display:inline-flex;gap:7px;align-items:center;margin-top:10px;border-radius:999px;padding:7px 11px;font-weight:900;font-size:13px}
.vh-side-tags{display:flex;gap:6px;flex-wrap:wrap;margin:12px 0}
.vh-pd-btn i,.vh-advisor-social i,.vh-pd-side-list i{font-size:16px!important;line-height:1!important;flex:0 0 auto}
.vh-advisor-social{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.vh-advisor-social a{display:inline-flex!important;align-items:center;gap:7px;border:1px solid #dce8ee;border-radius:999px;padding:8px 12px;color:var(--vh-ink)!important;background:#fff;font-weight:900;font-size:13px!important;text-decoration:none!important}
.vh-advisor-social a:hover{background:#eafafa;border-color:var(--vh-sea);color:var(--vh-sea-dark)!important}
.vh-pd-gallery .vh-pd-badge{background:#51c9e8!important;color:#fff!important;border-radius:0 0 0 0;clip-path:polygon(0 0,100% 0,88% 50%,100% 100%,0 100%);padding:14px 34px 14px 18px;font-weight:900;box-shadow:0 8px 20px rgba(0,0,0,.12)}
.vh-price-info-section,.vh-citizenship-notice,.vh-deal-strip{scroll-margin-top:110px}

.vh-location-overview-card{background:#fff;border:1px solid #e6edf2;border-radius:0;padding:20px;margin:20px 0 28px;box-shadow:0 10px 28px rgba(17,48,68,.06)}
.vh-location-overview-head{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;border-bottom:1px solid #e5ecef;margin-bottom:16px;padding-bottom:10px}
.vh-location-overview-card .vh-title{font-size:clamp(28px,3vw,44px);margin-bottom:0;color:#444}
.vh-location-cover{margin:0 0 18px;border:1px solid #e3e8eb;padding:6px;background:#fff}
.vh-location-cover img{display:block;width:100%;max-height:460px;object-fit:cover}
.vh-location-intro{font-size:18px;line-height:1.78;color:#273f4d;margin-bottom:18px}
.vh-location-readmore{position:relative}
.vh-location-readmore-body{max-height:360px;overflow:hidden;position:relative;transition:max-height .3s ease}
.vh-location-readmore:not(.open) .vh-location-readmore-body:after{content:'';position:absolute;left:0;right:0;bottom:0;height:90px;background:linear-gradient(rgba(255,255,255,0),#fff)}
.vh-location-readmore.open .vh-location-readmore-body{max-height:none}
.vh-location-readmore-toggle{margin-top:14px;border:0;background:var(--vh-sea);color:#fff;font-weight:900;border-radius:999px;padding:12px 20px;cursor:pointer}
.vh-location-inline-images{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin:22px 0}
.vh-location-inline-images img{width:100%;height:260px;object-fit:cover;border-radius:4px}
.vh-pd-rich-content img{max-width:100%;height:auto;border-radius:4px}
.vh-mini-html-toolbar{display:flex;gap:6px;flex-wrap:wrap;margin:0 0 8px}
.vh-mini-html-toolbar button{border:1px solid #dce7ed;background:#fff;border-radius:6px;padding:6px 10px;font-weight:800;color:#193a57;cursor:pointer}
.vh-html-editor{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.55}

@media(max-width:1180px){
    .vh-nav-inner{grid-template-columns:1fr auto;gap:16px}
    .vh-nav .vh-logo{justify-self:start;order:-1}
    .vh-nav-links-main{display:none}
    .vh-nav-utilities{justify-content:flex-end}
}
@media(max-width:760px){
    .vh-deal-strip{grid-template-columns:1fr}
    .vh-location-inline-images{grid-template-columns:1fr}
    .vh-location-inline-images img{height:220px}
    .vh-nav-utilities .vh-btn{display:none}
    .vh-nav .vh-logo-mark{max-width:135px}
}

/* 2026-07-01 location editor + detailed payment plan polish */
.vh-payment-details{
    margin:28px 0;
    padding:26px;
    border:1px solid rgba(9,140,148,.12);
    border-radius:28px;
    background:linear-gradient(135deg,#ffffff 0%,#f4fbfc 100%);
    box-shadow:0 18px 50px rgba(16,47,70,.07);
}
.vh-payment-details-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-bottom:20px;
}
.vh-payment-details-head h2{
    margin:4px 0 0;
    font-family:var(--vh-font-title);
    font-size:clamp(26px,2.2vw,38px);
    color:var(--vh-ink);
}
.vh-payment-max{
    min-width:104px;
    border-radius:20px;
    padding:14px 16px;
    text-align:center;
    background:var(--vh-sea);
    color:#fff;
    box-shadow:0 14px 30px rgba(0,166,166,.22);
}
.vh-payment-max strong{display:block;font-size:34px;line-height:1;font-family:var(--vh-font-title)}
.vh-payment-max span{display:block;font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:.05em;margin-top:4px}
.vh-payment-month-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
    gap:12px;
    margin:18px 0 20px;
}
.vh-payment-month-card{
    position:relative;
    overflow:hidden;
    min-height:112px;
    border-radius:20px;
    padding:18px;
    border:1px solid rgba(9,140,148,.15);
    background:#fff;
    color:var(--vh-ink);
    box-shadow:0 12px 24px rgba(16,47,70,.06);
}
.vh-payment-month-card:before{
    content:'';
    position:absolute;
    inset:auto -20px -30px auto;
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(0,166,166,.08);
}
.vh-payment-month-card strong{display:block;font-size:34px;line-height:1;color:var(--vh-sea-dark);font-family:var(--vh-font-title)}
.vh-payment-month-card span{display:block;margin-top:5px;font-weight:800;color:#425466}
.vh-payment-month-card em{display:block;margin-top:8px;font-size:12px;text-transform:uppercase;letter-spacing:.06em;color:#7c8b96;font-style:normal;font-weight:800}
.vh-payment-month-card.is-featured{background:linear-gradient(135deg,var(--vh-sea),#5bc8e8);color:#fff;border-color:transparent}
.vh-payment-month-card.is-featured strong,.vh-payment-month-card.is-featured span,.vh-payment-month-card.is-featured em{color:#fff}
.vh-payment-table-wrap{overflow:auto;border-radius:18px;border:1px solid rgba(16,47,70,.08);background:#fff}
.vh-payment-table{width:100%;border-collapse:collapse;min-width:680px}
.vh-payment-table th{background:#0b8990;color:#fff;font-size:13px;text-transform:uppercase;letter-spacing:.05em;text-align:left;padding:14px 16px;white-space:nowrap}
.vh-payment-table td{border-top:1px solid rgba(16,47,70,.08);padding:15px 16px;vertical-align:top;color:#314252;font-weight:700}
.vh-payment-table td strong{display:block;color:var(--vh-sea-dark);font-size:18px}
.vh-payment-table td small{display:inline-block;color:#9aa6ae;text-decoration:line-through;margin-top:3px;margin-right:8px}
.vh-payment-discount{display:inline-flex;padding:4px 8px;border-radius:8px;background:#ff3f52;color:#fff;font-size:12px;font-weight:800}
.vh-payment-note{margin:10px 0 0;color:#607180;font-weight:700;line-height:1.6}
.admin-field textarea.vh-textarea.rich{
    min-height:260px;
}
@media(max-width:760px){
    .vh-payment-details{padding:18px;border-radius:22px}
    .vh-payment-details-head{align-items:flex-start;flex-direction:column}
    .vh-payment-max{width:100%}
    .vh-payment-month-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .vh-payment-table{min-width:0}
    .vh-payment-table thead{display:none}
    .vh-payment-table,.vh-payment-table tbody,.vh-payment-table tr,.vh-payment-table td{display:block;width:100%}
    .vh-payment-table tr{border-top:1px solid rgba(16,47,70,.08)}
    .vh-payment-table td{border-top:0;display:flex;justify-content:space-between;gap:14px;padding:10px 14px}
    .vh-payment-table td:before{content:attr(data-label);font-weight:900;color:#6b7b86;min-width:120px}
}

/* 2026-07-01 compact UX polish + mobile refinement */
.vh-nav{
    padding:14px 0;
}
.vh-nav-inner{
    min-height:54px;
    grid-template-columns:minmax(0,1fr) auto minmax(300px,1fr)!important;
    gap:18px!important;
}
.vh-nav-links-main{gap:18px!important}
.vh-nav a{font-size:15px;line-height:1.2}
.vh-nav .vh-logo-mark{max-width:145px!important}
.vh-nav-utilities{gap:10px!important}
.vh-currency-switcher .vh-currency-select{height:42px;min-width:104px;font-size:14px;border-radius:999px}
.vh-lang{gap:8px!important}
.vh-lang a{width:42px!important;height:42px!important;font-size:13px!important}
.vh-nav-utilities .vh-btn{min-height:48px!important;padding:12px 22px!important;font-size:14px!important}
.vh-page-hero{min-height:330px!important;padding:150px 24px 95px!important}
.vh-page-hero h1{font-size:clamp(42px,5vw,72px)!important;line-height:1.04!important}
.vh-hero-slider,
.vh-home-splide,
.vh-home-splide .splide__track,
.vh-home-splide .splide__list,
.vh-home-splide .splide__slide{min-height:760px!important;height:88vh!important}
.vh-hero-shell{padding:120px 0 82px!important}
.vh-hero-copy h1{font-size:clamp(44px,4.6vw,76px)!important;line-height:1!important}
.vh-hero-copy p{font-size:clamp(17px,1.25vw,22px)!important;max-width:560px!important}
.vh-home-splide .splide__arrow{width:44px!important;height:44px!important}
.vh-home-splide .splide__pagination{bottom:34px!important}
.vh-card-img > .vh-chip:not(.vh-chip-gold),
.vh-list-featured{display:none!important}
.vh-list-card{
    grid-template-columns:300px minmax(0,1fr)!important;
    margin-bottom:18px!important;
    box-shadow:0 8px 22px rgba(17,48,68,.06)!important;
    border-color:#edf1f3!important;
}
.vh-list-card-img{height:200px!important;min-height:200px!important;max-height:200px!important}
.vh-list-card-body{padding:16px 20px 0!important}
.vh-list-title-row{gap:14px!important;align-items:flex-start!important}
.vh-list-title-row h3{font-size:20px!important;line-height:1.22!important;margin-bottom:4px!important}
.vh-list-ribbon{
    top:16px!important;
    right:0!important;
    font-size:14px!important;
    padding:9px 24px 9px 16px!important;
    clip-path:polygon(13px 0,100% 0,100% 100%,13px 100%,0 50%)!important;
}
.vh-payment-badge{font-size:13px!important;padding:7px 10px!important;line-height:1.2!important;min-height:auto!important}
.vh-card-tag-row{margin:6px 0!important;gap:6px!important}
.vh-card-tag-row span{font-size:11px!important;padding:4px 8px!important}
.vh-list-price-row{padding:6px 0 10px!important;gap:8px!important}
.vh-list-price-row .vh-price{font-size:19px!important;line-height:1.15!important}
.vh-list-excerpt{font-size:14px!important;line-height:1.45!important;margin:10px 0 12px!important;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.vh-list-meta{padding:9px 18px!important;gap:18px!important}
.vh-list-meta span{font-size:13px!important;gap:6px!important}
.vh-list-meta i{font-size:16px!important}
.vh-list-ref{font-size:13px!important;padding:8px 14px!important}
.vh-old-price-inline{font-size:13px!important}
.vh-discount-inline{font-size:12px!important;padding:3px 6px!important}
.vh-sidebar-card{padding:16px!important}
.vh-sidebar-card h3{font-size:17px!important;margin-bottom:12px!important}
.vh-sidebar-link-list a{padding:8px 12px!important;font-size:14px!important}
.vh-payment-grid a{min-height:64px!important;padding:8px!important}
.vh-payment-grid a strong{font-size:20px!important}
.vh-payment-grid a span{font-size:12px!important}
.vh-location-overview-card{padding:18px!important;margin:16px 0 24px!important}
.vh-location-overview-card .vh-title{font-size:clamp(26px,2.6vw,38px)!important}
.vh-location-intro{font-size:16px!important;line-height:1.7!important}
.vh-location-readmore-body{max-height:330px!important}
.vh-location-inline-images img{height:210px!important}
.vh-pd-gallery{max-width:980px;margin-left:auto;margin-right:auto}
.vh-pd-gallery-main{border-radius:18px!important}
.vh-pd-gallery .vh-pd-badge{font-size:13px!important;padding:10px 26px 10px 14px!important}
.vh-pd-title h1,.vh-pd-content h1{font-size:clamp(30px,3vw,46px)!important;line-height:1.12!important}
.vh-pd-grid{gap:28px!important}
.vh-pd-side,.vh-side-price-box{border-radius:18px!important}
.vh-payment-details{border-radius:20px!important;padding:20px!important}
.vh-payment-month-card{border-radius:16px!important;padding:16px!important}
.vh-payment-details-head h2{font-size:clamp(24px,2vw,32px)!important}

@media(max-width:1180px){
    .vh-nav-inner{grid-template-columns:auto 1fr auto!important}
    .vh-nav .vh-logo{justify-self:start!important;order:0!important}
    .vh-nav-links-main{display:none!important}
    .vh-menu-toggle{display:inline-flex!important}
    .vh-nav-utilities{justify-content:flex-end!important}
    .vh-page-hero{min-height:290px!important;padding:125px 20px 78px!important}
}
@media(max-width:760px){
    .vh-nav{padding:10px 0!important}
    .vh-nav-inner{gap:10px!important}
    .vh-nav .vh-logo-mark{max-width:120px!important}
    .vh-currency-switcher .vh-currency-select{height:36px;min-width:88px;font-size:12px;padding-left:10px}
    .vh-lang{display:none!important}
    .vh-menu-toggle{width:42px!important;height:42px!important}
    .vh-page-hero{min-height:235px!important;padding:104px 16px 58px!important}
    .vh-page-hero h1{font-size:clamp(34px,9vw,46px)!important}
    .vh-hero-slider,.vh-home-splide,.vh-home-splide .splide__track,.vh-home-splide .splide__list,.vh-home-splide .splide__slide{height:78vh!important;min-height:610px!important}
    .vh-hero-shell{width:calc(100% - 28px)!important;padding:98px 0 70px!important}
    .vh-hero-copy h1{font-size:clamp(36px,10vw,52px)!important}
    .vh-hero-copy p{font-size:16px!important}
    .vh-hero-actions{grid-template-columns:1fr!important}
    .vh-list-card{grid-template-columns:1fr!important;border-radius:16px!important;overflow:hidden!important;margin-bottom:18px!important}
    .vh-list-card-img{height:205px!important;min-height:205px!important;max-height:205px!important}
    .vh-list-card-body{padding:16px 16px 0!important}
    .vh-list-title-row h3{font-size:20px!important}
    .vh-payment-badge{margin-top:8px!important}
    .vh-list-ribbon{font-size:12px!important;top:12px!important;padding:8px 20px 8px 14px!important}
    .vh-list-meta{margin:0 -16px!important;padding:10px 14px!important;display:grid!important;grid-template-columns:1fr 1fr!important;gap:10px!important}
    .vh-list-meta span{font-size:12px!important}
    .vh-list-price-row{flex-wrap:wrap!important}
    .vh-list-price-row .vh-price{font-size:18px!important}
    .vh-listing-shell{gap:22px!important}
    .vh-sidebar-card{border-radius:14px!important}
    .vh-location-overview-head{display:block!important}
    .vh-location-inline-images{grid-template-columns:1fr!important}
    .vh-location-inline-images img{height:190px!important}
    .vh-pd-gallery{padding:0 14px!important}
    .vh-pd-grid{display:block!important}
    .vh-pd-side{margin-top:22px!important}
}

/* 2026-07-01 non-destructive UX regression fixes */
/* Sidebar title icons: keep only the inline icon from the Blade markup. */
.vh-sidebar-card h3:before,
.vh-sidebar-card h3::before{
    content:none!important;
    display:none!important;
}
.vh-sidebar-card h3{
    gap:8px!important;
}
.vh-sidebar-card h3 i{
    color:var(--vh-sea-dark)!important;
    font-size:.95em!important;
    flex:0 0 auto;
}

/* Header: keep Blog/Contact aligned with the main menu and prevent language buttons from drifting. */
.vh-nav-inner{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto minmax(0,1fr)!important;
    align-items:center!important;
    column-gap:28px!important;
}
.vh-nav-links-main{
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:26px!important;
    min-width:0!important;
    flex-wrap:nowrap!important;
}
.vh-nav-utilities{
    display:flex!important;
    align-items:center!important;
    justify-content:flex-end!important;
    gap:14px!important;
    min-width:0!important;
    flex-wrap:nowrap!important;
}
.vh-nav .vh-logo{
    justify-self:center!important;
    min-width:0!important;
}
.vh-lang{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:8px!important;
    flex:0 0 auto!important;
    white-space:nowrap!important;
}
.vh-lang a{
    flex:0 0 auto!important;
}
.vh-currency-switcher,
.vh-currency-select{
    flex:0 0 auto!important;
}

/* Detail gallery: restore the wider, stronger detail gallery presentation. */
.vh-pd-gallery,
.vh-project-gallery{
    width:100%!important;
    max-width:1240px!important;
    margin-left:auto!important;
    margin-right:auto!important;
    display:grid!important;
    grid-template-columns:minmax(0,1.45fr) minmax(300px,.82fr)!important;
    gap:22px!important;
}
.vh-pd-gallery-main,
.vh-pd-gallery-side{
    height:clamp(470px,58vh,690px)!important;
    max-height:690px!important;
}
.vh-pd-gallery-main,
.vh-pd-gallery-side-item{
    border-radius:26px!important;
}
.vh-pd-gallery-side{
    display:grid!important;
    grid-template-rows:1fr 1fr!important;
    gap:22px!important;
}
.vh-pd-gallery-main-trigger,
.vh-pd-gallery-side-item{
    width:100%!important;
    height:100%!important;
}
.vh-pd-gallery-main-trigger img,
.vh-pd-gallery-side-item img,
.vh-pd-gallery img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    object-position:center!important;
}
.vh-pd-gallery .vh-pd-badge{
    font-size:14px!important;
    padding:12px 30px 12px 16px!important;
}

/* Location overview should never consume space unless it is actually rendered for a selected location. */
#vhLocationOverview:empty{
    display:none!important;
}

@media(max-width:1180px){
    .vh-nav-inner{
        grid-template-columns:auto 1fr auto!important;
        column-gap:16px!important;
    }
    .vh-nav-links-main{
        display:none!important;
    }
    .vh-nav .vh-logo{
        justify-self:start!important;
    }
    .vh-nav-utilities{
        justify-self:end!important;
    }
    .vh-pd-gallery,
    .vh-project-gallery{
        max-width:100%!important;
        grid-template-columns:minmax(0,1.45fr) minmax(260px,.85fr)!important;
    }
    .vh-pd-gallery-main,
    .vh-pd-gallery-side{
        height:clamp(390px,52vh,560px)!important;
    }
}

@media(max-width:760px){
    .vh-nav-inner{
        grid-template-columns:auto 1fr auto!important;
        gap:10px!important;
    }
    .vh-nav-utilities{
        gap:8px!important;
    }
    .vh-lang{
        display:none!important;
    }
    .vh-nav-utilities .vh-btn{
        display:none!important;
    }
    .vh-pd-gallery,
    .vh-project-gallery{
        grid-template-columns:1fr!important;
        gap:12px!important;
        padding:0 14px!important;
    }
    .vh-pd-gallery-main{
        height:auto!important;
        aspect-ratio:4/3!important;
        max-height:none!important;
    }
    .vh-pd-gallery-side{
        height:auto!important;
        max-height:none!important;
        grid-template-columns:1fr 1fr!important;
        grid-template-rows:none!important;
        gap:12px!important;
    }
    .vh-pd-gallery-side-item{
        height:auto!important;
        aspect-ratio:4/3!important;
    }
}

/* 2026-07-01 final tab/header polish */
.vh-listing-panel[hidden]{display:none!important}
.vh-listing-panel{animation:vhTabFade .18s ease both}
@keyframes vhTabFade{from{opacity:.25;transform:translateY(4px)}to{opacity:1;transform:none}}
.vh-listing-toolbar.is-overview .vh-sort-block{display:none!important}
.vh-listing-tabs .vh-tab-btn{
    cursor:pointer!important;
    font-family:inherit!important;
    border:1px solid var(--vh-sea)!important;
}
.vh-location-overview-card{
    margin-top:24px!important;
}
.vh-location-full-content{
    max-height:none!important;
    overflow:visible!important;
}
.vh-location-readmore,
.vh-location-readmore-body{
    max-height:none!important;
    overflow:visible!important;
}
.vh-location-readmore-toggle{display:none!important}

.vh-nav-inner{
    width:min(1500px, calc(100% - 56px))!important;
    margin:0 auto!important;
    grid-template-columns:minmax(0,1fr) auto minmax(0,1fr)!important;
    align-items:center!important;
}
.vh-nav-links-main,
.vh-nav-utilities{
    min-height:64px!important;
    align-items:center!important;
}
.vh-nav-utilities{
    justify-content:flex-end!important;
    gap:16px!important;
}
.vh-lang{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:8px!important;
    height:48px!important;
    line-height:1!important;
    transform:none!important;
    position:static!important;
}
.vh-lang a{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:44px!important;
    height:44px!important;
    min-width:44px!important;
    padding:0!important;
    margin:0!important;
    line-height:1!important;
    border-radius:999px!important;
    vertical-align:middle!important;
}
.vh-currency-switcher{height:52px!important;display:flex!important;align-items:center!important}
.vh-currency-select{height:52px!important;line-height:52px!important;display:block!important}

@media(max-width:1180px){
    .vh-nav-inner{width:min(100% - 32px, 1120px)!important;grid-template-columns:auto 1fr auto!important}
    .vh-nav-utilities{gap:10px!important}
}
@media(max-width:760px){
    .vh-nav-inner{width:calc(100% - 24px)!important}
    .vh-lang{display:none!important}
}


/* 2026-07-05 real estate admin/frontend completion pass */
.vh-page-hero .vh-page-title{font-family:var(--vh-font-title);font-size:clamp(42px,5vw,86px);font-weight:800;line-height:1;color:#fff;text-align:center;text-shadow:0 12px 30px rgba(0,0,0,.28);position:relative;z-index:2}
.vh-card{position:relative}.vh-card-cover-link{position:absolute;inset:0;z-index:1}.vh-list-card-img,.vh-list-card-body{position:relative;z-index:2}.vh-card-gallery-button{position:absolute;right:12px;bottom:12px;z-index:4;width:42px;height:42px;border:none;border-radius:999px;background:rgba(13,52,69,.88);color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 10px 22px rgba(0,0,0,.22);cursor:pointer}.vh-card-gallery-button:hover{background:var(--vh-sea)}
.vh-related-section{padding-top:24px}.vh-related-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.vh-related-grid .vh-list-card{min-height:auto}.vh-private-info-box{margin-top:12px;padding:14px;border-radius:16px;background:#f5fbfc;border:1px solid rgba(0,166,166,.16);display:grid;gap:8px}.vh-private-info-box[hidden]{display:none}.vh-private-info-box div{display:flex;justify-content:space-between;gap:12px;border-bottom:1px solid rgba(17,48,68,.08);padding-bottom:7px}.vh-private-info-box div:last-child{border-bottom:0}.vh-private-info-box strong{font-size:12px;color:#627385}.vh-private-info-box span{font-size:13px;font-weight:700;color:var(--vh-ink);text-align:right}
.vh-admin-image-preview-modal{position:fixed;inset:0;background:rgba(10,24,35,.74);z-index:99999;display:flex;align-items:center;justify-content:center;padding:30px}.vh-admin-image-preview-modal[hidden]{display:none}.vh-admin-image-preview-modal img{max-width:min(1100px,94vw);max-height:88vh;border-radius:18px;box-shadow:0 28px 80px rgba(0,0,0,.35)}.vh-admin-image-preview-modal button{position:absolute;top:22px;right:28px;width:48px;height:48px;border-radius:999px;border:0;background:#fff;font-size:26px;cursor:pointer}
.vh-price-option-row{grid-template-columns:1.2fr 1fr 1fr .6fr .6fr .6fr .7fr .8fr .8fr .8fr .7fr auto!important;align-items:center;background:#fff;border:1px solid #e6edf2;border-radius:22px;padding:16px;box-shadow:0 12px 30px rgba(17,48,68,.05)}.vh-price-option-row .vh-mini-check{align-items:center;gap:7px}.vh-price-option-row .vh-btn.danger{height:52px}
.vh-admin-map-picker[data-area-mode='area'] .vh-admin-map-canvas{box-shadow:0 0 0 5px rgba(0,166,166,.08)}
.vh-icon-feature-row [data-open-icon-picker]+[data-open-icon-picker], .vh-icon-feature-row .vh-btn + .vh-btn[data-open-icon-picker]{display:none!important}.vh-icon-feature-row .vh-btn[data-open-icon-picker]{background:linear-gradient(135deg,#0aa6a6,#55c8ea);color:#fff;border:none;border-radius:14px}.vh-icon-feature-row .vh-btn[data-open-icon-picker] i{margin-right:8px}
.vh-contact form input[name="source_code"]+input+input{display:none}
@media(max-width:980px){.vh-related-grid{grid-template-columns:1fr}.vh-price-option-row{grid-template-columns:1fr!important}.vh-card-gallery-button{width:38px;height:38px}.vh-page-hero .vh-page-title{font-size:clamp(34px,10vw,56px)}}
.vh-card-cover-link{position:absolute!important;inset:0!important;z-index:3!important;display:block!important}
.vh-card-img,.vh-card-body{position:relative;z-index:1}.vh-list-ref,.vh-list-featured,.vh-list-discount,.vh-list-ribbon,.vh-payment-badge{position:relative;z-index:4}.vh-card-gallery-button{z-index:6!important}

/* 2026-07-05 final completion / regression-free polish */
.vh-page-hero h1{display:none!important}
.vh-hero-title,
.vh-page-hero .vh-page-title{
    font-family:var(--vh-font-title)!important;
    font-size:clamp(42px,5vw,86px)!important;
    font-weight:800!important;
    line-height:1.02!important;
    color:#fff!important;
    text-align:center!important;
    text-shadow:0 12px 32px rgba(0,0,0,.30)!important;
    position:relative!important;
    z-index:2!important;
}
.vh-location-teaser{
    display:grid;
    grid-template-columns:220px minmax(0,1fr);
    gap:22px;
    align-items:center;
    margin:18px 0 24px;
    padding:18px;
    border:1px solid #e4edf2;
    border-radius:18px;
    background:linear-gradient(135deg,#fff,#f7fcfd);
    box-shadow:0 16px 38px rgba(17,48,68,.07);
}
.vh-location-teaser-media{height:138px;border-radius:14px;overflow:hidden;background:#eef5f6}
.vh-location-teaser-media img{width:100%;height:100%;object-fit:cover;display:block}
.vh-location-teaser-body span{display:inline-flex;align-items:center;gap:8px;text-transform:uppercase;letter-spacing:.18em;color:var(--vh-sea);font-weight:900;font-size:12px;margin-bottom:8px}
.vh-location-teaser-body strong{display:block;font-family:var(--vh-font-title);font-size:clamp(28px,3vw,46px);line-height:1.05;color:var(--vh-ink);margin-bottom:8px}
.vh-location-teaser-body p{margin:0;color:#536475;font-size:17px;line-height:1.6;max-width:820px}
.vh-sidebar-card h3 i + i{display:none!important}
.vh-sidebar-link-list a.vh-location-parent{font-weight:800}
.vh-sidebar-link-list a.vh-location-child{padding-left:28px!important;position:relative;background:#fff}
.vh-sidebar-link-list a.vh-location-child:before{content:'';position:absolute;left:12px;top:50%;width:8px;height:1px;background:#99b7bf}
.vh-sidebar-link-list a.vh-location-level-1{padding-left:42px!important}
.vh-sidebar-link-list a.vh-location-level-1:before{left:20px;width:10px}
.vh-nav-inner{display:grid!important;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr)!important;gap:24px!important}
.vh-nav-links-main{justify-content:flex-start!important;gap:28px!important}
.vh-nav-utilities{justify-content:flex-end!important;gap:14px!important;flex-wrap:nowrap!important;min-width:0!important}
.vh-lang{display:inline-flex!important;gap:8px!important;align-items:center!important;flex:0 0 auto!important;white-space:nowrap!important}
.vh-lang a{width:44px!important;height:44px!important;min-width:44px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;border-radius:999px!important;line-height:1!important;font-size:14px!important;font-weight:900!important;padding:0!important}
.vh-currency-select{min-width:134px!important;height:52px!important;border-radius:999px!important;font-weight:900!important}
.vh-btn.vh-btn-light{white-space:nowrap!important}
.vh-payment-plan-card .vh-payment-grid a{transition:.18s ease transform,.18s ease box-shadow}.vh-payment-plan-card .vh-payment-grid a:hover{transform:translateY(-1px);box-shadow:0 10px 20px rgba(17,48,68,.12)}
.vh-card-gallery-button{pointer-events:auto!important}
.vh-card-cover-link{pointer-events:auto}.vh-card-gallery-button{z-index:9!important}
.vh-quick-gallery-modal .vh-gallery-modal-dialog{width:min(980px,94vw);max-height:92vh}.vh-quick-gallery-modal .vh-gallery-modal-main img{max-height:70vh;object-fit:contain;background:#071926}
@media(max-width:1180px){.vh-nav-inner{grid-template-columns:auto 1fr auto!important}.vh-nav-links-main{display:none!important}.vh-menu-toggle{display:flex!important}}
@media(max-width:760px){.vh-location-teaser{grid-template-columns:1fr;padding:14px}.vh-location-teaser-media{height:190px}.vh-page-hero .vh-page-title,.vh-hero-title{font-size:clamp(36px,12vw,60px)!important}.vh-currency-select{min-width:116px!important}.vh-lang{display:none!important}.vh-nav-utilities .vh-btn{display:none!important}}


/* 2026-07-05 location hierarchy + delivery month polish */
.vh-listing-toolbar-no-tabs{justify-content:flex-end;border-top:0;margin-top:14px}
.vh-listing-toolbar-no-tabs .vh-sort-block{margin-left:auto}
.vh-location-child{padding-left:28px!important;position:relative}
.vh-location-child span:before{content:'–';margin-right:10px;color:rgba(0,134,140,.7)}
.vh-location-teaser{margin:0 0 22px!important}
@media(max-width:760px){.vh-listing-toolbar-no-tabs{justify-content:flex-start}.vh-listing-toolbar-no-tabs .vh-sort-block{margin-left:0}}

/* Location fallback: no image should not leave a blank media column */
.vh-location-teaser.vh-location-teaser-no-media{grid-template-columns:1fr!important}
.vh-location-teaser.vh-location-teaser-no-media .vh-location-teaser-body{max-width:960px!important}


/* 20260707 - Listing cards: image area opens quick gallery, detail link no longer steals image clicks. */
.vh-card{position:relative!important}
.vh-card-cover-link{z-index:4!important}
.vh-list-card-img,.vh-list-card-body{position:relative!important;z-index:3!important}
.vh-list-card-gallery-trigger{
    position:absolute!important;
    inset:0!important;
    z-index:5!important;
    display:block!important;
    width:100%!important;
    height:100%!important;
    padding:0!important;
    margin:0!important;
    border:0!important;
    background:transparent!important;
    cursor:pointer!important;
    overflow:hidden!important;
    text-align:inherit!important;
}
.vh-list-card-gallery-trigger img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    display:block!important;
    transition:transform .25s ease!important;
}
.vh-list-card-gallery-trigger:hover img{transform:scale(1.035)!important}
.vh-list-card-gallery-trigger .vh-card-gallery-button{
    position:absolute!important;
    right:12px!important;
    bottom:12px!important;
    z-index:9!important;
    pointer-events:none!important;
}
.vh-list-ref,.vh-list-featured,.vh-list-discount,.vh-list-ribbon{z-index:10!important;pointer-events:none!important}
.vh-gallery-modal.open{display:flex!important;opacity:1!important;visibility:visible!important}

/* Keep body/detail click working while image opens gallery. */
.vh-list-card .vh-card-cover-link{z-index:4!important}
.vh-list-card .vh-list-card-gallery-trigger{z-index:7!important}
.vh-list-card .vh-card-gallery-button{z-index:9!important}

/* ==== 2026-07-08 Demirağ listing UX + visual polish ==== */
.vh-listing-sidebar{display:flex;flex-direction:column;gap:20px}
.vh-sidebar-card{border:1px solid rgba(17,48,68,.09);border-radius:24px;background:linear-gradient(180deg,#fff 0%,#f9fcfd 100%);box-shadow:0 20px 50px rgba(17,48,68,.07);overflow:hidden}
.vh-sidebar-card>h3,.vh-sidebar-card .vh-sidebar-card-head{padding:22px 24px 0}
.vh-sidebar-card h3{margin:0;color:#0f7f86;font-size:17px;font-weight:900;display:flex;align-items:center;gap:10px}
.vh-sidebar-card-head{display:flex;align-items:center;justify-content:space-between;gap:14px}
.vh-clear-all-link{display:inline-flex;align-items:center;justify-content:center;font-size:12px;font-weight:800;color:#0a8f96;background:#e8f8f9;border:1px solid rgba(10,166,173,.18);padding:7px 12px;border-radius:999px;transition:.2s ease}
.vh-clear-all-link:hover{background:#0a8f96;color:#fff}
.vh-sidebar-hot-buttons{display:grid;gap:14px}
.vh-hot-offer-btn,.vh-office-btn{display:flex;align-items:center;justify-content:center;gap:12px;min-height:62px;border-radius:20px;padding:16px 18px;font-size:18px;font-weight:900;letter-spacing:.02em;text-transform:uppercase;box-shadow:0 18px 38px rgba(17,48,68,.10);transition:transform .18s ease,box-shadow .18s ease,filter .18s ease}
.vh-hot-offer-btn{background:linear-gradient(135deg,#0f8b8d,#0b5e72);color:#fff}
.vh-hot-offer-btn.active{box-shadow:0 18px 40px rgba(11,94,114,.24);filter:saturate(1.08)}
.vh-office-btn{background:linear-gradient(135deg,#d8a01f,#f0bf4f);color:#fff}
.vh-hot-offer-btn:hover,.vh-office-btn:hover{transform:translateY(-2px);box-shadow:0 22px 46px rgba(17,48,68,.16)}
.vh-selected-search{list-style:none;margin:0;padding:18px 24px 24px;display:flex;flex-wrap:wrap;gap:12px}
.vh-selected-search li{display:inline-flex;align-items:center;gap:10px;background:#eef8f9;border:1px solid rgba(10,166,173,.14);border-radius:999px;padding:10px 12px 10px 14px;font-weight:700;color:#113044}
.vh-selected-search li a{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:999px;background:#fff;color:#d45b5b;font-size:18px;line-height:1}
.vh-sidebar-link-list{display:flex;flex-direction:column;padding:18px 18px 20px;gap:10px}
.vh-sidebar-link-list>a{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:14px 16px;border:1px solid #e7eff3;border-radius:18px;background:#fff;color:#173959;transition:.2s ease}
.vh-sidebar-link-list>a span{display:flex;flex-direction:column;gap:3px;font-weight:800}
.vh-sidebar-link-list>a span small{font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#7f95a7}
.vh-sidebar-link-list>a b{min-width:36px;height:36px;display:inline-flex;align-items:center;justify-content:center;border-radius:999px;background:#eff8fa;color:#0a8f96;font-size:13px;font-weight:900}
.vh-sidebar-link-list>a:hover{border-color:rgba(10,166,173,.30);transform:translateX(2px);box-shadow:0 12px 28px rgba(17,48,68,.06)}
.vh-sidebar-link-list>a.active{border-color:#0aa6ad;background:linear-gradient(135deg,#e9f9fa,#fefefe);color:#0d7078;box-shadow:0 16px 34px rgba(10,166,173,.10)}
.vh-sidebar-link-list>a.active b{background:#0aa6ad;color:#fff}
.vh-location-parent{border-left:4px solid rgba(10,166,173,.22)}
.vh-location-child{margin-left:18px;position:relative}
.vh-location-child:before{content:"";position:absolute;left:-12px;top:50%;width:8px;height:1px;background:#9fb4c0}
.vh-location-filter-highlight{margin:18px;display:grid;grid-template-columns:96px minmax(0,1fr);gap:14px;padding:12px;border-radius:20px;background:linear-gradient(135deg,#f1fbfc,#fff);border:1px solid rgba(10,166,173,.14)}
.vh-location-filter-highlight-no-media{grid-template-columns:1fr}
.vh-location-filter-media{height:96px;border-radius:16px;overflow:hidden}
.vh-location-filter-media img{width:100%;height:100%;object-fit:cover}
.vh-location-filter-content{display:flex;flex-direction:column;justify-content:center;gap:8px}
.vh-location-filter-content strong{font-size:18px;line-height:1.2;color:#173959}
.vh-location-filter-breadcrumbs{display:flex;flex-wrap:wrap;gap:8px}
.vh-location-filter-breadcrumbs span{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:#0b8d94;background:#fff;border:1px solid rgba(10,166,173,.14);border-radius:999px;padding:6px 10px}
.vh-location-filter-breadcrumbs span:not(:last-child):after{content:"/";margin-left:2px;color:#adc4cf;font-weight:700}
.vh-sidebar-fields{padding:18px 24px 24px;display:flex;flex-direction:column;gap:14px}
.vh-sidebar-fields select,.vh-sidebar-fields input{height:52px;border-radius:16px;border:1px solid #dce7ed;background:#fff;padding:0 16px;font-size:15px;font-weight:700;color:#173959;outline:none;transition:border-color .2s ease, box-shadow .2s ease}
.vh-sidebar-fields select:focus,.vh-sidebar-fields input:focus{border-color:#0aa6ad;box-shadow:0 0 0 4px rgba(10,166,173,.10)}
.vh-sidebar-two{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.vh-price-filter-block{display:flex;flex-direction:column;gap:14px;padding:16px;border-radius:20px;background:#f6fbfc;border:1px solid rgba(10,166,173,.12)}
.vh-price-filter-head{display:flex;align-items:center;justify-content:space-between;gap:12px;color:#173959}
.vh-price-filter-head strong{font-size:16px;font-weight:900}
.vh-price-filter-head span{font-size:13px;font-weight:800;color:#0a8f96}
.vh-price-slider-wrap{position:relative;height:30px}
.vh-price-slider-track{position:absolute;left:0;right:0;top:50%;height:6px;transform:translateY(-50%);border-radius:999px;background:#dbeaec}
.vh-price-slider-track span{position:absolute;height:100%;border-radius:999px;background:linear-gradient(90deg,#0aa6ad,#d8a01f)}
.vh-price-slider-wrap input[type=range]{position:absolute;left:0;right:0;top:0;bottom:0;width:100%;height:30px;margin:0;background:none;pointer-events:none;-webkit-appearance:none;appearance:none;border:none;padding:0}
.vh-price-slider-wrap input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:18px;height:18px;border-radius:50%;background:#fff;border:3px solid #0aa6ad;box-shadow:0 4px 14px rgba(17,48,68,.15);pointer-events:auto;cursor:pointer}
.vh-price-slider-wrap input[type=range]::-moz-range-thumb{width:18px;height:18px;border-radius:50%;background:#fff;border:3px solid #0aa6ad;box-shadow:0 4px 14px rgba(17,48,68,.15);pointer-events:auto;cursor:pointer}
.vh-payment-plan-card{padding-bottom:4px}
.vh-payment-pill-list{display:flex;flex-wrap:wrap;gap:10px;padding:18px 18px 22px}
.vh-payment-pill{flex:1 1 calc(50% - 10px);min-width:140px;display:flex;align-items:center;justify-content:space-between;gap:10px;padding:14px 16px;border-radius:18px;border:1px solid #e7eff3;background:#fff;color:#173959;box-shadow:0 10px 24px rgba(17,48,68,.03);transition:.2s ease}
.vh-payment-pill-main{font-size:14px;font-weight:900;line-height:1.25}
.vh-payment-pill-meta{display:inline-flex;align-items:center;justify-content:center;min-width:34px;height:34px;padding:0 10px;border-radius:999px;background:#edf8fa;color:#0a8f96;font-size:13px;font-weight:900}
.vh-payment-pill:hover{transform:translateY(-2px);border-color:rgba(10,166,173,.30);box-shadow:0 16px 34px rgba(17,48,68,.08)}
.vh-payment-pill.active{background:linear-gradient(135deg,#0aa6ad,#0a7080);border-color:#0aa6ad;color:#fff;box-shadow:0 18px 38px rgba(10,166,173,.20)}
.vh-payment-pill.active .vh-payment-pill-meta{background:rgba(255,255,255,.18);color:#fff}
.vh-condition-list{display:flex;flex-direction:column;gap:10px;padding:18px 18px 22px}
.vh-condition-list a{display:grid;grid-template-columns:42px minmax(0,1fr) auto;align-items:center;gap:14px;padding:14px 16px;border-radius:18px;border:1px solid #e7eff3;background:#fff;color:#173959;transition:.2s ease}
.vh-condition-list a:hover{border-color:rgba(10,166,173,.30);transform:translateX(2px);box-shadow:0 14px 30px rgba(17,48,68,.06)}
.vh-condition-list a.active{border-color:#0aa6ad;background:linear-gradient(135deg,#e9f9fa,#fff);box-shadow:0 16px 34px rgba(10,166,173,.10)}
.vh-condition-icon{width:42px;height:42px;border-radius:14px;display:inline-flex;align-items:center;justify-content:center;background:#eef8fa;color:#0a8f96;font-size:18px}
.vh-condition-list a.active .vh-condition-icon{background:#0aa6ad;color:#fff}
.vh-condition-text{font-size:15px;font-weight:900}
.vh-condition-list a b{min-width:24px;text-align:right;color:#6a8292}
.vh-condition-list a b:empty{display:none}
.vh-listing-main .vh-location-teaser{margin-bottom:24px;border:1px solid rgba(10,166,173,.12);border-radius:28px;overflow:hidden;box-shadow:0 24px 60px rgba(17,48,68,.08)}
.vh-listing-main .vh-location-teaser-media{min-height:240px}
.vh-listing-main .vh-location-teaser-body{padding:32px;background:linear-gradient(180deg,#fff,#f9fcfd)}
.vh-listing-main .vh-location-teaser-body span{display:inline-flex;align-items:center;gap:8px;margin-bottom:10px;color:#0a8f96;font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.vh-listing-main .vh-location-teaser-body strong{display:block;font-size:34px;line-height:1.08;color:#173959;margin-bottom:14px}
.vh-listing-main .vh-location-teaser-body p{margin:0;color:#567083;font-size:15px;line-height:1.75}
.vh-property-grid{display:grid;grid-template-columns:1fr;gap:22px}
.vh-list-card{display:grid;grid-template-columns:minmax(280px,330px) minmax(0,1fr);gap:0;border-radius:28px;overflow:hidden;border:1px solid rgba(17,48,68,.08);background:#fff;box-shadow:0 26px 60px rgba(17,48,68,.10)}
.vh-list-card-img{position:relative;min-height:100%;background:#dbe8ef}
.vh-list-card-gallery-trigger{position:relative;z-index:3;width:100%;height:100%;border:none;background:none;padding:0;display:block;cursor:pointer}
.vh-list-card-gallery-trigger img{width:100%;height:100%;min-height:320px;object-fit:cover;display:block}
.vh-list-card-badges{position:absolute;left:16px;right:16px;top:16px;display:flex;flex-wrap:wrap;gap:10px;z-index:4}
.vh-list-ref,.vh-list-featured,.vh-list-discount{display:inline-flex;align-items:center;min-height:34px;padding:8px 12px;border-radius:999px;font-size:11px;font-weight:900;letter-spacing:.05em;text-transform:uppercase;box-shadow:0 10px 22px rgba(17,48,68,.16)}
.vh-list-ref{background:rgba(17,48,68,.78);color:#fff}
.vh-list-featured{background:#0aa6ad;color:#fff}
.vh-list-discount{background:#d8a01f;color:#fff}
.vh-card-gallery-button{position:absolute;right:16px;bottom:16px;width:52px;height:52px;border-radius:16px;background:rgba(255,255,255,.92);display:inline-flex;align-items:center;justify-content:center;color:#113044;font-size:18px;box-shadow:0 14px 30px rgba(17,48,68,.16)}
.vh-list-card-body{position:relative;padding:24px 26px;background:linear-gradient(180deg,#fff 0%,#fbfdfe 100%);display:flex;flex-direction:column;gap:18px}
.vh-list-card-body>.vh-card-cover-link{position:absolute;inset:0;z-index:1}
.vh-list-card-body>*:not(.vh-card-cover-link){position:relative;z-index:2}
.vh-list-card-topline{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.vh-listing-location-pill{display:inline-flex;align-items:center;gap:8px;padding:9px 14px;border-radius:999px;background:#eef8fa;color:#0a8f96;font-size:12px;font-weight:900;letter-spacing:.04em;text-transform:uppercase}
.vh-list-card-header{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;align-items:start}
.vh-list-card-title-wrap h3{margin:0 0 10px;font-size:27px;line-height:1.12;color:#173959}
.vh-list-title-link{color:inherit}
.vh-list-title-link:hover{color:#0a8f96}
.vh-list-excerpt{margin:0;color:#667f90;font-size:15px;line-height:1.72}
.vh-list-card-pricebox{display:flex;flex-direction:column;align-items:flex-end;gap:8px;text-align:right;min-width:180px}
.vh-list-card-pricebox .vh-price{display:flex;align-items:center;justify-content:flex-end;font-size:24px;font-weight:900;line-height:1.2;color:#113044}
.vh-old-price-inline{font-size:14px;font-weight:800;color:#9aaab4;text-decoration:line-through}
.vh-discount-inline{display:inline-flex;align-items:center;justify-content:center;padding:7px 10px;border-radius:999px;background:#fff5db;color:#bf7b00;font-size:12px;font-weight:900}
.vh-card-tag-row{display:flex;flex-wrap:wrap;gap:10px}
.vh-card-tag-row span{display:inline-flex;align-items:center;gap:8px;padding:9px 14px;border-radius:999px;border:1px solid #e3ecef;background:#fff;color:#51697b;font-size:12px;font-weight:800}
.vh-list-stat-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.vh-list-stat-card{min-height:64px;display:flex;align-items:center;gap:12px;padding:14px;border-radius:18px;background:#f5f9fb;border:1px solid #e6eef2;color:#173959;font-size:14px;font-weight:800}
.vh-list-stat-card i{width:34px;height:34px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;background:#fff;color:#0a8f96;box-shadow:0 6px 14px rgba(17,48,68,.05)}
.vh-list-stat-highlight{background:#f2fbf4;border-color:#d9efdd;color:#137b54}
.vh-list-stat-highlight i{color:#137b54}
.vh-list-card-footer{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;padding-top:4px}
.vh-list-card-ghost,.vh-list-card-cta{min-width:150px;justify-content:center}
.vh-list-card-ghost{background:#fff}
.vh-listing-summary{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.vh-listing-summary strong{font-size:18px;color:#173959}
.vh-listing-summary span{color:#6d8291;font-weight:700}
.vh-listing-toolbar{margin-bottom:18px}
.vh-top-search-bar{border:1px solid rgba(17,48,68,.09);border-radius:24px;background:#fff;box-shadow:0 18px 50px rgba(17,48,68,.06)}
.vh-top-search-bar input{height:62px;border:none;border-radius:24px 0 0 24px;padding:0 24px;font-size:15px;font-weight:700;color:#173959}
.vh-top-search-bar button{min-width:150px;border-radius:18px;margin:8px}
@media (max-width: 1199px){
  .vh-list-card{grid-template-columns:minmax(240px,300px) minmax(0,1fr)}
  .vh-list-stat-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 991px){
  .vh-list-card{grid-template-columns:1fr}
  .vh-list-card-gallery-trigger img{min-height:280px}
  .vh-list-card-header{grid-template-columns:1fr}
  .vh-list-card-pricebox{align-items:flex-start;text-align:left;min-width:0}
  .vh-payment-pill{flex-basis:100%}
}
@media (max-width: 767px){
  .vh-top-search-bar{display:flex;flex-direction:column;padding:10px}
  .vh-top-search-bar input{border-radius:18px;height:54px;padding:0 16px}
  .vh-top-search-bar button{margin:0;border-radius:16px;height:50px}
  .vh-sidebar-card>h3,.vh-sidebar-card .vh-sidebar-card-head{padding-left:18px;padding-right:18px}
  .vh-sidebar-fields,.vh-selected-search,.vh-payment-pill-list,.vh-condition-list,.vh-sidebar-link-list{padding-left:18px;padding-right:18px}
  .vh-location-filter-highlight{margin-left:18px;margin-right:18px;grid-template-columns:1fr}
  .vh-location-filter-media{height:180px}
  .vh-list-card-body{padding:20px}
  .vh-list-card-title-wrap h3{font-size:22px}
  .vh-list-stat-grid{grid-template-columns:1fr}
  .vh-list-card-footer{flex-direction:column;align-items:stretch}
  .vh-list-card-ghost,.vh-list-card-cta{width:100%}
  .vh-sidebar-two{grid-template-columns:1fr}
  .vh-hot-offer-btn,.vh-office-btn{font-size:16px;min-height:58px}
  .vh-listing-main .vh-location-teaser-body{padding:24px}
  .vh-listing-main .vh-location-teaser-body strong{font-size:28px}
}

/* ==== 2026-07-08 detail modal + card alignment fixes ==== */
.vh-contact-modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;padding:24px;background:rgba(6,22,35,.66);backdrop-filter:blur(4px);z-index:9999}
.vh-contact-modal.is-open{display:flex}
.vh-contact-modal-dialog{position:relative;width:min(980px,100%);max-height:calc(100vh - 48px);overflow:auto;border-radius:28px;background:#fff;box-shadow:0 30px 80px rgba(0,0,0,.28)}
.vh-contact-modal-close{position:absolute;right:18px;top:18px;width:42px;height:42px;border:none;border-radius:999px;background:#eef8fa;color:#0a8f96;font-size:28px;line-height:1;cursor:pointer;z-index:2}
.vh-contact-modal-grid{display:grid;grid-template-columns:minmax(280px,360px) minmax(0,1fr)}
.vh-contact-modal-copy{padding:42px 34px;background:linear-gradient(135deg,#0f7f86,#59b6e8);color:#fff}
.vh-contact-modal-copy .vh-eyebrow,.vh-contact-modal-copy .vh-title,.vh-contact-modal-copy .vh-lead{color:#fff}
.vh-contact-modal-source{margin-top:24px;padding:16px 18px;border-radius:18px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.22)}
.vh-contact-modal-source strong{display:block;font-size:20px;line-height:1.3;margin-bottom:10px}
.vh-contact-modal-source div{display:flex;flex-wrap:wrap;gap:10px}
.vh-contact-modal-source span{display:inline-flex;align-items:center;padding:7px 12px;border-radius:999px;background:rgba(255,255,255,.14);font-size:12px;font-weight:900;letter-spacing:.05em;text-transform:uppercase}
.vh-contact-modal-form{padding:34px}
.vh-contact-modal .vh-form{background:#fff;box-shadow:none}
.vh-pd-btn{border:none;cursor:pointer}

.vh-list-card{display:grid!important;grid-template-columns:minmax(280px,340px) minmax(0,1fr)!important;grid-template-rows:auto auto!important;gap:0!important;border-radius:26px!important;overflow:hidden!important;background:#fff!important;border:1px solid rgba(17,48,68,.08)!important;box-shadow:0 24px 60px rgba(17,48,68,.09)!important}
.vh-list-card-wide .vh-list-card-img{grid-column:1;grid-row:1}
.vh-list-card-wide .vh-list-card-body{grid-column:2;grid-row:1;padding:24px 26px 20px!important}
.vh-list-card-bottom-bar{grid-column:1 / -1;grid-row:2;display:flex;align-items:center;gap:22px;flex-wrap:wrap;padding:16px 22px;background:#f4f7f8;border-top:1px solid #e1eaee}
.vh-list-bottom-item{display:inline-flex;align-items:center;gap:10px;color:#355165;font-size:15px;font-weight:800}
.vh-list-bottom-item i{color:#0a8f96;font-size:18px}
.vh-list-card-topline{align-items:flex-start!important}
.vh-payment-badge{max-width:100%;white-space:normal!important;text-align:center;border-radius:999px!important;padding:10px 14px!important;line-height:1.2;display:inline-flex;justify-content:center}
.vh-list-card-header{grid-template-columns:minmax(0,1fr) auto!important;gap:20px!important}
.vh-list-card-title-wrap{min-width:0}
.vh-list-card-title-wrap h3{font-size:26px!important;line-height:1.15!important;margin-bottom:10px!important}
.vh-card-tag-row{display:flex!important;flex-wrap:wrap!important;gap:8px!important;margin:0 0 12px!important;max-width:100%}
.vh-card-tag-row span{max-width:100%;word-break:break-word;text-align:center;line-height:1.25;padding:8px 12px!important}
.vh-list-excerpt{margin:0!important;color:#5b7283!important;font-size:15px!important;line-height:1.7!important}
.vh-list-card-pricebox{min-width:170px;max-width:220px}
.vh-list-card-pricebox .vh-price{word-break:break-word}
.vh-list-stat-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:18px}
.vh-list-stat-card{min-width:0}
.vh-list-stat-card span{min-width:0;word-break:break-word}
.vh-list-card-footer{margin-top:18px}
.vh-list-card-badges{align-items:flex-start}
.vh-list-ref,.vh-list-featured,.vh-list-discount{white-space:normal!important;text-align:center}

.vh-related-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:22px!important}
.vh-related-grid .vh-list-card{grid-template-columns:1fr!important;grid-template-rows:auto auto auto!important;height:100%}
.vh-related-grid .vh-list-card .vh-list-card-img{grid-column:1;grid-row:1;height:240px!important}
.vh-related-grid .vh-list-card .vh-list-card-gallery-trigger,
.vh-related-grid .vh-list-card .vh-list-card-gallery-trigger img{height:100%}
.vh-related-grid .vh-list-card .vh-list-card-body{grid-column:1;grid-row:2;padding:20px!important}
.vh-related-grid .vh-list-card .vh-list-card-bottom-bar{grid-column:1;grid-row:3;padding:14px 18px;gap:12px}
.vh-related-grid .vh-list-card .vh-list-card-header{grid-template-columns:1fr!important}
.vh-related-grid .vh-list-card .vh-list-card-pricebox{align-items:flex-start;text-align:left;max-width:none;min-width:0}
.vh-related-grid .vh-list-card .vh-list-card-title-wrap h3{font-size:22px!important}
.vh-related-grid .vh-list-card .vh-list-excerpt{font-size:14px!important}
.vh-related-grid .vh-list-card .vh-list-stat-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.vh-related-grid .vh-list-card .vh-list-card-footer{flex-direction:column;align-items:stretch}
.vh-related-grid .vh-list-card .vh-list-card-ghost,.vh-related-grid .vh-list-card .vh-list-card-cta{width:100%}

@media (max-width: 1280px){
  .vh-related-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media (max-width: 991px){
  .vh-contact-modal-grid{grid-template-columns:1fr}
  .vh-list-card{grid-template-columns:1fr!important}
  .vh-list-card-wide .vh-list-card-img,.vh-list-card-wide .vh-list-card-body{grid-column:1}
  .vh-list-card-wide .vh-list-card-img{grid-row:1;height:290px!important}
  .vh-list-card-wide .vh-list-card-gallery-trigger,.vh-list-card-wide .vh-list-card-gallery-trigger img{height:100%}
  .vh-list-card-wide .vh-list-card-body{grid-row:2;padding:20px!important}
  .vh-list-card-bottom-bar{grid-row:3}
  .vh-list-card-header{grid-template-columns:1fr!important}
  .vh-list-card-pricebox{align-items:flex-start;text-align:left;min-width:0;max-width:none}
  .vh-list-stat-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 767px){
  .vh-contact-modal{padding:14px}
  .vh-contact-modal-copy,.vh-contact-modal-form{padding:24px 20px}
  .vh-list-card-bottom-bar{padding:14px 16px;gap:10px}
  .vh-list-bottom-item{font-size:13px}
  .vh-related-grid,.vh-list-stat-grid{grid-template-columns:1fr!important}
}

/* ==== 2026-07-08 vertical card final tuning ==== */
.vh-listing-main .vh-property-grid,
.vh-related-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:22px!important}
.vh-listing-main .vh-property-grid .vh-vertical-card,
.vh-related-grid .vh-vertical-card{display:flex!important;flex-direction:column!important;height:100%!important;border-radius:26px!important;overflow:hidden!important;background:#fff!important;border:1px solid rgba(17,48,68,.09)!important;box-shadow:0 22px 52px rgba(17,48,68,.08)!important}
.vh-vertical-card-media{position:relative;height:250px;background:#dce7ed}
.vh-vertical-card-media .vh-list-card-gallery-trigger{width:100%;height:100%;display:block;border:none;background:none;padding:0;cursor:pointer}
.vh-vertical-card-media .vh-list-card-gallery-trigger img{width:100%;height:100%;object-fit:cover;display:block}
.vh-vertical-card-badges{position:absolute;left:14px;right:14px;top:14px;display:flex;flex-wrap:wrap;gap:8px;align-items:flex-start;z-index:4}
.vh-vertical-card .vh-list-ref,.vh-vertical-card .vh-list-featured,.vh-vertical-card .vh-list-discount{padding:7px 11px!important;font-size:11px!important;line-height:1.2!important;border-radius:999px!important;white-space:normal!important}
.vh-vertical-card .vh-card-gallery-button{right:14px;bottom:14px;width:48px;height:48px;border-radius:15px}
.vh-vertical-card-body{display:flex;flex-direction:column;gap:14px;padding:18px 18px 20px;flex:1}
.vh-vertical-card-topline{display:flex;flex-direction:column;align-items:flex-start;gap:10px}
.vh-vertical-card .vh-listing-location-pill{font-size:12px!important;padding:9px 12px!important;line-height:1.25!important}
.vh-vertical-card .vh-payment-badge{font-size:12px!important;padding:8px 12px!important;align-self:flex-start;line-height:1.2!important;max-width:100%}
.vh-vertical-card-header{display:flex;flex-direction:column;gap:10px}
.vh-vertical-card-title-block h3{margin:0!important;font-size:21px!important;line-height:1.25!important;color:#173959}
.vh-vertical-card .vh-list-excerpt{font-size:14px!important;line-height:1.6!important;color:#61798a!important;margin:8px 0 0!important}
.vh-vertical-card-pricebox{display:flex;flex-direction:column;gap:4px;align-items:flex-start;text-align:left}
.vh-vertical-card .vh-price{font-size:18px!important;line-height:1.25!important;font-weight:900;color:#113044}
.vh-vertical-card .vh-old-price-inline{font-size:12px!important}
.vh-card-tag-row-compact{display:flex!important;flex-wrap:wrap!important;gap:8px!important;margin:0!important}
.vh-card-tag-row-compact span{padding:7px 11px!important;border-radius:999px!important;background:#f5f9fb!important;border:1px solid #dce8ee!important;color:#486173!important;font-size:12px!important;font-weight:800!important;line-height:1.2!important}
.vh-vertical-card-stats{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.vh-vertical-card .vh-list-stat-card{min-height:58px!important;padding:12px!important;border-radius:16px!important;font-size:13px!important;line-height:1.35!important}
.vh-vertical-card .vh-list-stat-card i{width:30px;height:30px;font-size:14px}
.vh-vertical-card .vh-list-stat-card span{word-break:break-word}
.vh-vertical-card-footer{margin-top:auto;padding-top:4px}
.vh-vertical-card-footer .vh-list-card-cta{width:100%;justify-content:center;min-width:0!important;height:48px;border-radius:999px}
.vh-vertical-card .vh-btn.vh-btn-primary{font-size:16px!important}
.vh-related-section .vh-title{margin-bottom:16px}

@media (max-width: 1280px){
  .vh-listing-main .vh-property-grid,
  .vh-related-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media (max-width: 767px){
  .vh-listing-main .vh-property-grid,
  .vh-related-grid{grid-template-columns:1fr!important}
  .vh-vertical-card-media{height:230px}
  .vh-vertical-card-title-block h3{font-size:19px!important}
}

/* ==== 2026-07-08 view switch + card clickable final ==== */
.vh-listing-toolbar{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.vh-view-mode-switch{display:flex;align-items:center;gap:10px;padding:8px;border-radius:999px;background:#f3f8fa;border:1px solid rgba(17,48,68,.08)}
.vh-view-mode-btn{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border-radius:999px;color:#476273;font-size:13px;font-weight:900;transition:.2s ease}
.vh-view-mode-btn i{font-size:14px}
.vh-view-mode-btn.active{background:linear-gradient(135deg,#0aa6ad,#55b8e9);color:#fff;box-shadow:0 10px 25px rgba(10,166,173,.22)}

.vh-property-grid.vh-property-grid-vertical{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:22px!important}
.vh-property-grid.vh-property-grid-horizontal{display:grid!important;grid-template-columns:1fr!important;gap:22px!important}
.vh-property-grid.vh-property-grid-horizontal .vh-vertical-card{display:none!important}
.vh-property-grid.vh-property-grid-vertical .vh-horizontal-card{display:none!important}

.vh-vertical-card,.vh-horizontal-card{position:relative!important}
.vh-vertical-card .vh-card-cover-link,.vh-horizontal-card .vh-card-cover-link{position:absolute!important;inset:0!important;display:block!important;z-index:2!important}
.vh-vertical-card .vh-list-card-gallery-trigger,.vh-horizontal-card .vh-list-card-gallery-trigger{position:relative;z-index:6}
.vh-vertical-card .vh-vertical-card-badges,.vh-horizontal-card .vh-horizontal-card-badges{position:absolute;z-index:6}
.vh-vertical-card .vh-card-gallery-button,.vh-horizontal-card .vh-card-gallery-button{z-index:7!important}

.vh-vertical-card{display:flex!important;flex-direction:column!important;height:100%!important;border-radius:26px!important;overflow:hidden!important;background:#fff!important;border:1px solid rgba(17,48,68,.09)!important;box-shadow:0 22px 52px rgba(17,48,68,.08)!important}
.vh-vertical-card-media{position:relative;height:245px;background:#dce7ed}
.vh-vertical-card-media .vh-list-card-gallery-trigger{width:100%;height:100%;display:block;border:none;background:none;padding:0;cursor:pointer}
.vh-vertical-card-media .vh-list-card-gallery-trigger img{width:100%;height:100%;object-fit:cover;display:block}
.vh-vertical-card-badges{left:14px;right:14px;top:14px;display:flex;flex-wrap:wrap;gap:8px;align-items:flex-start}
.vh-vertical-card .vh-list-ref,.vh-vertical-card .vh-list-featured,.vh-vertical-card .vh-list-discount,.vh-horizontal-card .vh-list-ref,.vh-horizontal-card .vh-list-featured,.vh-horizontal-card .vh-list-discount{padding:7px 11px!important;font-size:11px!important;line-height:1.2!important;border-radius:999px!important;white-space:normal!important}
.vh-vertical-card .vh-card-gallery-button,.vh-horizontal-card .vh-card-gallery-button{right:14px;bottom:14px;width:48px;height:48px;border-radius:15px}
.vh-vertical-card-body{display:flex;flex-direction:column;gap:14px;padding:18px 18px 20px;flex:1}
.vh-vertical-card-topline{display:flex;flex-direction:column;align-items:flex-start;gap:10px}
.vh-vertical-card .vh-listing-location-pill,.vh-horizontal-card .vh-listing-location-pill{font-size:12px!important;padding:9px 12px!important;line-height:1.25!important}
.vh-vertical-card .vh-payment-badge,.vh-horizontal-card .vh-payment-badge{font-size:12px!important;padding:8px 12px!important;align-self:flex-start;line-height:1.2!important;max-width:100%}
.vh-vertical-card-header{display:flex;flex-direction:column;gap:10px}
.vh-vertical-card-title-block h3,.vh-horizontal-card-title-block h3{margin:0!important;font-size:21px!important;line-height:1.25!important;color:#173959}
.vh-vertical-card .vh-list-excerpt,.vh-horizontal-card .vh-list-excerpt{font-size:14px!important;line-height:1.6!important;color:#61798a!important;margin:8px 0 0!important}
.vh-vertical-card-pricebox,.vh-horizontal-card-pricebox{display:flex;flex-direction:column;gap:4px;align-items:flex-start;text-align:left}
.vh-vertical-card .vh-price,.vh-horizontal-card .vh-price{font-size:18px!important;line-height:1.25!important;font-weight:900;color:#113044}
.vh-vertical-card .vh-old-price-inline,.vh-horizontal-card .vh-old-price-inline{font-size:12px!important}
.vh-card-tag-row-compact{display:flex!important;flex-wrap:wrap!important;gap:8px!important;margin:0!important}
.vh-card-tag-row-compact span{padding:7px 11px!important;border-radius:999px!important;background:#f5f9fb!important;border:1px solid #dce8ee!important;color:#486173!important;font-size:12px!important;font-weight:800!important;line-height:1.2!important}
.vh-vertical-card-stats{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.vh-vertical-card-stats-project{grid-template-columns:repeat(2,minmax(0,1fr))}
.vh-vertical-card .vh-list-stat-card,.vh-horizontal-card .vh-list-stat-card{min-height:58px!important;padding:12px!important;border-radius:16px!important;font-size:13px!important;line-height:1.35!important}
.vh-vertical-card .vh-list-stat-card i,.vh-horizontal-card .vh-list-stat-card i{width:30px;height:30px;font-size:14px}
.vh-vertical-card.vh-vertical-card-compact .vh-vertical-card-media{height:220px}
.vh-vertical-card.vh-vertical-card-compact .vh-vertical-card-title-block h3{font-size:19px!important}
.vh-vertical-card.vh-vertical-card-compact .vh-vertical-card-body{padding:16px}
.vh-vertical-card.vh-vertical-card-compact .vh-vertical-card-stats{grid-template-columns:1fr}

.vh-horizontal-card{display:grid!important;grid-template-columns:320px minmax(0,1fr)!important;gap:0!important;overflow:hidden!important;border-radius:26px!important;background:#fff!important;border:1px solid rgba(17,48,68,.09)!important;box-shadow:0 22px 52px rgba(17,48,68,.08)!important}
.vh-horizontal-card-media{position:relative;min-height:100%;background:#dce7ed}
.vh-horizontal-card-media .vh-list-card-gallery-trigger{width:100%;height:100%;display:block;border:none;background:none;padding:0;cursor:pointer}
.vh-horizontal-card-media .vh-list-card-gallery-trigger img{width:100%;height:100%;min-height:300px;object-fit:cover;display:block}
.vh-horizontal-card-badges{left:14px;right:14px;top:14px;display:flex;flex-wrap:wrap;gap:8px;align-items:flex-start}
.vh-horizontal-card-body{display:flex;flex-direction:column;gap:16px;padding:22px 24px}
.vh-horizontal-card-topline{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;flex-wrap:wrap}
.vh-horizontal-card-header{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;align-items:start}
.vh-horizontal-card-pricebox{min-width:170px}
.vh-horizontal-card-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}
.vh-horizontal-card-stats-project{grid-template-columns:repeat(3,minmax(0,1fr))}

.vh-related-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:22px!important}
.vh-related-grid .vh-horizontal-card{display:none!important}
.vh-related-grid .vh-card-cover-link{position:absolute!important;inset:0!important;z-index:2!important}

@media (max-width: 1500px){
  .vh-property-grid.vh-property-grid-vertical{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media (max-width: 1199px){
  .vh-horizontal-card{grid-template-columns:260px minmax(0,1fr)!important}
  .vh-horizontal-card-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .vh-related-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media (max-width: 991px){
  .vh-listing-toolbar{align-items:flex-start}
  .vh-property-grid.vh-property-grid-vertical,.vh-property-grid.vh-property-grid-horizontal,.vh-related-grid{grid-template-columns:1fr!important}
  .vh-horizontal-card{grid-template-columns:1fr!important}
  .vh-horizontal-card-media .vh-list-card-gallery-trigger img{min-height:240px}
  .vh-horizontal-card-header{grid-template-columns:1fr}
  .vh-horizontal-card-stats,.vh-horizontal-card-stats-project{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 767px){
  .vh-view-mode-switch{width:100%;justify-content:center}
  .vh-view-mode-btn{flex:1;justify-content:center}
  .vh-vertical-card-media{height:220px}
  .vh-vertical-card-title-block h3,.vh-horizontal-card-title-block h3{font-size:19px!important}
  .vh-vertical-card-stats,.vh-horizontal-card-stats,.vh-horizontal-card-stats-project{grid-template-columns:1fr!important}
}

/* ==== 2026-07-08 max two cards per row fix ==== */
.vh-listing-main .vh-property-grid.vh-property-grid-vertical,
.vh-related-grid{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
}
.vh-listing-main .vh-property-grid.vh-property-grid-vertical .vh-vertical-card,
.vh-related-grid .vh-vertical-card{
  max-width:none!important;
}
.vh-vertical-card .vh-list-stat-card span,
.vh-horizontal-card .vh-list-stat-card span{
  word-break:normal!important;
  overflow-wrap:normal!important;
  hyphens:none!important;
}
.vh-vertical-card .vh-listing-location-pill{
  max-width:100%;
  overflow-wrap:anywhere;
}
@media (max-width: 991px){
  .vh-listing-main .vh-property-grid.vh-property-grid-vertical,
  .vh-related-grid{
    grid-template-columns:1fr!important;
  }
}

/* ==== 2026-07-08 detail improvements: related 3-col, ribbons, citizenship, overview ==== */
.vh-detail-related-grid{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
}
.vh-detail-related-grid .vh-vertical-card,
.vh-detail-related-grid .vh-horizontal-card{
  max-width:none!important;
}
.vh-image-ribbon-stack{
  position:absolute;
  left:16px;
  bottom:16px;
  display:flex;
  flex-direction:column;
  gap:8px;
  z-index:7;
  max-width:calc(100% - 92px);
}
.vh-image-ribbon{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(10, 130, 145, 0.92);
  color:#fff;
  font-size:13px;
  font-weight:800;
  line-height:1.15;
  box-shadow:0 10px 24px rgba(8,50,74,.22);
}
.vh-image-ribbon.is-citizenship{
  background:rgba(39, 154, 68, 0.96);
}
.vh-overview-extra-section{
  margin:22px 0 2px;
}
.vh-overview-extra-section.has-inline-title{
  margin-top:28px;
}
.vh-overview-extra-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.vh-overview-extra-item{
  background:#f8fbfd;
  border:1px solid rgba(18,63,88,.08);
  border-radius:16px;
  padding:13px 16px;
  box-shadow:none;
  min-height:unset;
  display:grid;
  grid-template-columns:minmax(140px,.95fr) minmax(0,1.05fr);
  align-items:center;
  gap:14px;
}
.vh-overview-extra-item span{
  font-size:12px;
  font-weight:800;
  color:#5f7890;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.vh-overview-extra-item strong{
  font-size:15px;
  line-height:1.45;
  color:#183a59;
  text-align:right;
}
.vh-badge-citizenship{
  text-decoration:none;
}
.vh-citizenship-page{
  display:flex;
  flex-direction:column;
  gap:32px;
}
.vh-citizenship-hero-card,
.vh-citizenship-panel{
  background:#fff;
  border-radius:26px;
  border:1px solid rgba(18,63,88,.08);
  box-shadow:0 18px 40px rgba(8,50,74,.06);
}
.vh-citizenship-hero-card{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(260px,.95fr);
  gap:24px;
  padding:28px;
}
.vh-citizenship-cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.vh-citizenship-stat-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.vh-citizenship-stat-card{
  background:linear-gradient(180deg,#f4fbfc 0%,#eef7fa 100%);
  border:1px solid rgba(16,156,176,.12);
  border-radius:20px;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.vh-citizenship-stat-card strong{
  font-size:28px;
  line-height:1;
  color:#0e8b9a;
}
.vh-citizenship-stat-card span{
  color:#5f7890;
  font-weight:700;
  font-size:14px;
}
.vh-citizenship-two-col{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.vh-citizenship-panel{
  padding:24px 26px;
}
.vh-citizenship-panel h2{
  margin:0 0 18px;
  font-size:28px;
  color:#173a59;
}
.vh-citizenship-process-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.vh-citizenship-process-card{
  border:1px solid rgba(18,63,88,.08);
  background:linear-gradient(180deg,#fff 0%,#f7fbfd 100%);
  border-radius:20px;
  padding:18px;
  min-height:120px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.vh-citizenship-process-card span{
  font-size:12px;
  letter-spacing:.08em;
  color:#0e8b9a;
  font-weight:800;
}
.vh-citizenship-process-card strong{
  color:#183a59;
  line-height:1.45;
}
.vh-citizenship-official-panel p{
  margin-bottom:14px;
}
@media (max-width: 1199px){
  .vh-detail-related-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media (max-width: 991px){
  .vh-citizenship-hero-card,
  .vh-citizenship-two-col,
  .vh-citizenship-process-grid{grid-template-columns:1fr;}
}
@media (max-width: 767px){
  .vh-detail-related-grid{grid-template-columns:1fr!important;}
  .vh-image-ribbon-stack{left:12px;right:78px;bottom:12px;max-width:none;}
  .vh-image-ribbon{font-size:12px;padding:7px 10px;}
  .vh-overview-extra-grid,
  .vh-citizenship-stat-grid{grid-template-columns:1fr;}
}

/* ==== 2026-07-08 performance/grid/location/admin polish ==== */
.vh-location-child:before,
.vh-location-child span:before{
  display:none!important;
  content:none!important;
}
.vh-location-child{margin-left:0!important;}
.vh-location-tree-card .vh-sidebar-link-list>a span small{display:none!important;}
.vh-location-tree-card .vh-sidebar-link-list>a span{gap:0!important;}

.vh-home-property-grid,
.vh-home-project-grid{
  display:grid!important;
  gap:22px!important;
}
.vh-home-property-grid{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
}
.vh-home-project-grid{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
}
.vh-home-property-grid .vh-vertical-card,
.vh-home-project-grid .vh-vertical-card{
  max-width:none!important;
}
.vh-home-property-grid .vh-horizontal-card,
.vh-home-project-grid .vh-horizontal-card{
  display:none!important;
}

.vh-detail-related-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:22px!important;
}
.vh-detail-related-grid .vh-vertical-card{
  display:flex!important;
}
.vh-detail-related-grid .vh-horizontal-card{
  display:none!important;
}

@media (max-width: 1400px){
  .vh-home-property-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media (max-width: 1199px){
  .vh-home-property-grid,
  .vh-home-project-grid,
  .vh-detail-related-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media (max-width: 767px){
  .vh-home-property-grid,
  .vh-home-project-grid,
  .vh-detail-related-grid{grid-template-columns:1fr!important;}
}

@media (max-width: 860px){
  .vh-overview-extra-grid{grid-template-columns:1fr;}
  .vh-overview-extra-item{grid-template-columns:1fr;gap:4px;}
  .vh-overview-extra-item strong{text-align:left;}
}

/* ==== 2026-07-08 card padding / office panel / location cleanup ==== */
.vh-office-btn{border:0;width:100%;cursor:pointer}
.vh-sidebar-hot-buttons{margin-bottom:14px}
.vh-sidebar-card h3{margin:0;padding:20px 22px 0}
.vh-sidebar-link-list{padding:14px 16px 18px!important;gap:8px!important}
.vh-sidebar-link-list>a{padding:12px 14px!important;border-radius:16px!important}
.vh-location-tree-card h3:before,
.vh-location-tree-card h3::before,
.vh-location-tree-card .vh-sidebar-link-list>a span small,
.vh-location-tree-card .vh-sidebar-link-list>a span:before,
.vh-location-tree-card .vh-location-child:before,
.vh-location-tree-card .vh-location-parent:before{display:none!important;content:none!important}
.vh-location-tree-card .vh-sidebar-link-list>a span{display:block!important;gap:0!important;font-weight:800!important}
.vh-location-tree-card .vh-location-child,
.vh-location-tree-card .vh-location-parent{margin-left:0!important;padding-left:14px!important;border-left:0!important}
.vh-location-tree-card .vh-sidebar-link-list>a b{min-width:44px;height:44px;font-size:18px}
.vh-office-panel{display:grid;gap:14px;margin-bottom:18px;padding:18px;border:1px solid rgba(17,48,68,.09);border-radius:24px;background:linear-gradient(180deg,#ffffff 0%,#f8fbfc 100%);box-shadow:0 16px 34px rgba(17,48,68,.06)}
.vh-office-panel[hidden]{display:none!important}
.vh-office-panel-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}
.vh-office-panel-head h4{margin:0;font-size:22px;color:#163958}
.vh-office-panel-head p{margin:4px 0 0;color:#70808f;font-size:14px}
.vh-office-panel-head a{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:999px;background:#eaf8fa;color:#0a8f96;font-weight:900;white-space:nowrap}
.vh-office-panel-grid{display:grid;grid-template-columns:minmax(0,1fr) 1.2fr;gap:14px}
.vh-office-panel-info{display:grid;gap:12px}
.vh-office-panel-info>div{padding:14px 16px;border-radius:18px;background:#fff;border:1px solid #e6edf2}
.vh-office-panel-info small{display:block;margin-bottom:6px;color:#7f92a3;font-size:12px;font-weight:800;letter-spacing:.05em;text-transform:uppercase}
.vh-office-panel-info strong{display:block;color:#173959;line-height:1.45;font-size:15px}
.vh-office-panel-map{border-radius:18px;overflow:hidden;border:1px solid #e6edf2;background:#fff;min-height:250px}
.vh-office-panel-map iframe{display:block;width:100%;height:100%;min-height:250px;border:0}
.vh-list-card-body{padding:20px 22px 0!important;gap:14px!important}
.vh-vertical-card-body{padding:16px 16px 18px!important;gap:12px!important}
.vh-detail-related-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}
.vh-pd-side-list-compact{margin:18px 0 0;padding:16px 0 0;border-top:1px solid #e7edf2}
.vh-pd-side-list-compact li{font-size:14px;line-height:1.45}
@media (max-width: 1199px){
  .vh-office-panel-grid{grid-template-columns:1fr}
}
@media (max-width: 767px){
  .vh-sidebar-card h3{padding:18px 18px 0}
  .vh-sidebar-link-list{padding:12px 14px 16px!important}
  .vh-office-panel{padding:16px}
}

/* 2026-07 UI improvements */
.vh-nav-item{position:relative;display:flex;align-items:center}
.vh-nav-item>a{display:flex;align-items:center;gap:8px}
.vh-nav-item.has-dropdown>a i{font-size:11px;opacity:.6}
.vh-nav-dropdown{display:none;position:absolute;top:calc(100% + 12px);left:0;min-width:240px;background:#fff;border:1px solid rgba(12,44,75,.08);border-radius:18px;box-shadow:0 20px 60px rgba(13,48,79,.12);padding:10px;z-index:40}
.vh-nav-dropdown .vh-nav-item{width:100%}
.vh-nav-dropdown .vh-nav-item>a{width:100%;padding:10px 12px;border-radius:12px;justify-content:space-between}
.vh-nav-dropdown .vh-nav-item>a:hover{background:#f2f7fb}
.vh-nav-item:hover>.vh-nav-dropdown{display:block}
.vh-nav-dropdown .vh-nav-dropdown{left:calc(100% + 8px);top:0}
.vh-icon-btn{width:48px;height:48px;border-radius:999px;border:1px solid rgba(13,55,90,.08);background:#fff;color:#0e385d;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 8px 30px rgba(15,53,87,.06)}
.vh-nav-utilities{gap:12px;align-items:center}
.vh-mobile-menu-utilities{display:flex;gap:12px;margin-top:20px;flex-wrap:wrap}
.vh-mobile-submenu{padding-left:14px;margin-top:8px;display:grid;gap:6px}
.vh-mobile-menu-item.has-children>a{font-weight:700}
.vh-sidebar-search{margin-bottom:14px}
.vh-location-page-links{margin-top:14px;padding-top:14px;border-top:1px solid rgba(12,54,88,.08)}
.vh-location-page-links strong{display:block;margin-bottom:10px;color:#10395d}
.vh-badge-citizenship,.vh-card-badge-citizenship{max-width:100%;white-space:normal;line-height:1.2;text-align:center}
.vh-overview-extra-section{margin-top:28px}
.vh-overview-table{display:grid;gap:10px}
.vh-overview-table-row{display:grid;grid-template-columns:minmax(180px, 1fr) 1.2fr;gap:18px;align-items:center;padding:16px 18px;border-radius:20px;background:#f8fbfe;border:1px solid rgba(14,56,93,.08)}
.vh-overview-table-key{font-weight:700;color:#6f8295;text-transform:uppercase;font-size:13px;letter-spacing:.02em}
.vh-overview-table-value{font-size:26px;font-weight:800;color:#10395d}
.vh-overview-feature-wrap{margin-top:18px;padding:18px;border:1px solid rgba(14,56,93,.08);background:#fff;border-radius:22px}
.vh-overview-feature-title{font-size:13px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#6f8295;margin-bottom:12px}
.vh-overview-feature-grid .vh-pd-chip{background:#f7fafc}
.vh-gallery-category-nav{display:flex;flex-wrap:wrap;gap:12px;margin:22px 0}
.vh-gallery-category-pill{border:none;border-radius:999px;padding:12px 18px;background:#edf5fa;color:#0f395d;font-weight:700;cursor:pointer}
.vh-gallery-category-pill.active,.vh-gallery-category-pill:hover{background:#0f395d;color:#fff}
.vh-contact-info-panel{background:#fff;border:1px solid rgba(14,56,93,.08);border-radius:26px;padding:28px}
.vh-contact-info-list{display:grid;gap:16px;margin-top:18px}
.vh-map-embed-wrap{border-radius:24px;overflow:hidden;box-shadow:0 18px 50px rgba(17,45,76,.08)}
.vh-gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.vh-gallery-tile{display:block;border-radius:22px;overflow:hidden;background:#eef4f8}
.vh-gallery-tile img{width:100%;height:260px;object-fit:cover;display:block}
.vh-location-page-card{background:#fff;padding:32px;border:1px solid rgba(14,56,93,.08);border-radius:28px;box-shadow:0 18px 40px rgba(17,45,76,.05)}
.vh-contact-modal.is-open{display:flex}
.vh-contact-modal{display:none;position:fixed;inset:0;background:rgba(10,28,44,.6);z-index:1500;align-items:center;justify-content:center;padding:22px}
.vh-contact-modal-dialog{width:min(1080px,100%);max-height:90vh;overflow:auto;background:#fff;border-radius:28px;position:relative;padding:32px;box-shadow:0 30px 90px rgba(0,0,0,.22)}
.vh-contact-modal-close{position:absolute;top:18px;right:18px;width:42px;height:42px;border-radius:999px;border:none;background:#f1f5f9;font-size:28px;cursor:pointer;color:#0f395d}
.vh-contact-modal-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:28px;align-items:start}
.vh-contact-modal-source{margin-top:14px;padding:12px 14px;border-radius:16px;background:#f8fbfd;border:1px solid rgba(14,56,93,.08)}
.vh-contact-modal-source div{display:flex;gap:8px;flex-wrap:wrap;font-size:13px;color:#5e7285;margin-top:4px}
.vh-office-modal-dialog,.vh-search-modal-dialog{width:min(980px,100%)}
.vh-office-modal-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:22px;align-items:start}
.vh-office-modal-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.vh-office-modal-gallery img{width:100%;height:160px;object-fit:cover;border-radius:16px}
.vh-site-search-wrap{display:grid;gap:18px}
.vh-site-search-input{width:100%;height:58px;border-radius:18px;border:1px solid rgba(14,56,93,.12);padding:0 18px;font-size:18px}
.vh-site-search-results{display:grid;gap:10px;max-height:50vh;overflow:auto}
.vh-search-result-item{display:grid;gap:5px;padding:16px 18px;border-radius:18px;border:1px solid rgba(14,56,93,.08);background:#fff;color:#10395d;text-decoration:none}
.vh-search-result-item:hover{background:#f4f8fb}
.vh-search-result-item span,.vh-search-empty{font-size:14px;color:#6a7d90}
.vh-contact-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:32px}
.vh-blog-card{height:100%}
.vh-blog-card .vh-property-card-image{height:250px}
.vh-blog-card .vh-property-card-body{display:grid;gap:12px}
@media (max-width: 991px){
  .vh-nav-dropdown{position:static;display:block;box-shadow:none;border:none;padding:0;margin-top:6px;background:transparent}
  .vh-nav-item:hover>.vh-nav-dropdown{display:block}
  .vh-contact-modal-grid,.vh-office-modal-grid,.vh-contact-grid{grid-template-columns:1fr}
  .vh-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .vh-overview-table-row{grid-template-columns:1fr}
}
@media (max-width: 767px){
  .vh-gallery-grid{grid-template-columns:1fr}
  .vh-gallery-tile img{height:220px}
  .vh-contact-modal-dialog{padding:22px 18px}
}
.vh-home-property-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}

/* ==== 2026-07-10 compact filters, ajax gallery and office map fixes ==== */
.vh-listing-sidebar{gap:12px!important}
.vh-sidebar-search{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:7px!important;padding:8px!important;margin-bottom:10px!important;border-radius:16px!important}
.vh-sidebar-search input{min-width:0!important;height:42px!important;padding:0 12px!important;border-radius:12px!important;font-size:13px!important}
.vh-sidebar-search .vh-btn{height:42px!important;min-height:42px!important;padding:0 13px!important;border-radius:12px!important;font-size:12px!important;gap:6px!important}
.vh-sidebar-hot-buttons{display:grid!important;grid-template-columns:1fr!important;gap:7px!important;margin-bottom:10px!important}
.vh-hot-offer-btn,.vh-office-btn{min-height:44px!important;padding:9px 13px!important;border-radius:14px!important;font-size:13px!important;line-height:1.25!important;gap:8px!important}
.vh-sidebar-card{border-radius:18px!important;margin-bottom:10px!important}
.vh-sidebar-card h3,.vh-sidebar-card-head{padding:14px 15px 0!important}
.vh-sidebar-card h3{font-size:15px!important;line-height:1.3!important;gap:7px!important}
.vh-sidebar-link-list{padding:9px 11px 13px!important;gap:5px!important}
.vh-sidebar-link-list>a{min-height:38px!important;padding:7px 10px!important;border-radius:12px!important;font-size:13px!important;gap:8px!important}
.vh-sidebar-link-list>a b{min-width:32px!important;width:auto!important;height:32px!important;padding:0 8px!important;font-size:12px!important;border-radius:10px!important}
.vh-sidebar-fields{padding:10px 12px 14px!important;gap:9px!important}
.vh-sidebar-fields input,.vh-sidebar-fields select{height:42px!important;min-height:42px!important;padding:0 11px!important;border-radius:11px!important;font-size:13px!important}
.vh-sidebar-fields textarea{padding:10px 11px!important;border-radius:11px!important;font-size:13px!important}
.vh-sidebar-fields>.vh-btn{min-height:42px!important;padding:9px 13px!important;border-radius:12px!important;font-size:13px!important}
.vh-sidebar-two{gap:7px!important}
.vh-price-filter-block{padding:11px!important;border-radius:14px!important;gap:9px!important}
.vh-price-filter-head{margin-bottom:4px!important;font-size:12px!important}
.vh-payment-pill-list{gap:6px!important;padding:10px 12px 14px!important}
.vh-payment-pill{padding:7px 10px!important;border-radius:999px!important;font-size:12px!important;line-height:1.2!important}
.vh-location-filter-highlight{margin:10px 11px 0!important;padding:9px!important;border-radius:14px!important;gap:9px!important}
.vh-location-filter-media{width:64px!important;height:54px!important;border-radius:10px!important}
.vh-location-filter-content strong{font-size:14px!important}
.vh-location-filter-breadcrumbs{gap:4px!important;font-size:10px!important}
.vh-location-page-links{padding:10px 12px 13px!important;margin:0!important}
.vh-location-page-links>strong{font-size:13px!important;margin-bottom:7px!important}
.vh-view-mode-btn,.vh-sort-btn{padding:8px 11px!important;min-height:36px!important;font-size:12px!important;border-radius:10px!important}
.vh-listing-toolbar{gap:10px!important;padding:10px 0!important}
.vh-listing-summary{margin:6px 0 12px!important}
.vh-listing-summary strong{font-size:20px!important}
.vh-listing-summary span{font-size:12px!important}
.vh-image-ribbon-stack{max-width:calc(100% - 28px)!important}
.vh-image-ribbon,.vh-badge-citizenship,.vh-list-stat-highlight span{max-width:100%!important;white-space:normal!important;overflow-wrap:anywhere!important;line-height:1.2!important}
.vh-pd-inline-badges .vh-badge-citizenship{display:inline-flex!important;align-items:center!important;max-width:100%!important;text-align:left!important}
.vh-list-card-gallery-trigger.is-loading:after{content:"";position:absolute;inset:0;margin:auto;width:34px;height:34px;border-radius:50%;border:3px solid rgba(255,255,255,.55);border-top-color:#fff;animation:vhGallerySpin .75s linear infinite;z-index:5}
.vh-list-card-gallery-trigger.is-loading:before{content:"";position:absolute;inset:0;background:rgba(9,37,57,.22);z-index:4}
@keyframes vhGallerySpin{to{transform:rotate(360deg)}}
.vh-office-modal-dialog{width:min(1050px,100%)!important}
.vh-office-modal-grid{grid-template-columns:minmax(260px,.78fr) minmax(360px,1.22fr)!important;gap:18px!important;align-items:stretch!important}
.vh-office-modal-info{display:grid;align-content:start;gap:11px;padding:18px;border:1px solid rgba(14,56,93,.08);border-radius:20px;background:#f8fbfd}
.vh-office-modal-info p{margin:0!important;color:#536b80;line-height:1.5}
.vh-office-modal-info strong{display:block;margin-bottom:3px;color:#123b5d;font-size:12px;text-transform:uppercase;letter-spacing:.04em}
.vh-office-map-link{margin-top:5px!important;width:max-content!important;max-width:100%!important}
.vh-office-modal-map{min-height:330px;border-radius:20px;overflow:hidden;border:1px solid rgba(14,56,93,.08);background:#eef4f8}
.vh-office-modal-map iframe{display:block;width:100%;height:100%;min-height:330px;border:0}
.vh-office-modal-gallery-wrap{margin-top:20px}
.vh-office-modal-gallery-wrap h4{margin:0 0 10px;color:#123b5d;font-size:16px}
.vh-office-modal-gallery{grid-template-columns:repeat(3,minmax(0,1fr))!important}
.vh-office-modal-gallery a{display:block;border-radius:14px;overflow:hidden}
.vh-office-modal-gallery img{height:150px!important;transition:transform .25s ease}
.vh-office-modal-gallery a:hover img{transform:scale(1.035)}
@media(max-width:900px){
  .vh-office-modal-grid{grid-template-columns:1fr!important}
  .vh-office-modal-map,.vh-office-modal-map iframe{min-height:280px}
}
@media(max-width:620px){
  .vh-sidebar-search{grid-template-columns:1fr!important}
  .vh-sidebar-search .vh-btn{width:100%!important}
  .vh-office-modal-gallery{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
.vh-footer-subitem{padding-left:10px;opacity:.82;font-size:.92em}

/* Team page */
.vh-team-page-intro{max-width:900px;margin:0 auto 42px;text-align:center}
.vh-team-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.vh-team-card{background:#fff;border:1px solid rgba(14,56,93,.08);border-radius:28px;overflow:hidden;box-shadow:0 18px 50px rgba(17,45,76,.06);display:flex;flex-direction:column;min-width:0}
.vh-team-card-media{aspect-ratio:4/4.8;background:#edf4f8;overflow:hidden}
.vh-team-card-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease}
.vh-team-card:hover .vh-team-card-media img{transform:scale(1.035)}
.vh-team-card-body{padding:24px;display:flex;flex-direction:column;gap:12px}
.vh-team-card-body h2{margin:0;color:#10395d;font-family:var(--vh-font-title);font-size:30px;line-height:1.05}
.vh-team-card-body p{margin:0;color:#687c8f;line-height:1.65}
.vh-team-languages{display:flex;align-items:flex-start;gap:9px;color:#4f667b;font-size:14px}
.vh-team-languages i{color:#0ea5a8;margin-top:2px}
.vh-team-contact-row{display:flex;gap:10px;flex-wrap:wrap;padding-top:4px}
.vh-team-contact-row a{width:40px;height:40px;border-radius:999px;display:grid;place-items:center;background:#edf7f8;color:#0d7f86;text-decoration:none;transition:.2s}
.vh-team-contact-row a:hover{background:#0d7f86;color:#fff;transform:translateY(-2px)}
.vh-team-bio-details{border-top:1px solid rgba(14,56,93,.08);padding-top:12px;margin-top:2px}
.vh-team-bio-details summary{cursor:pointer;font-weight:800;color:#0f7f86}
.vh-team-bio-details .vh-content{margin-top:12px;font-size:14px}
@media(max-width:1050px){.vh-team-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:680px){.vh-team-grid{grid-template-columns:1fr}}

/* v19 mega menu, blog cards and fixed distance rows */
.vh-nav-item.is-mega{position:static}.vh-nav-item.is-mega>.vh-mega-menu{left:50%;transform:translateX(-50%);top:calc(100% + 10px);width:min(980px,calc(100vw - 48px));display:none;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;padding:18px}.vh-nav-item.is-mega:hover>.vh-mega-menu{display:grid}.vh-mega-menu>.vh-nav-item>a{min-height:58px;padding:13px 15px;border:1px solid rgba(20,55,85,.08);background:#f8fbfd;border-radius:15px;font-weight:700}.vh-mega-menu>.vh-nav-item>a:hover{background:#edf7fa;transform:translateY(-1px)}
.vh-overview-table-key{display:flex;align-items:center;gap:10px}.vh-overview-table-key i{width:34px;height:34px;border-radius:11px;display:inline-flex;align-items:center;justify-content:center;background:#eef7fa;color:#0796a3;flex:0 0 auto}.vh-overview-table-row:not(.has-icon) .vh-overview-table-key{padding-left:0}
.vh-blog-listing-shell{display:grid;grid-template-columns:minmax(0,1fr) 290px;gap:28px;align-items:start}.vh-blog-listing-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:22px}.vh-blog-listing-head .vh-title{margin:5px 0 0}.vh-blog-count{padding:8px 12px;border-radius:999px;background:#eef6f9;color:#23607d;font-size:12px;font-weight:700;white-space:nowrap}.vh-blog-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.vh-blog-card{display:flex;flex-direction:column;background:#fff;border:1px solid rgba(18,56,86,.08);border-radius:22px;overflow:hidden;box-shadow:0 14px 38px rgba(18,47,72,.055);min-width:0}.vh-blog-card-media{position:relative;display:block;height:220px;overflow:hidden;background:#eef3f6}.vh-blog-card-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}.vh-blog-card:hover .vh-blog-card-media img{transform:scale(1.035)}.vh-blog-card-category{position:absolute;left:14px;top:14px;max-width:calc(100% - 28px);padding:7px 11px;border-radius:999px;background:rgba(11,63,88,.9);color:#fff;font-size:11px;font-weight:800;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.vh-blog-card-body{display:flex;flex-direction:column;gap:10px;padding:18px;height:100%}.vh-blog-card-meta{font-size:11px;color:#83909b;display:flex;align-items:center;gap:7px}.vh-blog-card-body h2{font-size:21px;line-height:1.2;margin:0}.vh-blog-card-body h2 a{color:#123c5d;text-decoration:none}.vh-blog-card-body p{margin:0;color:#6d7f8d;font-size:14px;line-height:1.55}.vh-blog-read-more{margin-top:auto;padding-top:4px;display:inline-flex;align-items:center;gap:8px;color:#0c8e99;font-weight:800;font-size:13px;text-decoration:none}.vh-blog-sidebar{position:sticky;top:110px}.vh-blog-filter-card{background:#fff;border:1px solid rgba(18,56,86,.08);border-radius:22px;padding:18px;box-shadow:0 14px 38px rgba(18,47,72,.045)}.vh-blog-filter-head{display:flex;align-items:center;gap:10px;padding-bottom:13px;border-bottom:1px solid rgba(18,56,86,.08)}.vh-blog-filter-head i{color:#0c8e99}.vh-blog-filter-head h3{margin:0;font-size:17px;color:#143b59}.vh-blog-filter-list{display:grid;gap:7px;margin-top:12px}.vh-blog-filter-list a{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:11px 12px;border-radius:13px;color:#476173;text-decoration:none;font-size:13px;font-weight:700}.vh-blog-filter-list a:hover,.vh-blog-filter-list a.active{background:#edf8fa;color:#0b8792}.vh-blog-filter-list i{font-size:10px}
@media(max-width:1350px){.vh-blog-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.vh-nav-item.is-mega>.vh-mega-menu{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:980px){.vh-blog-listing-shell{grid-template-columns:1fr}.vh-blog-sidebar{position:static;order:-1}.vh-nav-item.is-mega{position:relative}.vh-nav-item.is-mega>.vh-mega-menu{position:static;transform:none;width:auto;display:grid!important;grid-template-columns:1fr;padding:0;margin-top:7px}}
@media(max-width:680px){.vh-blog-card-grid{grid-template-columns:1fr}.vh-blog-card-media{height:210px}.vh-blog-listing-head{align-items:flex-start;flex-direction:column}}
.vh-nav-inner{position:relative}

/* v20 mega menu + mobile language hotfix */
.vh-nav-item.is-mega{position:relative}
.vh-nav-item.is-mega>.vh-mega-menu{
    position:absolute;
    left:0;
    transform:none;
    top:calc(100% + 2px);
    width:min(1120px,calc(100vw - 56px));
    display:none;
    grid-template-columns:repeat(3,minmax(220px,1fr));
    gap:16px;
    padding:24px;
    background:rgba(255,255,255,.985);
    border:1px solid rgba(18,56,86,.10);
    border-radius:28px;
    box-shadow:0 28px 80px rgba(16,40,66,.20);
    backdrop-filter:blur(16px);
    z-index:80;
}
.vh-nav-item.is-mega>.vh-mega-menu::before{
    content:'';
    position:absolute;
    left:0;
    right:0;
    top:-18px;
    height:20px;
    background:transparent;
}
.vh-nav-item.is-mega:hover>.vh-mega-menu,
.vh-nav-item.is-mega:focus-within>.vh-mega-menu{display:grid}
.vh-mega-menu>.vh-nav-item{min-width:0}
.vh-mega-menu>.vh-nav-item>a,
.vh-mega-menu .vh-nav-item>a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    min-height:78px;
    padding:18px 20px;
    border:1px solid rgba(20,55,85,.08);
    background:linear-gradient(180deg,#ffffff 0%,#f6fafc 100%);
    border-radius:18px;
    font-weight:800;
    font-size:16px;
    line-height:1.25;
    color:#123c5d !important;
    text-decoration:none;
    box-shadow:0 8px 24px rgba(18,47,72,.04);
    transition:background .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.vh-mega-menu>.vh-nav-item>a::after,
.vh-mega-menu .vh-nav-item>a::after{
    content:'→';
    font-size:15px;
    line-height:1;
    color:#0e93a1;
    flex:0 0 auto;
}
.vh-mega-menu>.vh-nav-item>a:hover,
.vh-mega-menu .vh-nav-item>a:hover{
    background:linear-gradient(180deg,#f2fbfd 0%,#ebf7fb 100%);
    border-color:rgba(14,147,161,.18);
    box-shadow:0 14px 34px rgba(14,147,161,.10);
    transform:translateY(-2px);
}
.vh-mega-menu .vh-nav-item.has-dropdown>a i{display:none}
.vh-mobile-menu-language-wrap{
    margin-top:18px;
    text-align:center;
    display:grid;
    gap:12px;
}
.vh-mobile-menu-language-title{
    color:rgba(255,255,255,.72);
    font-size:13px;
    letter-spacing:.16em;
    font-weight:800;
    text-transform:uppercase;
}
.vh-mobile-menu-language-switcher{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}
.vh-mobile-menu-language-switcher a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:58px;
    padding:11px 16px;
    margin:0;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.28);
    background:rgba(255,255,255,.10);
    color:#fff;
    font-family:var(--vh-font-body);
    font-size:14px;
    font-weight:800;
    text-decoration:none;
}
.vh-mobile-menu-language-switcher a.active{
    background:#fff;
    color:#10395d;
    border-color:#fff;
}
@media(max-width:980px){
  .vh-nav-item.is-mega{position:relative}
  .vh-nav-item.is-mega>.vh-mega-menu{
    position:static;
    left:auto;
    top:auto;
    transform:none;
    width:auto;
    margin-top:10px;
    padding:12px;
    grid-template-columns:1fr;
    border-radius:20px;
    box-shadow:none;
  }
  .vh-nav-item.is-mega>.vh-mega-menu::before{display:none}
  .vh-mega-menu>.vh-nav-item>a,
  .vh-mega-menu .vh-nav-item>a{
    min-height:58px;
    padding:14px 16px;
    font-size:15px;
  }
}

/* v22 location hero and long content */
.vh-location-page-hero{
    background-position:center center;
    background-size:cover;
}
.vh-location-page-hero .vh-page-title{
    width:min(1240px,calc(100% - 48px));
    max-width:100%;
    margin-inline:auto;
    white-space:normal;
    overflow-wrap:anywhere;
    word-break:normal;
    hyphens:auto;
    line-height:1.04!important;
    padding-inline:12px;
}
.vh-location-page-hero .vh-page-title.is-long-title{
    font-size:clamp(38px,4.4vw,72px)!important;
    max-width:1180px;
}
.vh-location-intro{
    margin-top:24px;
    color:#5f7488;
    font-size:18px;
    line-height:1.75;
}
.vh-location-intro p:last-child{margin-bottom:0}
.vh-location-long-description{
    margin-top:28px;
    padding-top:28px;
    border-top:1px solid rgba(14,56,93,.09);
    max-width:none;
}
.vh-location-long-description h2,
.vh-location-long-description h3{
    color:#123c5d;
    font-family:var(--vh-font-title);
}
.vh-location-long-description p,
.vh-location-long-description li{
    color:#5f7488;
    line-height:1.8;
}
.vh-location-long-description img{
    max-width:100%;
    height:auto;
    border-radius:22px;
}
@media(max-width:760px){
  .vh-location-page-hero .vh-page-title,
  .vh-location-page-hero .vh-page-title.is-long-title{
      width:calc(100% - 28px);
      font-size:clamp(32px,10vw,50px)!important;
      line-height:1.08!important;
  }
  .vh-location-intro{font-size:16px}
}


/* v23 mobile menu cleanup */
.vh-mobile-menu{
    align-items:flex-start;
    justify-content:flex-start;
    text-align:left;
    overflow:auto;
    padding:24px 16px 20px;
}
.vh-mobile-menu button[data-menu-close]{
    position:sticky;
    top:8px;
    left:auto;
    align-self:flex-end;
    width:44px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    z-index:2;
}
.vh-mobile-menu-panel{
    width:min(100%, 760px);
    margin:0 auto;
    background:rgba(9,37,58,.18);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:0 22px 60px rgba(0,0,0,.14);
    border-radius:28px;
    backdrop-filter:blur(18px);
    padding:18px;
}
.vh-mobile-menu-list{display:grid;gap:12px}
.vh-mobile-menu-item{
    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;
    background:rgba(255,255,255,.08);
    overflow:hidden;
}
.vh-mobile-menu-row{
    display:flex;
    align-items:center;
    gap:10px;
    padding:0;
}
.vh-mobile-menu .vh-mobile-menu-link{
    display:block;
    flex:1 1 auto;
    color:#fff;
    font-family:var(--vh-font-body);
    font-size:20px;
    line-height:1.3;
    font-weight:800;
    margin:0;
    padding:16px 18px;
    text-decoration:none;
}
.vh-mobile-submenu-toggle{
    position:static !important;
    top:auto !important;
    left:auto !important;
    flex:0 0 auto;
    width:50px;
    height:50px;
    margin-right:10px;
    border:1px solid rgba(255,255,255,.18) !important;
    border-radius:16px;
    background:rgba(255,255,255,.08) !important;
    color:#fff !important;
    font-size:16px !important;
}
.vh-mobile-menu-item.is-open > .vh-mobile-menu-row .vh-mobile-submenu-toggle i{transform:rotate(180deg)}
.vh-mobile-submenu-toggle i{transition:transform .2s ease}
.vh-mobile-submenu{
    display:none;
    gap:10px;
    padding:0 12px 12px;
}
.vh-mobile-menu-item.is-open > .vh-mobile-submenu{display:grid}
.vh-mobile-submenu .vh-mobile-menu-item{
    background:rgba(255,255,255,.06);
    border-color:rgba(255,255,255,.10);
}
.vh-mobile-submenu .vh-mobile-menu-link{
    font-size:17px;
    font-weight:700;
    padding:14px 16px;
}
.vh-mobile-submenu .vh-mobile-submenu .vh-mobile-menu-link{
    font-size:15px;
    padding-left:18px;
}
.vh-mobile-menu-utilities{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:18px;
}
.vh-mobile-menu-utilities .vh-btn{
    width:100%;
    justify-content:center;
    text-align:center;
    min-height:48px;
}
.vh-mobile-menu-language-wrap{
    margin-top:18px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.12);
}
.vh-mobile-menu-language-title{text-align:left}
.vh-mobile-menu-language-switcher{justify-content:flex-start}
@media(max-width:767px){
  .vh-mobile-menu{padding:16px 12px 16px}
  .vh-mobile-menu-panel{padding:14px;border-radius:22px}
  .vh-mobile-menu .vh-mobile-menu-link{font-size:18px;padding:14px 15px}
  .vh-mobile-submenu .vh-mobile-menu-link{font-size:16px;padding:12px 14px}
  .vh-mobile-menu-utilities{grid-template-columns:1fr}
}


/* v24 full-screen mobile navigation */
body.vh-mobile-menu-open{overflow:hidden!important}
.vh-mobile-menu{
    position:fixed!important;
    inset:0!important;
    z-index:2200!important;
    display:none!important;
    width:100vw!important;
    height:100dvh!important;
    min-height:100vh!important;
    padding:0!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    text-align:left!important;
    align-items:stretch!important;
    justify-content:flex-start!important;
    background:linear-gradient(145deg,#087f8d 0%,#32a9c5 100%)!important;
}
.vh-mobile-menu.open{display:block!important}
.vh-mobile-menu button{
    position:static!important;
    inset:auto!important;
    margin:0!important;
    font-size:inherit!important;
    font-family:inherit!important;
}
.vh-mobile-menu > button[data-menu-close]{
    position:fixed!important;
    top:18px!important;
    right:18px!important;
    left:auto!important;
    z-index:4!important;
    width:48px!important;
    height:48px!important;
    padding:0!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    border:1px solid rgba(255,255,255,.30)!important;
    border-radius:999px!important;
    background:rgba(7,42,61,.22)!important;
    color:#fff!important;
    box-shadow:0 10px 28px rgba(4,38,54,.20)!important;
    font-size:34px!important;
    line-height:1!important;
    cursor:pointer!important;
}
.vh-mobile-menu-panel{
    width:100%!important;
    min-height:100dvh!important;
    margin:0!important;
    padding:84px 20px 30px!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    box-shadow:none!important;
    backdrop-filter:none!important;
}
.vh-mobile-menu-list{
    width:min(100%,680px)!important;
    margin:0 auto!important;
    display:grid!important;
    gap:10px!important;
}
.vh-mobile-menu-item{
    width:100%!important;
    margin:0!important;
    overflow:hidden!important;
    border:1px solid rgba(255,255,255,.22)!important;
    border-radius:18px!important;
    background:rgba(255,255,255,.10)!important;
    box-shadow:none!important;
}
.vh-mobile-menu-row{
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
    min-height:62px!important;
}
.vh-mobile-menu .vh-mobile-menu-link{
    flex:1 1 auto!important;
    display:flex!important;
    align-items:center!important;
    min-width:0!important;
    margin:0!important;
    padding:17px 18px!important;
    color:#fff!important;
    font-family:var(--vh-font-body)!important;
    font-size:18px!important;
    line-height:1.25!important;
    font-weight:800!important;
    text-decoration:none!important;
}
.vh-mobile-submenu-toggle{
    flex:0 0 48px!important;
    width:48px!important;
    height:48px!important;
    margin-right:7px!important;
    padding:0!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    border:1px solid rgba(255,255,255,.24)!important;
    border-radius:14px!important;
    background:rgba(255,255,255,.10)!important;
    color:#fff!important;
    cursor:pointer!important;
}
.vh-mobile-submenu-toggle i{font-size:15px!important;transition:transform .2s ease!important}
.vh-mobile-menu-item.is-open>.vh-mobile-menu-row .vh-mobile-submenu-toggle i{transform:rotate(180deg)!important}
.vh-mobile-submenu{
    display:none!important;
    width:100%!important;
    padding:0 10px 10px!important;
    gap:8px!important;
}
.vh-mobile-menu-item.is-open>.vh-mobile-submenu{display:grid!important}
.vh-mobile-submenu .vh-mobile-menu-item{
    border-radius:14px!important;
    border-color:rgba(255,255,255,.16)!important;
    background:rgba(8,54,73,.18)!important;
}
.vh-mobile-submenu .vh-mobile-menu-row{min-height:52px!important}
.vh-mobile-submenu .vh-mobile-menu-link{
    padding:13px 14px!important;
    font-size:15px!important;
    font-weight:700!important;
}
.vh-mobile-menu-actions{
    width:min(100%,680px)!important;
    margin:12px auto 0!important;
    display:grid!important;
    gap:10px!important;
}
.vh-mobile-action{
    width:100%!important;
    min-height:62px!important;
    padding:16px 18px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:14px!important;
    border:1px solid rgba(255,255,255,.22)!important;
    border-radius:18px!important;
    background:rgba(255,255,255,.10)!important;
    color:#fff!important;
    font-size:18px!important;
    font-weight:800!important;
    text-align:left!important;
    cursor:pointer!important;
}
.vh-mobile-action i{font-size:18px!important}
.vh-mobile-menu-language-wrap{
    width:min(100%,680px)!important;
    margin:22px auto 0!important;
    padding-top:20px!important;
    border-top:1px solid rgba(255,255,255,.20)!important;
    display:grid!important;
    gap:12px!important;
}
.vh-mobile-menu-language-title{
    color:rgba(255,255,255,.76)!important;
    font-family:var(--vh-font-body)!important;
    font-size:12px!important;
    line-height:1.2!important;
    letter-spacing:.14em!important;
    font-weight:800!important;
    text-transform:uppercase!important;
}
.vh-mobile-menu-language-switcher{
    display:flex!important;
    justify-content:flex-start!important;
    gap:9px!important;
    flex-wrap:wrap!important;
}
.vh-mobile-menu .vh-mobile-menu-language-switcher a{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    min-width:58px!important;
    height:44px!important;
    margin:0!important;
    padding:0 14px!important;
    border:1px solid rgba(255,255,255,.28)!important;
    border-radius:999px!important;
    background:rgba(255,255,255,.08)!important;
    color:#fff!important;
    font-family:var(--vh-font-body)!important;
    font-size:13px!important;
    font-weight:800!important;
}
.vh-mobile-menu .vh-mobile-menu-language-switcher a.active{
    background:#fff!important;
    color:#10395d!important;
    border-color:#fff!important;
}
@media(max-width:480px){
    .vh-mobile-menu-panel{padding:78px 12px 24px!important}
    .vh-mobile-menu > button[data-menu-close]{top:14px!important;right:14px!important}
    .vh-mobile-menu .vh-mobile-menu-link,
    .vh-mobile-action{font-size:17px!important}
}

/* v25 blog hero localization + regional mega menu */
.vh-blog-page-hero{
    min-height:430px!important;
    height:auto!important;
    padding:145px 28px 110px!important;
    background-position:center!important;
    background-size:cover!important;
}
.vh-blog-page-hero .vh-blog-hero-title{
    width:min(1480px,calc(100% - 40px))!important;
    max-width:100%!important;
    margin-inline:auto!important;
    white-space:normal!important;
    overflow-wrap:break-word!important;
    word-break:normal!important;
    text-wrap:balance;
    hyphens:auto;
    line-height:1.02!important;
    font-size:clamp(48px,5.4vw,88px)!important;
}
.vh-blog-page-hero .vh-blog-hero-title.is-long-title{
    width:min(1320px,calc(100% - 40px))!important;
    font-size:clamp(39px,4.5vw,72px)!important;
    line-height:1.06!important;
}
.vh-blog-page-hero .vh-blog-hero-title.is-very-long-title{
    width:min(1180px,calc(100% - 40px))!important;
    font-size:clamp(32px,3.7vw,58px)!important;
    line-height:1.1!important;
}
.vh-nav-item.is-mega>.vh-mega-menu{
    top:calc(100% + 18px)!important;
    left:0!important;
    transform:none!important;
    width:min(1160px,calc(100vw - 48px))!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:18px!important;
    padding:22px!important;
    align-items:stretch!important;
}
.vh-nav-item.is-mega>.vh-mega-menu::before{
    top:-28px!important;
    height:30px!important;
}
.vh-mega-column{
    min-width:0;
    padding:18px;
    border:1px solid rgba(16,57,88,.08);
    border-radius:22px;
    background:linear-gradient(180deg,#ffffff 0%,#f7fafc 100%);
    box-shadow:0 12px 34px rgba(18,47,72,.05);
}
.vh-mega-column-head{
    display:grid;
    gap:5px;
    margin-bottom:14px;
    padding-bottom:14px;
    border-bottom:1px solid rgba(16,57,88,.08);
}
.vh-mega-column-head span{
    color:#123c5d;
    font-family:var(--vh-font-title);
    font-size:25px;
    font-weight:800;
    line-height:1.1;
}
.vh-mega-column-head small{
    color:#758697;
    font-size:12px;
    line-height:1.45;
    font-weight:600;
}
.vh-mega-column-links{
    display:grid;
    gap:9px;
}
.vh-mega-column-links>.vh-nav-item{
    width:100%;
}
.vh-mega-column-links>.vh-nav-item>a{
    width:100%!important;
    min-height:50px!important;
    padding:12px 13px!important;
    border:1px solid rgba(16,57,88,.07)!important;
    border-radius:14px!important;
    background:#fff!important;
    color:#173f5f!important;
    font-size:13px!important;
    font-weight:800!important;
    box-shadow:none!important;
    transform:none!important;
}
.vh-mega-column-links>.vh-nav-item>a::after{
    content:'→';
    color:#0d9aaa;
    margin-left:auto;
}
.vh-mega-column-links>.vh-nav-item>a:hover{
    background:#eef8fb!important;
    border-color:rgba(13,154,170,.18)!important;
    color:#0b6670!important;
}
.vh-mega-column-alanya{border-top:3px solid #0d9aaa}
.vh-mega-column-antalya{border-top:3px solid #4faed4}
.vh-mega-column-istanbul{border-top:3px solid #183f63}
@media(max-width:1200px){
  .vh-nav-item.is-mega>.vh-mega-menu{
      width:min(980px,calc(100vw - 36px))!important;
      gap:12px!important;
      padding:16px!important;
  }
  .vh-mega-column{padding:14px}
  .vh-mega-column-head span{font-size:22px}
}
@media(max-width:980px){
  .vh-nav-item.is-mega>.vh-mega-menu{
      position:static!important;
      width:auto!important;
      grid-template-columns:1fr!important;
      margin-top:8px!important;
      padding:10px!important;
  }
  .vh-mega-column{padding:12px}
}
@media(max-width:760px){
  .vh-blog-page-hero{
      min-height:300px!important;
      padding:112px 16px 76px!important;
  }
  .vh-blog-page-hero .vh-blog-hero-title,
  .vh-blog-page-hero .vh-blog-hero-title.is-long-title,
  .vh-blog-page-hero .vh-blog-hero-title.is-very-long-title{
      width:calc(100% - 20px)!important;
      font-size:clamp(30px,9.2vw,48px)!important;
      line-height:1.08!important;
  }
}

/* v26 overview cards + private info modal */
.vh-pd-overview-grid-extra{margin-top:14px}
.vh-pd-overview-card.without-icon{padding-left:20px}
.vh-pd-overview-card.without-icon .vh-pd-overview-text{width:100%}
.vh-private-info-modal{position:fixed;inset:0;z-index:1800;display:none;align-items:center;justify-content:center;padding:24px;background:rgba(7,25,40,.66);backdrop-filter:blur(8px)}
.vh-private-info-modal.is-open{display:flex}
.vh-private-info-modal-card{position:relative;width:min(760px,100%);max-height:88vh;overflow:auto;background:linear-gradient(180deg,#fff,#f8fbfd);border:1px solid rgba(18,56,86,.10);border-radius:28px;padding:30px;box-shadow:0 34px 100px rgba(7,25,40,.28)}
.vh-private-info-modal-close{position:absolute;right:18px;top:18px;width:42px;height:42px;border-radius:999px;border:0;background:#edf3f7;color:#173959;font-size:26px;cursor:pointer}
.vh-private-info-modal-head{display:grid;grid-template-columns:auto 1fr;gap:16px;align-items:start;padding-right:48px;margin-bottom:24px}
.vh-private-info-modal-icon{width:54px;height:54px;border-radius:18px;display:grid;place-items:center;background:linear-gradient(135deg,#0f8790,#5ec8e8);color:#fff;font-size:21px;box-shadow:0 12px 26px rgba(15,135,144,.22)}
.vh-private-info-modal-head h3{margin:4px 0 8px;color:#173959;font-size:28px;line-height:1.15}
.vh-private-info-modal-head p{margin:0;color:#6d8092;line-height:1.6}
.vh-private-info-modal-grid{display:grid;gap:10px}
.vh-private-info-modal-row{display:grid;grid-template-columns:minmax(160px,.9fr) minmax(0,1.1fr);gap:20px;align-items:center;padding:16px 18px;border-radius:17px;background:#fff;border:1px solid rgba(18,56,86,.08)}
.vh-private-info-modal-row span{color:#6a7d8f;font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:.03em}
.vh-private-info-modal-row strong{color:#173959;font-size:16px;text-align:right;overflow-wrap:anywhere}
.vh-private-info-open{margin-top:6px}
@media(max-width:760px){.vh-private-info-modal{padding:14px}.vh-private-info-modal-card{padding:22px 16px;border-radius:22px}.vh-private-info-modal-head{grid-template-columns:1fr;padding-right:42px}.vh-private-info-modal-row{grid-template-columns:1fr;gap:6px}.vh-private-info-modal-row strong{text-align:left}.vh-pd-overview-grid-extra{grid-template-columns:1fr}}

/* v27 compact pricing + viewport private modal */
.vh-payment-compact{
    margin:28px 0;
    border:1px solid rgba(18,56,86,.09);
    border-radius:22px;
    background:#fff;
    box-shadow:0 14px 36px rgba(17,48,68,.055);
    overflow:hidden;
}
.vh-payment-compact-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:18px 20px;
    background:linear-gradient(180deg,#ffffff 0%,#f8fbfd 100%);
    border-bottom:1px solid rgba(18,56,86,.08);
}
.vh-payment-compact-head h2{
    margin:4px 0 0;
    color:#123c5d;
    font-family:var(--vh-font-title);
    font-size:28px;
    line-height:1.1;
}
.vh-payment-inline-bar{
    display:inline-flex;
    align-items:center;
    gap:10px;
    min-height:38px;
    padding:8px 13px;
    border-radius:999px;
    background:#eaf8f9;
    border:1px solid rgba(8,151,158,.14);
    color:#0b7e86;
    font-size:13px;
    font-weight:800;
    white-space:nowrap;
}
.vh-payment-inline-bar i{font-size:15px}
.vh-payment-compact-table-wrap{overflow-x:auto}
.vh-payment-compact-table{width:100%;border-collapse:collapse;min-width:760px}
.vh-payment-compact-table thead th{
    padding:12px 14px;
    background:#0e9096;
    color:#fff;
    text-align:left;
    font-size:11px;
    letter-spacing:.05em;
    text-transform:uppercase;
    white-space:nowrap;
}
.vh-payment-compact-table tbody td{
    padding:14px;
    border-bottom:1px solid rgba(18,56,86,.07);
    color:#324f67;
    font-size:14px;
    vertical-align:middle;
}
.vh-payment-compact-table tbody tr:last-child td{border-bottom:0}
.vh-payment-compact-table tbody tr:hover{background:#f8fbfd}
.vh-payment-price-cell{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.vh-payment-price-cell small{text-decoration:line-through;color:#9aa7b3}
.vh-payment-price-cell strong{color:#0d7f86;font-size:15px}
.vh-payment-price-cell span{padding:4px 7px;border-radius:8px;background:#fff0ef;color:#e54f49;font-size:10px;font-weight:900}
.vh-payment-note{margin:0;padding:14px 20px;color:#687c8f}
.vh-private-info-modal{
    position:fixed!important;
    inset:0!important;
    z-index:99999!important;
    display:none!important;
    align-items:center!important;
    justify-content:center!important;
    padding:24px!important;
    background:rgba(5,20,33,.72)!important;
    backdrop-filter:blur(10px)!important;
}
.vh-private-info-modal.is-open{display:flex!important}
.vh-private-info-modal-card{
    position:relative!important;
    width:min(640px,calc(100vw - 32px))!important;
    max-height:min(82vh,760px)!important;
    overflow:auto!important;
    margin:auto!important;
    padding:30px!important;
    border-radius:28px!important;
    background:#fff!important;
    border:1px solid rgba(255,255,255,.7)!important;
    box-shadow:0 36px 120px rgba(0,0,0,.34)!important;
    transform:none!important;
}
.vh-private-info-modal-close{
    position:absolute!important;
    top:16px!important;
    right:16px!important;
    left:auto!important;
    width:42px!important;
    height:42px!important;
    border-radius:999px!important;
    border:0!important;
    background:#edf3f7!important;
    color:#173959!important;
    font-size:26px!important;
    line-height:1!important;
    cursor:pointer!important;
}
@media(max-width:760px){
  .vh-payment-compact-head{align-items:flex-start;flex-direction:column}
  .vh-payment-inline-bar{white-space:normal;line-height:1.45}
  .vh-payment-compact-table{min-width:0}
  .vh-payment-compact-table thead{display:none}
  .vh-payment-compact-table tbody,.vh-payment-compact-table tr,.vh-payment-compact-table td{display:block;width:100%}
  .vh-payment-compact-table tr{padding:12px 14px;border-bottom:1px solid rgba(18,56,86,.08)}
  .vh-payment-compact-table tbody td{display:flex;justify-content:space-between;gap:16px;padding:7px 0;border:0;text-align:right}
  .vh-payment-compact-table tbody td::before{content:attr(data-label);font-weight:800;color:#718397;text-align:left}
  .vh-payment-price-cell{display:flex!important}
  .vh-private-info-modal{padding:14px!important}
  .vh-private-info-modal-card{padding:22px 16px!important;border-radius:22px!important}
}

/* v30 hero, localization and range controls */
.vh-hero-slider .vh-hero-copy{
    text-align:left!important;
    max-width:min(780px,calc(100% - 280px))!important;
}
.vh-hero-slider .vh-hero-title{
    max-width:14ch!important;
    margin:0 0 18px!important;
    font-size:clamp(44px,4.4vw,74px)!important;
    line-height:1.02!important;
    text-align:left!important;
    overflow-wrap:break-word;
    word-break:normal;
    hyphens:auto;
}
.vh-hero-slider .vh-hero-title.is-long{
    max-width:18ch!important;
    font-size:clamp(38px,3.75vw,62px)!important;
    line-height:1.06!important;
}
.vh-hero-slider .vh-hero-title.is-very-long{
    max-width:22ch!important;
    font-size:clamp(32px,3.1vw,52px)!important;
    line-height:1.1!important;
}
.vh-hero-slider .vh-hero-copy p{
    max-width:620px!important;
    color:rgba(255,255,255,.86)!important;
    font-size:clamp(16px,1.15vw,20px)!important;
    line-height:1.55!important;
}
.vh-stats .vh-title{
    max-width:980px;
    margin:14px auto 24px;
    font-size:clamp(36px,4.3vw,66px);
    line-height:1.06;
    text-wrap:balance;
}
.vh-price-option-unit{
    display:flex;
    flex-direction:column;
    gap:4px;
    min-width:0;
}
.vh-price-option-unit span{
    color:#173959;
    font-size:15px;
    line-height:1.3;
}
.vh-price-option-unit small{
    color:#718396;
    font-size:12px;
    font-weight:700;
}
.vh-price-option-card{
    grid-template-columns:1.15fr repeat(4,minmax(78px,1fr)) 1.35fr!important;
}
.vh-price-slider-track{
    left:10px!important;
    right:10px!important;
}
.vh-price-slider-wrap input[type=range]{
    left:10px!important;
    right:auto!important;
    width:calc(100% - 20px)!important;
    min-width:0!important;
    background:transparent!important;
    box-shadow:none!important;
}
.vh-price-slider-wrap input[type=range]::-webkit-slider-runnable-track{
    height:6px;
    background:transparent;
    border:0;
}
.vh-price-slider-wrap input[type=range]::-moz-range-track{
    height:6px;
    background:transparent;
    border:0;
}
.vh-price-slider-wrap .vh-range-min{z-index:3}
.vh-price-slider-wrap .vh-range-max{z-index:4}
@media(max-width:900px){
  .vh-hero-slider .vh-hero-copy{max-width:100%!important}
  .vh-hero-slider .vh-hero-title,
  .vh-hero-slider .vh-hero-title.is-long,
  .vh-hero-slider .vh-hero-title.is-very-long{
      max-width:100%!important;
      font-size:clamp(34px,8.8vw,54px)!important;
      line-height:1.08!important;
  }
  .vh-price-option-card{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .vh-price-option-unit,.vh-price-option-price{grid-column:1/-1}
}

/* v31 amenities, compact mega menu, card option summaries and home quick search */
.vh-amenity-groups-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:start}
.vh-amenity-group-card{border:1px solid rgba(16,57,88,.08);border-radius:22px;background:#fff;padding:18px;box-shadow:0 14px 36px rgba(18,47,72,.045)}
.vh-amenity-group-head{display:flex;align-items:center;gap:12px;margin-bottom:14px;padding-bottom:12px;border-bottom:1px solid rgba(16,57,88,.08)}
.vh-amenity-group-head>i{width:42px;height:42px;display:grid;place-items:center;border-radius:14px;background:#ecf8fa;color:#0d939d;font-size:18px}
.vh-amenity-group-head div{display:grid;gap:2px}
.vh-amenity-group-head span{color:#123c5d;font-size:17px;font-weight:900}
.vh-amenity-group-head small{color:#7a8b9b;font-size:11px;font-weight:700}
.vh-amenity-group-card .features-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
.vh-amenity-group-card .vh-pd-chip{min-height:42px;padding:9px 11px;font-size:13px}
.vh-amenity-group-card .vh-pd-chip i{color:#0d9aa4}

.vh-mega-column{padding:13px!important;border-top:0!important;border-radius:17px!important;box-shadow:0 8px 22px rgba(18,47,72,.035)!important}
.vh-mega-column-alanya,.vh-mega-column-antalya,.vh-mega-column-istanbul{border-top:0!important}
.vh-mega-column-head{gap:3px!important;margin-bottom:10px!important;padding-bottom:10px!important}
.vh-mega-column-head span{font-size:21px!important}
.vh-mega-column-head small{font-size:11px!important;line-height:1.35!important}
.vh-mega-column-links{gap:6px!important}
.vh-mega-column-links>.vh-nav-item>a{min-height:42px!important;padding:9px 11px!important;border-radius:11px!important;font-size:12px!important;font-weight:750!important}
.vh-nav-item.is-mega>.vh-mega-menu{gap:12px!important;padding:16px!important;border-radius:22px!important}

.vh-home-quick-search{position:relative;z-index:12;margin-top:-54px;padding:0 0 30px}
.vh-home-quick-search-form{background:#f4f5f6;border:1px solid rgba(16,57,88,.08);border-radius:26px;overflow:hidden;box-shadow:0 22px 60px rgba(18,47,72,.13)}
.vh-home-quick-search-row{display:grid;grid-template-columns:repeat(5,minmax(130px,1fr)) minmax(150px,.9fr) 72px;gap:12px;padding:16px;background:#0a9da1}
.vh-quick-field{display:grid;gap:6px;min-width:0}
.vh-quick-field>span{display:none}
.vh-quick-field select,.vh-quick-field input{width:100%;height:56px;border:0;border-radius:14px;background:#fff;color:#163a56;padding:0 16px;font:inherit;font-weight:700;outline:none}
.vh-quick-field select{appearance:auto}
.vh-home-quick-search-button{height:56px;border:0;border-radius:14px;background:#184f5d;color:#fff;font-size:23px;cursor:pointer;transition:.2s}
.vh-home-quick-search-button:hover{background:#123f4b;transform:translateY(-1px)}
.vh-home-quick-chips{display:grid;gap:18px;padding:18px 20px 20px;background:#f6f6f6}
.vh-home-quick-chip-group{display:grid;grid-template-columns:115px 1fr;gap:14px;align-items:start}
.vh-home-quick-chip-group>strong{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:9px 14px;border-radius:10px;background:#15525d;color:#fff;font-size:14px}
.vh-home-quick-chip-group>div{display:flex;flex-wrap:wrap;gap:9px}
.vh-home-quick-chip-group a{display:inline-flex;align-items:center;gap:6px;min-height:42px;padding:9px 15px;border-radius:10px;background:#fff;color:#35495d;font-weight:750;text-decoration:none;border:1px solid rgba(16,57,88,.05)}
.vh-home-quick-chip-group a:hover{background:#edf9fa;color:#0a838a}
.vh-home-quick-chip-group a i{color:#0b9ba4}

.vh-list-stat-card span{white-space:normal;line-height:1.3}
@media(max-width:1200px){
  .vh-home-quick-search-row{grid-template-columns:repeat(3,minmax(0,1fr))}
  .vh-home-quick-search-button{grid-column:span 3}
}
@media(max-width:900px){
  .vh-amenity-groups-grid{grid-template-columns:1fr}
  .vh-home-quick-search{margin-top:-26px}
  .vh-home-quick-search-row{grid-template-columns:repeat(2,minmax(0,1fr));padding:13px}
  .vh-home-quick-search-button{grid-column:span 2}
  .vh-home-quick-chip-group{grid-template-columns:1fr}
  .vh-home-quick-chip-group>strong{justify-content:flex-start;width:max-content}
}
@media(max-width:620px){
  .vh-home-quick-search{margin-top:0;padding-top:12px}
  .vh-home-quick-search-form{border-radius:20px}
  .vh-home-quick-search-row{grid-template-columns:1fr}
  .vh-home-quick-search-button{grid-column:auto}
  .vh-home-quick-chips{padding:14px}
  .vh-home-quick-chip-group>div{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}
  .vh-home-quick-chip-group a{justify-content:center;text-align:center;padding:8px 10px}
  .vh-amenity-group-card .features-grid{grid-template-columns:1fr}
}


/* v32 card room-plan and responsive grid corrections */
.vh-vertical-card-stats:not(.vh-vertical-card-stats-project){
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
}
.vh-horizontal-card-stats:not(.vh-horizontal-card-stats-project){
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
}
.vh-list-stat-card span{
    overflow-wrap:anywhere;
}
@media (max-width:1024px){
    .vh-home-property-grid,
    .vh-home-project-grid,
    .vh-listing-main .vh-property-grid.vh-property-grid-vertical,
    .vh-listing-main .vh-property-grid.vh-property-grid-horizontal,
    .vh-related-grid,
    .vh-detail-related-grid{
        grid-template-columns:1fr!important;
    }
    .vh-home-property-grid .vh-vertical-card,
    .vh-home-project-grid .vh-vertical-card,
    .vh-listing-main .vh-vertical-card,
    .vh-related-grid .vh-vertical-card,
    .vh-detail-related-grid .vh-vertical-card{
        width:100%!important;
        max-width:720px!important;
        margin-inline:auto!important;
    }
}
@media (max-width:620px){
    .vh-home-property-grid .vh-vertical-card,
    .vh-home-project-grid .vh-vertical-card,
    .vh-listing-main .vh-vertical-card,
    .vh-related-grid .vh-vertical-card,
    .vh-detail-related-grid .vh-vertical-card{
        max-width:100%!important;
    }
    .vh-vertical-card-stats,
    .vh-horizontal-card-stats,
    .vh-horizontal-card-stats-project,
    .vh-vertical-card-stats-project{
        grid-template-columns:1fr!important;
    }
}

/* v33 stacked amenities + adaptive price information */
.vh-amenity-groups-stacked{
    display:flex!important;
    flex-direction:column;
    gap:22px;
    align-items:stretch;
}
.vh-amenity-groups-stacked .vh-amenity-group-card{
    width:100%;
    padding:20px 22px;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(18,47,72,.035);
}
.vh-amenity-groups-stacked .vh-amenity-group-head{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:0 0 16px;
    padding:0 0 14px;
}
.vh-amenity-groups-stacked .vh-amenity-group-head>i{
    width:36px;
    height:36px;
    border-radius:12px;
    font-size:15px;
}
.vh-amenity-groups-stacked .vh-amenity-group-head span{
    font-size:18px;
    font-weight:650;
    line-height:1.25;
}
.vh-amenity-groups-stacked .vh-amenity-group-head small{
    margin-top:4px;
    font-size:11px;
    font-weight:500;
}
.vh-amenity-groups-stacked .features-grid{
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:10px 16px!important;
}
.vh-amenity-groups-stacked .vh-pd-chip{
    min-height:38px;
    padding:8px 10px;
    border-radius:12px;
    background:#f8fbfd;
    border:1px solid rgba(16,57,88,.07);
    font-size:13px;
    font-weight:450!important;
    line-height:1.35;
    color:#53697c;
}
.vh-amenity-groups-stacked .vh-pd-chip i{
    font-size:13px;
    color:#0f99a2;
}
.vh-price-option-unit small{display:block;margin-top:4px;color:#7a8b9b;font-weight:500}
@media(max-width:1200px){
    .vh-amenity-groups-stacked .features-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}
}
@media(max-width:820px){
    .vh-amenity-groups-stacked .features-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
    .vh-price-option-card{grid-template-columns:repeat(2,minmax(0,1fr))!important}
    .vh-price-option-unit,.vh-price-option-price{grid-column:1/-1}
}
@media(max-width:560px){
    .vh-amenity-groups-stacked .features-grid{grid-template-columns:1fr!important}
    .vh-amenity-groups-stacked .vh-amenity-group-card{padding:16px}
    .vh-price-option-card{grid-template-columns:1fr!important}
}


/* v34 citizenship and residence-permit eligibility tags */
.vh-citizenship-eligibility-tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:10px}
.vh-citizenship-eligibility-tags span{display:inline-flex;align-items:center;min-height:30px;padding:6px 11px;border-radius:999px;background:#e9f8fa;color:#087e88;font-size:12px;font-weight:800;line-height:1.2}

/* v35 unified editable citizenship page */
.vh-citizenship-page-hero .vh-page-title{
    width:min(1260px,calc(100% - 48px));
    max-width:100%;
    margin-inline:auto;
    white-space:normal;
    overflow-wrap:anywhere;
    text-align:center;
    line-height:1.04;
    font-size:clamp(42px,5.2vw,86px);
}
.vh-citizenship-editable-list{display:grid;gap:12px;margin-top:18px}
.vh-citizenship-editable-item{
    display:grid;
    grid-template-columns:44px minmax(0,1fr);
    gap:14px;
    align-items:start;
    padding:15px 16px;
    border:1px solid rgba(14,56,93,.08);
    border-radius:17px;
    background:#f8fbfd;
}
.vh-citizenship-editable-item>i{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:14px;
    color:#0797a2;
    background:#e8f8fa;
}
.vh-citizenship-editable-item strong{display:block;color:#143b59;font-size:15px;line-height:1.35}
.vh-citizenship-editable-item p{margin:5px 0 0;color:#667b8e;font-size:13px;line-height:1.55}
.vh-citizenship-process-card p{margin:7px 0 0;color:#667b8e;font-size:13px;line-height:1.55}
@media(max-width:760px){
  .vh-citizenship-page-hero .vh-page-title{width:calc(100% - 28px);font-size:clamp(34px,10vw,52px)}
  .vh-citizenship-editable-item{grid-template-columns:38px minmax(0,1fr);padding:13px}
  .vh-citizenship-editable-item>i{width:38px;height:38px}
}

/* v36 listing detail content order and compact overview */
.vh-detail-flow-section{
  margin-top:30px;
}
.vh-detail-flow-section:first-child{margin-top:0}
.vh-overview-compact-section .vh-pd-section-title{margin-bottom:16px}
.vh-pd-overview-grid-compact,
.vh-pd-overview-grid-extra{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.vh-pd-overview-grid-compact .vh-pd-overview-card,
.vh-pd-overview-grid-extra .vh-pd-overview-card{
  min-height:92px;
  padding:15px 16px;
  border-radius:17px;
  box-shadow:0 10px 24px rgba(17,50,78,.035);
}
.vh-pd-overview-grid-compact .vh-pd-overview-icon,
.vh-pd-overview-grid-extra .vh-pd-overview-icon{
  width:38px;
  height:38px;
  min-width:38px;
  border-radius:12px;
  font-size:16px;
}
.vh-pd-overview-grid-compact .vh-pd-overview-text,
.vh-pd-overview-grid-extra .vh-pd-overview-text{
  gap:3px;
}
.vh-pd-overview-grid-compact .vh-pd-overview-text small,
.vh-pd-overview-grid-extra .vh-pd-overview-text small{
  font-size:11px;
  line-height:1.25;
}
.vh-pd-overview-grid-compact .vh-pd-overview-text strong,
.vh-pd-overview-grid-extra .vh-pd-overview-text strong{
  font-size:16px;
  line-height:1.3;
}
.vh-overview-feature-wrap{
  margin-top:12px;
  padding:14px 16px;
  border-radius:17px;
}
.vh-pd-about .vh-pd-rich-content,
.vh-why-choose-section .vh-pd-rich-content{
  color:#5e7285;
  font-size:16px;
  line-height:1.8;
}
.vh-pd-about .vh-pd-rich-content > :first-child,
.vh-why-choose-section .vh-pd-rich-content > :first-child{margin-top:0}
.vh-pd-about .vh-pd-rich-content > :last-child,
.vh-why-choose-section .vh-pd-rich-content > :last-child{margin-bottom:0}
.vh-why-choose-section{
  padding:24px;
  border:1px solid rgba(14,151,161,.13);
  border-radius:24px;
  background:linear-gradient(145deg,#f7fcfd 0%,#fff 72%);
  box-shadow:0 18px 42px rgba(14,56,93,.055);
}
.vh-why-choose-section .vh-pd-section-title{margin:6px 0 14px}
.vh-pd-amenity-groups .vh-amenity-group-card{box-shadow:none}
.vh-detail-flow-section .vh-payment-compact{margin-top:0}
.vh-detail-flow-section .vh-pd-location{margin-top:0}
@media(max-width:1180px){
  .vh-pd-overview-grid-compact,
  .vh-pd-overview-grid-extra{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:820px){
  .vh-pd-overview-grid-compact,
  .vh-pd-overview-grid-extra{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:520px){
  .vh-pd-overview-grid-compact,
  .vh-pd-overview-grid-extra{grid-template-columns:1fr}
  .vh-detail-flow-section{margin-top:24px}
  .vh-why-choose-section{padding:20px 16px}
}

/* v37 listing/filter/advisor/citizenship stability fixes */
.vh-home-quick-search-form{border-radius:24px}
.vh-home-quick-search-row{border-radius:24px}
.vh-vertical-card-badges .vh-list-discount,
.vh-horizontal-card-badges .vh-list-discount{
    margin-left:auto!important;
    order:99;
}
.vh-pd-advisor-main{display:flex;flex-direction:column;justify-content:center;min-width:0}
.vh-pd-advisor-links{grid-column:1 / -1;display:flex;flex-direction:column;gap:10px;margin-top:2px}
.vh-pd-advisor-contact{text-decoration:none;word-break:break-word}
.vh-pd-advisor-contact span{word-break:break-word}
.vh-pd-advisor .vh-advisor-social{display:flex;flex-wrap:wrap;gap:10px;margin-top:2px}
.vh-pd-advisor .vh-advisor-social a{text-decoration:none}
.vh-pd-advisor,
.vh-pd-project-advisor{display:grid;grid-template-columns:74px minmax(0,1fr);align-items:start}
.vh-pd-project-advisor{margin:18px 0 4px}
.vh-pd-advisor-photo{
    width:74px;
    height:74px;
    flex:0 0 74px;
    border-radius:18px;
    object-fit:cover;
    object-position:center;
    background:#eef4f7;
    border:1px solid rgba(17,48,68,.08);
    box-shadow:0 10px 24px rgba(17,48,68,.10);
}
.vh-pd-project-advisor{margin:18px 0 4px}
.vh-blog-card-grid,
.vh-blog-card-grid>.vh-blog-card{
    visibility:visible!important;
    opacity:1!important;
}
.vh-blog-card-grid{display:grid!important}
.vh-blog-card{display:flex!important}
@media (max-width:1024px){
    body .vh-home-property-grid,
    body .vh-home-project-grid,
    body .vh-listing-main .vh-property-grid,
    body .vh-listing-main .vh-property-grid.vh-property-grid-vertical,
    body .vh-listing-main .vh-property-grid.vh-property-grid-horizontal,
    body .vh-related-grid,
    body .vh-detail-related-grid,
    body .vh-blog-card-grid{
        display:grid!important;
        grid-template-columns:minmax(0,1fr)!important;
        width:100%!important;
        min-width:0!important;
    }
    body .vh-home-property-grid .vh-vertical-card,
    body .vh-home-project-grid .vh-vertical-card,
    body .vh-listing-main .vh-vertical-card,
    body .vh-listing-main .vh-horizontal-card,
    body .vh-related-grid .vh-vertical-card,
    body .vh-detail-related-grid .vh-vertical-card,
    body .vh-blog-card-grid .vh-blog-card{
        display:flex!important;
        width:100%!important;
        max-width:100%!important;
        min-width:0!important;
        margin:0!important;
    }
    body .vh-listing-main .vh-horizontal-card{display:grid!important}
}
@media (max-width:680px){
    .vh-blog-listing-main,
    .vh-blog-listing-shell,
    .vh-listing-main,
    .vh-listing-panel{min-width:0!important;width:100%!important}
    .vh-blog-card-media{height:210px!important}
    .vh-pd-advisor,.vh-pd-project-advisor{grid-template-columns:64px minmax(0,1fr)}
    .vh-pd-advisor-photo{width:64px;height:64px;flex-basis:64px;border-radius:16px}
}


/* v38: listing/blog immediate visibility, discount placement and mobile View All */
.vh-listing-section .vh-scroll-reveal,
.vh-blog-listing-section .vh-scroll-reveal,
.vh-blog-detail-section .vh-scroll-reveal,
.vh-blog-page-hero .vh-scroll-reveal,
.vh-home-featured-section .vh-scroll-reveal,
.vh-home-projects-section .vh-scroll-reveal{
    opacity:1!important;
    transform:none!important;
    transition:none!important;
}
.vh-listing-section .vh-card,
.vh-blog-listing-section .vh-blog-card,
.vh-blog-detail-section .vh-content,
.vh-home-featured-section .vh-card,
.vh-home-projects-section .vh-card{
    opacity:1!important;
    visibility:visible!important;
    transform:none!important;
}
.vh-card-discount-corner{
    position:absolute;
    top:14px;
    right:14px;
    z-index:8;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    max-width:46%;
    min-height:34px;
    padding:8px 12px;
    border-radius:999px;
    background:linear-gradient(135deg,#d59610,#f2bd35);
    color:#fff;
    box-shadow:0 10px 24px rgba(93,66,4,.22);
    font-size:11px;
    line-height:1.15;
    font-weight:900;
    letter-spacing:.04em;
    text-transform:uppercase;
    text-align:center;
    pointer-events:none;
}
.vh-vertical-card-badges,
.vh-horizontal-card-badges{
    padding-right:0!important;
}
.vh-property-head .vh-home-view-all{
    flex:0 0 auto;
    width:auto;
    min-width:0;
    white-space:nowrap;
}
@media(max-width:680px){
    .vh-home-featured-section .vh-property-head{
        align-items:flex-start;
        gap:14px;
        margin-bottom:24px;
    }
    .vh-home-featured-section .vh-property-head>div{
        flex:1 1 auto;
        min-width:0;
    }
    .vh-home-featured-section .vh-property-head .vh-title{
        font-size:clamp(36px,11vw,54px)!important;
        line-height:.98!important;
        overflow-wrap:anywhere;
    }
    .vh-property-head .vh-home-view-all{
        flex:0 0 auto;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        min-height:44px;
        padding:10px 15px!important;
        border-radius:999px!important;
        font-size:13px!important;
        line-height:1!important;
        white-space:nowrap!important;
    }
    .vh-card-discount-corner{
        top:12px;
        right:12px;
        max-width:52%;
        min-height:30px;
        padding:7px 10px;
        font-size:10px;
    }
}
@media(max-width:430px){
    .vh-home-featured-section .vh-property-head{
        display:grid;
        grid-template-columns:minmax(0,1fr) auto;
    }
    .vh-property-head .vh-home-view-all{
        padding:9px 12px!important;
        font-size:12px!important;
    }
}

/* v39 location/filter/mobile layout polish */
.vh-scroll-reveal,
.vh-reveal{
    opacity:1!important;
    visibility:visible!important;
    transform:none!important;
    transition:none!important;
}

.vh-location-tree-card .vh-sidebar-link-list>a{
    border:1px solid #dfe7ec!important;
    border-left:1px solid #dfe7ec!important;
    box-shadow:none!important;
}
.vh-location-tree-card .vh-sidebar-link-list>a.active,
.vh-location-tree-card .vh-sidebar-link-list>a:hover{
    border-color:var(--vh-sea)!important;
    border-left-color:var(--vh-sea)!important;
}
.vh-location-tree-card .vh-location-parent,
.vh-location-tree-card .vh-location-child{
    border-left:1px solid #dfe7ec!important;
}

@media(max-width:760px){
    .vh-listing-toolbar-no-tabs{
        display:grid!important;
        grid-template-columns:1fr!important;
        gap:14px!important;
        align-items:stretch!important;
        width:100%!important;
    }
    .vh-listing-toolbar-no-tabs .vh-sort-block{
        display:grid!important;
        grid-template-columns:1fr!important;
        gap:9px!important;
        width:100%!important;
        margin:0!important;
        justify-content:stretch!important;
    }
    .vh-listing-toolbar-no-tabs .vh-sort-block>span{
        display:block!important;
        font-size:14px!important;
        line-height:1.35!important;
        text-align:left!important;
        margin:0!important;
    }
    .vh-listing-toolbar-no-tabs .vh-sort-buttons{
        display:flex!important;
        flex-wrap:nowrap!important;
        gap:8px!important;
        width:100%!important;
        overflow-x:auto!important;
        padding:2px 0 6px!important;
        scrollbar-width:none!important;
        -webkit-overflow-scrolling:touch!important;
    }
    .vh-listing-toolbar-no-tabs .vh-sort-buttons::-webkit-scrollbar{display:none!important}
    .vh-listing-toolbar-no-tabs .vh-sort-btn{
        flex:0 0 auto!important;
        min-height:40px!important;
        padding:9px 13px!important;
        border:1px solid rgba(17,48,68,.12)!important;
        border-radius:12px!important;
        font-size:12px!important;
        white-space:nowrap!important;
    }
    .vh-listing-toolbar-no-tabs .vh-view-mode-switch{
        width:100%!important;
        display:grid!important;
        grid-template-columns:1fr 1fr!important;
    }
    .vh-listing-toolbar-no-tabs .vh-view-mode-btn{
        width:100%!important;
        min-width:0!important;
        justify-content:center!important;
    }

    .vh-blog-listing-section{
        padding-left:0!important;
        padding-right:0!important;
    }
    .vh-blog-listing-section .vh-container{
        width:100%!important;
        max-width:none!important;
        padding-left:16px!important;
        padding-right:16px!important;
        box-sizing:border-box!important;
    }
    .vh-blog-listing-main,
    .vh-blog-card-grid,
    .vh-blog-card{
        width:100%!important;
        max-width:100%!important;
        min-width:0!important;
        box-sizing:border-box!important;
    }
    .vh-blog-card-grid{gap:18px!important}
    .vh-blog-card{margin:0!important;border-radius:20px!important}
    .vh-blog-listing-head{padding:0 2px!important}
}

/* v40 country location + dynamic Explore More */
.vh-location-explore-section{
    margin-top:32px;
    padding:30px;
    border:1px solid rgba(15,57,93,.09);
    border-radius:28px;
    background:linear-gradient(180deg,#fff 0%,#f8fbfd 100%);
    box-shadow:0 18px 45px rgba(17,45,76,.06);
}
.vh-location-explore-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:22px}
.vh-location-explore-head .vh-title{margin:6px 0 8px}
.vh-location-explore-head .vh-lead{margin:0;max-width:680px}
.vh-location-child-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.vh-location-child-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    min-height:82px;
    padding:18px 20px;
    border:1px solid rgba(14,147,161,.16);
    border-radius:18px;
    background:#fff;
    color:#10395d;
    text-decoration:none;
    box-shadow:0 8px 24px rgba(18,47,72,.04);
    transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.vh-location-child-card:hover{
    transform:translateY(-2px);
    border-color:rgba(14,147,161,.38);
    background:#f2fbfd;
    box-shadow:0 14px 30px rgba(14,147,161,.10);
}
.vh-location-child-card-title{font-family:var(--vh-font-heading);font-size:22px;font-weight:700;line-height:1.2}
.vh-location-child-card-action{display:inline-flex;align-items:center;gap:8px;white-space:nowrap;color:#0e93a1;font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:.03em}
.vh-citizenship-official-text>p:first-child{margin-top:0}
.vh-citizenship-official-text>p:last-child{margin-bottom:0}
@media(max-width:980px){.vh-location-child-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:640px){
  .vh-location-explore-section{padding:22px 16px;border-radius:22px}
  .vh-location-child-grid{grid-template-columns:1fr}
  .vh-location-child-card{min-height:70px;padding:15px 16px}
  .vh-location-child-card-title{font-size:19px}
  .vh-location-child-card-action span{display:none}
}
.vh-location-gallery{position:relative;margin-top:28px;overflow:hidden;border-radius:24px;background:#edf4f7}.vh-location-gallery-track{display:flex;transition:transform .35s ease}.vh-location-gallery-slide{min-width:100%;margin:0;aspect-ratio:16/8}.vh-location-gallery-slide img{width:100%;height:100%;object-fit:cover;display:block}.vh-location-gallery-nav{position:absolute;top:50%;transform:translateY(-50%);width:46px;height:46px;border:0;border-radius:50%;background:rgba(255,255,255,.92);color:#113b5d;display:grid;place-items:center;box-shadow:0 10px 28px rgba(0,0,0,.12);cursor:pointer}.vh-location-gallery-nav.prev{left:16px}.vh-location-gallery-nav.next{right:16px}.vh-location-gallery-dots{position:absolute;left:50%;bottom:14px;transform:translateX(-50%);display:flex;gap:8px}.vh-location-gallery-dots button{width:9px;height:9px;border:0;border-radius:50%;background:rgba(255,255,255,.58);padding:0}.vh-location-gallery-dots button.active{background:#fff;transform:scale(1.25)}
.vh-private-info-modal-row strong a{color:#0a8f9c;text-decoration:underline;text-underline-offset:3px;overflow-wrap:anywhere}
.vh-image-ribbon{background:linear-gradient(135deg,var(--tag-start,#0e8794),var(--tag-end,#5bc7e7))!important;color:#fff!important}.vh-detail-tag-row span{background:linear-gradient(135deg,var(--tag-start,#eaf6f8),var(--tag-end,#dff1f4));color:#fff;border:0}

/* v42 advisor layout and hierarchical location filter */
.vh-location-tree-card .vh-location-parent{font-weight:800}
.vh-location-tree-card .vh-location-level-1{padding-left:30px!important}

/* v43 province > district > neighbourhood location tree */
.vh-location-tree-card .vh-location-level-1{padding-left:30px!important}
.vh-location-tree-card .vh-location-level-2{padding-left:48px!important;font-weight:600}
.vh-location-tree-card .vh-location-level-2 span:before{content:'↳';margin-right:8px;color:rgba(14,147,161,.65)}

/* v44 accurate location counts and compact hierarchy */
.vh-location-tree-card .vh-sidebar-link-list{
    display:grid;
    gap:8px;
}
.vh-location-tree-card .vh-sidebar-link-list a{
    min-height:48px;
    border:1px solid #dbe9ee!important;
    border-left:3px solid transparent!important;
    border-radius:14px!important;
    background:#fff!important;
    padding:11px 12px!important;
    box-shadow:none!important;
    transition:border-color .2s ease,background .2s ease,transform .2s ease;
}
.vh-location-tree-card .vh-sidebar-link-list a:hover{
    transform:translateX(2px);
    border-color:#9bd8df!important;
    background:#f6fcfd!important;
}
.vh-location-tree-card .vh-sidebar-link-list a.active{
    border-color:#10a5b0!important;
    border-left-color:#10a5b0!important;
    background:#eefbfc!important;
}
.vh-location-tree-card .vh-sidebar-link-list a span{
    display:flex;
    align-items:center;
    gap:8px;
    min-width:0;
    font-size:14px;
    line-height:1.25;
}
.vh-location-tree-card .vh-sidebar-link-list a span:before,
.vh-location-tree-card .vh-sidebar-link-list a:before{
    display:none!important;
    content:none!important;
}
.vh-location-tree-card .vh-sidebar-link-list a b{
    min-width:34px;
    height:34px;
    padding:0 9px;
    border-radius:11px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#eaf6f8;
    color:#0b8190;
    font-size:13px;
    font-weight:800;
}
.vh-location-tree-card .vh-sidebar-link-list a.active b{
    background:#0fa6b0;
    color:#fff;
}
.vh-location-tree-card .vh-location-root{
    font-weight:900;
    border-left-color:#0f5966!important;
}
.vh-location-tree-card .vh-location-root span i{
    color:#0ea2ad;
    font-size:12px;
}
.vh-location-tree-card .vh-location-parent{
    font-weight:800;
}
.vh-location-tree-card .vh-location-level-1{
    margin-left:14px!important;
    width:calc(100% - 14px)!important;
    padding-left:16px!important;
    font-weight:700!important;
}
.vh-location-tree-card .vh-location-level-1 span:after{
    content:'İlçe';
    margin-left:auto;
    color:#8aa1ad;
    font-size:10px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.04em;
}
.vh-location-tree-card .vh-location-level-2{
    margin-left:28px!important;
    width:calc(100% - 28px)!important;
    padding-left:16px!important;
    font-weight:600!important;
}
.vh-location-tree-card .vh-location-level-2 span:after{
    content:'Bölge';
    margin-left:auto;
    color:#96a9b2;
    font-size:10px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.04em;
}
@media(max-width:680px){
    .vh-location-tree-card .vh-location-level-1{margin-left:10px!important;width:calc(100% - 10px)!important}
    .vh-location-tree-card .vh-location-level-2{margin-left:20px!important;width:calc(100% - 20px)!important}
}
.vh-location-tree-card .vh-location-level-1 span:after,
.vh-location-tree-card .vh-location-level-2 span:after{display:none!important;content:none!important}

/* v45 location filter visual refinement */
.vh-location-tree-card{
    overflow:hidden;
    border-radius:24px!important;
}
.vh-location-tree-card>h3{
    margin:0!important;
    padding:20px 22px 10px!important;
    color:#0b7f86!important;
    font-size:18px!important;
    font-weight:900!important;
}
.vh-location-tree-card>h3 i{
    width:20px;
    color:#0aa6ad;
}
.vh-location-tree-card .vh-location-filter-highlight{
    margin:10px 18px 14px!important;
    padding:14px 16px!important;
    min-height:0!important;
    border:1px solid rgba(10,166,173,.22)!important;
    border-radius:18px!important;
    background:linear-gradient(135deg,#f2fcfd 0%,#ffffff 100%)!important;
    box-shadow:none!important;
}
.vh-location-tree-card .vh-location-filter-highlight-no-media{
    grid-template-columns:minmax(0,1fr)!important;
}
.vh-location-tree-card .vh-location-filter-content{
    gap:8px!important;
}
.vh-location-tree-card .vh-location-filter-content strong{
    font-size:17px!important;
    line-height:1.2!important;
    color:#173959!important;
}
.vh-location-tree-card .vh-location-filter-breadcrumbs{
    gap:6px!important;
}
.vh-location-tree-card .vh-location-filter-breadcrumbs span{
    min-height:28px;
    padding:5px 10px!important;
    border-radius:999px!important;
    background:#fff!important;
    border:1px solid rgba(10,166,173,.18)!important;
    color:#078c96!important;
    font-size:10px!important;
    letter-spacing:.06em!important;
}
.vh-location-tree-card .vh-sidebar-link-list{
    position:relative;
    gap:8px!important;
    padding:0 18px 20px!important;
}
.vh-location-tree-card .vh-sidebar-link-list>a{
    position:relative;
    width:100%!important;
    min-height:54px!important;
    margin:0!important;
    padding:10px 12px 10px 16px!important;
    border:1px solid #dcecf0!important;
    border-left:4px solid #dcecf0!important;
    border-radius:17px!important;
    background:#fff!important;
    color:#173959!important;
    box-shadow:none!important;
    transform:none!important;
    transition:border-color .18s ease,background-color .18s ease,color .18s ease,box-shadow .18s ease!important;
}
.vh-location-tree-card .vh-sidebar-link-list>a:hover{
    border-color:#79d3dc!important;
    border-left-color:#25b6c1!important;
    background:#f7fdfe!important;
    box-shadow:0 8px 20px rgba(10,126,139,.07)!important;
}
.vh-location-tree-card .vh-sidebar-link-list>a.active{
    border-color:#25b6c1!important;
    border-left:6px solid #0fa6b0!important;
    padding-left:14px!important;
    background:linear-gradient(90deg,#eafafb 0%,#f8feff 100%)!important;
    color:#087c85!important;
    box-shadow:0 10px 24px rgba(10,166,173,.09)!important;
}
.vh-location-tree-card .vh-sidebar-link-list>a span{
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    min-width:0!important;
    font-size:15px!important;
    font-weight:800!important;
    line-height:1.25!important;
}
.vh-location-tree-card .vh-sidebar-link-list>a b{
    flex:0 0 auto!important;
    min-width:40px!important;
    height:40px!important;
    padding:0 10px!important;
    border-radius:13px!important;
    background:#ebf7f9!important;
    color:#0b8792!important;
    font-size:14px!important;
    font-weight:900!important;
}
.vh-location-tree-card .vh-sidebar-link-list>a.active b{
    background:#0fa6b0!important;
    color:#fff!important;
}
.vh-location-tree-card .vh-location-root{
    border-left-color:#1b6671!important;
    background:#fbfdfd!important;
}
.vh-location-tree-card .vh-location-root span i{
    margin-right:7px;
    color:#0aa6ad!important;
    font-size:14px!important;
}
.vh-location-tree-card .vh-location-parent{
    font-weight:900!important;
}
.vh-location-tree-card .vh-location-level-1{
    width:calc(100% - 14px)!important;
    margin-left:14px!important;
    min-height:50px!important;
    padding-left:18px!important;
    border-left-width:3px!important;
    border-radius:15px!important;
    font-weight:750!important;
}
.vh-location-tree-card .vh-location-level-1:after{
    content:"";
    position:absolute;
    left:-9px;
    top:-8px;
    bottom:-8px;
    width:1px;
    background:#d7eaee;
    pointer-events:none;
}
.vh-location-tree-card .vh-location-level-2{
    width:calc(100% - 28px)!important;
    margin-left:28px!important;
    min-height:48px!important;
    padding-left:18px!important;
    border-left-width:3px!important;
    border-radius:14px!important;
    font-weight:650!important;
}
.vh-location-tree-card .vh-location-level-2:after{
    content:"";
    position:absolute;
    left:-9px;
    top:-8px;
    bottom:-8px;
    width:1px;
    background:#e2eff2;
    pointer-events:none;
}
@media(max-width:680px){
    .vh-location-tree-card>h3{padding:18px 16px 8px!important;font-size:17px!important}
    .vh-location-tree-card .vh-location-filter-highlight{margin:8px 14px 12px!important;padding:12px 14px!important}
    .vh-location-tree-card .vh-sidebar-link-list{padding:0 14px 16px!important;gap:7px!important}
    .vh-location-tree-card .vh-sidebar-link-list>a{min-height:50px!important;padding:9px 10px 9px 14px!important}
    .vh-location-tree-card .vh-sidebar-link-list>a.active{padding-left:12px!important}
    .vh-location-tree-card .vh-sidebar-link-list>a span{font-size:14px!important}
    .vh-location-tree-card .vh-sidebar-link-list>a b{min-width:36px!important;height:36px!important;border-radius:12px!important;font-size:13px!important}
    .vh-location-tree-card .vh-location-level-1{width:calc(100% - 10px)!important;margin-left:10px!important}
    .vh-location-tree-card .vh-location-level-2{width:calc(100% - 20px)!important;margin-left:20px!important}
}

/* v46 compact location hierarchy refinement */
.vh-location-tree-card .vh-sidebar-link-list{
    gap:6px!important;
    padding:0 16px 16px!important;
}

.vh-location-tree-card .vh-sidebar-link-list>a{
    min-height:46px!important;
    padding:7px 9px 7px 14px!important;
    border-radius:14px!important;
}

.vh-location-tree-card .vh-sidebar-link-list>a.active{
    border-left-width:5px!important;
    padding-left:12px!important;
}

.vh-location-tree-card .vh-sidebar-link-list>a span{
    font-size:14px!important;
    line-height:1.2!important;
}

.vh-location-tree-card .vh-sidebar-link-list>a b{
    min-width:34px!important;
    height:34px!important;
    padding:0 8px!important;
    border-radius:11px!important;
    font-size:13px!important;
}

/* Alt seviyelerde çizgi yerine net bir sol boşluk kullan */
.vh-location-tree-card .vh-location-level-1{
    width:calc(100% - 20px)!important;
    margin-left:20px!important;
    min-height:43px!important;
    padding-left:14px!important;
    border-left-width:3px!important;
    border-radius:13px!important;
}

.vh-location-tree-card .vh-location-level-2{
    width:calc(100% - 36px)!important;
    margin-left:36px!important;
    min-height:41px!important;
    padding-left:14px!important;
    border-left-width:3px!important;
    border-radius:12px!important;
}

.vh-location-tree-card .vh-location-level-1:after,
.vh-location-tree-card .vh-location-level-2:after,
.vh-location-tree-card .vh-location-level-1:before,
.vh-location-tree-card .vh-location-level-2:before{
    display:none!important;
    content:none!important;
}

@media(max-width:680px){
    .vh-location-tree-card .vh-sidebar-link-list{
        gap:5px!important;
        padding:0 12px 14px!important;
    }
    .vh-location-tree-card .vh-sidebar-link-list>a{
        min-height:44px!important;
        padding:7px 8px 7px 12px!important;
    }
    .vh-location-tree-card .vh-sidebar-link-list>a span{
        font-size:13.5px!important;
    }
    .vh-location-tree-card .vh-sidebar-link-list>a b{
        min-width:32px!important;
        height:32px!important;
        border-radius:10px!important;
        font-size:12px!important;
    }
    .vh-location-tree-card .vh-location-level-1{
        width:calc(100% - 18px)!important;
        margin-left:18px!important;
        min-height:41px!important;
    }
    .vh-location-tree-card .vh-location-level-2{
        width:calc(100% - 32px)!important;
        margin-left:32px!important;
        min-height:39px!important;
    }
}

/* v47 solid pastel tag colors and dependent quick search */
.vh-image-ribbon,
.vh-detail-tag-row span,
.vh-pd-inline-badges span[style*="--tag-bg"]{
    background:var(--tag-bg,#e8f4f5)!important;
    background-image:none!important;
    color:var(--tag-text,#176b73)!important;
    border:1px solid var(--tag-border,#cce4e7)!important;
    box-shadow:0 5px 14px rgba(17,48,68,.08)!important;
}
.vh-image-ribbon.is-citizenship{
    background:#dff3e5!important;
    color:#2f7044!important;
    border-color:#bfe1c9!important;
}
.vh-card-discount-corner,
.vh-badge-discount,
.vh-list-discount{
    background:#f8df9a!important;
    background-image:none!important;
    color:#78520a!important;
    border-color:#eac66c!important;
}
@media(min-width:1201px){
    .vh-home-quick-search-row{
        grid-template-columns:repeat(3,minmax(180px,1fr)) repeat(2,minmax(150px,.82fr)) minmax(180px,1fr) 150px!important;
        align-items:stretch;
    }
}
.vh-home-quick-search-row .vh-quick-field select:disabled{
    opacity:.62;
    cursor:not-allowed;
    background:#f2f6f7;
}


/* v49 home quick search visual polish */
.vh-home-quick-search{
    position:relative;
    z-index:12;
    margin-top:-44px;
    padding:0 0 34px;
}
.vh-home-quick-search-form{
    background:linear-gradient(135deg,#0c9aa0 0%, #13aeb4 100%);
    border:1px solid rgba(8,118,123,.18);
    border-radius:34px;
    overflow:hidden;
    box-shadow:0 28px 72px rgba(16,57,88,.14);
    padding:14px;
}
.vh-home-quick-search-row{
    display:grid;
    grid-template-columns:1.15fr 1.08fr 1.08fr .78fr .88fr .92fr 108px !important;
    gap:14px;
    padding:0;
    background:transparent;
    align-items:stretch;
}
.vh-quick-field{
    position:relative;
    display:grid;
    gap:8px;
    min-width:0;
}
.vh-quick-field::before{
    content:'';
    position:absolute;
    left:18px;
    right:18px;
    top:13px;
    height:1px;
    background:rgba(15,88,95,.08);
    opacity:0;
}
.vh-quick-field > span{
    display:block;
    position:absolute;
    top:10px;
    left:20px;
    z-index:2;
    font-size:11px;
    line-height:1;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:rgba(22,58,86,.58);
    font-weight:800;
    pointer-events:none;
}
.vh-quick-field select,
.vh-quick-field input{
    width:100%;
    height:94px;
    border:1px solid rgba(9,105,111,.10);
    border-radius:22px;
    background:#fff;
    color:#163a56;
    padding:34px 18px 0 20px;
    font:inherit;
    font-size:18px;
    font-weight:800;
    outline:none;
    box-shadow:0 10px 26px rgba(17,65,93,.07);
    transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.vh-quick-field select:hover,
.vh-quick-field input:hover,
.vh-quick-field select:focus,
.vh-quick-field input:focus{
    border-color:rgba(9,155,161,.45);
    box-shadow:0 16px 34px rgba(17,65,93,.10);
    transform:translateY(-1px);
}
.vh-quick-field input::placeholder{
    color:#8a9099;
    font-weight:700;
}
.vh-home-quick-search-button{
    height:94px;
    border:0;
    border-radius:22px;
    background:#154f5d;
    color:#fff;
    font-size:34px;
    cursor:pointer;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
    box-shadow:0 16px 34px rgba(16,57,88,.16);
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
.vh-home-quick-search-button:hover{
    background:#103f4a;
    transform:translateY(-1px);
    box-shadow:0 20px 38px rgba(16,57,88,.20);
}
.vh-home-quick-search-button i{line-height:1}
.vh-home-quick-search-row .vh-quick-field select:disabled{
    opacity:.7;
    cursor:not-allowed;
    background:#f3f7f8;
}

@media (max-width:1500px){
    .vh-home-quick-search-row{
        grid-template-columns:repeat(3,minmax(0,1fr)) repeat(3,minmax(0,.9fr)) 96px !important;
    }
    .vh-quick-field select,
    .vh-quick-field input,
    .vh-home-quick-search-button{
        height:88px;
    }
}
@media (max-width:1200px){
    .vh-home-quick-search-row{
        grid-template-columns:repeat(3,minmax(0,1fr)) !important;
        gap:12px;
    }
    .vh-home-quick-search-button{
        grid-column:span 3;
        height:64px;
        font-size:24px;
    }
    .vh-quick-field select,
    .vh-quick-field input{
        height:82px;
        font-size:17px;
    }
}
@media (max-width:900px){
    .vh-home-quick-search{
        margin-top:-18px;
    }
    .vh-home-quick-search-form{
        border-radius:28px;
        padding:12px;
    }
    .vh-home-quick-search-row{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:12px;
    }
    .vh-home-quick-search-button{
        grid-column:span 2;
    }
}
@media (max-width:620px){
    .vh-home-quick-search{
        margin-top:0;
        padding-top:12px;
    }
    .vh-home-quick-search-form{
        border-radius:24px;
        padding:10px;
    }
    .vh-home-quick-search-row{
        grid-template-columns:1fr !important;
        gap:10px;
    }
    .vh-quick-field select,
    .vh-quick-field input{
        height:74px;
        padding:30px 16px 0 18px;
        border-radius:18px;
        font-size:16px;
    }
    .vh-quick-field > span{
        left:18px;
        top:9px;
        font-size:10px;
    }
    .vh-home-quick-search-button{
        grid-column:auto;
        height:60px;
        border-radius:18px;
        font-size:22px;
    }
}


/* v50 home quick-search labels above dropdowns */
.vh-home-quick-search-form{
    padding:18px 20px 20px!important;
}
.vh-home-quick-search-row{
    align-items:end!important;
    gap:14px!important;
}
.vh-quick-field{
    display:grid!important;
    grid-template-rows:auto 60px!important;
    gap:8px!important;
}
.vh-quick-field > span{
    position:static!important;
    display:block!important;
    padding:0 4px!important;
    color:rgba(255,255,255,.92)!important;
    font-size:11px!important;
    line-height:1.2!important;
    letter-spacing:.08em!important;
    text-transform:uppercase!important;
    font-weight:800!important;
    pointer-events:none!important;
}
.vh-quick-field select,
.vh-quick-field input{
    height:60px!important;
    min-height:60px!important;
    padding:0 18px!important;
    border-radius:17px!important;
    font-size:16px!important;
    line-height:60px!important;
}
.vh-home-quick-search-button{
    height:60px!important;
    min-height:60px!important;
    border-radius:17px!important;
    font-size:24px!important;
    align-self:end!important;
}
@media(max-width:1200px){
    .vh-home-quick-search-button{grid-column:span 3!important}
}
@media(max-width:900px){
    .vh-home-quick-search-form{padding:15px!important}
    .vh-home-quick-search-button{grid-column:span 2!important}
}
@media(max-width:620px){
    .vh-home-quick-search-form{padding:12px!important}
    .vh-home-quick-search-button{grid-column:auto!important}
    .vh-quick-field{grid-template-rows:auto 56px!important}
    .vh-quick-field select,
    .vh-quick-field input{height:56px!important;min-height:56px!important;line-height:56px!important}
}

/* v53: flat pastel tag palette — no gradients */
.vh-image-ribbon,
.vh-detail-tag-row span,
.vh-pd-inline-badges span,
.vh-card-tag-row span,
.vh-card-tag-row-compact span {
    background-image: none !important;
    box-shadow: 0 4px 12px rgba(17,48,68,.07) !important;
    border-style: solid !important;
    border-width: 1px !important;
}

.vh-image-ribbon-stack .vh-image-ribbon:nth-child(6n+1),
.vh-detail-tag-row span:nth-child(6n+1),
.vh-pd-inline-badges span:nth-child(6n+1) {
    background: #FFDFD3 !important;
    color: #8A4F3B !important;
    border-color: #F3C3B3 !important;
}
.vh-image-ribbon-stack .vh-image-ribbon:nth-child(6n+2),
.vh-detail-tag-row span:nth-child(6n+2),
.vh-pd-inline-badges span:nth-child(6n+2) {
    background: #FFF5BA !important;
    color: #765B00 !important;
    border-color: #ECDD8E !important;
}
.vh-image-ribbon-stack .vh-image-ribbon:nth-child(6n+3),
.vh-detail-tag-row span:nth-child(6n+3),
.vh-pd-inline-badges span:nth-child(6n+3) {
    background: #E2F0CB !important;
    color: #4E6E32 !important;
    border-color: #C8DFA6 !important;
}
.vh-image-ribbon-stack .vh-image-ribbon:nth-child(6n+4),
.vh-detail-tag-row span:nth-child(6n+4),
.vh-pd-inline-badges span:nth-child(6n+4) {
    background: #B5EAEA !important;
    color: #185E65 !important;
    border-color: #91D7D7 !important;
}
.vh-image-ribbon-stack .vh-image-ribbon:nth-child(6n+5),
.vh-detail-tag-row span:nth-child(6n+5),
.vh-pd-inline-badges span:nth-child(6n+5) {
    background: #C7CEEA !important;
    color: #465784 !important;
    border-color: #AEB8DE !important;
}
.vh-image-ribbon-stack .vh-image-ribbon:nth-child(6n),
.vh-detail-tag-row span:nth-child(6n),
.vh-pd-inline-badges span:nth-child(6n) {
    background: #F5D6EB !important;
    color: #7D4B70 !important;
    border-color: #E7BFD9 !important;
}

/* Citizenship / residence remain recognizable but soft */
.vh-image-ribbon.is-citizenship,
.vh-badge-citizenship,
.vh-card-badge-citizenship {
    background: #E2F0CB !important;
    color: #4E6E32 !important;
    border-color: #C8DFA6 !important;
    background-image: none !important;
}

/* Discount stays warm pastel, not bright */
.vh-card-discount-corner,
.vh-badge-discount,
.vh-list-discount {
    background: #FFDFD3 !important;
    color: #8A4F3B !important;
    border-color: #F3C3B3 !important;
    background-image: none !important;
}


/* v54: refined solid tag palette — semantic, muted and premium */
.vh-image-ribbon,
.vh-detail-tag-row span,
.vh-pd-inline-badges span,
.vh-card-tag-row span,
.vh-card-tag-row-compact span {
    background: var(--tag-bg, #E2EDF1) !important;
    background-image: none !important;
    color: var(--tag-text, #3E5D6C) !important;
    border: 1px solid var(--tag-border, #C4D7DE) !important;
    box-shadow: 0 5px 14px rgba(17,48,68,.08) !important;
    font-weight: 750 !important;
}
.vh-image-ribbon {
    padding: 8px 15px !important;
    min-height: 36px !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    backdrop-filter: blur(2px);
}
.vh-detail-tag-row span,
.vh-pd-inline-badges span,
.vh-card-tag-row span,
.vh-card-tag-row-compact span {
    padding: 8px 14px !important;
    font-size: 13px !important;
}
.vh-image-ribbon.is-citizenship,
.vh-badge-citizenship,
.vh-card-badge-citizenship {
    --tag-bg:#DDEBD2;
    --tag-text:#3E6338;
    --tag-border:#BBD1AD;
    background:var(--tag-bg)!important;
    color:var(--tag-text)!important;
    border-color:var(--tag-border)!important;
    background-image:none!important;
}
.vh-card-discount-corner,
.vh-badge-discount,
.vh-list-discount {
    background:#F4D8D5!important;
    color:#7C4542!important;
    border-color:#E2B8B4!important;
    background-image:none!important;
}

/* v58 frontend presentation hierarchy */
.vh-location-tree-card .vh-sidebar-link-list{gap:7px!important}
.vh-location-tree-card .vh-location-root,
.vh-location-tree-card .vh-location-parent,
.vh-location-tree-card .vh-location-child{
    min-height:52px!important;
    padding:10px 12px!important;
    border-radius:15px!important;
}
.vh-location-tree-card .vh-location-child{
    width:calc(100% - 18px)!important;
    margin-left:18px!important;
    border-left:3px solid #d7edf0!important;
}
.vh-location-tree-card .vh-location-child.active{
    border-left-color:#12aab2!important;
}
.vh-location-tree-card .vh-location-child:before,
.vh-location-tree-card .vh-location-child:after,
.vh-location-tree-card .vh-location-child span:before,
.vh-location-tree-card .vh-location-child span:after{display:none!important;content:none!important}
.vh-location-tree-card .vh-sidebar-link-list a b{min-width:38px!important;height:38px!important;border-radius:12px!important;font-size:13px!important}
