/* ========================================
   AKETING Download Page - New Design
   Version: v41-redesign
   Date: 2025-03-17
======================================== */

/* Download Hero */
.download-hero {
    padding: 140px 20px 100px;
    background: #0a0a0a;
    color: #ffffff;
    text-align: center;
}

.download-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.download-title {
    font-size: 56px;
    font-weight: 900;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -2px;
}

.download-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Download Section */
.section {
    padding: 80px 20px;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Download Grid - 3 Column Layout */
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto;
}

/* Download Item Card */
.download-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.download-item:hover {
    border-color: #0a0a0a;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Icon */
.download-icon {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.download-icon i {
    font-size: 36px;
    color: #0a0a0a;
}

.download-item:hover .download-icon {
    background: #0a0a0a;
}

.download-item:hover .download-icon i {
    color: #ffffff;
}

/* Title */
.download-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

/* Description */
.download-item-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 24px 0;
    flex: 1;
}

/* Meta Info */
.download-meta {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.download-size,
.download-date {
    font-size: 13px;
    color: #999999;
    font-weight: 500;
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    width: 100%;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-black {
    background: #0a0a0a;
    color: #ffffff;
}

.btn-black:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.btn i {
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: #f5f5f5;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 16px 0;
    color: #0a0a0a;
    letter-spacing: -1px;
}

.cta-desc {
    font-size: 16px;
    color: #666666;
    margin: 0 0 32px 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .download-title {
        font-size: 48px;
    }

    .download-item {
        padding: 36px 28px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .download-hero {
        padding: 120px 20px 80px;
    }

    .download-title {
        font-size: 40px;
    }

    .download-desc {
        font-size: 16px;
    }

    .section {
        padding: 60px 20px;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .download-item {
        padding: 32px 24px;
    }

    .download-icon {
        width: 72px;
        height: 72px;
    }

    .download-icon i {
        font-size: 32px;
    }

    .download-item-title {
        font-size: 18px;
    }

    .download-item-desc {
        font-size: 14px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-desc {
        font-size: 15px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .download-hero {
        padding: 100px 20px 60px;
    }

    .download-title {
        font-size: 32px;
    }

    .download-desc {
        font-size: 15px;
    }

    .download-item {
        padding: 28px 20px;
    }

    .download-icon {
        width: 64px;
        height: 64px;
    }

    .download-icon i {
        font-size: 28px;
    }

    .download-meta {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

.footer-link {
  color: #ffffff !important;
  text-decoration: none;
}