.fixed-teklif-btn {
    position: fixed;
    right: 0;
    bottom: 190px;
    z-index: 999998;
    width: auto;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fixed-teklif-btn:hover {
    transform: scale(1.1);
}
.fixed-teklif-btn img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
}
.fast-quote-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 16px;
    overflow-y: auto;
}
.fast-quote-modal.active { display: flex; }
.fast-quote-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 560px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    color: #000;
    position: relative;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
}
.fast-quote-card .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}
.fast-quote-card .close-btn:hover {
    color: #c1272d;
}
.fast-quote-card h5 {
    color: #000;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 0;
    text-transform: uppercase;
}
.fast-quote-card .form-group {
    margin-bottom: 20px;
}
.fast-quote-card label {
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
    text-transform: capitalize;
}
.fast-quote-card .input-area {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}
.fast-quote-card .input-area:focus-within {
    border-color: #c1272d;
    box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.1);
}
.fast-quote-card input,
.fast-quote-card select {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    color: #000;
    font-size: 15px;
    padding: 0;
}
.fast-quote-card input::placeholder {
    color: #999;
}
.fast-quote-card select {
    cursor: pointer;
}
.fast-quote-card .submit-btn {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    background: #c1272d;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 8px;
}
.fast-quote-card .submit-btn:hover {
    background: #a01f24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 39, 45, 0.3);
}
.fast-quote-card .alert {
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}
.fast-quote-card .alert-success {
    background: #e8f5e9;
    color: #256029;
    border: 1px solid #c8e6c9;
}
.fast-quote-card .alert-danger {
    background: #ffebee;
    color: #c63737;
    border: 1px solid #ffcdd2;
}
.fast-quote-card .alert-danger div {
    margin-bottom: 4px;
}
.fast-quote-card .alert-danger div:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .fixed-teklif-btn img{
        height: 50px;
    }
    .whatsapp img {
        height: 55px;
    }
    .fixed-teklif-btn {
        bottom: 155px;
    }
    .fast-quote-card {
        padding: 24px 20px;
        max-width: 100%;
        border-radius: 12px;
    }
    .fast-quote-card h5 {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .fixed-teklif-btn img{
        height: 50px;
    }
    .whatsapp img {
        height: 55px;
    }
    .fixed-teklif-btn {
        bottom: 155px;
    }
    .fast-quote-card {
        padding: 20px 16px;
        margin: 16px;
    }
    .fast-quote-card .form-group {
        margin-bottom: 16px;
    }
}