/* Bellsempire Readiness Form – Frontend Styles */
#bellsempire-form-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Chonburi', cursive;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 30px 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0a1928;
    font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Chonburi', cursive;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #0a58ca;
    box-shadow: 0 0 0 3px rgba(10, 88, 202, 0.2);
    background: white;
}

#bellsempire-readiness-form button[type="submit"] {
    background: linear-gradient(135deg, #0a58ca, #3b82f6);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

#bellsempire-readiness-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 88, 202, 0.3);
}

.gdpr-notice {
    margin: 20px 0 10px;
    text-align: center;
    font-size: 0.75rem;
    color: #2c3e50;
}

.gdpr-notice a {
    color: #0a58ca;
    text-decoration: none;
}

.gdpr-notice a:hover {
    text-decoration: underline;
}

/* Modal overlay */
.bellsempire-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Chonburi', cursive;
}

.bellsempire-modal-content {
    background: white;
    max-width: 550px;
    width: 90%;
    border-radius: 28px;
    padding: 30px 25px 35px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: #0a58ca;
}

.bellsempire-modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #0a1928;
}

.bellsempire-modal-content h3 {
    font-size: 1.3rem;
    color: #0a58ca;
    margin-bottom: 20px;
}

.bellsempire-modal-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #2c3e50;
    margin-bottom: 25px;
}

.result-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.result-buttons button,
.result-buttons a {
    background: #0a58ca;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
}

.result-buttons button:hover,
.result-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.result-buttons a {
    background: #25d366;
}

/* Inline result (after modal closed) */
.inline-result {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.inline-result h3 {
    color: #0a58ca;
}

/* Responsive */
@media (max-width: 640px) {
    #bellsempire-form-container {
        padding: 20px 16px;
    }
    .result-buttons button,
    .result-buttons a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    .bellsempire-modal-content {
        padding: 20px 18px;
    }
}