﻿/*html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}*/
.whatsapp-button {
    position: fixed;
    bottom: 50px;
    right: 75px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

    .whatsapp-button:hover {
        transform: scale(1.1);
    }

    .whatsapp-button img {
        width: 30px;
        height: 30px;
    }
.dropdown-content-custom {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 8px;
    /* Daha az padding */
    z-index: 1000;
    width: 228px;
    /* Genişlik de azaltıldıysa daha kompakt olur */
    top: 35px;
    /* Daha az yukarıdan açılır */
    left: 0;
    border-radius: 5px;
}

.participant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    /* Daha az boşluk */
}

    .participant span {
        font-size: 10px;
        /* Daha küçük yazı */
    }

.counter {
    display: flex;
    align-items: center;
}

    .counter button {
        width: 24px;
        height: 24px;
        font-size: 14px;
        border: none;
        background: #f0f0f0;
        margin: 0 3px;
        /* Daha az boşluk */
        border-radius: 4px;
    }

    .counter span {
        width: 18px;
        text-align: center;
        font-size: 10px;
        display: inline-block;
    }
.custom-input {
    border-radius: 0 !important;
    height: 52px !important;
    padding: 6px 12px !important;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
    box-sizing: border-box;
}

    .custom-input.country-select {
        min-width: 110px;
        max-width: 120px;
        padding-left: 8px !important;
        padding-right: 8px !important;
        vertical-align: middle;
    }

/* Telefon + ülke kodu yan yana */
.phone-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 25px;
    min-width: 290px;
    /* isteğe göre ayarlayabilirsin */
}

/* Diğer dropdown ve katılımcı sayaç stili */
.custom-select {
    cursor: pointer;
    border: 1px solid #ccc;
    background: white;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    height: 52px;
    display: inline-block;
    min-width: 176px;
    user-select: none;
}

.participant {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

/*.counter button {
    width: 26px;
    height: 26px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.counter span {
    display: inline-block;
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}*/

.gallery-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    width: 100%;
    /* Genişliği sınırlamak için */
    max-height: 300px;
    /* İsteğe göre yükseklik limiti */
}

.footer-icons {
    display: none;
}

.intl-tel-input{
    z-index:1000!important;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: #00424f;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-question {
    width: 100%;
    padding: 20px;
    font-size: 17px;
    font-weight: 500;
    color: #00424f;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #eaf6f9;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}

    .faq-answer p {
        margin: 20px 0;
        color: #333;
        font-size: 16px;
    }

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.footer-info-bar {
    background: #f8f8f8;
    padding: 15px 20px;
    font-family: Arial, sans-serif;
}

    .footer-info-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

.footer-left,
.footer-center {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.footer-center {
    flex-grow: 1;
    justify-content: center;
    flex-wrap: wrap;
    min-width: 250px;
}

    .footer-left img,
    .footer-center img {
        height: 28px;
        object-fit: contain;
    }

.footer-left span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

/* Sağ blok container */
.footer-right {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* OUR PARTNERS kutusu */
.partner-label-box {
    /*background-color: #d7e9ff;*/ /* hafif mavi */
    /*padding: 6px 16px;
    border-radius: 8px;
    text-align: center;
    width: 140px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1a3e72;
    font-size: 0.9rem;
    letter-spacing: 1px;
        box-shadow: 0 1px 4px rgba(26, 62, 114, 0.3);
    text-transform: uppercase;*/

    padding: 2px;
    border-radius: 4px;
    font-size: 10px;
    color: cornflowerblue;
    text-decoration: solid;
    text-anchor: end;
    text-transform: capitalize;
    text-shadow:4px blue;
    font-style: italic;
}

.partner-logos {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-right img {
    height: 32px;
    object-fit: contain;
}

/* Form flex ayarı */
@media (min-width: 768px) {
    .hero-search-form form {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .footer-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 0;
        width: 100%;
        padding: 10px;
        box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-radius: 10px;
        box-sizing: border-box;
        margin-left: -8px;
        background-color: #fff;
    }

    .icon-box {
        display: inline-block;
        text-align: center;
        padding: 10px;
        margin: 0 2px;
        font-size: 14px;
        text-decoration: none;
        color: #326b7e;
        background-color: #f0f0f0;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

        .icon-box i {
            margin-right: 5px;
        }

        .icon-box:hover {
            background-color: #007bff;
            color: #fff;
        }

    .footer-icons a[href="https://wa.me/+358442480343"] {
        background-color: #25d366;
        color: white;
    }

        .footer-icons a[href="https://wa.me/+358442480343"]:hover {
            background-color: #128c7e;
            color: white;
        }

    .whatsapp-button {
        position: fixed;
        bottom: 115px;
        right: 5px;
        z-index: 1000;
        width: 60px;
        height: 60px;
        background-color: #25D366;
        border-radius: 50%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .media-top-margin {
        margin-top: 5px;
    }

    .dorne-btn {
        height: 52px;
        background-color: #b28f25;
        border-radius: 0;
        padding: 0 15px;
        line-height: 50px;
        color: #fff;
        font-weight: 600;
        font-size: 15px;
        content: "Send Request";
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
    }

    .footer-info-bar .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center !important;
        min-width: auto;
        flex-direction: row !important;
    }

    .footer-right {
        align-items: center !important;
        padding: 0 !important;
        background-color: transparent !important;
    }

    .partner-label-box {
        width: auto;
        padding: 6px 12px;
        font-size: 0.85rem;
        box-shadow: none;
        text-shadow: 0px 0px 2px gray;
    }
}

.read-more {
    cursor: pointer;
}