/* Premium Popup Redesign */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 13, 44, 0.4);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.popup-box {
    display: flex;
    width: 950px;
    max-width: 100%;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

/* Image section */
.popup-left {
    flex: 1.2;
    background: #891652;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    animation: zoom-slow 20s infinite alternate;
}

@keyframes zoom-slow {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Content section */
.popup-right {
    flex: 1;
    padding: 60px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.close-popup {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-popup:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.popup-badge {
    display: inline-block;
    background: rgba(137, 22, 82, 0.08);
    color: #891652;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.popup-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-align: left !important;
}

.popup-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.5;
}

.bullet-list {
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
}

.bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #475569;
    margin-bottom: 12px;
    font-weight: 500;
}

.bullet-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: #4ade80;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-input {
    padding: 15px 20px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.popup-input:focus {
    border-color: #891652;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(137, 22, 82, 0.05);
}

.popup-submit-btn {
    background: #891652;
    color: #ffffff;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.popup-submit-btn:hover {
    background: #891652;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(137, 22, 82, 0.25);
    filter: brightness(1.1);
}

.popup-submit-btn i { transition: transform 0.4s ease; }
.popup-submit-btn:hover i { transform: translateX(5px); }

.popup-privacy {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin-top: 15px;
}

/* ✅ Responsive Design */
@media (max-width: 991px) {
    .popup-box {
        width: 500px;
    }
    .popup-left {
        display: none;
    }
    .popup-right {
        padding: 40px;
    }
}

@media (max-width: 575px) {
    .popup-box {
        width: 100%;
        border-radius: 20px;
    }
    .popup-right {
        padding: 35px 25px;
    }
    .popup-title {
        font-size: 26px;
    }
}
