/* Soft ve yumuşak modal stili */
/*.modal-content {
    background-color: #2f2f2f;*/ /* koyu ama çok sert olmayan gri-siyah */
/*color: #ddd;*/ /* açık gri yazı */
/*border-radius: 12px;
    border: 1.5px solid #fca08a;*/ /* soft pastel turuncu-kırmızı ton */
/*box-shadow: 0 4px 12px rgba(252, 160, 138, 0.3);
}

.modal-header {
    border-bottom: 1px solid #fca08a;
    background-color: #3a3a3a;
    padding: 1rem 1.5rem;
}

.modal-title {
    color: #fca08a;
    font-weight: 600;
    font-size: 1.4rem;
}

.modal-body {
    font-size: 1.1rem;
    padding: 1.5rem;
    color: #eee;
    line-height: 1.5;
}

.modal-footer {
    border-top: 1px solid #fca08a;
    background-color: #3a3a3a;
    padding: 1rem 1.5rem;
}

    .modal-footer .btn-secondary {
        background-color: #fca08a;
        border: none;
        color: #2f2f2f;
        font-weight: 600;
        padding: 0.5rem 1.2rem;
        border-radius: 25px;
        transition: background-color 0.3s ease;
    }

        .modal-footer .btn-secondary:hover {
            background-color: #f58b6e;
            color: #1e1e1e;
        }

.modal-header .close {
    color: #ddd;
    font-size: 1.4rem;
    opacity: 0.8;
    transition: color 0.3s ease;
}

    .modal-header .close:hover {
        color: #fca08a;
        opacity: 1;
        text-shadow: 0 0 6px #fca08a;
    }*/

.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .floating-icons a {
        width: 50px;
        height: 50px;
        background-color: #25d366; /* WhatsApp green, override for phone if needed */
        color: white;
        border-radius: 50%;
        text-align: center;
        line-height: 50px;
        font-size: 22px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        transition: transform 0.3s ease;
    }

        .floating-icons a.call-icon {
            background-color: #007bff; /* Blue for call */
        }

        .floating-icons a:hover {
            transform: scale(1.1);
        }
