/* ==========================================================================
   JODII Footer & Auth Modal Stylesheet (footer.css)
   ========================================================================== */

.main-footer {
    background: linear-gradient(180deg, #29020C 0%, #190107 100%);
    color: #F3E5F5;
    border-top: 1px solid rgba(245, 197, 66, 0.3);
}

.footer-top {
    padding: 60px 0 40px 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #F5C542;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: #E91E63;
}

.footer-about-text {
    font-size: 13px;
    color: #DDD;
    line-height: 1.6;
    margin: 16px 0 20px 0;
    text-align: justify;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(245, 197, 66, 0.3);
    color: #F5C542;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #E91E63;
    color: #FFF;
    border-color: #E91E63;
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-size: 13px;
    color: #CCC;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.footer-links li a i {
    font-size: 10px;
    color: #F5C542;
}

.footer-links li a:hover {
    color: #F5C542;
    transform: translateX(4px);
}

.footer-newsletter-text {
    font-size: 13px;
    color: #DDD;
    margin-bottom: 12px;
}

.footer-newsletter-form {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid rgba(245, 197, 66, 0.4);
    background: rgba(255, 255, 255, 0.06);
    color: #FFF;
    font-size: 12px;
    outline: none;
}

.footer-newsletter-form input::placeholder {
    color: #AAA;
}

.footer-newsletter-form button {
    padding: 10px 16px;
    background: linear-gradient(180deg, #F5C542 0%, #D49D18 100%);
    color: #29020C;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}

.app-download-mini span {
    display: block;
    font-size: 11px;
    color: #AAA;
    margin-bottom: 8px;
}

.app-badges {
    display: flex;
    gap: 8px;
}

.btn-app-store {
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFF;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Footer Bottom */
.footer-bottom {
    background: #140105;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.footer-bottom-container p strong,
.footer-bottom-container p a.designer-link {
    color: #F5C542;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-bottom-container p a.designer-link:hover {
    color: #E91E63;
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: #BBB;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #F5C542;
}

/* --------------------------------------------------------------------------
   AUTH MODAL STYLES (LOGIN & REGISTER POPUP)
   -------------------------------------------------------------------------- */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 1, 5, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-modal-overlay.show {
    opacity: 1;
}

.auth-modal-box {
    position: relative;
    width: 95%;
    max-width: 440px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(41, 2, 12, 0.4);
    border: 2px solid #F5C542;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease, max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-box.login-mode {
    max-width: 440px !important;
}

.auth-modal-box.login-mode .auth-modal-body {
    padding-bottom: 25px !important;
}

.auth-modal-header {
    position: relative;
    background: #29020C;
    border-bottom: 2px solid #F5C542;
    flex-shrink: 0;
}

.auth-tabs {
    display: flex;
    background: #29020C;
    padding-right: 55px;
}

.auth-close-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-close-btn:hover {
    background: #E91E63;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.08);
}

.auth-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 25px 20px !important;
}

/* Custom 3-Column Grid Select Dropdown */
.custom-grid-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-grid-select-trigger {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: border-color 0.2s ease;
}

.custom-grid-select-trigger:hover,
.custom-grid-select-wrapper.open .custom-grid-select-trigger {
    border-color: #AD1457;
}

.custom-grid-select-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 10px;
    z-index: 1000;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.custom-grid-select-wrapper.open .custom-grid-select-menu {
    display: grid !important;
}

.custom-grid-option {
    padding: 10px 6px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.custom-grid-option:hover {
    background: #FFF0F5;
    border-color: #AD1457;
    color: #AD1457;
}

.custom-grid-option.selected {
    background: #AD1457;
    border-color: #AD1457;
    color: #ffffff;
}

/* Custom Scrollbar for Auth Modal Body */
.auth-modal-body::-webkit-scrollbar {
    width: 6px;
}
.auth-modal-body::-webkit-scrollbar-track {
    background: #FFF0F4;
}
.auth-modal-body::-webkit-scrollbar-thumb {
    background: #AD1457;
    border-radius: 10px;
}

.auth-modal-overlay.show .auth-modal-box {
    transform: translateY(0);
}

.auth-tab-btn {
    flex: 1;
    padding: 16px;
    background: transparent;
    color: #F3E5F5;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.auth-tab-btn.active {
    background: #FFFFFF;
    color: #29020C;
    border-radius: 12px 12px 0 0;
}

.auth-panel {
    padding: 24px 22px;
}

.auth-panel-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 24px;
    font-weight: 700;
    color: #29020C;
    text-align: center;
    margin-bottom: 4px;
}

.auth-panel-sub {
    font-size: 13px;
    color: #777;
    text-align: center;
    margin-bottom: 18px;
}

/* Multi-Step Wizard Badges */
.reg-steps-bar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid #FCE4EC !important;
    padding-bottom: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.reg-step-badge {
    flex: 1 !important;
    text-align: center !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #888 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.reg-step-badge span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    background: #F0F0F0 !important;
    color: #666 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    margin-bottom: 3px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
}

.reg-step-badge.active span {
    background: linear-gradient(135deg, #AD1457 0%, #E91E63 100%) !important;
    color: #FFF !important;
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.35) !important;
}

.reg-step-badge.active {
    color: #AD1457 !important;
    font-weight: 700 !important;
}

.auth-input-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    margin-bottom: 14px !important;
}

.auth-input-group label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #4A081A !important;
}

.input-with-icon {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

.input-with-icon i {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #AD1457 !important;
    font-size: 15px !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

.input-with-icon i.toggle-password {
    left: auto !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    cursor: pointer !important;
    color: #E91E63 !important;
    font-size: 15px !important;
    z-index: 10 !important;
    pointer-events: auto !important;
}

/* Beautiful Form Inputs */
.auth-modal-box input:not([type="checkbox"]):not([type="radio"]), 
.auth-modal-box select:not(#regCountryCode), 
.auth-input, 
.auth-select:not(#regCountryCode) {
    width: 100% !important;
    padding: 10px 14px !important;
    border: 1.5px solid #F8C8D8 !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-family: inherit !important;
    outline: none !important;
    background: #FFF8FA !important;
    color: #29020C !important;
    transition: all 0.25s ease !important;
    box-sizing: border-box !important;
    height: 42px !important;
}

#regCountryCode,
.auth-modal-box select#regCountryCode,
.auth-modal-box #regCountryCode {
    width: 90px !important;
    max-width: 90px !important;
    min-width: 90px !important;
    flex: 0 0 90px !important;
    padding: 10px 4px 10px 6px !important;
    border: 1.5px solid #F8C8D8 !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    outline: none !important;
    background: #FFF8FA !important;
    color: #29020C !important;
    box-sizing: border-box !important;
    height: 42px !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}

.custom-search-select-wrapper:has(#regCountryCode) {
    width: 85px !important;
    flex: 0 0 85px !important;
    max-width: 85px !important;
}

.input-with-icon input,
.input-with-icon .auth-input,
.auth-modal-box .input-with-icon input,
.auth-modal-box .input-with-icon .auth-input,
#marriageLifeLoginForm .input-with-icon input,
#regStep5 .input-with-icon input,
#regStep5 .input-with-icon .auth-input,
#loginEmail,
#loginPassword {
    width: 100% !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 48px !important;
    padding-right: 40px !important;
    box-sizing: border-box !important;
}

.auth-select {
    padding-left: 12px;
    cursor: pointer;
}

.auth-input:focus, .input-with-icon input:focus, .auth-select:focus {
    border-color: #AD1457;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(173, 20, 87, 0.15);
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 20px;
}

.auth-options a {
    color: #E91E63;
    font-weight: 600;
}

.btn-auth-submit {
    width: 100%;
    padding: 13px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: var(--shadow-pink);
    transition: all 0.3s ease;
}

.btn-login-submit {
    background: linear-gradient(180deg, #F5C542 0%, #D49D18 100%);
    color: #29020C;
    box-shadow: var(--shadow-gold);
}

.btn-register-submit {
    background: linear-gradient(180deg, #E91E63 0%, #C2185B 100%);
    color: #FFFFFF;
}

/* Multi-Step Navigation Buttons */
.btn-reg-prev {
    background: #FFF0F4;
    color: #AD1457 !important;
    border: 1.5px solid #F8C8D8;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(173, 20, 87, 0.08);
}

.btn-reg-prev:hover {
    background: #FCE4EC;
    color: #880E4F !important;
    border-color: #AD1457;
    transform: translateY(-1px);
}

.btn-reg-next {
    background: linear-gradient(135deg, #AD1457 0%, #E91E63 100%);
    color: #FFFFFF !important;
    border: none;
    padding: 11px 26px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.35);
}

.btn-reg-next:hover {
    background: linear-gradient(135deg, #880E4F 0%, #AD1457 100%);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.45);
    transform: translateY(-1px);
}

.btn-reg-submit {
    background: linear-gradient(135deg, #E91E63 0%, #AD1457 100%);
    color: #FFFFFF !important;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.btn-reg-submit:hover {
    background: linear-gradient(135deg, #C2185B 0%, #880E4F 100%);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
    transform: translateY(-1px);
}

.btn-inline-otp {
    background: #AD1457;
    color: #FFFFFF !important;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(173, 20, 87, 0.25);
}

.btn-inline-otp:hover {
    background: #E91E63;
    transform: translateY(-1px);
}

.btn-inline-otp:disabled {
    background: #BDBDBD;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-inline-otp-verify {
    background: #2E7D32;
    color: #FFFFFF !important;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.25);
}

.btn-inline-otp-verify:hover {
    background: #1B5E20;
    transform: translateY(-1px);
}

.btn-inline-otp-verify:disabled {
    background: #BDBDBD;
    cursor: not-allowed;
    box-shadow: none;
}

/* OTP Verification Panel Styles */
.otp-header {
    text-align: center;
    margin-bottom: 20px;
}

.otp-icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FCE4EC;
    color: #C2185B;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    border: 2px solid #F8BBD0;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.12);
}

.otp-inputs-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

.otp-digit {
    width: 52px;
    height: 58px;
    border-radius: 12px;
    border: 2px solid #FCE4EC;
    background: #FFF;
    font-size: 22px;
    font-weight: 700;
    color: #29020C;
    text-align: center;
    outline: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.otp-digit:focus {
    border-color: #E91E63;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.15);
}

.otp-resend-box {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: #666;
}

.btn-resend-link {
    background: none;
    border: none;
    color: #E91E63;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}

.btn-resend-link:hover {
    color: #AD1457;
}

.edit-mobile-btn {
    background: #FCE4EC;
    border: 1px solid #F8BBD0;
    color: #C2185B;
    border-radius: 6px;
    padding: 3px 7px;
    font-size: 13px;
    margin-left: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.edit-mobile-btn:hover {
    background: #E91E63;
    color: #FFFFFF;
    border-color: #E91E63;
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .footer-top {
        padding: 35px 0 25px 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    .footer-col-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .footer-about-text {
        font-size: 12px;
        margin: 10px 0 14px 0;
    }
    .footer-links {
        gap: 8px;
    }
    .footer-links li a {
        font-size: 12px;
    }
    .footer-newsletter-text {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .footer-bottom {
        padding: 16px 0;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 11px;
    }
}

/* Auth Validation Error Styles */
.error-text {
    display: none;
    color: #D32F2F !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-top: 4px;
    padding-left: 4px;
}
.error-text:not(:empty) {
    display: block !important;
}

.auth-input.is-invalid, .auth-select.is-invalid {
    border-color: #D32F2F !important;
    background-color: #FFEBEE !important;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15) !important;
}

@media (max-width: 576px) {
    .auth-modal-box {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 90vh !important;
        margin: 0 !important;
        border-radius: 16px 16px 0 0 !important;
        border: 1.5px solid #F5C542 !important;
        border-bottom: none !important;
    }
    .auth-modal-body {
        padding: 12px 14px 20px 14px !important;
    }
    .auth-panel {
        padding: 5px 0 !important;
    }
    .auth-panel-title {
        font-size: 16px !important;
        margin-bottom: 2px !important;
    }
    .auth-panel-sub {
        font-size: 11px !important;
        margin-bottom: 10px !important;
    }
    .step-indicator-pill {
        padding: 3px 10px !important;
        font-size: 10px !important;
        margin-bottom: 6px !important;
    }
    .auth-input-group {
        margin-bottom: 10px !important;
    }
    .auth-input-group label {
        font-size: 11px !important;
        margin-bottom: 3px !important;
    }
    .auth-modal-box input:not([type="checkbox"]):not([type="radio"]),
    .auth-modal-box select:not(#regCountryCode),
    .auth-modal-box .custom-select-trigger {
        height: 38px !important;
        min-height: 38px !important;
        font-size: 12.5px !important;
        padding: 0 10px !important;
    }
    .input-with-icon input, .input-with-icon .auth-input {
        padding-left: 36px !important;
        font-size: 12.5px !important;
    }
    .input-with-icon .input-icon {
        font-size: 13px !important;
        width: 32px !important;
    }
    .btn-auth-submit {
        padding: 10px !important;
        font-size: 13.5px !important;
        border-radius: 8px !important;
    }
    .auth-options {
        font-size: 11px !important;
        margin-bottom: 10px !important;
    }
    .auth-tab-btn {
        padding: 10px 6px !important;
        font-size: 12.5px !important;
        gap: 6px !important;
    }
    .auth-close-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 13px !important;
        top: 50% !important;
        right: 10px !important;
        transform: translateY(-50%) !important;
    }
}

/* Floating Contact Widget */
.floating-contact-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: #FFF;
}

.call-btn {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
}

.call-btn:hover {
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
    color: #FFF;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #FFF;
}

@media (max-width: 576px) {
    .floating-contact-widget {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ==========================================================================
   GLOBAL TOAST NOTIFICATION STYLING (RESPONSIVE)
   ========================================================================== */
.marriage-life-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    font-size: 13px;
    font-weight: 600;
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    pointer-events: none;
}

.marriage-life-toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.marriage-life-toast.error {
    background: linear-gradient(135deg, #B71C1C 0%, #D32F2F 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.marriage-life-toast.success {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.marriage-life-toast.info {
    background: linear-gradient(135deg, #3A0513 0%, #29020C 100%);
    color: #F5C542;
    border: 1px solid #F5C542;
}

@media (max-width: 768px) {
    .marriage-life-toast {
        right: auto !important;
        left: 50% !important;
        bottom: 24px !important;
        transform: translate(-50%, 15px) scale(0.95) !important;
        padding: 10px 18px !important;
        font-size: 12px !important;
        line-height: 1.4 !important;
        width: calc(100% - 32px) !important;
        max-width: 480px !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 25px !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
        gap: 10px !important;
        box-sizing: border-box !important;
    }

    .marriage-life-toast i {
        font-size: 16px !important;
        flex-shrink: 0 !important;
    }

    .marriage-life-toast span {
        flex: 1 1 auto !important;
    }

    .marriage-life-toast.show {
        transform: translate(-50%, 0) scale(1) !important;
    }
}

/* Production-Level Searchable Select Dropdown Styling */
select.auth-searchable,
.custom-search-select-wrapper select.auth-searchable,
.auth-modal-box select.auth-searchable {
    display: none !important;
}

.custom-search-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100% !important;
    height: 42px !important;
    padding: 0 14px !important;
    border: 1.5px solid #F8C8D8 !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    background: #FFF8FA !important;
    color: #29020C !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    user-select: none !important;
    box-sizing: border-box !important;
}

.custom-select-trigger:hover,
.custom-search-select-wrapper.open .custom-select-trigger {
    border-color: #AD1457 !important;
    background: #FFFFFF !important;
    box-shadow: 0 0 0 3px rgba(173, 20, 87, 0.15) !important;
}

.custom-select-trigger .trigger-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

/* High Specificity Overrides for Auth Modal Box Search Select */
.auth-modal-box .custom-search-select-wrapper {
    position: relative !important;
    width: 100% !important;
}

.custom-search-select-wrapper.open,
.auth-modal-box .custom-search-select-wrapper.open {
    z-index: 99999 !important;
}

.auth-modal-box .custom-search-select-wrapper select.auth-searchable {
    display: none !important;
}

.auth-modal-box .custom-select-trigger {
    width: 100% !important;
    height: 42px !important;
    padding: 0 14px !important;
    border: 1.5px solid #F8C8D8 !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    background: #FFF8FA !important;
    color: #29020C !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    user-select: none !important;
    box-sizing: border-box !important;
}

.auth-modal-box .custom-select-trigger:hover,
.auth-modal-box .custom-search-select-wrapper.open .custom-select-trigger {
    border-color: #AD1457 !important;
    background: #FFFFFF !important;
    box-shadow: 0 0 0 3px rgba(173, 20, 87, 0.15) !important;
}

.auth-modal-box .custom-select-trigger .trigger-text {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-weight: 500 !important;
}

.auth-modal-box .custom-select-trigger .trigger-arrow {
    font-size: 11px !important;
    color: #AD1457 !important;
    transition: transform 0.2s ease !important;
    margin-left: 8px !important;
    flex-shrink: 0 !important;
}

.auth-modal-box .custom-search-select-wrapper.open .trigger-arrow {
    transform: rotate(180deg) !important;
}

/* Dropdown Popup Panel - Matches Image 1 Design Exactly */
.custom-search-select-wrapper .custom-select-menu,
.auth-modal-box .custom-select-menu {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 0 !important;
    right: 0 !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.08) !important;
    z-index: 999999 !important;
    display: none !important;
    padding: 8px !important;
    box-sizing: border-box !important;
    animation: customSelectFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.custom-search-select-wrapper.dropup .custom-select-menu,
.auth-modal-box .custom-search-select-wrapper.dropup .custom-select-menu {
    top: auto !important;
    bottom: calc(100% + 6px) !important;
    box-shadow: 0 -10px 25px -5px rgba(0, 0, 0, 0.12), 0 -8px 10px -6px rgba(0, 0, 0, 0.08) !important;
    animation: customSelectFadeUp 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes customSelectFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes customSelectFadeUp {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.custom-search-select-wrapper.open .custom-select-menu,
.auth-modal-box .custom-search-select-wrapper.open .custom-select-menu {
    display: block !important;
}

/* Inner Search Input Override - Blue Outlined Input with Left Magnifying Glass */
.custom-search-select-wrapper .custom-select-search,
.auth-modal-box .custom-select-search {
    position: relative !important;
    margin-bottom: 8px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

.custom-search-select-wrapper .custom-select-search i,
.auth-modal-box .custom-select-search i {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #3B82F6 !important;
    font-size: 14px !important;
    pointer-events: none !important;
    z-index: 5 !important;
}

.custom-search-select-wrapper .custom-select-search input[type="text"],
.custom-search-select-wrapper .custom-select-search input,
.auth-modal-box .custom-select-search input[type="text"],
.auth-modal-box .custom-select-search input {
    width: 100% !important;
    height: 38px !important;
    padding: 0 12px 0 36px !important;
    border: 1.5px solid #3B82F6 !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    color: #1E293B !important;
    background: #FFFFFF !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    font-family: inherit !important;
}

.custom-search-select-wrapper .custom-select-search input[type="text"]::placeholder,
.custom-search-select-wrapper .custom-select-search input::placeholder,
.auth-modal-box .custom-select-search input[type="text"]::placeholder,
.auth-modal-box .custom-select-search input::placeholder {
    color: #94A3B8 !important;
}

/* Options List Container */
.custom-search-select-wrapper .custom-select-options,
.auth-modal-box .custom-select-options {
    list-style: none !important;
    margin: 0 !important;
    padding: 2px 0 !important;
    max-height: 200px !important;
    min-height: 120px !important;
    overflow-y: auto !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Custom Scrollbar */
.custom-search-select-wrapper .custom-select-options::-webkit-scrollbar,
.auth-modal-box .custom-select-options::-webkit-scrollbar {
    width: 5px !important;
}
.custom-search-select-wrapper .custom-select-options::-webkit-scrollbar-track,
.auth-modal-box .custom-select-options::-webkit-scrollbar-track {
    background: transparent !important;
}
.custom-search-select-wrapper .custom-select-options::-webkit-scrollbar-thumb,
.auth-modal-box .custom-select-options::-webkit-scrollbar-thumb {
    background: #CBD5E1 !important;
    border-radius: 4px !important;
}
.custom-search-select-wrapper .custom-select-options::-webkit-scrollbar-thumb:hover,
.auth-modal-box .custom-select-options::-webkit-scrollbar-thumb:hover {
    background: #94A3B8 !important;
}

/* Option List Items - Exact replica of Image 1 */
.custom-search-select-wrapper .custom-select-options li,
.auth-modal-box .custom-select-options li {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 40px !important;
    padding: 0 10px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #1E293B !important;
    background: transparent !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    box-sizing: border-box !important;
    margin-bottom: 2px !important;
}

.custom-search-select-wrapper .custom-select-options li .opt-left,
.auth-modal-box .custom-select-options li .opt-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.custom-search-select-wrapper .custom-select-options li .opt-flag-img,
.auth-modal-box .custom-select-options li .opt-flag-img,
.custom-select-trigger .opt-flag-img {
    width: 22px !important;
    height: 15px !important;
    border-radius: 2px !important;
    object-fit: cover !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
    flex-shrink: 0 !important;
    margin-right: 6px !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.custom-search-select-wrapper .custom-select-options li .opt-label,
.auth-modal-box .custom-select-options li .opt-label {
    font-weight: 500 !important;
    color: #1E293B !important;
}

.custom-search-select-wrapper .custom-select-options li .opt-check,
.auth-modal-box .custom-select-options li .opt-check {
    font-size: 14px !important;
    color: #3B82F6 !important;
    display: none !important;
    flex-shrink: 0 !important;
}

.custom-search-select-wrapper .custom-select-options li:hover,
.auth-modal-box .custom-select-options li:hover {
    background: #F8FAFC !important;
    color: #0F172A !important;
}

.custom-search-select-wrapper .custom-select-options li.selected,
.auth-modal-box .custom-select-options li.selected {
    background: #EFF6FF !important;
    color: #1D4ED8 !important;
}

.custom-search-select-wrapper .custom-select-options li.selected .opt-label,
.auth-modal-box .custom-select-options li.selected .opt-label {
    font-weight: 600 !important;
    color: #1E293B !important;
}

.custom-search-select-wrapper .custom-select-options li.selected .opt-check,
.auth-modal-box .custom-select-options li.selected .opt-check {
    display: block !important;
}

.custom-search-select-wrapper .custom-select-no-results,
.auth-modal-box .custom-select-no-results {
    padding: 14px !important;
    font-size: 12.5px !important;
    color: #94A3B8 !important;
    text-align: center !important;
    display: none;
}

