/* ==========================================================================
   Bento Box Glassmorphism "Why Choose Us" Section
   ========================================================================== */

.bento-section-wrapper {
    padding: 80px 0;
    /* Deep rich gradient background to make glassmorphism pop */
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle glowing orb in the background for extra premium feel */
.bento-section-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(233,64,87,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.bento-section-wrapper .container {
    position: relative;
    z-index: 1;
}

.bento-section-title h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.bento-section-title-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e94057, #f27121);
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

/* Bento Grid Layout */
.bento-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Glassmorphism Card Styles */
.bento-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.bento-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 40px rgba(233,64,87,0.2);
}

/* Specific Card Placements */
.bento-card-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    justify-content: center;
}

.bento-card-small {
    grid-column: 2 / 3;
    justify-content: center;
}

/* Icons */
.bento-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(233,64,87,0.2), rgba(242,113,33,0.2));
    border: 1px solid rgba(233,64,87,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.bento-feature-card:hover .bento-feature-icon {
    background: linear-gradient(135deg, rgba(233,64,87,0.8), rgba(242,113,33,0.8));
    border: 1px solid rgba(255,255,255,0.5);
    transform: scale(1.1) rotate(5deg);
}

.bento-feature-icon i {
    font-size: 30px;
    color: #ffffff;
}

/* Text Content */
.bento-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.bento-card-large .bento-content h4 {
    font-size: 32px;
}

.bento-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bento-features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .bento-card-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .bento-card-small {
        grid-column: 1 / -1;
    }
}

/* Classic Registration Form Layout from Screenshot */
.classic-reg-form {
    background: rgba(255, 255, 255, 0.75);
    padding: 25px 20px;
    border-left: 4px solid #ed8500;
    width: 380px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    margin-top: 20px;
}
.crf-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.crf-label {
    width: 35%;
    font-size: 14px;
    color: #333;
}
.crf-input {
    width: 65%;
}
.crf-input input, .crf-input select {
    width: 100%;
    padding: 8px 10px;
    border: none;
    background: #f0f0f0;
    color: #666;
    font-size: 14px;
    box-sizing: border-box;
}
.crf-dob {
    display: flex;
    gap: 5px;
}
.crf-dob select {
    flex: 1;
    padding: 8px 5px;
}
.crf-mobile {
    display: flex;
    gap: 5px;
}
.crf-mobile .crf-code {
    width: 45px;
    text-align: center;
    padding: 8px 5px;
}
.crf-mobile input[name="mobile_no"] {
    flex: 1;
}
.crf-terms {
    text-align: center;
    font-size: 14px;
    color: #000;
    margin: 15px 0;
}
.crf-terms input {
    margin-right: 5px;
    vertical-align: middle;
}
.crf-submit {
    text-align: center;
}
.crf-btn {
    background: #ea8100;
    color: #fff;
    border: 1px solid #d35400;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
    transition: background 0.3s;
}
.crf-btn:hover {
    background: #d35400;
}
.crf-btn i {
    margin-right: 5px;
}
