/* Download Catalog Page Styles */

.download-hero {
    background: linear-gradient(135deg, #0066CC 0%, #00A6A6 100%);
    padding: 140px 0 80px;
    color: var(--white);
}

.download-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

/* Catalogs List */
.catalogs-list h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.catalog-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.catalog-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.catalog-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.catalog-item.featured {
    border: 2px solid var(--primary-color);
}

.catalog-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.catalog-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.catalog-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.catalog-info p {
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.catalog-size {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Download Form Container */
.download-form-container {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-header p {
    color: var(--medium-gray);
}

/* Download Form */
.download-form .form-group {
    margin-bottom: 1.5rem;
}

.download-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.download-form input,
.download-form select,
.download-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.download-form input:focus,
.download-form select:focus,
.download-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.download-form textarea {
    resize: vertical;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.btn-large {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.125rem;
    margin-top: 1rem;
}

.btn-large i {
    margin-right: 0.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-top: 1rem;
}

/* Benefits Section */
.benefits-section {
    margin-top: 3rem;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
}

.success-modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s;
}

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

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.modal-content p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .download-hero h1 {
        font-size: 2rem;
    }

    .download-hero p {
        font-size: 1rem;
    }

    .download-content {
        grid-template-columns: 1fr;
    }

    .download-form-container {
        position: relative;
        top: 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .download-hero {
        padding: 120px 0 60px;
    }

    .download-section {
        padding: 60px 0;
    }

    .download-form-container {
        padding: 2rem 1.5rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .modal-content {
        margin: 20px;
        padding: 2rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
    }
}
