/* ===== SIGNUP MODAL STYLES ===== */

/* Modal Overlay */
.signup-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.signup-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Modal Container */
.signup-modal {
    background: white;
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Modal Header */
.signup-modal-header {
    background: linear-gradient(135deg, #e61e2a, #ff4655);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.signup-modal-header h2 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    font-weight: 800;
}

.signup-modal-header p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: white;
    color: #e61e2a;
    transform: rotate(90deg);
}

/* Modal Body */
.signup-modal-body {
    padding: 40px 30px;
}

.signup-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Category Section */
.signup-category {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.signup-category:hover {
    border-color: #e61e2a;
    box-shadow: 0 10px 30px rgba(230, 30, 42, 0.15);
    transform: translateY(-5px);
}

.category-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e61e2a;
}

.category-icon {
    font-size: 3rem;
    color: #e61e2a;
    margin-bottom: 15px;
}

.category-header h3 {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    color: #1a1a1a;
    font-weight: 700;
}

.category-header p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Package Options */
.package-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-option:hover {
    border-color: #e61e2a;
    box-shadow: 0 4px 15px rgba(230, 30, 42, 0.1);
    transform: translateX(5px);
}

.package-info {
    flex: 1;
}

.package-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.package-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e61e2a;
    margin-left: 20px;
}

.package-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

/* Popular Badge */
.popular-badge-modal {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffd700;
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .signup-categories {
        grid-template-columns: 1fr;
    }

    .signup-modal-header h2 {
        font-size: 2rem;
    }

    .signup-modal-body {
        padding: 30px 20px;
    }

    .category-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .signup-modal {
        max-height: 95vh;
    }

    .signup-modal-header {
        padding: 25px 20px;
    }

    .signup-modal-header h2 {
        font-size: 1.7rem;
    }

    .package-option {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .package-price {
        margin-left: 0;
        margin-top: 10px;
    }

    .category-icon {
        font-size: 2.5rem;
    }
}
