/* ==================== Download Page Specific Styles ==================== */

/* ==================== Download Section ==================== */
.download-section {
    padding: 60px 0;
}

/* ==================== Proceeding Banner ==================== */
.proceeding-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 60px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15, 43, 62, 0.2);
}

/* Banner Decorations */
.banner-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 161, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.banner-decoration.left {
    top: -100px;
    left: -100px;
}

.banner-decoration.right {
    bottom: -100px;
    right: -100px;
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
}

.banner-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(0, 212, 161, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--accent-color);
}

.banner-icon i {
    font-size: 3rem;
    color: var(--accent-color);
}

.banner-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.banner-subtitle {
    font-size: 1.3rem;
    color: var(--text-grey);
    margin-bottom: 35px;
}

/* Main Download Button */
.btn-download-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 212, 161, 0.35);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-download-main:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 212, 161, 0.45);
}

.btn-download-main i {
    font-size: 1.4rem;
}

.banner-note {
    margin-top: 25px;
    font-size: 0.95rem;
    color: var(--text-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.banner-note i {
    color: var(--accent-color);
}

/* ==================== Templates Section ==================== */
.templates-section {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-grey);
}

/* Templates Grid */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Template Card */
.template-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.template-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.template-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon.pdf {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.card-icon.poster {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.card-content h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.card-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.5;
}

.card-meta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-meta i {
    color: var(--accent-color);
}

/* Download Button */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 161, 0.25);
}

.btn-download:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 161, 0.35);
}

/* ==================== Additional Documents ==================== */
.additional-docs {
    margin-bottom: 60px;
}

.docs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doc-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.doc-item:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.doc-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 161, 0.1), rgba(0, 212, 161, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.doc-info {
    flex: 1;
}

.doc-info h4 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.doc-info p {
    font-size: 0.9rem;
    color: #64748b;
}

.btn-download-small {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-download-small:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

.btn-download-small i {
    font-size: 1.2rem;
}

/* ==================== Help Section ==================== */
.help-section {
    margin-top: 60px;
}

.help-card {
    background: linear-gradient(135deg, rgba(0, 212, 161, 0.08), rgba(0, 212, 161, 0.03));
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
}

.help-card i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.help-card h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.help-card p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .proceeding-banner {
        padding: 40px 25px;
    }

    .banner-icon {
        width: 80px;
        height: 80px;
    }

    .banner-icon i {
        font-size: 2.5rem;
    }

    .banner-content h2 {
        font-size: 1.6rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .btn-download-main {
        font-size: 1.1rem;
        padding: 15px 35px;
    }

    .templates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .doc-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .doc-icon {
        width: 50px;
        height: 50px;
    }

    .doc-icon i {
        font-size: 1.5rem;
    }

    .help-card {
        padding: 35px 25px;
    }

    .help-card i {
        font-size: 2.5rem;
    }

    .help-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .banner-content h2 {
        font-size: 1.4rem;
    }

    .btn-download-main {
        font-size: 1rem;
        padding: 14px 30px;
        width: 100%;
        justify-content: center;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon i {
        font-size: 2rem;
    }
}

/* ==================== Animations ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.template-card,
.doc-item,
.proceeding-banner {
    animation: fadeInUp 0.6s ease-out;
}

.template-card:nth-child(1) { animation-delay: 0.1s; }
.template-card:nth-child(2) { animation-delay: 0.2s; }
.template-card:nth-child(3) { animation-delay: 0.3s; }
.template-card:nth-child(4) { animation-delay: 0.4s; }