.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.custom-close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1050;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 18px;
}

.custom-close-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.custom-close-btn i {
    line-height: 1;
}
.modal-header {
    position: absolute;
    right: 0;
    z-index: 10;
    background: transparent;
}

.btn-close {
    background-color: rgba(255,255,255,0.9);
    padding: 8px;
    border-radius: 50%;
    margin: 15px;
    opacity: 1;
    transition: all 0.3s ease;
}

.btn-close:hover {
    transform: rotate(90deg);
    background-color: #fff;
}

.popup-image-link {
    display: block;
    overflow: hidden;
}

.popup-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.popup-image:hover {
    transform: scale(1.02);
}

.popup-content {
    background: #fff;
}

.popup-title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.popup-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.social-title {
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    color: #fff;
}

.social-link .fa-facebook-f:hover {
    background: #3b5998;
}

.social-link .fa-twitter:hover {
    background: #1DA1F2;
}

.social-link .fa-linkedin-in:hover {
    background: #0077b5;
}

.social-link .fa-youtube:hover {
    background: #ff0000;
}




.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    z-index: 99999;
    padding: 25px;
}

.cookie-consent h4 {
    margin-bottom: 15px;
}

.cookie-consent p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .theme-btn2 {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
}

.cookie-buttons .theme-btn2 i {
    margin-left: 8px;
}

@media (max-width: 576px) {
    .cookie-consent {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 10px 10px 0 0;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}


.fixed-social-buttons {
    position: fixed;
    left: 20px;
    bottom: 100px; /* Teklif butonundan uzaklık */
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp {
    background: #25D366;
}

.instagram {
    background: #E1306C;
}

.phone {
    background: #075e54;
}
