/* Promotional Modal Styles */
.promo-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.promo-modal.show {
    opacity: 1;
    visibility: visible;
}

.promo-modal.show .promo-modal-content {
    transform: scale(1);
    opacity: 1;
}

.promo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.promo-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(158, 127, 164, 0.4);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.promo-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #718096;
    z-index: 2;
}

.promo-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.promo-modal-header {
    background: linear-gradient(135deg, #9E7FA4 0%, #7B5E82 100%);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.promo-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.promo-modal-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #9E7FA4;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.promo-modal-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.promo-modal-body {
    padding: 2rem;
}

.promo-modal-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d3748;
    text-align: center;
    margin-bottom: 1.5rem;
}

.promo-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #9E7FA4 0%, #7B5E82 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.125rem;
}

.promo-modal-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.promo-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(158, 127, 164, 0.05);
    border-radius: 10px;
    color: #2d3748;
    font-size: 0.95rem;
}

.promo-feature-item svg {
    color: #9E7FA4;
    flex-shrink: 0;
}

.promo-modal-footer {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.promo-modal-cta {
    background: linear-gradient(135deg, #9E7FA4 0%, #7B5E82 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(158, 127, 164, 0.3);
}

.promo-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(158, 127, 164, 0.4);
    color: white;
    text-decoration: none;
}

.promo-modal-dismiss {
    background: transparent;
    color: #718096;
    border: none;
    padding: 0.75rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.promo-modal-dismiss:hover {
    color: #2d3748;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .promo-modal-content {
        width: 95%;
        border-radius: 16px;
    }

    .promo-modal-header {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 16px 16px 0 0;
    }

    .promo-modal-icon {
        width: 60px;
        height: 60px;
    }

    .promo-modal-icon svg {
        width: 32px;
        height: 32px;
    }

    .promo-modal-title {
        font-size: 1.5rem;
    }

    .promo-modal-body {
        padding: 1.5rem;
    }

    .promo-modal-text {
        font-size: 1rem;
    }

    .promo-highlight {
        font-size: 1rem;
    }

    .promo-modal-footer {
        padding: 0 1.5rem 1.5rem;
    }

    .promo-modal-cta {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }
}
