/* =============================================
   Bello Inquiry – Front-end Styles
   ============================================= */

/* ---------- Inquiry Buttons (all locations) ---------- */
.bello-inquiry-btn {
    display: inline-block;
    margin-left: 8px;
    padding: 10px 20px;
    background-color: #f58220;
    color: #ffffff;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    transition: background-color 0.2s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    vertical-align: middle;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.bello-inquiry-btn:hover,
.bello-inquiry-btn:focus {
    background-color: #d96c10;
    color: #ffffff;
    text-decoration: none;
}

/* Size variations */
.bello-inquiry-btn.small {
    padding: 6px 14px;
    font-size: 12px;
}

.bello-inquiry-btn.medium {
    padding: 10px 20px;
    font-size: 14px;
}

.bello-inquiry-btn.large {
    padding: 14px 28px;
    font-size: 16px;
}

/* ---------- Button Animations ---------- */
@keyframes bello-shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

@keyframes bello-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bello-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.bello-inquiry-btn.shake {
    animation-name: bello-shake;
}

.bello-inquiry-btn.pulse {
    animation-name: bello-pulse;
}

.bello-inquiry-btn.bounce {
    animation-name: bello-bounce;
}

.bello-inquiry-btn.none {
    animation: none;
}

/* ---------- Floating Circle ---------- */
#bello-floating-circle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: #f58220;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    transition: transform 0.2s ease;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

#bello-floating-circle:hover {
    transform: scale(1.08);
}

.bello-circle-icon {
    font-size: 24px;
    line-height: 1;
}

.bello-circle-text {
    font-size: 10px;
    margin-top: 2px;
    max-width: 60px;
    word-wrap: break-word;
}

/* Circle animations */
#bello-floating-circle.shake {
    animation-name: bello-shake;
}

#bello-floating-circle.pulse {
    animation-name: bello-pulse;
}

#bello-floating-circle.bounce {
    animation-name: bello-bounce;
}

#bello-floating-circle.none {
    animation: none;
}

/* ---------- Modal Background & Content ---------- */
.bello-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    overflow-y: auto;               /* Allow scrolling on small screens */
    -webkit-overflow-scrolling: touch;
}

.bello-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.bello-modal-content {
    position: relative;
    margin: 60px auto;
    max-width: 500px;
    width: 90%;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    animation: slideDown 0.3s ease-out;
}

@media (max-width: 600px) {
    .bello-modal-content {
        margin: 20px auto;
        padding: 20px;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bello-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.bello-modal-close:hover {
    color: #333;
}

.bello-modal-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    color: #333;
}

/* ---------- Form Elements ---------- */
.bello-inquiry-form .bello-form-row {
    margin-bottom: 15px;
}

.bello-inquiry-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: #555;
}

.bello-inquiry-form input[type="text"],
.bello-inquiry-form input[type="email"],
.bello-inquiry-form input[type="tel"],
.bello-inquiry-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.bello-inquiry-form textarea {
    resize: vertical;
}

.bello-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: normal;
}

.bello-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.bello-privacy-link {
    font-size: 12px;
    color: #f58220;
    text-decoration: underline;
    margin-top: 4px;
    display: inline-block;
}

.bello-submit-row {
    text-align: right;
}

.bello-submit-btn {
    background-color: #f58220;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.bello-submit-btn:hover {
    background-color: #d96c10;
}

/* ---------- Success Message ---------- */
.bello-success-message {
    text-align: center;
    padding: 20px 0;
    font-size: 18px;
    color: #333;
}