/* Responsive Enhancements */
@media (max-width: 768px) {
    .nav-menus-wrapper.nav-menus-wrapper-open {
        background-color: #333;
        color: white;
        width: 100%;
        flex-direction: column;
    }
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }
    .nav-menu li {
        margin-bottom: 10px; 
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }
    .row {
        justify-content: center;
    }
    .col-lg-7, .col-md-10, .col-lg-9, .col-md-11 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .inner-banner-text h2 {
        font-size: 28px;
    }
    .inner-banner-text p {
        font-size: 16px;
    }
    .full-search-2 {
        margin: 15px;
        padding: 15px;
    }
    .whatsapp-bubble {
        font-size: 12px;
        padding: 10px 15px;
    }
    .close-btn {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    .responsive-video {
        min-width: 100%; /* Mobil cihazlarda tam genişlik */
        min-height: 200px; /* Mobil için daha küçük minimum yükseklik */
    }
}

@media (max-width: 600px) {
    .nav-brand .svg-icon img {
        max-width: 100px !important;
        height: auto;
    }
}

@media (max-width: 576px) {
    .sec-heading h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .sec-heading p {
        font-size: 14px;
    }
    .classical-cats-wrap {
        padding: 10px;
    }
    .classical-cats-boxs {
        padding: 20px;
    }
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    .col-lg-4, .col-md-4, .col-sm-6, .col-6 {
        flex-basis: 100%;
        max-width: 100%;
    }
    .full-search-2 {
        padding: 10px;
    }
    .form-control {
        font-size: 14px;
    }
    .city-name {
        font-size: 1.5rem;
    }
    .whatsapp-icon img {
        width: 40px;
        height: 40px;
    }
}

/* Section Headings */
.sec-heading {
    text-align: center;
}
.sec-heading h2, .sec-heading p {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

/* Footer */
.nav-footer-logo img {
    width: 150px !important;
    height: auto;
}
.footer-widget {
    padding-top: 20px;
}

/* Dropdown Menu */
.custom-menu-item .dropdown-menu {
    background-color: #333;
}
.custom-menu-item .dropdown-menu li a {
    color: white !important;
    padding: 10px 15px;
}
.custom-menu-item .dropdown-menu li a:hover {
    background-color: #555;
}

.header.header-transparent.dark.header-fixed {
    background: #000000bf !important;
}

/* Locations Section */
.locations-section {
    background: #ffffff;
}
.location-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
}
.location-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.location-card:hover .location-image img {
    transform: scale(1.1);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.location-card:hover .overlay {
    background: rgba(0, 0, 0, 0.3);
}
.content-wrapper {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
}
.city-name {
    color: white;
    font-size: 2.2rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .location-image {
        height: 350px;
    }
    .city-name {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .location-image {
        height: 300px;
    }
    .city-name {
        font-size: 1.8rem;
    }
    .content-wrapper {
        left: 20px;
        bottom: 20px;
    }
}
@media (max-width: 576px) {
    .location-image {
        height: 250px;
    }
}

/* WhatsApp */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Improved WhatsApp Bubble and Close Button */
.whatsapp-bubble {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1000;
    cursor: pointer;
}

.whatsapp-bubble p {
    margin: 0;
    padding-right: 20px; /* Kapatma düğmesi için boşluk */
}

.whatsapp-bubble::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #25D366 transparent transparent;
}

.close-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background-color: #f0f0f0;
    border: 2px solid #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
}

.close-btn:hover {
    background-color: #e0e0e0;
    transform: scale(1.1);
}

.badge-top-right {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10; /* Daha yüksek z-index değeri */
}

/* Hero Banner */
.hero-banner.vedio-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.full-width-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.container {
    position: relative;
    z-index: 2;
}
.full-search-2 {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.responsive-video {
    max-width: 800px; /* Maksimum genişlik sınırı */
    margin: 0 auto; /* Ortalanmış kalmasını sağlar */
    border-radius: 8px; /* Kenarları yuvarlatır, isteğe bağlı */
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.square--30 { width: 30px; height: 30px; }
.circle { border-radius: 50%; }
.gray-simple { background-color: #e9ecef; }
.text-muted-2 { color: #6c757d; }
.fs-sm { font-size: 0.875rem; }
.icon-spacing { display: flex; align-items: center; justify-content: center; }

/* WhatsApp stiline uygun ikonlar */
.listing-card .square--30 {
    background-color: #25D366; /* WhatsApp yeşili */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Hafif gölge */
}

/* İkonların ve metinlerin rengini beyaz yap */
.listing-card .square--30 i {
    color: #ffffff; /* Beyaz ikonlar */
}

.listing-card .text-muted-2 {
    color: #ffffff; /* Beyaz metin */
}

/* Up Coming Badge Stilini Ekleyin */
.location-label {
    display: inline-flex; /* Badge’in içeriğini yatayda hizalamak için */
    align-items: center; /* İçeriği dikeyde ortalamak için */
    background-color: #3b82f6; /* Mavi arka plan (Tailwind bg-blue-500) */
    color: #ffffff; /* Beyaz yazı rengi */
    padding: 0.25rem 0.75rem; /* Dikeyde 0.25rem, yatayda 0.75rem boşluk */
    border-radius: 9999px; /* Tamamen yuvarlak kenarlar için */
    font-size: 0.875rem; /* Küçük yazı boyutu (Tailwind text-sm) */
    font-weight: 600; /* Kalın yazı (Tailwind font-semibold) */
    margin: 0.5rem; /* Etrafında 0.5rem boşluk */
    transition: background-color 0.2s ease-in-out; /* Hover efekti için yumuşak geçiş */
}

.location-label:hover {
    background-color: #93c5fd; /* Fare üzerine geldiğinde açık mavi (Tailwind bg-blue-300) */
}