:root {
    --primary: #3BA7FF;
    --primary-light: #6ED0FF;
    --primary-dark: #1C6ED5;
}

/* ========================= */
/* HERO MODERN */
/* ========================= */

.hero-modern {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: visible !important;
    z-index: 1;
}

/* ARKA PLAN GÖRSEL */
.hero-modern img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    z-index: 1;
}

/* OVERLAY */
.hero-modern .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    pointer-events: none;
}

/* İÇERİK */
.hero-modern .hero-inner {
    position: relative;
    z-index: 3;

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

    height: 100%;
    text-align: center;
}

/* BAŞLIK */
.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

/* ALT YAZI */
.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ddd;
}

/* ========================= */
/* HERO SEARCH */
/* ========================= */

.hero-search-new {
    background: rgba(255,255,255,0.95);
    padding: 15px;
    border-radius: 60px;
    max-width: 1100px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
}

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

/* INPUT & SELECT */
.search-grid select,
.search-grid input {
    padding: 10px;
    border: none;
    outline: none;
    background: transparent;
}

/* BUTTON */
.search-grid button {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.search-grid button:hover {
    opacity: 0.9;
}

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

/* ========================= */
/* SELECT2 CLEAN STYLE */
/* ========================= */

.select2-container {
    width: 100% !important;
}

/* HERO INPUT */
.hero-modern .select2-container--default .select2-selection--multiple {
    background: rgba(255,255,255,0.6);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: none;
    min-height: 45px;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

/* PLACEHOLDER */
.select2-container--default .select2-selection__placeholder {
    color: #555;
    font-size: 14px;
}

/* TAG */
.select2-container--default .select2-selection__choice {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 2px 8px rgba(59,167,255,0.4);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
}

/* TAG REMOVE */
.select2-container--default .select2-selection__choice__remove {
    color: #fff;
    margin-right: 6px;
    font-weight: bold;
}

/* DROPDOWN */
.select2-dropdown {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    animation: fadeIn 0.2s ease;
}

/* LIST */
.select2-results__option {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
}

/* HOVER */
.select2-results__option--highlighted {
    background: var(--primary) !important;
    color: #fff;
}

/* SELECTED */
.select2-results__option[aria-selected=true] {
    background: #f1f1f1;
    color: #333;
}

/* ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px);}
    to { opacity: 1; transform: translateY(0);}
}

/* CARD */
.nk-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: 0.4s;
}

/* IMAGE */
.nk-card-img {
    position: relative;
    overflow: hidden;
}

.nk-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.4s;
}

/* HOVER */
.nk-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */
.nk-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 20%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.1) 100%
    );
}

/* =========================
   NK CARD SYSTEM
========================= */

/* CARD */
.nk-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    transition: 0.4s;
}

/* IMAGE */
.nk-card-img {
    position: relative;
    overflow: hidden;
}

.nk-card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
    filter: brightness(0.9);
}

/* HOVER ZOOM */
.nk-card:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* OVERLAY */
.nk-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 20%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.1) 100%
    );
    z-index: 1;
}

/* PRICE */
.nk-card-price {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 3;
}

/* CONTENT */
.nk-card-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    z-index: 3;
    color: #fff;
}

/* TITLE */
.nk-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* LOCATION */
.nk-card-location {
    font-size: 13px;
    opacity: 0.9;
    display: block;
    margin-top: 3px;
}

/* SPECS */
.nk-card-specs {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* SPECS ITEM */
.nk-card-specs span {
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    backdrop-filter: blur(6px);
}

/* HOVER SHADOW */
.nk-card:hover {
    transform: translateY(-5px);
}

/* MOBILE */
@media(max-width:768px){
    .nk-card-img img {
        height: 200px;
    }
}

/* GRID FIX */
.nk-grid {
    row-gap: 25px;
}

/* COL spacing override */
.nk-grid > div {
    margin-bottom: 0 !important;
}

/* FLEX ROW */
.nk-card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* SOL TARAF */
.nk-card-left {
    max-width: 70%;
}

/* BUTON SAĞ */
.nk-card-btn {
    background: #fff;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;

    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    white-space: nowrap;
}

/* HOVER */
.nk-card:hover .nk-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.villa-hero {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 10px;
}

.hero-item:nth-child(2) { grid-row: span 2; }
.hero-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* overlay */
.villa-hero-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 5;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.villa-hero-content h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.villa-hero-price {
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
}

.btn-rez {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    padding: 10px 18px;
    color: #fff;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
}

/* foto sayısı butonu */
.tumunu-gor {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
}
.villa-info-bar {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1f1f1f;
    padding: 10px 15px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.info-item i {
    color: var(--primary);
    font-size: 16px;
}

.info-item:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.info-item:hover i {
    color: #fff;
}
.info-item.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    font-weight: bold;
}
.rez-box {
    position: sticky;
    top: 100px;
    background: #1f1f1f;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
}

.rez-box input {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 6px;
    border: none;
}

.rez-hesap {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.btn-rez-big {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 12px;
    border-radius: 8px;
    border: none;
    color: #fff;
    margin-top: 10px;
}

.villa-avantajlar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.avantaj {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.avantaj i {
    color: var(--primary);
    font-size: 18px;
}

.avantaj:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.vd-fiyat-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vd-fiyat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 8px 20px rgba(59,167,255,0.2);
    padding: 14px 18px;
    border-radius: 12px;
    color: #fff;
    transition: 0.3s;
}

.vd-fiyat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(59,167,255,0.4);
}

.vd-fiyat-tarih {
    font-weight: 600;
    font-size: 14px;
}

.vd-fiyat-right {
    text-align: right;
}

.vd-gecelik {
    font-size: 16px;
    font-weight: 700;
}

.vd-haftalik {
    font-size: 13px;
    opacity: 0.9;
}

.vd-fiyat-item small {
    font-size: 11px;
    opacity: 0.8;
}
.vd-fiyat-list {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 5px;
}

/* scrollbar güzelleştirme */
.vd-fiyat-list::-webkit-scrollbar {
    width: 6px;
}

.vd-fiyat-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.vd-fiyat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

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

/* =========================
   REZ BOX MODERN
========================= */

.rez-box {
    position: sticky;
    top: 100px;
    background: #121212;
    border-radius: 14px;
    padding: 20px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.05);
}

.rez-title {
    margin-bottom: 15px;
    font-size: 18px;
}

/* input */
.rez-box input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    margin-bottom: 10px;
    background: #1f1f1f;
    color: #fff;
}

/* sonuç */
.rez-result {
    margin: 10px 0;
    font-size: 14px;
}

/* hesapla */
.rez-calc-btn {
    width: 100%;
    margin-bottom: 10px;
    background: transparent;
    border: 1px dashed #3BA7FF;
    color: #3BA7FF;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

/* ana buton */
.btn-rez-big {
    width: 100%;
    background: linear-gradient(135deg, #3BA7FF, #6ED0FF);
    padding: 12px;
    border-radius: 10px;
    border: none;
    color: #fff;
    font-weight: 600;
}

.vd-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.vd-info-box {
    background: #1f2128;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.vd-info-box h4 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

/* özellikler */
.vd-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.vd-feature {
    background: rgba(255,255,255,0.05);
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

/* mesafeler */
.vd-distance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}

.vd-distance img {
    width: 18px;
    margin-right: 8px;
}

.vd-distance strong {
    color: #4facfe;
}

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

.vd-feature:hover {
    background: #4facfe;
    color: #fff;
    transform: translateY(-2px);
}

