
:root {

    /* =========================
       COLORS
    ========================= */
    --primary: #ff7a18;
    --primary-soft: #ffb347;

    --dark: #111;
    --text: #444;
    --muted: #777;
    --bg: #f8fafc;
    --white: #ffffff;
    --border: #eaeaea;

    /* =========================
       TYPOGRAPHY
    ========================= */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --h1: 34px;
    --h2: 28px;
    --h3: 20px;
    --h4: 16px;

    --text-lg: 16px;
    --text-md: 14px;
    --text-sm: 13px;

    --fw-bold: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;

    --lh-tight: 1.2;
    --lh-normal: 1.5;

    /* =========================
       SPACING
    ========================= */
    --space-xs: 6px;
    --space-sm: 10px;
    --space-md: 15px;
    --space-lg: 20px;
    --space-xl: 30px;
    --space-xxl: 60px;

    /* =========================
       BORDER RADIUS
    ========================= */
    --radius: 16px;
    --radius-lg: 20px;
    --radius-sm: 10px;

    /* =========================
       SHADOW
    ========================= */
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-soft: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-hover: 0 25px 50px rgba(0,0,0,0.12);

    /* =========================
       TRANSITIONS
    ========================= */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* =========================
       GRADIENTS
    ========================= */
    --gradient-primary: linear-gradient(135deg, #1e3a8a, #2563eb);
}

h1, h2, h3, h4, h5, h6{
    color: #2563eb;
}

.vd-info-bar {
    display:flex;
    gap:15px;
    margin-top:20px;
    flex-wrap:wrap;
}

.vd-info-item {
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:12px 16px;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    font-size:14px;
}

.vd-info-item i {
    font-size:18px;
    color:#007bff;
}

/* büyük kart */
.vd-big {
    width:100%;
    flex-direction:column;
    align-items:flex-start;
}

.vd-info-title {
    font-weight:600;
    margin-bottom:5px;
}

.vd-info-desc {
    color:#666;
}

/* mobil */
@media(max-width:768px){
    .vd-info-bar {
        flex-direction:column;
    }
}
.vd-booking {
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    padding:20px;
    position:sticky;
    top:100px;
}

/* input alanları */
.vd-booking .form-control {
    height:50px;
    border-radius:10px;
    border:1px solid #e0e0e0;
    font-size:14px;
}

/* icon kutu */
.vd-booking .cld-box {
    display:flex;
    align-items:center;
    gap:10px;
    background:#f8f9fa;
    padding:8px 12px;
    border-radius:10px;
}

/* fiyat butonu */
.vd-booking .fiyat-hesapla {
    background:#ff4d4f;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:10px;
    font-weight:500;
}

/* rezervasyon butonu */
.vd-booking .talep-gonder {
    background:#007bff;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:12px;
    font-weight:600;
    transition:0.2s;
}

.vd-booking .talep-gonder:hover {
    background:#0056b3;
}

/* spacing */
.vd-booking .form-group {
    margin-bottom:10px;
}


/* GENEL */
.vd-section {
    padding:100px 0;
}

.vd-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.vd-header h1 {
    font-size:30px;
    font-weight:700;
}
.vd-sub {
    color:#777;
    margin-top:5px;
}

/* GALERİ WOW */
.modern-gallery {
    display:grid;
    grid-template-columns:2fr 1fr;
    grid-template-rows:260px 260px;
    gap:10px;
    margin-bottom:25px;
}

.gallery-item {
    position:relative;
    overflow:hidden;
    border-radius:16px;
}

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

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

.gallery-item.main {
    grid-row:span 2;
}

/* overlay */
.gallery-overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:600;
    backdrop-filter: blur(3px);
}

/* LAYOUT */
.vd-layout {
    display:flex;
    gap:30px;
}

.vd-main { flex:2; }
.vd-sidebar { flex:1; }

/* CARD WOW */
.vd-card {
    background:#fff;
    padding:25px;
    border-radius:18px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.vd-card:hover {
    transform:translateY(-3px);
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.vd-card h3 {
    font-size:20px;
    margin-bottom:15px;
}

/* INFO BAR */
.vd-info-bar {
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:20px;
}

.vd-info-item {
    background:#fff;
    padding:14px;
    border-radius:12px;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    font-size:14px;
}

.vd-big {
    font-weight:600;
}

/* BOOKING WOW */
.vd-booking {
    position:sticky;
    top:100px;
    background:#fff;
    padding:20px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,0.1);
}

.vd-booking input {
    width:100%;
    padding:12px;
    margin-bottom:10px;
    border-radius:10px;
    border:1px solid #ddd;
    transition:0.2s;
}

.vd-booking input:focus {
    border-color:#007bff;
    outline:none;
}

/* BUTTON WOW */
.vd-btn {
    width:100%;
    padding:14px;
    border:none;
    border-radius:12px;
    margin-top:10px;
    font-weight:600;
    transition:0.3s;
}

.vd-red {
    background:linear-gradient(135deg, #1e3a8a, #2563eb);
    color:#fff;
}

.vd-blue {
    background:linear-gradient(135deg, #1e3a8a, #2563eb);
    color:#fff;
}

.vd-btn:hover {
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* PRICE */
.vd-price-row {
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

/* GRID */
.vd-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.vd-box {
    background:#f9f9f9;
    padding:12px;
    border-radius:10px;
    text-align:center;
}

/* FEATURES */
.vd-features {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.vd-features span {
    background:#eef3ff;
    padding:8px 12px;
    border-radius:20px;
    font-size:13px;
}

/* LIST */
.vd-list {
    list-style:none;
    padding:0;
}

.vd-list li {
    margin-bottom:8px;
}

/* MAP */
.vd-card iframe {
    width:100%;
    border-radius:12px;
    border:0;
}

/* MOBİL WOW */
@media(max-width:768px){

    .modern-gallery {
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .vd-layout {
        flex-direction:column;
    }

}




.langs{margin-top:1px;float:right;}
        a.gflag{
            vertical-align:middle;
            padding:1px 0;
            background-repeat:no-repeat;
            background-image:url(/tema/assets/images/lang.png);
            margin-top: 38px;
        }
        a.gflag img{border:0}   #goog-gt-tt{display:none!important}.goog-te-banner-frame{display:none!important}.goog-te-menu-value:hover{text-decoration:none!important}

        #google_translate_element2{display:none!important}
        .mobil-bilgi {display:none;}
        .mobil-sidebar-header {
            background-color:#F0F3F7;
            color:#333;
            padding: 10px;
            width: 100%;
            margin-bottom: 20px;
            font-weight: bold;
        }
        .mobil-sidebar-header a {
            float:right;
            font-size:12px;
            color:#c0392b;
        }
        @media only screen and (max-width:992px) {
            .nav-menu-social {
                text-align:center;
                margin-top:10px;
            }
            .mobil-bilgi {display:inline-block;}
            .desktop-bilgi {display:none;}
            .exlip-page-sidebar {
                display:none;
                position:fixed;
                top:0;
                left:0;
                width:100%;
                height:100%;
                z-index:999;
                overflow:auto;
            }
            .mobil-scroll {
                height:auto;
            }
            .mobil-position {
                position:inherit!important;
            }
        }

        .ek-hizmet {
            font-size:15px;
            margin:5px;
            font-weight:400;
        }
        .ek-hizmet .hizmet-baslik {
            text-align:left;
            padding:0;
            color:#2c3f58;
            font-weight:bold;
        }
        .ek-hizmet .hizmet-fiyat {
            text-align:right;
            padding:0;
            color: #223b67;
            font-size:400;
        }
        .cizgi {
            border-bottom:1px solid #eee;
        }

        @media only screen and (max-width:468px) {
            .nav-tabs .nav-item {
                width:100%;
            }
            .nav-tabs .nav-item:last-child{
                width:100%;
            }
        }

        .table tr th, .table tr td {
            padding: 8px 10px;
        }

        .multilist-title {overflow:hidden;}
        .multilist-title span {
            display:inline-block;
            float:right;
            font-size:19px;
        }
        #harita {
            width: 100%;
            height: 500px;
        }
        .bayi_map_adi {
            font-size: 16px;
        }


        @media only screen and (max-width:500px) {
            .topbar-right {
                text-align:center;
            }
            .topbar-right .tp-list {
                border:none!important;
                margin-bottom:10px!important;
            }
            .topbar-right .tp-list:last-child {
                margin-bottom:0!important;
            }
        }

        .ui-menu .ui-menu-item {
            font-size:13px!important;
        }
        .ui-state-focus, .ui-state-hover, .ui-widget-content .ui-state-focus, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-focus, .ui-widget-header .ui-state-hover {
            background:#3e4147!important;
            color: #fff;
        }
        
        .no-border-radius {border-radius:inherit;}
        .marginright {margin-right:10px;}





/*villa detay slider*/
.villa-detay-slider {
    width: 100%;
    height: 650px;
    overflow: hidden;
    margin: 0px;
}
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-sabit {
    width: 82%;
    max-width: 1200px;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.gallery-top {
    position: relative;
    height: 80%;
    width: 100%;

}
.gallery-thumbs {
    width: 100%;
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0px;

}
.gallery-thumbs .swiper-slide {
    width: 60px;
    height: 100%;
    box-sizing: border-box;
}
.gallery-thumbs .swiper-slide-thumb-active {
    border: 2px solid var(--mavi);
}
.swiper-container a{
    width: 100%;
    height: 100%;
}
.swiper-container a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-container img{
    width: 100%;
    height: 100%;
    transition: 3s all;
    cursor: pointer;
}
.swiper-img{
    width: 100%;
    height: 100%;
}
.villa-adi {
    width: 100%;
    padding: 20px 0px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-thumbs .swiper-slide-thumb-active {
    border: 2px solid #13213a;
}
/*villa detay slider*/

/* takvim üzerine fiyat */
.ui-datepicker td {
    padding: 0;
    position: relative;
}
[data-year]:before {
    content: attr(title);
    font-size: 8px;
    position: absolute;
    left: 0;
    bottom: -8px;
    z-index: 1;
    width: 100%;
    text-align: center;
    color: #929292;
}
/* takvim üzerine fiyat */

/* GENEL */
.vd-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 50px 0 20px;
    font-size: 14px;
}

/* GRID */
.vd-footer-top {
    margin-bottom: 30px;
}

/* BOX */
.vd-footer-box h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.vd-footer-box ul {
    list-style: none;
    padding: 0;
}

.vd-footer-box ul li {
    margin-bottom: 8px;
}

.vd-footer-box a {
    color: #cbd5e1;
    text-decoration: none;
}

.vd-footer-box a:hover {
    color: #fff;
}

/* ICON */
.vd-footer-box i {
    margin-right: 8px;
    color: #2563eb;
}

/* BUTON */
.vd-rez-btn {
    background: #2563eb;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.vd-rez-btn:hover {
    background: #1d4ed8;
}

/* ALT */
.vd-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1e293b;
    padding-top: 20px;
}

.vd-footer-bottom img {
    height: 40px;
}

.vd-footer-right a {
    color: #f43f5e;
    text-decoration: underline;
}

/* MOBİL */
@media(max-width:768px){

    .vd-footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

}

/* MOBİL BAR */
.vd-mobile-bar {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    
    width: calc(100% - 30px);
    max-width: 500px;

    display: flex;
    gap: 10px;

    z-index: 999;
}

/* ITEM */
.vd-mb-item {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 14px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(10px);
    transition: 0.3s;
}

/* ICON */
.vd-mb-item i {
    font-size: 18px;
    margin-bottom: 4px;
}

/* CALL */
.vd-mb-item.call {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

/* WHATSAPP */
.vd-mb-item.whatsapp {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

/* HOVER */
.vd-mb-item:hover {
    transform: translateY(-2px);
}

/* SADECE MOBİL */
@media(min-width:992px){
    .vd-mobile-bar {
        display: none;
    }
}

/* MODAL BOX */
.vd-rz-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

/* HEADER */
.vd-rz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.vd-rz-title {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

/* CLOSE */
.vd-rz-close {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
}

/* BODY */
.vd-rz-body {
    padding: 20px;
}

/* FORM */
.vd-rz-group {
    margin-bottom: 15px;
}

.vd-rz-label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}

/* INPUT WRAPPER */
.vd-rz-input {
    position: relative;
}

.vd-rz-input i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

/* INPUT */
.vd-rz-field {
    width: 100%;
    height: 48px;
    padding-left: 35px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: 0.2s;
}

.vd-rz-field:focus {
    border-color: #2563eb;
    outline: none;
}

/* BUTTON */
.vd-rz-btn {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.vd-rz-btn:hover {
    transform: translateY(-2px);
}

/* overlay */
.overlayAra.vd-search {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
}

/* aktif */
.overlayAra.vd-search.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* kutu */
.vd-search-box {
    width: 90%;
    max-width: 600px;
}

/* input wrapper */
.vd-search-input {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 0 15px;
    height: 60px;
}

/* icon */
.vd-search-input i {
    color: #64748b;
    margin-right: 10px;
}

/* input */
.vd-search-input input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
}

/* close */
.vd-search-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #2563eb;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
}

/* WHATSAPP */
.vd-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 90px;

    width: 55px;
    height: 55px;

    background: #25d366;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 22px;

    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    transition: 0.3s;
}

.vd-whatsapp:hover {
    transform: scale(1.1);
}

@media (max-width:768px){
    .vd-whatsapp{
        display: none !important;
    }
}

/* BANNER GENEL */
.modern-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* KARARTMA (daha kaliteli overlay) */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.4)
    );
}

/* YAZI BLOĞU */
.modern-caption {
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease;
}

/* BAŞLIK */
.modern-caption h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ALT YAZI */
.modern-caption .stylish {
    display: block;
    font-size: 18px;
    opacity: 0.9;
    margin-top: 10px;
}

/* ANİMASYON */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media(max-width:768px){
    .modern-banner {
        min-height: 350px;
        text-align: center;
    }

    .modern-caption h1 {
        font-size: 26px;
    }
}

.xr-search {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.xr-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.xr-box {
    background: rgba(255,255,255,0.96);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.xr-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 12px;
}

.xr-item {
    position: relative;
}

/* SELECT */
.xr-select-btn {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
}

/* MENU */
.xr-select-menu {
    display: none;
    position: absolute;
    width: 100%;
    top: 110%;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    max-height: 250px;
    overflow-y: auto;
    z-index: 99;
}

/* DATE */
.xr-date {
    display: flex;
    gap: 8px;
}

.xr-date input {
    width: 100%;
}

/* INPUT */
.xr-search input,
.xr-search select {
    height: 44px;
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 0 10px;
}

/* BUTTON */
.xr-btn-submit {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
}

/* MOBILE */
@media(max-width:768px){
    .xr-grid {
        grid-template-columns: 1fr;
    }

    .xr-search {
        margin-top: -40px;
    }
}

/* HERO */
.hs-hero {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
}

.hs-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hs-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* TEXT */
.hs-text h1 {
    color: #fff;
    font-size: 42px;
}

.hs-text p {
    color: #ddd;
    margin-bottom: 25px;
}

/* SEARCH */
.hs-search {
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 20px;
}

/* GRID */
.hs-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 10px;
}

/* FIELD */
.hs-field {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hs-field label {
    font-size: 12px;
    margin-bottom: 5px;
    color: #555;
}

/* INPUT */
.hs-input,
.hs-select {
    height: 45px;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 0 10px;
}

/* BUTTON */
.hs-btn {
    height: 45px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    font-weight: 600;
}

/* DROPDOWN */
.hs-dd {
    position: relative;
}

.hs-dd summary {
    list-style: none;
    height: 45px;
    border-radius: 12px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
    background: #fff;
}

.hs-dd summary::-webkit-details-marker {
    display: none;
}

.hs-dd-box {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    padding: 10px;
    z-index: 999;
}

.hs-dd-box label {
    display: flex;
    gap: 10px;
    padding: 6px;
    cursor: pointer;
}

.hs-dd-box label:hover {
    background: #f5f5f5;
}

/* MOBILE */
@media(max-width:768px){
    .hs-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE HERO FIX */
@media(max-width:768px){

    .hs-hero {
        padding: 40px 15px;
    }

    .hs-container {
        padding: 0 10px;
    }

    .hs-text h1 {
        font-size: 26px;
    }

    .hs-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .hs-search {
        padding: 15px;
        border-radius: 15px;
    }

    .hs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hs-field label {
        font-size: 11px;
    }

    .hs-input,
    .hs-select,
    .hs-dd summary {
        height: 42px;
        font-size: 14px;
    }

    .hs-btn {
        height: 45px;
        font-size: 15px;
        margin-top: 5px;
    }

}


/* =========================
   PRICE GRID
========================= */
.vd-price-modern {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

/* =========================
   TITLE
========================= */
.vd-title {
    grid-column: 1 / -1;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* =========================
   CARD
========================= */
.vd-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 22px;
    border-radius: 16px;

    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform .25s ease, box-shadow .25s ease;
}

/* Hover */
.vd-price-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* =========================
   LEFT SIDE
========================= */
.vd-price-left {
    font-size: 14px;
    line-height: 1.5;
}

.vd-price-left strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.vd-price-min {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 2px;
}

/* =========================
   RIGHT SIDE
========================= */
.vd-price-right {
    text-align: right;
    min-width: 110px; /* hizalama sabit */
}

.vd-price-night {
    font-size: 20px;
    font-weight: 700;
}

.vd-price-type {
    font-size: 11px;
    opacity: 0.8;
    margin-left: 4px;
}

.vd-price-week {
    font-size: 13px;
    margin-top: 4px;
    opacity: 0.9;
}

/* =========================
   FIRST CARD (HIGHLIGHT)
========================= */
.vd-price-box:first-of-type {
    grid-column: 1 / -1;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
    .vd-price-modern {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

/* =========================
   MOBILE FIX (GERÇEK ÇÖZÜM)
========================= */
@media (max-width: 768px){

    .vd-price-modern{
        grid-template-columns:1fr;
        gap:14px;
    }

    .vd-price-box{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;

        padding:16px 18px;
        border-radius:14px;
    }

    /* SOL TAM GENİŞLİK */
    .vd-price-left{
        width:100%;
    }

    /* SAĞ BLOK TAM ALTTA */
    .vd-price-right{
        width:100%;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    /* FİYAT BÜYÜT */
    .vd-price-night{
        font-size:18px;
    }

    /* /gece daha küçük */
    .vd-price-type{
        font-size:11px;
    }

    /* HAFTALIK SAĞA */
    .vd-price-week{
        font-size:12px;
        opacity:.85;
    }

}

/* SECTION anasayfa cardlar */
.xv-villa-section {
    padding: 60px 0;
    background: #f8fafc;
}

/* HEADING */
.xv-heading h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark);
}

.xv-heading p {
    font-size: 14px;
    color: #777;
}

/* BODY */
.xv-body {
    padding: 18px;
}

.xv-body h1 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

/* LOCATION */
.xv-location {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.xv-location i {
    color: #ff7a18;
    margin-right: 5px;
}

/* SPECS */
.xv-specs {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #444;
}

.xv-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* BUTTON */
.xv-more {
    text-align: center;
    width: 100%;
    margin-top: 30px;
}

.xv-btn {
    padding: 12px 22px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.xv-btn:hover {
    opacity: 0.9;
}

/* location iç düzen */
.xv-location {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

/* ayraç */
.xv-sep {
    opacity: 0.5;
}

/* fiyat */
.xv-price {
    font-weight: 600;
    color: var(--primary);
}

/* =========================
   LANGUAGE SWITCHER PRO
========================= */

/* DESKTOP / MOBILE */
.vd-desktop {
    display: flex;
    align-items: center;
}

.vd-lang-mobile {
    display: none;
}

/* =========================
   MAIN BOX
========================= */
.vd-lang {
    position: relative;
    z-index: 9999;
}

/* CURRENT BUTTON */
.vd-lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fad615, #fa9a15);
    cursor: pointer;
    transition: all .2s ease;
}

.vd-lang-current:hover {
    border-color: #00b324;
}

/* FLAG */
.vd-lang-current img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

/* =========================
   DROPDOWN
========================= */
.vd-lang-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    min-width: 120px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    overflow: hidden;

    /* animation */
    opacity: 0;
    transform: translateY(10px);
    transition: all .2s ease;
    pointer-events: none;
}

/* ACTIVE (CLICK) */
.vd-lang.active .vd-lang-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ITEM */
.vd-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    font-size: 13px;
    color: #333;
    transition: all .2s ease;
    border-bottom: 1px solid #eeeeee;
}

/* FLAG ITEM */
.vd-lang-dropdown img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

/* HOVER */
.vd-lang-dropdown a:hover {
    background: #f3f4f6;
}

/* =========================
   REMOVE HOVER SYSTEM ❌
========================= */
/* eski hover kaldırıldı */
/* .vd-lang:hover .vd-lang-dropdown { display:block; } */

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .vd-desktop {
        display: none !important;
    }

    .vd-lang-mobile {
        display: block !important;
        width: 100%;
    }

}

/* =========================
   DARK MODE
========================= */
body.dark .vd-lang-current {
    background: #1f2937;
    color: #fff;
    border-color: #374151;
}

body.dark .vd-lang-dropdown {
    background: #1f2937;
}

body.dark .vd-lang-dropdown a {
    color: #fff;
}

body.dark .vd-lang-dropdown a:hover {
    background: #374151;
}

iframe.goog-te-banner-frame {
    display: none !important;
}

/* sadece Google elemanlarını hedefle */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body > .skiptranslate {
    display: none !important;
}

/* Google'ın body'e eklediği inline top'u override et */
body[style*="top"] {
    top: 0 !important;
}


/* =========================
   HEADER FIX
========================= */

/* google translate top fix */
body {
    top: 0 !important;
}

/* header sabitle */
.header {
    position: relative;
    z-index: 999;
}

/* navigation fix */
.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* menu wrapper fix */
.nav-menus-wrapper {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
}

/* menu düzgün hizala */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* logo hizalama */
.nav-brand img {
    height: 50px;
    object-fit: contain;
}

/* header iç boşluk */
.nav-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* container fix */
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* dropdown z-index fix */
.vd-lang-dropdown {
    z-index: 99999;
}
/* =========================
   MOBILE FIX NAV
========================= */
@media (max-width: 992px){

    .nav-menus-wrapper {
        display: none !important;
    }

    /* açıldığında tekrar göster (plugin kullanıyor) */
    .nav-menus-wrapper.nav-menus-wrapper-open {
        display: block !important;
    }

}

/* =========================
   MOBILE NAV FIX FULL
========================= */
@media (max-width: 992px){

    /* wrapper kapalı */
    .nav-menus-wrapper {
        display: none !important;
    }

    /* plugin açınca */
    .nav-menus-wrapper.nav-menus-wrapper-open {
        display: block !important;
    }

    /* ❌ flex'i iptal et */
    .nav-menu {
        display: block !important;
    }

    /* itemlar alt alta */
    .nav-menu li {
        display: block !important;
        width: 100%;
    }

}



/* =========================
   VDK HEADER (FINAL)
========================= */

.vdk-header {
    position: absolute;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(12px);
    background: rgba(0,0,0,0.25);
}

/* container */
.vdk-container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* logo */
.vdk-logo img {
    height: 60px;
    display: block;
}

/* =========================
   MENU
========================= */
.vdk-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.vdk-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

/* hover underline */
.vdk-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 0;
    background: #247bbd;
    transition: .3s;
}

.vdk-menu a:hover::after {
    width: 100%;
}

/* =========================
   DROPDOWN
========================= */
.vdk-item {
    position: relative;
}

.vdk-dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 210px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: .2s;
}

.vdk-dropdown a {
    display: block;
    padding: 6px 10px;
    color: #333;
    font-weight: 300;
}

.vdk-dropdown a:hover {
    background: #f3f4f6;
}

/* hover aç */
.vdk-item:hover .vdk-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* =========================
   RIGHT SIDE
========================= */
.vdk-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* search */
.vdk-search-btn {
    width: 50px;
    height: 35px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #fad615, #fa9a15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   LANG FIX (ÖNEMLİ)
========================= */
.vdk-lang {
    position: relative;
}

.vdk-lang img {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
}

/* =========================
   MOBILE
========================= */

.vdk-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 15px;

    transition: .3s;
}

.vdk-mobile-menu.active {
    right: 0;
}

/* overlay */
.vdk-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 9998;
}

.vdk-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* active */
.vdk-mobile-menu.active {
    right: 0;
}

/* top */
.vdk-mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.vdk-mobile-top img {
    height: 40px;
}

.vdk-mobile-top span {
    font-size: 22px;
    cursor: pointer;
}

/* links */
.vdk-mobile-links {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    gap: 15px;
}

.vdk-mobile-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #111;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    transition: .2s;
}

.vdk-mobile-links a:hover {
    background: #f3f4f6;
}

/* icon */
.vdk-mobile-links i {
    width: 20px;
    text-align: center;
    color: #00c853;
}

@media(max-width:768px){

    .vdk-menu {
        display: none !important;
    }

}

@media(max-width:768px){

    .vdk-right {
        gap: 6px;
    }

    .vdk-header {
        padding: 5px 0;
    }

}

.vdk-accordion-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    cursor: pointer;
    font-weight: 500;
}

.vdk-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: .3s;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.vdk-accordion-body a {
    padding: 8px 0;
    font-size: 14px;
    color: #333;
}

/* aktif */
.vdk-accordion.active .vdk-accordion-body {
    max-height: 300px;
}
/* =========================
   MOBILE MENU SCROLL FIX
========================= */

/* menu full height */
.vdk-mobile-menu {
    height: 100vh;
    overflow-y: auto;
}

/* accordion body */
.vdk-accordion-body {
    display: none;
    flex-direction: column;
    padding-left: 15px;

    max-height: 250px;
    overflow-y: auto;
}

/* aktif aç */
.vdk-accordion.active .vdk-accordion-body {
    display: flex;
}

/* scroll style (opsiyonel ama güzel) */
.vdk-accordion-body::-webkit-scrollbar {
    width: 4px;
}
.vdk-accordion-body::-webkit-scrollbar-thumb {
    background: #2663eb;
    border-radius: 10px;
}

/* =========================
   TOGGLE VISIBILITY FIX
========================= */

/* desktop'ta gizle */
.vdk-toggle {
    display: none;
}

/* sadece mobilde göster */
@media (max-width: 768px){
    .vdk-toggle {
        display: block;
    }
}

/* =========================
   TOPBAR
========================= */

.vdk-topbar {
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    font-size: 13px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 6px 15px;
}

/* left */
.vdk-topbar-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.vdk-topbar-left a,
.vdk-topbar-left span {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* right */
.vdk-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vdk-topbar-right a {
    color: #fff;
    font-size: 14px;
}

/* badge */
.vdk-badge {
    background: linear-gradient(135deg, #fad615, #fa9a15);
    color: #333;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    margin-left: 15px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .vdk-topbar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .vdk-topbar-left {
        flex-wrap: wrap;
        justify-content: center;
    }

    .vdk-topbar-right {
        justify-content: center;
    }

}


/* wrapper */
.vdx-currency {
    position: relative;
    display: inline-block;
}

/* button */
.vdx-currency-btn {
    cursor: pointer;
    padding: 0px 7px;
    border-radius: 8px;
    font-size: 13px;

    display: flex;
    align-items: center;
    gap: 5px;
}

/* dropdown */
.vdx-currency-list {
    position: absolute;
    top: 145%;
    right: 0;

    background: #fff;
    min-width: 160px;

    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

    display: none;
    padding: 8px 0;

    z-index: 99999;
}

/* items */
.vdx-currency-list a {
    display: block;
    padding: 5px 12px;
    color: #333;
    text-decoration: none;
}

.vdx-currency-list a:hover {
    background: #f5f5f5;
}

/* active state */
.vdx-currency.active .vdx-currency-list {
    display: block;
}

/* hamburger container */
.vdk-toggle {
    width: 60px;
    height: 35px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border-radius: 10px;

    cursor: pointer;
    padding: 10px;

    transition: 0.3s;
}

/* çizgiler */
.vdk-toggle span {
    width: 100%;
    height: 2px;
    background: #fff;
    display: block;
    border-radius: 2px;
    transition: 0.3s;
}

/* hover efekti */
.vdk-toggle:hover {
    transform: scale(1.05);
    background: #00b34a;
}

/* aktif durum */
.vdk-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.vdk-toggle.active span:nth-child(2) {
    opacity: 0;
}

.vdk-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.vdk-toggle {
    display: none;
}

@media(max-width:768px){
    .vdk-toggle {
        display: flex;
    }
}

/* sadece iconlar */
.vdk-topbar-right i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255,255,255,0.15);

    color: #333;
    font-size: 14px;

    transition: all 0.25s ease;
}

/* hover */
.vdk-topbar-right i:hover {
    transform: translateY(-2px) scale(1.1);
}

/* brand renkleri */
.vdk-topbar-right a:nth-child(1) i:hover {
    background: #1877f2; /* facebook */
}

.vdk-topbar-right a:nth-child(2) i:hover {
    background: #000; /* x */
}

.vdk-topbar-right a:nth-child(3) i:hover {
    background: #e1306c; /* instagram */
}

.vdk-topbar-right a:nth-child(4) i:hover {
    background: #ff0000; /* youtube */
}


/* =========================
   VDX HERO GALLERY
========================= */

.vdx-hero-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
}

/* SOL */
.vdx-hero-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
}

.vdx-hero-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.vdx-hero-main:hover img {
    transform: scale(1.06);
}

.vdx-hero-content strong {
    display: block;
    margin: 8px 0;
    font-size: 20px;
}

/* BUTTON */
.vdx-btn {
    background: #0d6efd;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}

/* SAĞ GRID */
.vdx-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vdx-hero-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
}

.vdx-hero-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

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

/* FOTO SAYISI */
.vdx-all-photo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
}

/* MOBILE */
@media(max-width:768px){
    .vdx-hero-gallery {
        grid-template-columns: 1fr;
    }

    .vdx-hero-main {
        height: 300px;
    }

    .vdx-hero-item {
        height: 140px;
    }
}

/* =========================
   HERO GLASS EFFECT
========================= */

.vdx-hero-content {
    position: absolute;
    bottom: 20px;
    left: 20px;

    padding: 20px 22px;
    border-radius: 14px;

    /* GLASS EFFECT */
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #fff;
    max-width: 320px;
}

/* TEXT */
.vdx-hero-content h1 {
    margin: 0;
    font-size: 28px;
    color: #fad615;
}

.vdx-hero-content p {
    margin: 6px 0;
    font-size: 14px;
    opacity: 0.9;
}

.vdx-hero-content strong {
    display: block;
    margin-top: 6px;
    font-size: 18px;
}

/* ICON */
.vdx-location {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vdx-location i {
    color: #ff4d4f;
}

/* =========================
   FAQ SECTION
========================= */
.vd-faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

/* GRID */
.vd-faq-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
}

/* =========================
   ACCORDION
========================= */
.vd-faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.vd-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 10px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.vd-faq-question:hover {
    color: #2563eb;
}

.vd-faq-question i {
    transition: 0.3s;
}

.vd-faq-question.active i {
    transform: rotate(45deg);
}

/* ANSWER */
.vd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vd-faq-answer.open {
    max-height: 500px;
}

.vd-faq-content {
    padding: 0 10px 20px;
    color: #555;
    line-height: 1.6;
}

/* =========================
   RIGHT CARD
========================= */
.vd-help-card {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    position: sticky;
    top: 100px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.vd-help-sub {
    opacity: 0.8;
    margin-bottom: 10px;
}

.vd-help-card h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.vd-help-btn {
    display: inline-block;
    background: #fff;
    color: #2563eb;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.vd-help-btn:hover {
    background: #e0e7ff;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width: 992px) {
    .vd-faq-grid {
        grid-template-columns: 1fr;
    }

    .vd-help-card {
        position: relative;
        top: 0;
    }
}

/* WRAP */
.vd-faq-wrap {
    padding: 70px 0;
    background: #f8fafc;
}

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

/* GRID */
.vd-faq-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
}

/* =========================
   ACCORDION
========================= */
.vd-faq-accordion {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.vd-faq-item {
    border-bottom: 1px solid #eee;
}

.vd-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.vd-faq-question:hover {
    color: #2563eb;
}

.vd-faq-question.active {
    color: #2563eb;
}

/* ICON */
.vd-faq-icon {
    transition: 0.3s;
}

.vd-faq-question.active .vd-faq-icon {
    transform: rotate(45deg);
}

/* ANSWER */
.vd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vd-faq-answer.open {
    max-height: 400px;
}

.vd-faq-content {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}

/* =========================
   RIGHT CARD
========================= */
.vd-trust-mini {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    padding: 30px;
    border-radius: 18px;
    position: sticky;
    top: 100px;
    box-shadow: 0 20px 50px rgba(37,99,235,0.35);
}

.vd-trust-mini h1 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

/* BIG */
.vd-mini-big {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.vd-mini-big span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

/* GRID */
.vd-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.vd-mini-grid div {
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
}

.vd-mini-grid strong {
    display: block;
    font-size: 16px;
}

.vd-mini-grid span {
    font-size: 11px;
    opacity: 0.8;
}

/* BUTTON */
.vd-mini-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #fad615, #fa9a15);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

/* LIVE */
.vd-live-proof {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    opacity: 0.9;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width: 992px){
    .vd-faq-grid {
        grid-template-columns: 1fr;
    }

    .vd-trust-mini {
        position: relative;
        top: 0;
    }
}

/* CARD */
.ux-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    margin-bottom: 20px;
}

.ux-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* IMAGE */
.ux-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.ux-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGE */
.ux-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 999px;
    font-weight: 600;
}

.ux-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.ux-fav i {
    color: #666;
    transition: 0.3s;
}

/* aktif */
.ux-fav.active i {
    color: #ef4444;
}

.ux-fav.active {
    background: #fee2e2;
}

/* DISCOUNT */
.ux-discount {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(135deg, #fad615, #fa9a15);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 600;
}

/* BODY */
.ux-body {
    padding: 15px;
}

/* TOP */
.ux-top {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
}

.ux-location i {
    margin-right: 5px;
}

.ux-code {
    opacity: 0.7;
}

/* TITLE */
.ux-title {
    font-size: 16px;
    font-weight: 700;
    margin: 5px 0 10px;
    text-transform: uppercase;
}

/* SPECS */
.ux-specs {
    display: flex;
    gap: 15px;
    font-size: 13px;
    margin-bottom: 12px;
    color: #555;
}

/* PRICE BOX */
.ux-price-box {
    background: #f3f4f6;
    padding: 10px 12px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ux-price-box small {
    font-size: 11px;
    color: #777;
}

.ux-price-box strong {
    font-size: 15px;
}

/* LINK */
.ux-link {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
}

/* =========================
   FAVORI HEADER
========================= */
.fav-header {
    position: relative;
}

/* ICON */
.fav-icon {
    position: relative;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
}

.fav-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ff3b3b;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50px;
    font-weight: 600;
}

/* =========================
   DROPDOWN
========================= */
.fav-dropdown {
    position: absolute;
    top: 47px;
    right: 0;
    width: 250px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 9999;
}

.fav-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
   ITEM
========================= */
.fav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s ease;
}

.fav-item:hover {
    background: rgba(0,0,0,0.05);
}

/* IMAGE */
.fav-item img {
    width: 65px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

/* TITLE */
.fav-item strong {
    font-size: 13px;
    color: #2563eb;
    font-weight: 600;
}

/* =========================
   EMPTY
========================= */
.fav-list p {
    font-size: 13px;
    color: #777;
    text-align: center;
}

/* =========================
   FOOTER LINK
========================= */
.fav-all {
    display: block;
    text-align: center;
    margin-top: 8px;
    padding: 8px;
    border-radius: 8px;
    background: #f4f6f9;
    font-size: 13px!important;
    font-weight: 600;
    color: #333!important;
    text-decoration: none;
    transition: 0.2s;
}

.fav-all:hover {
    background: #e9edf3;
}

.hs-search {
    position: relative;
}

/* BADGE */
.xhs-badge {
    position: absolute;
    right: 90px;
    bottom: -20px;

    background: linear-gradient(135deg, #fa9a15, #fad615);
    color: #fff;

    font-size: 13px;
    font-weight: 400;

    padding: 6px 20px;
    border-radius: 10px;

    box-shadow: 0 10px 25px rgba(255, 100, 50, 0.3);

    white-space: nowrap;
    z-index: 5;
}
.xhs-badge {
    transition: 0.3s;
}

.xhs-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 100, 50, 0.4);
}
@media (max-width: 768px) {
    .xhs-badge {
        right: 20px;
        bottom: -28px;
        font-size: 12px;
        padding: 7px 15px;
    }
}

/* =========================
   REGIONS SECTION
========================= */
/* SECTION */
.zx-regions{
    padding:70px 0;
}

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

    display:grid;
    grid-template-columns: 1fr 1.5fr;
    gap:60px;
    align-items:center;
}

/* LEFT */
.zx-badge{
    display:inline-block;
    background:#eaf1ff;
    color:#2563eb;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:15px;
}

.zx-left h2{
    font-size:38px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:15px;
}

.zx-left h2 span{
    color:#2563eb;
}

.zx-left p{
    color:#555;
    line-height:1.6;
    max-width:420px;
}

/* RIGHT */
.zx-right{
    display:flex;
    gap:20px;
}

/* CARD */
.zx-vertical-card{
    flex:1;
    height:300px;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    display:block;
    transition:.3s;
}

/* IMAGE */
.zx-img{
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    transition:.5s;
}

/* INFO BOX */

/* BAŞLIK */
.zx-name strong{
    display:block;
    font-size:14px;
    font-weight:700;
    color:#111;
}

/* VILLA SAYISI */
.zx-name span{
    font-size:12px;
    color:#666;
}

/* NAME */
.zx-name{
    position:absolute;
    bottom:10px;
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    padding:6px 14px;
    border-radius:12px;
    font-size:14px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* HOVER */
.zx-vertical-card:hover .zx-img{
    transform:scale(1.1);
}

.zx-vertical-card:hover{
    transform:translateY(-5px);
}

@media(max-width:992px){

    .zx-container{
        grid-template-columns:1fr;
    }

    .zx-right{
        display:flex;
        gap:15px;
        overflow-x:auto;
        padding-bottom:10px;
    }

    .zx-vertical-card{
        min-width:220px;
        height:260px;
        flex:0 0 auto;
    }

}
.zx-right::-webkit-scrollbar{
    display:none;
}
.zx-right{
    scrollbar-width:none;
}
.vxd-depozito{
    display: inline-block;
    margin-top: 6px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #b45309;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 8px;
}

/* =========================
   VDRX RESERVATION UI
   (ULTRA UNIQUE - NO CONFLICT)
========================= */

.vdrx-reservation-grid {
    margin-bottom: 25px;
}

.vdrx-card-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    height: 100%;
    transition: all 0.25s ease;
}

.vdrx-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.vdrx-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.vdrx-card-text {
    font-size: 14px;
    color: #475569;
    margin: 3px 0;
}

.vdrx-card-sub {
    font-size: 12px;
    color: #94a3b8;
}

.vdrx-card-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.vdrx-card-link:hover {
    text-decoration: underline;
}

/* PRICE */

.vdrx-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 6px;
    color: #334155;
}

.vdrx-price-extra {
    color: #16a34a;
    font-weight: 600;
}

.vdrx-price-total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    font-size: 22px;
    font-weight: 700;
    color: #e11d48;
    text-align: right;
}

/* DEPOZITO */

.vdrx-deposit-box {
    text-align: center;
}

.vdrx-deposit-amount {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
}

.vdrx-form-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    margin-top: 20px;
}

.vdrx-form-box .form-control {
    border-radius: 12px!important;
    border: 1px solid #e5e7eb!important;
    padding: 12px 14px!important;
    font-size: 14px!important;
    transition: all 0.2s ease!important;
    background-color: #f1f2f2 !important;
}

.vdrx-form-box .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.vdrx-form-box label {
    font-weight: 600;
    font-size: 13px;
    color: #334155;
}
.vdrx-submit-btn {
    width: 100%;
    border-radius: 14px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    color: #fff;
    transition: 0.3s;
}

.vdrx-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.4);
}
.vdrx-price-total {
    font-size: 24px;
    font-weight: 800;
    color: #e11d48;
    text-align: right;
}
.vdrx-villa-card {
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.vdrx-villa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.vdrx-villa-image {
    overflow: hidden;
}

.vdrx-villa-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: 0.4s;
}

.vdrx-villa-card:hover img {
    transform: scale(1.05);
}

.vdrx-villa-content {
    padding: 14px;
}

.vdrx-card-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.vdrx-card-sub {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
    display: block;
}

.vdrx-card-link {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.vdrx-card-link:hover {
    text-decoration: underline;
}

/* GRID */
.paygrid, .methodgrid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

/* KART GENEL */
.paycard, .methodcard {
    display: block;
    cursor: pointer;
}

.paycard input,
.methodcard input {
    display: none;
}

/* INNER */
.paycard-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
    background: #fff;
    border: 2px solid #eee;
    transition: 0.3s;
}

.paycard:hover .paycard-inner {
    border-color: #3b82f6;
}

/* AKTİF */
.paycard input:checked + .paycard-inner {
    border-color: #3b82f6;
    background: linear-gradient(135deg,#eff6ff,#ffffff);
}

/* ICON */
.paycard-icon {
    font-size: 26px;
}

/* TEXT */
.paycard-title {
    font-weight: 700;
}

.paycard-desc {
    font-size: 13px;
    color: #64748b;
}

/* FİYAT */
.paycard-price {
    margin-left: auto;
    font-weight: 700;
    font-size: 18px;
    color: #2563eb;
}

/* METHOD */
.method-inner {
    padding: 22px;
    border-radius: 14px;
    background: #fff;
    text-align: center;
    border: 2px solid #eee;
    transition: 0.3s;
}

.methodcard input:checked + .method-inner {
    background: linear-gradient(135deg,#22c55e,#16a34a);
    color: #fff;
    border-color: transparent;
}

.method-icon {
    font-size: 28px;
    margin-bottom: 8px;
}
.paycard.active .paycard-inner {
    border: 2px solid #2563eb;
    background: linear-gradient(135deg,#eff6ff,#ffffff);
    box-shadow: 0 10px 25px rgba(37,99,235,0.15);
}

/* hover ayrı */
.paycard:hover .paycard-inner {
    border-color: #2563eb;
}

.payment-wrapper {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.payment-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.pay-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* GRID */
.paygrid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CARD */
.paycard-inner {
    padding: 16px;
    border-radius: 12px;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.paycard.active .paycard-inner {
    border-color: #2563eb;
    background: #eff6ff;
}

.paycard-price {
    margin-left: auto;
    font-weight: 700;
    color: #2563eb;
}

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

.anket-card {
    cursor: pointer;
}

.anket-inner {
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: 0.25s;
}

.anket-card:hover .anket-inner {
    border-color: #2563eb;
}

.anket-card.active .anket-inner {
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(37,99,235,0.25);
}

.anket-icon {
    font-size: 22px;
    margin-bottom: 6px;
}

.anket-title {
    font-size: 13px;
    font-weight: 600;
}
.methodcard.active .method-inner {
    background: linear-gradient(135deg,#22c55e,#16a34a);
    color: #fff;
}
.brh-success {
  padding: 80px 0;
  background: #f1f5f9;
}

.brh-success-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 15px;
}

.brh-success-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.brh-success-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg,#22c55e,#16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
}

.brh-success-title {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.brh-success-desc {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.brh-success-info {
  background: #f8fafc;
  border-radius: 12px;
  padding: 15px;
  font-size: 14px;
  color: #475569;
  margin-bottom: 25px;
  line-height: 1.7;
}

.brh-success-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.brh-btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
}

.brh-btn i {
  margin-right: 6px;
}

.brh-btn-primary {
  background: #1e293b;
  color: #fff;
}

.brh-btn-primary:hover {
  background: #0f172a;
}

.brh-btn-secondary {
  background: #e2e8f0;
  color: #1e293b;
}

.brh-btn-secondary:hover {
  background: #cbd5f5;
}
.probox {
    background:#fff;
    border-radius:16px;
    padding:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    border:1px solid #f1f5f9;
    transition:all .25s ease;
}

.probox:hover {
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(0,0,0,0.08);
}

/* başlık */
.probox h4 {
    font-size:15px;
    font-weight:600;
    margin-bottom:10px;
    color:#111827;
}

/* alt yazılar */
.probox .vdrx-card-sub {
    font-size:12px;
    opacity:0.7;
}

/* fiyat highlight */
.probox .vdrx-price-total {
    font-size:20px;
    font-weight:700;
    color:#ef4444;
}

/* küçük animasyon */
.probox:hover .vdrx-price-total {
    transform:scale(1.05);
}

/* SECTION */
.vdx-kisa-section {
    position: relative;
}

/* HEADER */
.vdx-kisa-header h1 {
    font-size: 34px;
    font-weight: 700;
}

.vdx-kisa-header p {
    opacity: 0.7;
    margin-top: 8px;
}

.vdx-kisa-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    margin-bottom: 10px;
}

/* CARD */
.vdx-kisa-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 20px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
}

.vdx-kisa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* CARD HEAD */
.vdx-kisa-card-head h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* ITEMS */
.vdx-kisa-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vdx-kisa-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.25s;
}

/* AKTİF */
.vdx-kisa-item.aktif {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
}

.vdx-kisa-item.aktif:hover {
    transform: scale(1.03);
}

/* PASİF */
.vdx-kisa-item.pasif {
    background: rgba(255,255,255,0.05);
    color: #aaa;
    cursor: not-allowed;
}

/* BUTTON */
.vdx-kisa-btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.vdx-kisa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.vdx-kisa-card::before {
    content: "";
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* =========================
   VD KISA SURELI PREMIUM UI
========================= */

/* RESET MINI */
.vdks-section *{
    box-sizing:border-box;
}

/* HERO */
.vdks-hero{
    position:relative;
    height:420px;
    background:url('/media/images/anasayfa/anasayfa.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
}
.vdks-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.75));
}
.vdks-hero-inner{
    position:relative;
    z-index:2;
}
.vdks-hero-title{
    color:#fff;
    font-size:44px;
    font-weight:700;
    margin-bottom:10px;
}
.vdks-hero-sub{
    color:#ddd;
    font-size:16px;
}

/* SECTION */
.vdks-section{
    padding:50px 0;
    background:#f7f8fa;
}

/* SIDEBAR */
.vdks-filter-box{
    background:#0f172a;
    border-radius:16px;
    padding:15px;
    margin-bottom:15px;
    color:#fff;
}
.vdks-filter-title{
    font-weight:600;
    margin-bottom:10px;
}
.vdks-filter-list{
    display:flex;
    flex-direction:column;
    gap:6px;
}
.vdks-filter-item{
    display:flex;
    justify-content:space-between;
    padding:8px 10px;
    border-radius:8px;
    color:#cbd5e1;
    text-decoration:none;
    transition:0.3s;
}
.vdks-filter-item:hover{
    background:#1e293b;
    color:#fff;
}

/* CARD */
.vdks-card{
    display:block;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
    text-decoration:none;
}
.vdks-card:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

/* IMAGE */
.vdks-card-media{
    position:relative;
    height:220px;
    overflow:hidden;
}
.vdks-card-img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}
.vdks-card:hover .vdks-card-img{
    transform:scale(1.1);
}

/* BADGE */
.vdks-badge{
    position:absolute;
    top:12px;
    left:12px;
    background:linear-gradient(45deg,#ff7a18,#ff3d00);
    color:#fff;
    padding:5px 12px;
    font-size:12px;
    border-radius:20px;
    font-weight:600;
}

/* BODY */
.vdks-card-body{
    padding:16px;
}

/* TITLE */
.vdks-card-title{
    font-size:18px;
    font-weight:600;
    color:#111;
    margin-bottom:8px;
}

/* DATE */
.vdks-card-date{
    font-size:13px;
    color:#666;
    margin-bottom:12px;
}
.vdks-card-date span{
    display:block;
    color:#111;
    font-weight:500;
    margin-top:2px;
}

/* BUTTON */
.vdks-card-button{
    background:linear-gradient(45deg,#7b2ff7,#f107a3);
    color:#fff;
    text-align:center;
    padding:10px;
    border-radius:10px;
    font-weight:600;
    margin-bottom:12px;
    transition:0.3s;
}
.vdks-card-button:hover{
    opacity:0.85;
}

/* SPECS */
.vdks-card-specs{
    display:flex;
    justify-content:space-between;
    border-top:1px solid #eee;
    padding-top:10px;
    font-size:13px;
    color:#444;
}
.vdks-spec{
    display:flex;
    align-items:center;
    gap:4px;
}

/* GRID SPACING FIX */
.vdks-section .row > div{
    margin-bottom:20px;
}

/* MOBILE */
@media(max-width:992px){

    .vdks-hero{
        height:300px;
    }

    .vdks-hero-title{
        font-size:28px;
    }

    .vdks-section{
        padding:30px 0;
    }

    .vdks-filter-box{
        margin-bottom:20px;
    }
}

@media(max-width:576px){

    .vdks-card-media{
        height:180px;
    }

    .vdks-card-title{
        font-size:16px;
    }

}

/* WRAP */
.vdvfs-wrap{
    background:#fff;
    padding:18px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.vdvfs-close{
    font-size:13px;
    color:#888;
}

/* BOX */
.vdvfs-box{
    margin-bottom:20px;
}

.vdvfs-label{
    font-size:13px;
    font-weight:600;
    margin-bottom:8px;
    display:block;
}

/* INPUT */
.vdvfs-input-group{
    position:relative;
    margin-bottom:10px;
}

.vdvfs-input-group i{
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
}

.vdvfs-input,
.vdvfs-select{
    width:100%;
    padding:10px 10px 10px 32px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:13px;
}

/* CHECKBOX */
.vdvfs-check{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:8px;
    cursor:pointer;
}

.vdvfs-check input{
    display:none;
}

.vdvfs-check-ui{
    width:16px;
    height:16px;
    border:2px solid #ddd;
    border-radius:4px;
}

.vdvfs-check input:checked + .vdvfs-check-ui{
    background:#3b82f6;
    border-color:#3b82f6;
}

.vdvfs-check-text{
    font-size:13px;
}

/* DEAL BOX */
.vdvks-deal{
    background: linear-gradient(135deg, #fad615, #fa9a15);
    color:#fff;
    padding:18px;
    border-radius:16px;
    margin:14px 0 20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(255,60,0,0.25);
}

/* BADGE */
.vdvks-badge{
    font-size:12px;
    font-weight:700;
    margin-bottom:10px;
    letter-spacing:.5px;
    opacity:.9;
}

/* TARİH */
.vdvks-dates{
    font-size:14px;
    font-weight:500;
    margin-bottom:8px;
    opacity:.95;
}

/* GECE */
.vdvks-night{
    font-size:16px;
    font-weight:600;
    margin-bottom:6px;
}

/* FİYAT (EN ÖNEMLİ) */
.vdvks-price{
    font-size:26px;
    font-weight:800;
    margin:10px 0 14px;
}

/* BUTTON */
.vdvks-btn{
    display:block;
    background:#fff;
    color:#ff3d00;
    padding:10px;
    border-radius:12px;
    font-size:14px;
    font-weight:700;
    transition:.3s;
}

.vdvks-btn:hover{
    background:#ffe5df;
}

/* spacing fix */
.vdvks-deal > div{
    display:block;
}


/* MAP */
.vdvmap2-box{
    height:300px;
    background:#f5f5f5;
}

.vdvmap2-box iframe{
    width:100%;
    height:100%;
    border:0;
}

/* EMPTY */
.vdvmap2-empty{
    height:300px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#999;
}

/* BUTTON WRAP */
.vdvmap-btns{
    display:flex;
    gap:10px;
}

/* BUTTON */
.vdvmap-btn{
    flex:1;
    text-align:center;
    padding:10px;
    border-radius:10px;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

/* BLUE */
.vdvmap-btn-primary{
    background:linear-gradient(135deg, #5382e9, #2563eb);
    color:#fff;
}

/* GREEN */
.vdvmap-btn-secondary{
    background:linear-gradient(270deg, #5382e9, #2563eb);
    color:#fff;
}

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

/* WRAP */
.vdvbook-wrap{
    background:#fff;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    padding:16px;
}

/* ROW */
.vdvbook-row{
    display:flex;
    gap:10px;
    margin-bottom:10px;
}

.vdvbook-col{
    flex:1;
}

/* INPUT */
.vdvbook-input{
    position:relative;
}

.vdvbook-input i{
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
}

.vdvbook-input input{
    width:100%;
    padding:10px 10px 10px 32px;
    border-radius:10px;
    border:1px solid #eee;
    background:#f9fafb;
    font-size:13px;
}

/* RESULT */
.vdvbook-result{
    margin-bottom:10px;
}

/* ACTIONS */
.vdvbook-actions{
    display:flex;
    flex-direction:column;
    gap:8px;
}

/* HESAPLA */
.vdvbook-calc{
    border:none;
    background:#ffe4e6;
    color:#b91c1c;
    padding:10px;
    border-radius:10px;
    font-size:13px;
    font-weight:600;
}

/* CTA */
.vdvcta-btn{
    width:100%;
    border:none;
    padding:14px;
    border-radius:14px;
    font-size:15px;
    font-weight:700;
    color:#fff;
    cursor:pointer;
    position:relative;
    overflow:hidden;

    background: linear-gradient(135deg, #fad615, #fa9a15);
    box-shadow:0 10px 25px rgba(255,60,0,0.3);

    transition:.3s;
}

/* TEXT */
.vdvcta-btn span{
    position:relative;
    z-index:2;
}

/* SHINE */
.vdvcta-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
    transition:.6s;
}

/* HOVER */
.vdvcta-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 35px rgba(255,60,0,0.4);
}

.vdvcta-btn:hover::before{
    left:100%;
}

/* ACTIVE */
.vdvcta-btn:active{
    transform:scale(.97);
}


/* HEADER */
.vdvcm2-header{
    margin-bottom:20px;
}

.vdvcm2-title{
    font-size:20px;
    font-weight:600;
    color:#222;
}

.vdvcm2-title span{
    color:#ff6b00;
    font-weight:700;
}

/* LIST */
.vdvcm2-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* ITEM */
.vdvcm2-item{
    background:#fff;
    border-radius:16px;
    padding:18px;
    transition:0.3s;
    border:1px solid #f1f1f1;
}

.vdvcm2-item:hover{
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transform:translateY(-2px);
}

/* USER */
.vdvcm2-user{
    font-size:15px;
    font-weight:600;
    color:#111;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* DATE */
.vdvcm2-date{
    font-size:12px;
    color:#999;
}

/* STARS */
.vdvcm2-stars{
    margin:8px 0;
    color:#ffb400;
    font-size:14px;
}

/* TEXT */
.vdvcm2-text{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* EMPTY */
.vdvcm2-empty{
    text-align:center;
    padding:40px;
    color:#aaa;
}

.vdvcm2-empty h1{
    font-size:40px;
    margin-bottom:10px;
}

/* CARD */
.vdvrt2-card{
    border:none;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.vdvrt2-body{
    padding:25px;
}

/* LAYOUT */
.vdvrt2-wrap{
    display:flex;
    gap:30px;
    align-items:center;
}

@media(max-width:768px){
    .vdvrt2-wrap{
        flex-direction:column;
        align-items:flex-start;
    }
}

/* SOL SCORE */
.vdvrt2-summary{
    min-width:140px;
    text-align:center;
}

.vdvrt2-score{
    font-size:42px;
    font-weight:700;
    color:#ff6b00;
    display:block;
}

.vdvrt2-label{
    font-size:13px;
    color:#888;
}

.vdvrt2-stars{
    margin-top:8px;
    color:#ffb400;
}

/* BARLAR */
.vdvrt2-bars{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.vdvrt2-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.vdvrt2-name{
    font-size:13px;
    color:#555;
    width:80px;
}

/* PROGRESS */
.vdvrt2-inner{
    flex:1;
    display:flex;
    align-items:center;
    gap:10px;
}

.vdvrt2-progress{
    flex:1;
    height:8px;
    background:#eee;
    border-radius:10px;
    overflow:hidden;
}

.vdvrt2-fill{
    height:100%;
    background:linear-gradient(90deg,#ff7a18,#ffb347);
    border-radius:10px;
}

/* VALUE */
.vdvrt2-value{
    font-size:13px;
    font-weight:600;
    color:#222;
    min-width:30px;
    text-align:right;
}


/* yeni takvim */
/* genel gün kutusu */
.flatpickr-day {
    border-radius: 50% !important;
}

/* dolu */
.vd-takvim-dolu {
    background: #e74c3c !important;
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(231,76,60,0.4);
}

/* giriş */
.vd-takvim-giris {
    background: linear-gradient(310deg, #e74c3c 50%, transparent 50%) !important;
    color: #fff!important;
    border: none!important;
    text-shadow: -1px -1px #000000;
}

/* çıkış */
.vd-takvim-cikis {
    background: linear-gradient(130deg, #e74c3c 50%, transparent 50%) !important;
    color: #fff!important;
    border: none!important;
    text-shadow: 1px 1px #000000;
}

.vd-takvim-beklemede {
    background: #28a745 !important;
    color: #fff !important;
}

/* ❗ EN KRİTİK: kırmızı giriş/çıkışı iptal et */
.vd-takvim-beklemede-giris {
    background: linear-gradient(310deg, #28a745 50%, transparent 50%) !important;
    color: #fff!important;
    border: none!important;
    text-shadow: -1px -1px #000000;
}

.vd-takvim-beklemede-cikis {
    background: linear-gradient(130deg, #28a745 50%, transparent 50%) !important;
    color: #fff!important;
    border: none!important;
    text-shadow: 1px 1px #000000;
}
/* 🔴 + 🟢 (sol kırmızı sağ yeşil) */
.vd-takvim-karisik-giris {
    background: linear-gradient(310deg, #28a745 50%, #e74c3c 50%) !important;
    color: #fff !important;
}

/* 🔴 + 🟢 (sol yeşil sağ kırmızı) */
.vd-takvim-karisik-cikis {
    background: linear-gradient(130deg, #28a745 50%, #e74c3c 50%) !important;
    color: #fff !important;
}
.vd-takvim-dolu-beklemede-giris{
   background: linear-gradient(310deg, #28a745 50%, #e74c3c 50%) !important;
    color: #fff !important;
}

.vd-takvim-dolu-beklemede-cikis{
   background: linear-gradient(130deg, #28a745 50%, #e74c3c 50%) !important;
    color: #fff !important;
}

/* yeni takvim */