/* BACKGROUND */
.bnpl-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/Construction/LuxuryHouse.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.bnpl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    z-index: 1;
}

.bnpl-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* HEADER */
.section-title {
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: rgb(43,108,176);
    margin: 15px auto 20px;
}

.bnpl-highlight {
    color: rgb(43,108,176);
}

/* CARD - LARGER VERSION - TRANSPARENT */
.bnpl-card-lg {
    max-width: 1200px !important;
    margin: auto;
    background: transparent !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5) !important;
}

/* FORM - LARGER - TRANSPARENT VERSION */
.form-side-lg {
    padding: 2.5rem 3rem !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

.form-label-lg {
    font-weight: 600;
    font-size: 1rem !important;
    margin-bottom: 6px;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Transparent inputs */
.transparent-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    color: white !important;
    transition: all 0.2s ease;
}

.transparent-input:focus {
    border-color: rgb(43,108,176) !important;
    box-shadow: 0 0 0 0.25rem rgba(43,108,176,0.25) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    outline: none;
}

.transparent-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

textarea.transparent-input {
    resize: vertical;
}

/* SLIDER - LARGER */
.slider-side-lg {
    min-height: 550px !important;
    background: rgba(0,0,0,0.3);
}

/* BUTTON - LARGER - TRANSPARENT VERSION */
.bnpl-submit-btn-lg {
    border: 3px solid rgba(255, 255, 255, 0.5) !important;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 12px !important;
    transition: 0.3s;
    font-size: 1.1rem !important;
    padding: 14px 40px !important;
}

.bnpl-submit-btn-lg:hover:not(:disabled) {
    background: rgb(43,108,176) !important;
    border-color: rgb(43,108,176) !important;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(43,108,176,0.4);
}

.bnpl-submit-btn-lg:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* DESCRIPTION STYLES - CLEAN & PROFESSIONAL - TRANSPARENT */
.description-container {
    padding-bottom: 60px !important;
}

.badge-gradient {
    display: inline-block;
    background: rgba(43, 108, 176, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.benefit-pill {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    color: white;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.benefit-pill:hover {
    background: rgba(43, 108, 176, 0.3);
    border-color: rgb(43, 108, 176);
    transform: translateY(-2px);
}

.benefit-pill i {
    color: rgb(43, 108, 176);
}

.trust-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.security-note {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Simple description text color */
.text-white-50 {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* MOBILE RESPONSIVE */
@media(max-width:991px) {
    .bnpl-section {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .bnpl-background {
        background-attachment: scroll;
    }
    
    .slider-side-lg {
        min-height: 350px !important;
    }
    
    .form-side-lg {
        padding: 2rem !important;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .description-container {
        padding-bottom: 50px !important;
    }
}

@media(max-width:576px) {
    .slider-side-lg {
        min-height: 280px !important;
    }
    
    .form-side-lg {
        padding: 1.5rem !important;
    }
    
    .bnpl-card-lg {
        border-radius: 20px !important;
    }
    
    .bnpl-submit-btn-lg {
        padding: 12px 30px !important;
        font-size: 1rem !important;
    }
    
    .description-container {
        padding-bottom: 40px !important;
    }
    
    .badge-gradient {
        padding: 0.4rem 1.2rem;
        font-size: 0.75rem;
    }
    
    .benefit-pill {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bnpl-card-lg {
    animation: fadeIn 0.6s ease-out;
}

.badge-gradient, .lead, .benefit-pill {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.badge-gradient { animation-delay: 0.1s; }
.lead { animation-delay: 0.2s; }
.benefit-pill:nth-child(1) { animation-delay: 0.3s; }
.benefit-pill:nth-child(2) { animation-delay: 0.4s; }
.benefit-pill:nth-child(3) { animation-delay: 0.5s; }