/* ============================================
   CALLBACK WIDGET (fsmtravel.com.tr style)
   ============================================ */
.callback-widget {
    position: fixed;
    left: -300px;
    bottom: 200px;
    z-index: 9999;
    transition: left 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.callback-widget.active {
    left: 0;
}

.callback-form-wrapper {
    display: flex;
    align-items: flex-start;
}

.callback-form-container {
    background: white;
    padding: 25px;
    border-radius: 0 12px 12px 0;
    box-shadow: 5px 0 25px rgba(0,0,0,0.2);
    width: 300px;
    border-left: 5px solid #25d366;
}

.callback-toggle {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 15px 10px;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    min-width: 60px;
    min-height: 140px;
    text-align: center;
    z-index: 10000;
    transition: border-radius 0.3s ease;
}

.callback-widget.active .callback-toggle {
    border-radius: 0;
}

.callback-toggle i {
    font-size: 24px;
}

.callback-toggle span {
    font-size: 11px;
    font-weight: 700;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.callback-form-container h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 18px;
}

.callback-form-container p {
    color: var(--gray-600);
    font-size: 13px;
    margin-bottom: 15px;
}

.callback-form-container .form-group {
    margin-bottom: 10px;
}

.callback-form-container .form-control {
    border: 1px solid #ddd;
    padding: 10px 12px;
    font-size: 14px;
    width: 100%;
    border-radius: 5px;
}

.callback-form-container .btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

/* Mobil Düzen - Altta Sabit */
@media (max-width: 767px) {
    .callback-widget {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        z-index: 9999;
        transition: transform 0.3s ease;
    }
    
    .callback-widget {
        left: 0;
        bottom: -400px;
    }
    
    .callback-widget.active {
        left: 0;
        bottom: 0;
    }
    
    .callback-form-wrapper {
        flex-direction: column-reverse;
        width: 100%;
    }
    
    .callback-form-container {
        width: 100%;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
        border-left: none;
        border-top: 5px solid #25d366;
        padding: 20px;
        box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
    }
    
    .callback-toggle {
        flex-direction: row;
        width: 100%;
        min-height: 50px;
        border-radius: 12px 12px 0 0;
        writing-mode: horizontal-tb;
        padding: 12px;
        gap: 10px;
    }
    
    .callback-toggle span {
        writing-mode: horizontal-tb;
        font-size: 14px;
    }
    
    .callback-widget.active .callback-toggle {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .callback-form-container {
        padding: 15px;
    }
    
    .callback-form-container h4 {
        font-size: 16px;
    }
    
    .callback-toggle {
        min-height: 45px;
    }
    
    .callback-toggle span {
        font-size: 13px;
    }
}