.sbl-modal-overlay-bd042ef1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

body.admin-bar .sbl-modal-overlay-bd042ef1 {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100% - var(--wp-admin--admin-bar--height, 32px));
}

@media screen and (max-width: 782px) {
    body.admin-bar .sbl-modal-overlay-bd042ef1 {
        top: 46px;
        height: calc(100% - 46px);
    }
}

.sbl-modal-hidden-bd042ef1 {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

.sbl-modal-container-bd042ef1 {
    background: #ffffff;
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: sblModalShow_bd042ef1 0.3s ease-out;
}

.sbl-modal-large-bd042ef1 {
    max-width: 850px;
}

@keyframes sblModalShow_bd042ef1 {
    from {
        transform: scale(0.95) translateY(10px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.sbl-modal-header-bd042ef1 {
    background: #0f172a;
    color: #ffffff;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sbl-modal-header-bd042ef1 h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.sbl-modal-close-bd042ef1 {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.sbl-modal-close-bd042ef1:hover {
    color: #f1f5f9;
}

/* Quote Form Body */
#sbl-quote-form-bd042ef1 {
    padding: 24px;
    overflow-y: auto;
}

.sbl-form-row-bd042ef1 {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.sbl-form-group-bd042ef1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.sbl-form-group-bd042ef1 label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.sbl-form-group-bd042ef1 input,
.sbl-form-group-bd042ef1 select,
.sbl-form-group-bd042ef1 textarea {
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.sbl-form-group-bd042ef1 input:focus,
.sbl-form-group-bd042ef1 select:focus,
.sbl-form-group-bd042ef1 textarea:focus {
    border-color: #0c4a6e;
    box-shadow: 0 0 0 3px rgba(12, 74, 110, 0.1);
}

.sbl-form-group-bd042ef1 textarea {
    height: 100px;
    resize: none;
}

.sbl-radio-group-bd042ef1 {
    display: flex;
    gap: 20px;
    margin-top: 4px;
}

.sbl-radio-label-bd042ef1 {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #475569;
}

.sbl-btn-primary-bd042ef1 {
    background-color: #0c4a6e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease;
}

.sbl-btn-primary-bd042ef1:hover {
    background-color: #0284c7;
}

/* Success Screen */
.sbl-success-screen-bd042ef1 {
    text-align: center;
    padding: 40px 20px;
}

.sbl-success-icon-bd042ef1 {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #10b981;
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 16px;
}

.sbl-success-screen-bd042ef1 h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #0f172a;
}

.sbl-success-screen-bd042ef1 p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Dynamic Project Modal */
.sbl-project-content-bd042ef1 {
    padding: 24px;
    overflow-y: auto;
}

.sbl-project-grid-bd042ef1 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .sbl-project-grid-bd042ef1 {
        grid-template-columns: 1fr;
    }
}

.sbl-project-details-bd042ef1 h4,
.sbl-project-gallery-bd042ef1 h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 16px;
    color: #0f172a;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 6px;
}

.sbl-project-details-bd042ef1 p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.sbl-project-spec-list-bd042ef1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.sbl-spec-item-bd042ef1 {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 6px 10px;
    background-color: #f8fafc;
    border-radius: 4px;
}

.sbl-spec-item-bd042ef1 strong {
    color: #0f172a;
}

.sbl-spec-item-bd042ef1 span {
    color: #64748b;
}

.sbl-gallery-grid-bd042ef1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sbl-gallery-img-bd042ef1 {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #cbd5e1;
}

/* Division Modal */
.sbl-division-content-bd042ef1 {
    overflow-y: auto;
}

.sbl-division-hero-bd042ef1 {
    height: 180px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.sbl-division-text-bd042ef1 {
    padding: 24px;
}

.sbl-division-text-bd042ef1 h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 16px;
    color: #0f172a;
}

.sbl-division-text-bd042ef1 p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sbl-division-partners-bd042ef1 {
    background-color: #f1f5f9;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    color: #334155;
}

.sbl-division-partners-bd042ef1 strong {
    color: #0f172a;
    display: block;
    margin-bottom: 4px;
}

/* Shining white hero card styling */
.sbl-shining-white-card-bd042ef1 {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.4), 0 0 25px rgba(255, 255, 255, 0.6) !important;
    padding: 30px !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px) !important;
    color: #0f172a !important;
    transition: all 0.4s ease-in-out !important;
}

.sbl-shining-white-card-bd042ef1 * {
    color: #0f172a !important;
}
