* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    color: #222;
}

.navbar {
    width: 100%;
    padding: 22px 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    box-shadow: 0 3px 15px rgba(0,0,0,.08);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.logo {
    font-size: 30px;
    font-weight: 800;
    color: #0b4f6c;
}

.navbar a {
    color: #222;
    text-decoration: none;
    margin-left: 28px;
    font-weight: 700;
}

.hero {
    min-height: 100vh;
    padding: 160px 60px 80px;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1800") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 1100px;
    color: white;
}

.hero h1 {
    font-size: 62px;
    margin-bottom: 18px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 35px;
}

.search-box {
    background: white;
    padding: 18px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 12px;
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.search-box select,
.search-box input,
.search-box button {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.search-box button {
    background: #d4af37;
    color: white;
    border: none;
    font-weight: 800;
    cursor: pointer;
}

.featured,
.regions,
.testimonials {
    padding: 90px 60px;
    text-align: center;
    background: white;
}

.featured h2,
.regions h2,
.section-title h2 {
    font-size: 42px;
    color: #0b4f6c;
    margin-bottom: 10px;
}

.featured > p,
.regions > p,
.section-title p {
    color: #666;
    margin-bottom: 45px;
}

.villa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.villa-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0,0,0,.10);
    transition: all .35s ease;
    border: 1px solid rgba(0,0,0,.05);
}
.villa-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}
.villa-img {
    position: relative;
}

.villa-img img,
.villa-card > img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.fav-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 22px;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    z-index: 5;
}

.fav-btn:hover {
    transform: scale(1.15);
}

.fav-btn.active {
    background: #e63946;
    color: white;
    transform: scale(1.1);
}

.villa-badge {
    position: absolute;
    left: 15px;
    top: 15px;
    background: #d4af37;
    color: #111;
    padding: 7px 13px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
}

.villa-body {
    padding: 25px;
}

.villa-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.villa-top h3,
.villa-body h3 {
    font-size: 25px;
    color: #0b4f6c;
}

.villa-top span {
    color: #d4af37;
    font-weight: 800;
}

.villa-location {
    color: #666;
    margin-bottom: 15px;
}

.villa-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 14px;
}
.villa-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 18px 0;
}

.price-label {
    font-size: 13px;
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.villa-price strong {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.villa-price small {
    color: #888;
    font-size: 13px;
}
.villa-price strong {
    font-size: 28px;
    color: #0f3d4a;
}
.villa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    margin-top: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all .35s ease;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}
.villa-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #1e3a8a, #d4af37);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.35);
}
.region-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.region-card {
    height: 280px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.region-card.big {
    grid-column: span 2;
}

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

.region-card:hover img {
    transform: scale(1.08);
}

.region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.15));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    padding: 28px;
}

.region-overlay h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

.why-us {
    padding: 90px 8%;
    background: #f8f5ef;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card,
.testimonial-card {
    background: white;
    padding: 35px 25px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: .3s;
}

.why-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
}

.why-card .icon {
    font-size: 38px;
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.why-card p,
.testimonial-card p {
    color: #666;
    line-height: 1.7;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.stars {
    color: #f4b400;
    font-size: 22px;
    margin-bottom: 18px;
}

.testimonial-card p {
    margin-bottom: 25px;
}

.testimonial-card h4 {
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #888;
    font-size: 14px;
}

.availability {
    padding: 90px 8%;
    background: #f8f5ef;
}

.availability-box {
    background: #0f3d4a;
    color: white;
    border-radius: 28px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.availability-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
}

.availability-box p {
    color: #d6e4e8;
    margin-bottom: 30px;
}

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

.availability-form input,
.availability-form select,
.availability-form button {
    padding: 15px;
    border: none;
    border-radius: 12px;
    outline: none;
}

.availability-form button {
    background: #d4af37;
    color: #111;
    font-weight: 800;
    cursor: pointer;
}

.footer {
    background: #082f3a;
    color: white;
    padding: 70px 8% 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.footer-brand p,
.footer-col p {
    color: #cbd5e1;
    line-height: 1.7;
}

.footer-col h3 {
    margin-bottom: 18px;
    font-size: 20px;
}

.footer-col a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 45px;
    padding-top: 20px;
    text-align: center;
    color: #cbd5e1;
}

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25d366;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    z-index: 999;
}

@media (max-width: 900px) {
    .navbar {
        padding: 18px 25px;
        flex-direction: column;
        gap: 12px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .search-box,
    .villa-grid,
    .region-grid,
    .why-grid,
    .testimonial-grid,
    .availability-form,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .featured,
    .regions,
    .testimonials,
    .why-us,
    .availability {
        padding: 60px 25px;
    }

    .region-card.big {
        grid-column: span 1;
    }
}
.villa-img {
    overflow: hidden;
}

.villa-img img {
    transition: transform .5s ease;
}

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

.fav-btn:hover {
    background: #d4af37;
    color: #111;
}

.villa-card {
    border: 1px solid rgba(0,0,0,.06);
}
.villas-hero {
    padding: 160px 8% 90px;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1800") center/cover no-repeat;
    color: white;
    text-align: center;
}

.villas-hero span {
    color: #d4af37;
    font-weight: 800;
}

.villas-hero h1 {
    font-size: 56px;
    margin: 15px 0;
}

.villas-hero p {
    font-size: 20px;
}

.villa-page-wrapper {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 35px;
    background: #f8f5ef;
}

.villa-filters {
    background: white;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.villa-filters h3 {
    color: #0b4f6c;
    font-size: 24px;
    margin-bottom: 22px;
}

.villa-filters label {
    display: block;
    margin: 18px 0 8px;
    font-weight: 800;
}

.villa-filters select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.villa-filters button {
    width: 100%;
    margin-top: 25px;
    padding: 15px;
    border: none;
    border-radius: 14px;
    background: #d4af37;
    font-weight: 800;
    cursor: pointer;
}

.villa-results-top {
    background: white;
    padding: 24px;
    border-radius: 22px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.villa-results-top h2 {
    color: #0b4f6c;
}

.villa-results-top p {
    color: #666;
}

.villa-results-top select {
    padding: 13px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.villa-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media(max-width:900px) {
    .villa-page-wrapper {
        grid-template-columns: 1fr;
        padding: 60px 25px;
    }

    .villa-filters {
        position: static;
    }

    .villa-results-top {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .villa-list-grid {
        grid-template-columns: 1fr;
    }

    .villas-hero h1 {
        font-size: 38px;
    }
}
/* ===========================
   VILLA DETAIL PAGE
=========================== */

.detail-hero{
    margin-top:90px;
    height:320px;
    background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1800") center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

.detail-hero h1{
    font-size:56px;
    margin-bottom:15px;
}

.detail-hero p{
    font-size:22px;
}

.villa-detail-page{
    padding:70px 8%;
    background:#f8f5ef;
}

.detail-gallery{
    margin-bottom:45px;
}

.main-photo{
    width:100%;
    height: 300px;
    object-fit:cover;
    border-radius:22px;
    margin-bottom:20px;
}

.thumb-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.thumb-grid img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:18px;
    cursor:pointer;
    transition:.3s;
}

.thumb-grid img:hover{
    transform:scale(1.03);
}

.detail-layout{
    display:grid;
    grid-template-columns:2fr 380px;
    gap:40px;
}

.detail-content{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.detail-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.detail-title h2{
    color:#0b4f6c;
    font-size:38px;
}

.detail-location{
    color:#666;
    margin-bottom:35px;
}

.detail-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:40px;
}

.detail-features div{
    background:#f8f8f8;
    padding:22px;
    border-radius:18px;
    text-align:center;
}

.detail-features strong{
    display:block;
    font-size:20px;
    margin-bottom:8px;
}

.detail-features span{
    color:#666;
    font-size:14px;
}

.detail-content h3{
    margin:35px 0 18px;
    color:#0b4f6c;
}

.detail-content p{
    line-height:1.9;
    color:#555;
}

.amenities{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    list-style:none;
    padding:0;
}

.amenities li{
    background:#f5f5f5;
    padding:16px;
    border-radius:12px;
}

.booking-box{
    position:sticky;
    top:120px;
    background:#fff;
    padding:30px;
    border-radius:22px;
    height:fit-content;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.booking-price{
    text-align:center;
    margin-bottom:25px;
}

.booking-price strong{
    display:block;
    font-size:42px;
    color:#0b4f6c;
}

.booking-price span{
    color:#888;
}

.booking-box label{
    display:block;
    margin-top:18px;
    margin-bottom:8px;
    font-weight:bold;
}

.booking-box input,
.booking-box select{
    width:100%;
    padding:15px;
    border-radius:12px;
    border:1px solid #ddd;
}

.booking-btn{
    width:100%;
    margin-top:28px;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#d4af37;
    font-weight:bold;
    cursor:pointer;
}

.booking-whatsapp{
    display:block;
    margin-top:15px;
    text-align:center;
    padding:15px;
    background:#25d366;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:bold;
}

.calendar-box{
    margin-top:25px;
    background:#fafafa;
    border-radius:18px;
    padding:20px;
}

.calendar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.calendar-header button{
    border:none;
    background:#0b4f6c;
    color:#fff;
    width:36px;
    height:36px;
    border-radius:50%;
    cursor:pointer;
}

.calendar-days{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:10px;
}

.calendar-days span{
    text-align:center;
    font-weight:bold;
}

.calendar-days button{
    height:45px;
    border:none;
    border-radius:10px;
    background:#fff;
    cursor:pointer;
}

.calendar-days .busy{
    background:#ef4444;
    color:#fff;
}

.calendar-days .selected{
    background:#d4af37;
    color:#111;
}

@media(max-width:900px){

.detail-layout{
    grid-template-columns:1fr;
}

.thumb-grid{
    grid-template-columns:repeat(2,1fr);
}

.detail-features{
    grid-template-columns:repeat(2,1fr);
}

.main-photo{
    height: 300px;
}

.detail-hero h1{
    font-size:38px;
}

.booking-box{
    position:static;
}

}
/* Villa detay sayfası galeri düzeltmesi */

.detail-gallery {
    max-width: 1200px;
    margin: 0 auto 45px;
}
.main-photo{
    width:100%;
    border-radius:24px;
    overflow:hidden;
}

.main-photo img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}
.thumb-grid img {
    height: 140px;
}
/* Villa detay ana fotoğraf son düzeltme */
img.main-photo{
    width:100%;
    height:320px !important;
    object-fit:cover;
    border-radius:24px;
    display:block;
}
/* Villa detay galeri daha premium görünüm */
.detail-gallery{
    max-width: 1050px !important;
}

img.main-photo{
    height: 300px !important;
}
.fav-btn.active{
    background:#d4af37;
    color:#111;
}
.fav-btn.active {
    background: #e63946;
    color: #fff;
    transform: scale(1.1);
}

.fav-btn {
    transition: all .3s ease;
    cursor: pointer;
}
#favorites-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

#favorites-list .villa-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

#favorites-list .villa-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .5s ease;
}
.villa-card:hover .villa-img img {
    transform: scale(1.08);
}
.remove-favorite-btn {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #e63946;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
.villa-results {
    width: 100%;
}

#favorites-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}
.favorites-page .villa-results {
    width: 100%;
}
.favorites-page .villa-page-wrapper {
    display: block;
    padding: 60px 8%;
}

.favorites-page .villa-results {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.favorites-page #favorites-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.favorites-page .villa-card {
    width: 100%;
}
.villa-card {
    position: relative;
}

.villa-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(212, 175, 55, 0.18),
        transparent
    );
    transition: .7s;
    z-index: 2;
    pointer-events: none;
}

.villa-card:hover::before {
    left: 120%;
}
.villa-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.villa-tags span {
    background: #f5f7fa;
    color: #334155;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.villa-tags span:hover {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}
/* Sağ taraftaki küçük müsaitlik kutusu */
.sidebar .availability-box,
.booking-box .availability-box {
    margin-top: 18px;
    padding: 22px 18px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.sidebar .availability-box h3,
.booking-box .availability-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #073f52;
}

.sidebar .calendar,
.booking-box .calendar {
    display: none;
}

.sidebar .calendar-info,
.booking-box .calendar-info {
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    margin-top: 0;
}

/* Takvim içindeki yarım gün görünümü */
.calendar-day.half {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.calendar-day.half::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4ade80 0 50%, transparent 50% 100%);
    z-index: 0;
}

.calendar-day.half {
    z-index: 1;
}

.calendar-day.half span {
    position: relative;
    z-index: 2;
}
.calendar-box {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header button {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #06485f;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    margin-bottom: 12px;
}

.calendar {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    height: 55px;
    border: none;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.calendar-day.available {
    background: #dcfce7;
}

.calendar-day.booked {
    background: #ef4444;
    color: white;
}

.calendar-day.option {
    background: #eab308;
    color: #111;
}

.calendar-day.half {
    background: linear-gradient(135deg, #22c55e 0 50%, #ffffff 50% 100%);
    border: 1px solid #ddd;
}

.calendar-info.bottom,
.calendar-info.compact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 18px;
    font-size: 14px;
    flex-wrap: wrap;
}

.dot {
    width: 13px;
    height: 13px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

.available-dot {
    background: #22c55e;
}

.booked-dot {
    background: #ef4444;
}

.option-dot {
    background: #eab308;
}

.availability-box {
    padding: 22px;
    text-align: center;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* Profesyonel Müsaitlik Takvimi */
.calendar-box {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}

.calendar-header {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    margin-bottom: 28px;
}

.calendar-header strong {
    text-align: center;
    font-size: 24px;
    color: #111;
}

.calendar-header button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #06485f;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.calendar-weekdays,
.calendar {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}

.calendar-weekdays {
    margin-bottom: 14px;
    text-align: center;
    font-weight: 700;
}

.calendar-day {
    height: 64px;
    border: none;
    border-radius: 12px;
    background: #dcfce7;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.calendar-day.booked {
    background: #ef4444;
    color: white;
}

.calendar-day.option {
    background: #f3b800;
    color: #111;
}

.calendar-day.half {
    background: #fff;
    border: 1px solid #ddd;
}

.calendar-day.half::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 55%;
    background: #22c55e;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.calendar-day span {
    position: relative;
    z-index: 2;
}

.calendar-info.bottom {
    margin-top: 28px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
}
.sidebar-legend {
    padding: 16px 14px;
}

.sidebar-legend .calendar-info.compact {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.sidebar-legend .dot {
    margin-right: 6px;
}
.sidebar-legend .calendar-info.compact span {
    color: #111 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center;
}

.sidebar-legend .calendar-info.compact {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 20px !important;
}

.sidebar-legend .dot {
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0;
}
.calendar-day.checkin,
.calendar-day.checkout {
    background: #fff !important;
    border: 1px solid #d1d5db;
}

.calendar-day.checkin::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #22c55e 0 50%, transparent 50%);
}

.calendar-day.checkout::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(315deg, #22c55e 0 50%, transparent 50%);
}

.calendar-day.checkin span,
.calendar-day.checkout span {
    position: relative;
    z-index: 2;
}
.calendar-day.checkin::before {
    background: #22c55e !important;
    width: 34px !important;
    height: 34px !important;
    inset: 0 auto auto 0 !important;
    clip-path: polygon(0 0, 100% 0, 0 100%) !important;
}

.calendar-day.checkout::before {
    background: #22c55e !important;
    width: 34px !important;
    height: 34px !important;
    inset: 0 0 auto auto !important;
    clip-path: polygon(100% 0, 100% 100%, 0 0) !important;
}
.calendar-day.checkin::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 36px !important;
    height: 36px !important;
    background: #22c55e !important;
    clip-path: polygon(0 0, 100% 0, 0 100%) !important;
}

.calendar-day.checkout::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 36px !important;
    height: 36px !important;
    background: #22c55e !important;
    clip-path: polygon(100% 0, 100% 100%, 0 0) !important;
}
.calendar-day.selected-range {
    background: #bbf7d0 !important;
    border: 1px solid #86efac;
}
/* TAKVİM GİRİŞ / ÇIKIŞ SON DÜZELTME */
.calendar-day.checkin,
.calendar-day.checkout {
    background: #ffffff !important;
    border: 1px solid #d1d5db !important;
}

.calendar-day.checkin::before,
.calendar-day.checkout::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    width: 50% !important;
    height: 100% !important;
    background: #22c55e !important;
    z-index: 1 !important;
    clip-path: none !important;
}
.calendar-day.checkin::before {
    right: 0 !important;
    left: auto !important;
}

.calendar-day.checkout::before {
    left: 0 !important;
    right: auto !important;
}
.calendar-day.checkin span,
.calendar-day.checkout span {
    position: relative !important;
    z-index: 3 !important;
}
/* Fiyat Özeti */
.price-summary {
    margin: 18px 0;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fafafa;
}

.price-summary div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.price-summary div:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.price-summary span {
    color: #555;
    font-size: 14px;
}

.price-summary strong {
    color: #0b5d7a;
    font-size: 20px;
    font-weight: 700;
}
.price-summary {
    display: block !important;
    margin: 18px 0 !important;
    padding: 16px !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 14px !important;
}

.price-summary div {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 10px !important;
}

.price-summary div:last-child {
    margin-bottom: 0 !important;
}

.price-summary span {
    color: #555 !important;
    font-size: 14px !important;
}

.price-summary strong {
    color: #0b5d7a !important;
    font-size: 20px !important;
    font-weight: 800 !important;
}
.booking-summary {
    margin: 18px 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.summary-date-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.summary-date-grid div,
.summary-guests {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 12px;
}

.booking-summary span {
    display: block;
    color: #555;
    font-size: 13px;
    margin-bottom: 4px;
}

.booking-summary strong {
    font-size: 15px;
    color: #111;
}

.summary-line,
.summary-total-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.summary-total-line span,
.summary-total-line strong {
    font-size: 20px;
    font-weight: 800;
    color: #111;
}
.booking-summary strong {
    font-size: 13px !important;
}

.summary-total-line strong {
    font-size: 15px !important;
}

.booking-summary span {
    font-size: 11px !important;
}

.summary-line,
.summary-total-line {
    padding: 8px 0 !important;
}

.price-summary {
    padding: 12px !important;
}
/* Rezervasyon paneli profesyonel düzen */
.booking-box {
    padding: 24px !important;
}

.booking-price {
    text-align: center;
    margin-bottom: 18px;
}

.booking-price strong {
    font-size: 22px !important;
    line-height: 1.2;
    color: #0b4f66;
}

.booking-price span {
    font-size: 12px !important;
    color: #777;
}

.booking-box label {
    font-size: 13px !important;
    font-weight: 700;
    margin-top: 14px;
    margin-bottom: 6px;
}

.booking-box input,
.booking-box select {
    height: 42px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
}

.booking-summary {
    margin-top: 16px !important;
    padding: 14px !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
}

.summary-guests,
.summary-line,
.summary-total-line {
    padding: 9px 0 !important;
}

.booking-summary span {
    font-size: 12px !important;
    color: #555 !important;
}

.booking-summary strong {
    font-size: 14px !important;
    color: #0b4f66 !important;
    font-weight: 800 !important;
}

.summary-total-line strong {
    font-size: 18px !important;
}

.summary-total-line span {
    font-size: 13px !important;
    font-weight: 800 !important;
}

.booking-btn {
    height: 44px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
    margin-top: 14px !important;
}
/* Misafir Seçici */

.guest-selector{
    border:1px solid #ddd;
    border-radius:12px;
    padding:14px 16px;
    cursor:pointer;
    background:#fff;
    transition:.25s;
}

.guest-selector:hover{
    border-color:#0b4f66;
}
/* Misafir seçici */

.guest-selector{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:48px;
    padding:0 16px;
}

#guest-summary{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:100%;
    text-align:center;
    font-size:14px;
    font-weight:600;
    line-height:1;
    margin:0;
}
.guest-dropdown{
    display:none;
    margin-top:10px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:14px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    padding:18px;
}

.guest-dropdown.active{
    display:block;
}

.guest-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.guest-row:last-of-type{
    border-bottom:none;
}

.guest-row strong{
    display:block;
    font-size:15px;
}

.guest-row span{
    color:#777;
    font-size:12px;
}

.guest-controls{
    display:flex;
    align-items:center;
    gap:12px;
}

.guest-controls button{
    width:34px;
    height:34px;
    border-radius:50%;
    border:1px solid #d7d7d7;
    background:#fff;
    cursor:pointer;
    font-size:20px;
    transition:.25s;
}

.guest-controls button:hover{
    background:#0b4f66;
    color:#fff;
}

.guest-controls span{
    width:20px;
    text-align:center;
    font-weight:700;
    font-size:17px;
    color:#111;
}

.guest-done{
    width:100%;
    margin-top:18px;
    border:none;
    border-radius:10px;
    padding:12px;
    background:#0b4f66;
    color:#fff;
    cursor:pointer;
    font-weight:600;
    font-size:14px;
}

.guest-done:hover{
    background:#08394b;
}
.calendar-day.past {
    background: #f1f1f1 !important;
    color: #aaa !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}
#checkin-date,
#checkout-date {
    cursor: pointer !important;
    background: #fff !important;
}

#checkin-date::placeholder,
#checkout-date::placeholder {
    color: #777 !important;
}
.calendar-nav-btn.disabled,
.calendar-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-info {
    margin-top: 24px;
    padding: 18px 22px;
    border-radius: 14px;
    background: #eef7ff;
    color: #06465f;
    font-size: 15px;

}
.smart-finder-premium {
    padding: 70px 20px;
    background: linear-gradient(135deg, #063f52, #0b6b7d);
}

.smart-finder-overlay {
    max-width: 1150px;
    margin: auto;
}

.smart-finder-content {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.premium-finder-box {
    display: grid;
    grid-template-columns: 1fr 1fr 2.2fr 1.4fr 1.3fr;
    gap: 14px;
    margin-top: 28px;
    align-items: stretch;
}

.premium-finder-box input,
.premium-finder-box select,
.premium-finder-box button {
    width: 100%;
    min-height: 54px;
    padding: 14px;
    border-radius: 14px;
    font-size: 15px;
    box-sizing: border-box;
}

.premium-finder-box input,
.premium-finder-box select {
    border: 1px solid #d8e2e5;
}
.premium-finder-box button {
    border: none;
    background: #25d366;
    color: white;
    font-weight: 800;
    cursor: pointer;
}

.premium-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.premium-features label {
    background: #f2f8f9;
    padding: 11px 15px;
    border-radius: 14px;
    font-weight: 600;
    color: #073f52;
}

@media (max-width: 900px) {
    .premium-finder-box {
        grid-template-columns: 1fr;
    }
}
.finder-guests-group {
    display: flex;
    gap: 8px;
    min-width: 280px;
}

.finder-guests-group input {
    width: 33.33%;
    height: 54px;
}
.currency-selector {
    margin-left: 20px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-weight: 700;
}
/* ==========================================
   SMART VILLA FINDER - GUEST SELECTOR
========================================== */

.finder-select {
    height: 56px;
    background: #fff;
    border: 1px solid #dfe5ea;
    border-radius: 14px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    transition: .25s;
}

.finder-select:hover {
    border-color: #0b6b7d;
}

.finder-select-label {
    font-size: 13px;
    color: #6b7280;
}

#finderGuestSummary {
    flex: 1;
    margin-left: 12px;
    font-weight: 600;
    color: #073f52;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.finder-dropdown {
    display: none;
    position: absolute;
    width: 340px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-top: 8px;
    z-index: 1000;
}

.finder-dropdown.active {
    display: block;
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.guest-row span:first-child {
    font-weight: 600;
    color: #073f52;
}

.guest-minus,
.guest-plus {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #d8dee3;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
}

.guest-minus:hover,
.guest-plus:hover {
    background: #f4f8f9;
    border-color: #0b6b7d;
}

#finderGuestDone {
    width: 100%;
    margin-top: 10px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: #0b6b7d;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

#finderGuestDone:hover {
    background: #095868;
}
.smart-finder {
    padding: 70px 8%;
    background: #f7fafb;
}

.smart-finder .section-title {
    text-align: center;
    margin-bottom: 35px;
}

.smart-finder h2 {
    font-size: 38px;
    color: #073f52;
}

.finder-box {
    max-width: 1150px;
    margin: auto;
    background: #fff;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.finder-box input,
.finder-box select {
    height: 54px;
    border: 1px solid #dfe5ea;
    border-radius: 14px;
    padding: 0 15px;
    font-size: 15px;
}

.premium-features {
    grid-column: 1 / -1;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.premium-features label {
    background: #f2f7f8;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 600;
    color: #073f52;
}

#findVillaBtn {
    grid-column: 1 / -1;
    height: 56px;
    border: none;
    border-radius: 16px;
    background: #d4af37;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

#findVillaBtn:hover {
    background: #b89528;
}

#finderResults {
    max-width: 1150px;
    margin: 30px auto 0;
}

@media (max-width: 768px) {
    .finder-box {
        grid-template-columns: 1fr;
    }
}
.smart-finder {
    padding: 55px 8% 75px;
    background: #f7fafb;
    margin-top: 0;
}

.smart-finder .section-title {
    margin-bottom: 25px;
}

.finder-box {
    max-width: 950px;
}

.smart-finder h2 {
    font-size: 34px;
}
.finder-success,
.finder-empty {
    background: #fff;
    padding: 25px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.finder-result-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.finder-result-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid #edf1f3;
    border-radius: 18px;
}

.finder-result-card img {
    width: 120px;
    height: 85px;
    object-fit: cover;
    border-radius: 14px;
}

.finder-result-card a,
.finder-whatsapp {
    background: #0b6b7d;
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

.finder-whatsapp {
    display: inline-block;
    margin-top: 20px;
    background: #25d366;
}
/* ==========================
   HERO TRUST
========================== */

.hero-trust{
    margin-top:25px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.hero-trust div{
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(8px);
    color:#fff;
    padding:10px 18px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:40px;
    font-size:14px;
    font-weight:700;
}
/* =========================
   PREMIUM HERO v2
========================= */

.hero {
    min-height: 620px;
    padding: 90px 8% 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 37, 50, .78),
        rgba(3, 37, 50, .45),
        rgba(3, 37, 50, .25)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    text-align: center;
}

.hero-content h1 {
    font-size: 62px;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 18px;
}

.hero-content p {
    color: #fff;
    font-size: 22px;
    margin-bottom: 32px;
}

.search-box {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255,255,255,.96);
    padding: 18px;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 12px;
    box-shadow: 0 25px 70px rgba(0,0,0,.25);
}

.search-box select,
.search-box input {
    height: 56px;
    border-radius: 16px;
    border: 1px solid #dfe5ea;
    padding: 0 16px;
    font-size: 15px;
}

.search-box button {
    height: 56px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #d4af37, #f0c84b);
    color: #073f52;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}

.hero-trust {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-trust div {
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 11px 18px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .search-box {
        grid-template-columns: 1fr;
    }
}
.featured-villas {
    padding: 70px 8%;
    background: #f8f8f8;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 34px;
    color: #1f2937;
    margin-bottom: 10px;
}

.section-title p {
    color: #6b7280;
    font-size: 16px;
}

.featured-villa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.featured-villa-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.featured-villa-card:hover {
    transform: translateY(-6px);
}

.featured-villa-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.featured-villa-content {
    padding: 20px;
}

.featured-villa-content h3 {
    margin-bottom: 8px;
    color: #111827;
}

.featured-villa-content p {
    color: #6b7280;
    margin-bottom: 8px;
}

.featured-villa-price {
    font-weight: bold;
    color: #0f766e;
    margin: 12px 0;
}

.featured-villa-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #0f766e;
    color: white;
    text-decoration: none;
    border-radius: 10px;
}
.villa-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(0,0,0,0.10);
    transition: 0.3s ease;
}

.villa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.16);
}

.villa-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.villa-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #0f766e;
    color: white;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.fav-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: white;
    font-size: 22px;
    cursor: pointer;
}

.villa-body {
    padding: 22px;
}

.villa-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.villa-location {
    color: #6b7280;
    margin: 10px 0;
}

.villa-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0;
}

.villa-features span {
    background: #f3f4f6;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 14px;
}

.villa-price {
    margin: 16px 0;
}

.villa-price strong {
    font-size: 20px;
    color: #0f766e;
}

.villa-btn {
    display: block;
    text-align: center;
    background: #0f766e;
    color: white;
    padding: 13px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}
.last-minute-deals {
    margin: 70px 8%;
    padding: 60px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0f766e, #064e3b);
    color: white;
}

.deal-content {
    max-width: 650px;
}

.deal-label {
    display: inline-block;
    background: rgba(255,255,255,0.16);
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 18px;
}

.deal-content h2 {
    font-size: 38px;
    margin-bottom: 14px;
}

.deal-content p {
    font-size: 17px;
    opacity: 0.9;
}

.deal-prices {
    margin: 24px 0;
    display: flex;
    align-items: end;
    gap: 14px;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.65;
    font-size: 20px;
}

.deal-prices strong {
    font-size: 36px;
}

.deal-btn {
    display: inline-block;
    background: white;
    color: #0f766e;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
}
.last-minute-deals {
    position: relative;
    overflow: hidden;
}

.last-minute-deals::after {
    content: attr(data-discount);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 140px;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
    .last-minute-deals {
        margin: 40px 5%;
        padding: 35px 25px;
    }

    .deal-content h2 {
        font-size: 28px;
    }

    .last-minute-deals::after {
        font-size: 80px;
        right: 20px;
    }
}
.villa-info-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px auto 26px;
}

.villa-info-mini-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e6ebef;
    border-radius: 999px;
    transition: all .25s ease;
}

.villa-info-mini-item:hover {
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.villa-info-mini-item span {
    font-size: 18px;
    line-height: 1;
    margin: 0;
}

.villa-info-mini-item strong {
    font-size: 15px;
    font-weight: 700;
    color: #073f52;
    line-height: 1;
    margin: 0;
}

.villa-info-mini-item small {
    display: none;
}

@media (max-width: 768px) {
    .villa-info-mini {
        justify-content: center;
        gap: 10px;
    }

    .villa-info-mini-item {
        padding: 9px 14px;
    }

    .villa-info-mini-item span {
        font-size: 16px;
    }

    .villa-info-mini-item strong {
        font-size: 14px;
    }
}
.villa-stats-card{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#fff;
    border:1px solid #e8edf2;
    border-radius:16px;
    overflow:hidden;
    margin:14px 0 20px;
    box-shadow:0 4px 12px rgba(0,0,0,.03);
}

.stat-item{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    padding:12px 10px;
    border-right:1px solid #edf1f5;
}

.stat-item:last-child{
    border-right:none;
}

.stat-icon{
    font-size:20px;
}

.stat-item strong{
    display:block;
    font-size:16px;
    color:#073f52;
    font-weight:700;
    line-height:1;
}

.stat-item small{
    display:block;
    margin-top:2px;
    font-size:12px;
    color:#6b7280;
    line-height:1.2;
}
.campaign-box {
    background: linear-gradient(135deg, #fff7e6, #ffffff);
    border: 1px solid #f0c36a;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.18);
}

.campaign-badge {
    display: inline-block;
    background: #d4af37;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.campaign-box strong {
    display: block;
    color: #073f52;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.campaign-box p {
    color: #6b7280;
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
}
.campaign-box {
    background: linear-gradient(135deg, #fff7e6, #ffffff);
    border: 1px solid #f0c36a;
    border-radius: 18px;
    padding: 16px;
    margin: 16px 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.18);
}

.campaign-badge {
    display: inline-block;
    background: #d4af37;
    color: #fff;
    font-weight: 800;
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.campaign-box strong {
    display: block;
    color: #073f52;
    font-size: 18px;
    margin-bottom: 6px;
}

.campaign-box p {
    color: #52616b;
    margin: 0;
    font-size: 14px;
}
.campaign-saving {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: #0f766e;
    font-weight: 700;
}
.villa-table-section{
    margin:40px;
    background:white;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.villa-table{
    width:100%;
    border-collapse:collapse;
}

.villa-table th{

    text-align:left;
    padding:16px;

    background:#073f52;
    color:white;
}

.villa-table td{

    padding:16px;

    border-bottom:1px solid #eee;
}

.action-btn{

    background:#0aa06e;

    color:white;

    border:none;

    padding:8px 16px;

    border-radius:10px;

    cursor:pointer;
}
.save-btn{
    background:#0aa06e;
    color:white;
    border:none;
    padding:10px 18px;
    border-radius:10px;
    cursor:pointer;
    margin-top:18px;
}
/* =========================================================
   VILLA KART GALERİSİ - PREMIUM
========================================================= */
.villa-card-pro {
    cursor: pointer;
}

.villa-card-pro:focus-visible {
    outline: 3px solid rgba(15, 118, 110, 0.35);
    outline-offset: 4px;
}

.villa-card-pro-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #e9eef0;
    touch-action: pan-y;
}

.villa-card-pro-image .villa-card-gallery-image {
    display: block;
    width: 100%;
    transition: opacity .22s ease, transform .5s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.villa-card-pro-image .villa-card-gallery-image.is-changing {
    opacity: .35;
}

.villa-card-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;
    background: rgba(12, 35, 43, .58);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-50%) scale(.88);
    transition: opacity .22s ease, transform .22s ease, background .22s ease;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.villa-card-gallery-prev { left: 13px; }
.villa-card-gallery-next { right: 13px; }

.villa-card-pro-image:hover .villa-card-gallery-arrow,
.villa-card-gallery-arrow:focus-visible {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.villa-card-gallery-arrow:hover {
    background: rgba(7, 79, 92, .88);
}

.villa-card-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 6px;
    transform: translateX(-50%);
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(0,0,0,.26);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.villa-card-gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.58);
    transition: width .2s ease, background .2s ease;
    cursor: pointer;
}

.villa-card-gallery-dot.active {
    width: 17px;
    border-radius: 999px;
    background: #fff;
}

.villa-card-gallery-count {
    position: absolute;
    right: 13px;
    bottom: 13px;
    z-index: 7;
    padding: 6px 9px;
    border-radius: 9px;
    background: rgba(8, 34, 43, .68);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
}

.villa-card-pro-image:has(.villa-card-gallery-dots) .villa-card-gallery-count {
    right: 12px;
}

@media (hover: none), (max-width: 900px) {
    .villa-card-gallery-arrow {
        opacity: .92;
        width: 34px;
        height: 34px;
        font-size: 24px;
        transform: translateY(-50%) scale(1);
    }

    .villa-card-gallery-prev { left: 9px; }
    .villa-card-gallery-next { right: 9px; }

    .villa-card-gallery-count {
        right: 9px;
        bottom: 9px;
    }

    .villa-card-gallery-dots {
        bottom: 10px;
    }
}
.calendar-day::before,
.calendar-day::after,
.calendar-day.booked-start::before,
.calendar-day.booked-end::before,
.calendar-day.option-start::before,
.calendar-day.option-end::before,
.calendar-day.checkin::before,
.calendar-day.checkout::before {
    pointer-events: none !important;
}

.calendar-day {
    position: relative;
    z-index: 1;
    cursor: pointer;
}


/* HV ortak çoklu filtre ve misafir seçici */
.hv-multi,.hv-guests{position:relative;min-width:0}
.hv-multi-trigger,.hv-guest-trigger{width:100%;height:100%;min-height:50px;padding:0 16px;border:1px solid #dde5e8;border-radius:14px;background:#fff;display:flex;align-items:center;justify-content:space-between;gap:10px;font:inherit;cursor:pointer;text-align:left;color:#222}
.hv-multi-summary,.hv-guest-summary{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.hv-multi-menu,.hv-guest-menu{display:none;position:absolute;top:calc(100% + 8px);left:0;width:max-content;min-width:100%;max-width:320px;background:#fff;border:1px solid #e4e9ed;border-radius:16px;box-shadow:0 18px 45px rgba(0,0,0,.16);padding:10px;z-index:500;text-align:left;color:#222}
.hv-multi.open .hv-multi-menu,.hv-guests.open .hv-guest-menu{display:block}
.hv-multi-option{display:flex!important;align-items:center;gap:9px;margin:0!important;padding:10px 8px;border-radius:10px;font-weight:600!important;white-space:nowrap;cursor:pointer}
.hv-multi-option:hover{background:#f4f8f9}.hv-multi-option input{width:auto!important;height:auto!important}
.hv-guest-menu{width:310px;padding:8px 14px}
.hv-guest-row{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:14px 0;border-bottom:1px solid #edf0f2}
.hv-guest-row strong,.hv-guest-row small{display:block}.hv-guest-row small{margin-top:4px;color:#777;font-size:12px}
.hv-counter{display:flex;align-items:center;gap:14px}.hv-counter button{width:36px!important;height:36px!important;min-height:36px!important;padding:0!important;border:1px solid #d9dfe3!important;border-radius:50%!important;background:#fff!important;color:#222!important;font-size:20px!important;font-weight:400!important;box-shadow:none!important}
.hv-counter span{min-width:18px;text-align:center;font-weight:800}
.hv-guest-done{width:100%!important;margin-top:14px!important;min-height:42px!important;padding:10px!important;border:0!important;border-radius:11px!important;background:#0b5d73!important;color:#fff!important;font-weight:800!important;cursor:pointer}
.search-box{grid-template-columns:1.15fr .9fr .9fr 1.25fr 1.05fr .85fr!important;overflow:visible}
.search-box .hv-multi,.search-box .hv-guests{height:100%}
@media(max-width:1000px){.search-box{grid-template-columns:1fr 1fr!important}.hv-multi-menu,.hv-guest-menu{max-width:min(310px,90vw)}}


/* HERO FILTER: TEK SATIRDA DÜZGÜN YERLEŞİM */
.search-box {
    grid-template-columns:
        minmax(145px, 1.1fr)
        minmax(125px, .95fr)
        minmax(145px, 1fr)
        minmax(145px, 1fr)
        minmax(145px, 1.05fr)
        minmax(110px, .75fr) !important;
    align-items: stretch;
}

.search-box .hv-multi-trigger,
.search-box .hv-guest-trigger {
    background: #fff !important;
    color: #173847 !important;
    border: 1px solid #dce5e8 !important;
    font-weight: 700;
}

.search-box #heroSearchBtn {
    width: 100%;
    min-width: 110px;
    white-space: nowrap;
    background: #e8bd36 !important;
    color: #123847 !important;
}

@media (max-width: 1180px) {
    .hero-content {
        max-width: 1180px;
        width: 100%;
    }

    .search-box {
        grid-template-columns:
            minmax(130px, 1fr)
            minmax(115px, .9fr)
            minmax(135px, 1fr)
            minmax(135px, 1fr)
            minmax(135px, 1fr)
            minmax(100px, .7fr) !important;
    }
}

@media (max-width: 900px) {
    .search-box {
        grid-template-columns: 1fr 1fr !important;
    }

    .search-box #heroSearchBtn {
        grid-column: 1 / -1;
    }
}


/* ===========================
   YAKIN TARİHTE MÜSAİT VİLLALAR
=========================== */
.nearby-availability{
    padding:52px 60px 58px;
    background:#f7f7f7;
}
.nearby-availability-head{
    max-width:1320px;
    margin:0 auto 24px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
}
.nearby-kicker{
    display:inline-block;
    margin-bottom:8px;
    color:#a66f00;
    font-size:13px;
    font-weight:800;
    letter-spacing:.3px;
}
.nearby-availability h2{
    color:#0b4f6c;
    font-size:34px;
    margin-bottom:7px;
}
.nearby-availability-head p{
    color:#6b7280;
    font-size:15px;
}
.nearby-slider-actions{
    display:flex;
    gap:9px;
    flex-shrink:0;
}
.nearby-slider-actions button{
    width:42px;
    height:42px;
    border:1px solid #dbe3e7;
    border-radius:50%;
    background:#fff;
    color:#0b4f6c;
    font-size:25px;
    cursor:pointer;
    box-shadow:0 7px 20px rgba(15,61,74,.08);
}
.nearby-villa-slider{
    max-width:1320px;
    margin:0 auto;
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:4px 2px 12px;
}
.nearby-villa-slider::-webkit-scrollbar{display:none}
.nearby-villa-card{
    flex:0 0 330px;
    scroll-snap-align:start;
    background:#fff;
    border:1px solid #e8ecef;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(15,61,74,.08);
    transition:transform .25s ease,box-shadow .25s ease;
}
.nearby-villa-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 35px rgba(15,61,74,.13);
}
.nearby-villa-image{
    height:175px;
    position:relative;
    overflow:hidden;
}
.nearby-villa-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.nearby-date-badge{
    position:absolute;
    left:13px;
    bottom:13px;
    padding:8px 11px;
    border-radius:11px;
    background:rgba(255,255,255,.94);
    color:#0b4f6c;
    font-size:12px;
    font-weight:800;
    box-shadow:0 6px 18px rgba(0,0,0,.12);
}
.nearby-campaign-badge{
    position:absolute;
    top:13px;
    left:13px;
    padding:7px 10px;
    border-radius:10px;
    background:#fff3c7;
    color:#775300;
    font-size:11px;
    font-weight:800;
}
.nearby-villa-body{padding:17px}
.nearby-villa-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
}
.nearby-villa-top h3{
    color:#123f50;
    font-size:19px;
    margin:0 0 5px;
}
.nearby-villa-top span{
    color:#4b5563;
    font-size:12px;
    white-space:nowrap;
}
.nearby-location{
    color:#7b838a;
    font-size:13px;
    margin-bottom:14px;
}
.nearby-villa-bottom{
    padding-top:13px;
    border-top:1px solid #edf0f2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}
.nearby-villa-bottom small{
    display:block;
    color:#8a9298;
    font-size:10px;
    margin-bottom:3px;
}
.nearby-villa-bottom strong{
    color:#123f50;
    font-size:16px;
}
.nearby-villa-bottom a{
    padding:10px 13px;
    border-radius:10px;
    background:#0b5d73;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:800;
    white-space:nowrap;
}
.nearby-empty{
    width:100%;
    padding:28px;
    border:1px dashed #ccd7dc;
    border-radius:18px;
    background:#fff;
    color:#64748b;
    text-align:center;
}
@media(max-width:900px){
    .nearby-availability{padding:42px 25px 48px}
    .nearby-availability-head{align-items:center}
    .nearby-availability h2{font-size:28px}
    .nearby-villa-card{flex-basis:285px}
}


/* YAKIN MÜSAİT KARTLAR - PREMIUM MİNİ BİLGİ DOKUNUŞU */
.nearby-villa-slider{
    padding-left:4px;
    padding-right:4px;
    scroll-padding-left:4px;
}
.nearby-villa-card{
    border-color:#e1eaed;
}
.nearby-date-badge{
    background:#ecf9f2;
    color:#08734f;
    border:1px solid #c7ead9;
}
.nearby-villa-facts{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:7px;
    margin:0 0 14px;
}
.nearby-villa-facts span{
    min-width:0;
    padding:8px 5px;
    border:1px solid #dce9ed;
    border-radius:10px;
    background:#f1f8fa;
    color:#315b68;
    font-size:10.5px;
    text-align:center;
    white-space:nowrap;
}
.nearby-villa-facts b{
    color:#0b5368;
    font-size:12px;
}
.nearby-villa-bottom strong{
    color:#075b70;
}
.nearby-villa-bottom a{
    box-shadow:0 6px 14px rgba(11,93,115,.16);
}


/* YAKIN MÜSAİT SLIDER - PARMAKLA / MOUSE İLE KAYDIRMA */
.nearby-villa-slider{
    cursor:grab;
    touch-action:pan-y;
    user-select:none;
    -webkit-overflow-scrolling:touch;
}

/* YAKIN MÜSAİT İLE ÖNE ÇIKANLAR ARASINDAKİ BOŞLUĞU AZALT */
.nearby-availability{
    padding-bottom:28px;
}
.featured{
    padding-top:42px !important;
}


/* YAKIN MÜSAİT KART - TIKLANABİLİR */
.nearby-villa-card{
    cursor:pointer;
}
.nearby-villa-card a{
    position:relative;
    z-index:3;
}


/* SON DAKİKA KARTLARI - KESİN TIKLAMA VE DOĞAL MOBİL KAYDIRMA */
.nearby-villa-slider{
    overflow-x:auto !important;
    touch-action:pan-x pan-y !important;
    -webkit-overflow-scrolling:touch;
    cursor:default !important;
}
.nearby-villa-card{
    cursor:pointer;
}
.nearby-inspect-btn{
    position:relative;
    z-index:5;
    padding:10px 13px;
    border:0;
    border-radius:10px;
    background:#0b5d73;
    color:#fff;
    font-size:12px;
    font-weight:800;
    cursor:pointer;
    white-space:nowrap;
}
.nearby-inspect-btn:hover,
.nearby-inspect-btn:focus,
.nearby-inspect-btn:active{
    background:#d4af37;
}


/* SON DAKİKA SLIDER - TELEFONDA PARMAKLA, PC'DE MOUSE İLE KAYDIRMA */
.nearby-villa-slider{
    cursor:grab !important;
    touch-action:pan-x pan-y !important;
    overscroll-behavior-x:contain;
}
.nearby-villa-slider.is-mouse-dragging{
    cursor:grabbing !important;
    scroll-snap-type:none !important;
}
.nearby-villa-slider.is-mouse-dragging img,
.nearby-villa-slider.is-mouse-dragging button{
    user-select:none;
    -webkit-user-drag:none;
}


/* HOLIDAY VILLAM - GLOBAL FLOATING WHATSAPP BUTTON */
a.whatsapp-btn,
.whatsapp-btn,
#site-whatsapp-btn {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    min-height: 52px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}

a.whatsapp-btn::before,
.whatsapp-btn::before,
#site-whatsapp-btn::before {
    content: "" !important;
    display: block !important;
    width: 27px !important;
    height: 27px !important;
    flex: 0 0 27px !important;
    background-color: #ffffff !important;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.5 32 2 131.5 2 253.9c0 44.9 11.7 88.7 33.9 127.3L0 480l102.8-33.8c37.2 20.3 79.1 31 121.8 31h.1c122.3 0 224.1-99.5 224.1-221.9 0-59.3-25.2-115-67.9-157.2zM223.9 439.6c-38 0-75.2-10.2-107.6-29.5l-7.7-4.6-61 20.1 20.5-59.4-5-7.7c-21.2-33.7-32.4-72.6-32.4-112.6 0-106.7 86.8-193.5 193.7-193.5 51.7 0 100.3 20.1 136.8 56.7 36.5 36.6 56.6 85.2 56.6 136.9-.1 106.8-87 193.6-193.9 193.6zm101.7-145.1c-5.5-2.8-32.8-16.1-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.7-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.7z'/%3E%3C/svg%3E") center / contain no-repeat !important;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.5 32 2 131.5 2 253.9c0 44.9 11.7 88.7 33.9 127.3L0 480l102.8-33.8c37.2 20.3 79.1 31 121.8 31h.1c122.3 0 224.1-99.5 224.1-221.9 0-59.3-25.2-115-67.9-157.2zM223.9 439.6c-38 0-75.2-10.2-107.6-29.5l-7.7-4.6-61 20.1 20.5-59.4-5-7.7c-21.2-33.7-32.4-72.6-32.4-112.6 0-106.7 86.8-193.5 193.7-193.5 51.7 0 100.3 20.1 136.8 56.7 36.5 36.6 56.6 85.2 56.6 136.9-.1 106.8-87 193.6-193.9 193.6zm101.7-145.1c-5.5-2.8-32.8-16.1-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.7-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.7z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

a.whatsapp-btn > *,
.whatsapp-btn > *,
#site-whatsapp-btn > * {
    display: none !important;
}

@media (max-width: 700px) {
    a.whatsapp-btn,
    .whatsapp-btn,
    #site-whatsapp-btn {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;
        min-height: 48px !important;
    }

    a.whatsapp-btn::before,
    .whatsapp-btn::before,
    #site-whatsapp-btn::before {
        width: 25px !important;
        height: 25px !important;
        flex-basis: 25px !important;
    }
}
/* ===== Premium Misafir Seçici ===== */

body.hv-index-page .hero .hv-guest-menu{
    border-radius:18px !important;
    box-shadow:0 18px 45px rgba(15,23,42,.12) !important;
    padding:8px !important;
}

body.hv-index-page .hero .hv-guest-row{
    min-height:54px !important;
    padding:8px 12px !important;
    border-bottom:1px solid #edf2f7 !important;
}

body.hv-index-page .hero .hv-guest-row:last-of-type{
    border-bottom:none !important;
}

body.hv-index-page .hero .hv-guest-title{
    font-size:15px !important;
    font-weight:700 !important;
    color:#1f2937 !important;
}

body.hv-index-page .hero .hv-guest-subtitle{
    font-size:11px !important;
    color:#94a3b8 !important;
}

body.hv-index-page .hero .hv-counter button{
    width:36px !important;
    height:36px !important;
    border-radius:50% !important;
    border:1px solid #dbe3ec !important;
    background:#fff !important;
    font-size:18px !important;
    transition:.2s;
}

body.hv-index-page .hero .hv-counter button:hover{
    background:#f8fafc !important;
}

body.hv-index-page .hero .hv-guest-count{
    width:28px !important;
    text-align:center !important;
    font-size:22px !important;
    font-weight:700 !important;
    color:#1f2937 !important;
}

body.hv-index-page .hero .hv-guest-done{
    height:46px !important;
    border-radius:14px !important;
    font-size:18px !important;
    font-weight:700 !important;
}
