/* --------- tc turisim bakanlığı tursab butonu --------- */
.guvenli-turizm-blok {
    background-color: #d84335;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

.guvenli-turizm-blok .image img {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

.guvenli-turizm-blok .text-content .text {
    font-size: 14px;
    font-weight: bold;
}

.guvenli-turizm-blok .belge-no {
    font-size: 13px;
}



/* --------- Sidebar / Got a question? Bilgi Kutusu --------- */



.iletisim-kutusu {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(143, 155, 168, 0.959);
    //background-color: rgb(81, 145, 250);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px 25px;
    color: #fff;
    max-width: 420px;
    margin: 0 auto 40px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.iletisim-kutusu h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.aciklama {
    font-size: 16px;
    line-height: 1.6;
    color: #eaeaea;
    margin-bottom: 20px;
}

.referans {
    color: #ffe082;
    font-weight: bold;
}

.telefonlar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.telefon {
    font-size: 17px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.telefon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffe082;
}

.bilgi {
    font-size: 14.5px;
    color: #f0f0f0;
}

/* Mobil uyum */
@media (max-width: 480px) {
    .iletisim-kutusu {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .iletisim-kutusu h3 {
        font-size: 20px;
    }

    .telefon {
        font-size: 16px;
        padding: 8px 12px;
    }
}







/* --------- detail page altındaki 🚨 uyarı alanı --------- */



.info-box {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #5191fa;
    border-left: 5px solid #5191fa;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.info-text {
    padding: 15px 20px;
    flex: 1;
    color: black;
}

.info-icon {
    background: #5191fa;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    flex: 0 0 60px;
}

/* Responsive kırılımlar */
@media (max-width: 768px) {
    .info-icon {
        flex: 0 0 50px;
        font-size: 24px;
    }

    .info-text {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .info-box {
        flex-direction: column;
        align-items: stretch;
    }

    .info-icon {
        width: 100%;
        flex: none;
        font-size: 24px;
        padding: 10px;
        border-radius: 0 0 10px 10px;
    }
}







/* ============================================= */
/* 1) PC Sidebar’daki Airbnb + WhatsApp Butonları */
/* ============================================= */

/* Wrapper */
.sidebar-buttons {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
    /* mt-3 yerine burada ek boşluk */
}

/* Her iki butonun ortak stili */
.sidebar-buttons .airbnb-button-layout,
.sidebar-buttons .whatsapp-button-layout {
    flex: 1;
    max-width: calc(50% - 6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    padding: 16px 20px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    color: #fff !important;
}

/* Airbnb buton renkleri */
.sidebar-buttons .airbnb-button-layout {
    background: linear-gradient(135deg, #FF5A5F, #FF5A5F);
}

.sidebar-buttons .airbnb-button-layout:hover {
    background: linear-gradient(135deg, #da4d52, #da4d52);
    transform: translateY(-2px);
}

/* WhatsApp buton renkleri */
.sidebar-buttons .whatsapp-button-layout {
    background: #25D366;
}

.sidebar-buttons .whatsapp-button-layout:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

/* Alt metin stili */
.sidebar-buttons .airbnb-subtext,
.sidebar-buttons .whatsapp-subtext {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.0;
}

/* Logo yüksekliği (HTML içinde height="64" verildiği için auto width) */
.sidebar-buttons .icon img {
    height: 45px;
    width: auto;
    display: block;
}


/* ============================================= */
/* 2) Mobil Rezervasyon Ekranındaki Butonlar      */
/* ============================================= */

/* Default: mobil butonları gizle */
.airbnb-button-mobile-wrapper {
    display: none !important;
}

/* Mobilde (<992px) göster */
@media (max-width: 991.98px) {
    .airbnb-button-mobile-wrapper {
        display: flex !important;
        gap: 12px;
        width: 100%;
        margin-top: 1rem;
    }

    .airbnb-button-mobile,
    .whatsapp-button-mobile {
        flex: 1;
        max-width: calc(50% - 6px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 6px;
        padding: 16px 20px;
        text-decoration: none;
        transition: background 0.3s, transform 0.3s;
        color: #fff !important;
    }

    /* Airbnb buton */
    .airbnb-button-mobile {
        background: linear-gradient(135deg, #FF5A5F, #FF5A5F);
    }

    .airbnb-button-mobile:hover {
        background: linear-gradient(135deg, #da4d52, #da4d52);
        transform: translateY(-2px);
    }

    /* WhatsApp buton */
    .whatsapp-button-mobile {
        background: #25D366;
    }

    .whatsapp-button-mobile:hover {
        background: #1DA851;
        transform: translateY(-2px);
    }

    /* Başlık metni */
    .airbnb-mobile-title,
    .whatsapp-mobile-title {
        font-weight: 700;
        font-size: 16px;
        line-height: 1.2;
    }

    /* Alt metin */
    .airbnb-mobile-subtext,
    .whatsapp-mobile-subtext {
        font-size: 13px;
        opacity: 0.9;
        line-height: 1.2;
    }

    /* İkon yüksekliği */
    .airbnb-mobile-logo img,
    .whatsapp-mobile-logo img {
        height: 45px;
        width: auto;
    }
}

/* Büyük ekranda gizle (yüksek öncelik) */
@media (min-width: 992px) {
    .airbnb-button-mobile-wrapper {
        display: none !important;
    }
}