/* ===== PDF BROCHURE SECTION ===== */

.brochure-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.brochure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.brochure-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.brochure-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.brochure-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.brochure-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: #2d3748;
    margin: 0 0 8px;
    line-height: 1.2;
}

.brochure-text p {
    font-size: 16px;
    color: #718096;
    margin: 0;
    line-height: 1.5;
}

.brochure-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-view {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-download {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
}

.brochure-preview {
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.brochure-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.pdf-preview i {
    font-size: 40px;
    margin-bottom: 8px;
}

.pdf-preview span {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

/* PDF Modal */
.pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pdf-modal.active {
    opacity: 1;
    visibility: visible;
}

.pdf-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 1000px;
    height: 90%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.pdf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8f9fa;
}

.pdf-modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.pdf-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    border: none;
    color: #4a5568;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pdf-modal-close:hover {
    background: #ff4757;
    color: white;
    transform: rotate(90deg);
}

.pdf-modal-body {
    flex: 1;
    padding: 0;
}

.pdf-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pdf-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e2e8f0;
    background: #f8f9fa;
    text-align: center;
}

.btn-download-modal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .brochure-section {
        padding: 40px 0;
    }
    
    .brochure-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .brochure-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .brochure-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .brochure-text h3 {
        font-size: 24px;
    }
    
    .brochure-text p {
        font-size: 15px;
    }
    
    .brochure-actions {
        justify-content: center;
    }
    
    .btn-brochure {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .brochure-preview {
        width: 100px;
        height: 130px;
        margin: 0 auto;
    }
    
    .pdf-modal-content {
        width: 95%;
        height: 85%;
    }
    
    .pdf-modal-header {
        padding: 16px 20px;
    }
    
    .pdf-modal-header h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .brochure-wrapper {
        padding: 24px 16px;
    }
    
    .brochure-text h3 {
        font-size: 20px;
    }
    
    .brochure-text p {
        font-size: 14px;
    }
    
    .brochure-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-brochure {
        width: 100%;
        justify-content: center;
    }
    
    .pdf-modal-header {
        padding: 12px 16px;
    }
    
    .pdf-modal-footer {
        padding: 12px 16px;
    }
}