﻿.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.image-wrapper {
    border: 2px solid #ddd; /* Gri bir çerçeve */
    padding: 10px; /* Çerçeve ile resim arasına boşluk */
    border-radius: 10px; /* İstersen köşeleri yuvarlatabilirsin */
    background: #fff; /* Arka plan beyaz */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    text-align: center;
}

    .image-wrapper img {
        width: 100%;
        height: auto;
        object-fit: contain; /* Resimler güzel şekilde otursun */
    }
.call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    padding: 10px 18px;
    border-radius: 40px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 1000;
    transition: all 0.3s ease;
}

    .call-button:hover {
        background: linear-gradient(135deg, #218838, #1e7e34);
        transform: translateY(-2px);
    }

.call-icon-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}
/* Gallery Styles */
.gallery_container {
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1300px) and (max-width: 2560px) {
    .popup-gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media (min-width: 700px) and (max-width: 1299px) {
    .popup-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (min-width: 300px) and (max-width: 699px) {
    .popup-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}

.gallery_item {
    margin-bottom: 5px;
    overflow: hidden;
}

.popup-gallery a {
    display: block;
    width: 100%;
    border: 1px solid #fff;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .popup-gallery a:hover {
        transform: scale(1.05);
        border-color: #fff;
    }

.popup-gallery img {
    display: block;
    width: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1000px) {
    .popup-gallery img {
    }
}

/* END  */

.singicon_btn_nlf {
    position: absolute;
    top: 44%;
    bottom: 56%;
    left: 44%;
    right: 56%;
    opacity: 0;
}

    .singicon_btn_nlf svg {
        color: #fff;
    }

.popup-gallery a:hover .singicon_btn_nlf {
    opacity: 1;
}

.hover_affect_nlf:hover img {
    opacity: 0.5;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

    .contact-form label {
        font-weight: bold;
        margin-bottom: 5px;
        display: block;
        color: #333;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 10px;
        box-sizing: border-box;
        font-size: 16px;
    }

    .contact-form textarea {
        resize: vertical;
        min-height: 120px;
    }

.submit-btn {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .submit-btn:hover {
        background-color: #0056b3;
    }

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.smart-button {
    display: flex;
    align-items: center;
    background-color: #5e5e5f;
    color: white;
    padding: 8px 14px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

    .smart-button:hover {
        background-color: #0056b3;
    }

    .smart-button img {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }