.get-quote-holder {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    gap: 15px;
    z-index: 1000;
}

.message-icon {
    color: #0d47a1;
    cursor: pointer;
    padding: 18px;
    background: white ;
    border-radius: 50%;
    font-size: 25px;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-icon:hover {
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.5);
}

.quote-heading {
    width: 100%;
    min-height: 65px;
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.input-place:focus {
    border-color: #1a237e;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
    background: #ffffff;
}

.submit-form {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

.submit-form:active {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    transform: translateY(0);
}

.quote-holder {
    width: 350px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: none;
    flex-direction: column;
    animation: slideIn 0.3s ease;
}

.quote-holder.messageopen {
    display: flex;
}

.quote-holder.messageclose {
    display: none;
}


@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.quote-heading {
    width: 100%;
    min-height: 65px;
    background: linear-gradient(135deg, #ff9f43, #ff7b00);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.quote-heading p {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: capitalize;
}

.quote-close {
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.quote-form {
    padding: 25px 20px;
    width: 100%;
}

.quote-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.input-place {
    height: 45px;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.input-place:focus {
    border-color: #ff9f43;
    box-shadow: 0 0 0 3px rgba(255, 159, 67, 0.1);
    background: #ffffff;
}

.input-place::placeholder {
    color: #6c757d;
}

.message-input {
    min-height: 120px;
    resize: none;
    font-family: inherit;
}

.submit-form {
    background: linear-gradient(135deg, #ff9f43, #ff7b00) !important;
    color: #ffffff !important;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 159, 67, 0.3);
}

.input-error {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: -10px;
}

.general-error {
    color: #dc3545;
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 6px;
    margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
    .quote-holder {
        width: 300px;
    }

    .get-quote-holder {
        bottom: 20px;
        right: 20px;
    }

    .quote-heading {
        min-height: 60px;
    }

    .quote-heading p {
        font-size: 1.1rem;
    }
}
  