/* Brochure Selection Modal */

.brochure-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.brochure-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-modal-content {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.brochure-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-tertiary);
}

.brochure-modal-header h2 {
    font-size: 1.75rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.brochure-modal-header h2 i {
    font-size: 2rem;
}

.brochure-close {
    background: var(--bg-tertiary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.brochure-close:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: rotate(90deg);
}

.brochure-options {
    display: grid;
    gap: 1.5rem;
}

.brochure-option {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-tertiary);
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.brochure-option:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

.brochure-option:hover .brochure-option-title,
.brochure-option:hover .brochure-option-desc,
.brochure-option:hover .brochure-option-badge {
    color: #ffffff;
}

.brochure-option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brochure-option-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    flex-shrink: 0;
}

.brochure-option:hover .brochure-option-icon {
    background: #ffffff;
    color: var(--color-primary);
    transform: scale(1.1) rotate(5deg);
}

.brochure-option-info {
    flex: 1;
}

.brochure-option-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.brochure-option-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.brochure-option-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.brochure-option-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    gap: 0.5rem;
}

.brochure-option:hover .brochure-option-arrow {
    color: #ffffff;
    gap: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 576px) {
    .brochure-modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .brochure-modal-header h2 {
        font-size: 1.4rem;
    }

    .brochure-option {
        padding: 1.5rem;
    }

    .brochure-option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .brochure-option-title {
        font-size: 1.15rem;
    }
}
