/* premium-modals.css - Modern Glassmorphic Modals (Green Theme) */

.premium-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.premium-modal-container {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    width: 90%;
    max-width: 440px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(30, 215, 96, 0.05);
    transform: scale(0.9) translateY(30px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.premium-modal-overlay.active .premium-modal-container {
    transform: scale(1) translateY(0);
}

.premium-modal-header {
    margin-bottom: 25px;
    text-align: center;
}

.premium-modal-header i {
    font-size: 2.8rem;
    color: #1ed760;
    margin-bottom: 18px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(30, 215, 96, 0.4));
}

.premium-modal-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.8px;
    color: #fff;
    margin-bottom: 8px;
}

.premium-modal-header p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    line-height: 1.5;
}

.premium-modal-header p strong {
    color: #1ed760;
}

.premium-modal-body {
    margin-bottom: 30px;
}

.report-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
    justify-content: center;
}

.category-chip {
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-chip:hover {
    background: rgba(30, 215, 96, 0.1);
    border-color: rgba(30, 215, 96, 0.3);
    color: #1ed760;
    transform: translateY(-3px);
}

.category-chip.active {
    background: rgba(30, 215, 96, 0.15);
    border-color: #1ed760;
    color: #1ed760;
    box-shadow: 0 5px 15px rgba(30, 215, 96, 0.2);
}

.premium-input-group {
    position: relative;
    margin-top: 20px;
}

.premium-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    min-height: 100px;
    resize: none;
    transition: all 0.3s ease;
}

.premium-textarea:focus {
    outline: none;
    border-color: #1ed760;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(30, 215, 96, 0.15);
}

.premium-modal-footer {
    display: flex;
    gap: 15px;
}

.premium-btn {
    flex: 1;
    padding: 15px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.premium-btn-cancel {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
}

.premium-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateY(-2px);
}

.premium-btn-submit {
    background: linear-gradient(135deg, #1ed760 0%, #1db954 100%);
    color: #000;
    box-shadow: 0 8px 20px rgba(30, 215, 96, 0.25);
}

.premium-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(30, 215, 96, 0.35);
}

.premium-btn-submit:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}