/* Downloads Page Styles */

.downloads-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.downloads-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.downloads-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.downloads-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-text {
    color: var(--primary-color);
}

.downloads-hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.downloads-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.stat-item i {
    color: var(--primary-color);
}

.downloads-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.downloads-hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Sections */
.downloads-section {
    padding: 80px 0;
    background: #fff;
}

.downloads-section-alt {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.downloads-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(203, 32, 45, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.downloads-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.text-accent {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Download Cards Grid */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.download-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(203, 32, 45, 0.15);
}

.download-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(203, 32, 45, 0.1) 0%, rgba(203, 32, 45, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.download-icon-playstore {
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.1) 0%, rgba(52, 168, 83, 0.05) 100%);
    color: #34a853;
}

.download-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.download-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.download-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.875rem;
}

.detail-item i {
    color: var(--primary-color);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.download-btn:hover {
    background: #b01c27;
    border-color: #b01c27;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(203, 32, 45, 0.3);
}

.download-btn-secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.download-btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.download-btn-playstore {
    background: #34a853;
    border-color: #34a853;
}

.download-btn-playstore:hover {
    background: #2d9048;
    border-color: #2d9048;
    box-shadow: 0 8px 20px rgba(52, 168, 83, 0.3);
}

.download-version {
    text-align: center;
    font-size: 0.875rem;
    color: #999;
    margin-top: 0.75rem;
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: #fff;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.requirement-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid #e5e7eb;
}

.requirement-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.requirement-card h3 i {
    color: var(--primary-color);
}

.requirement-list {
    list-style: none;
    padding: 0;
}

.requirement-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.requirement-list li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* CTA Section */
.downloads-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b01c27 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: #fff;
    color: var(--primary-color);
}

.cta-btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .downloads-hero-title {
        font-size: 3rem;
    }

    .downloads-heading {
        font-size: 2rem;
    }
}

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

    .downloads-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .downloads-hero-title {
        font-size: 2.25rem;
    }

    .downloads-hero-description {
        font-size: 1.125rem;
    }

    .downloads-stats {
        gap: 1rem;
    }

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

    .downloads-heading {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .downloads-container {
        padding: 0 1rem;
    }

    .downloads-hero-title {
        font-size: 1.875rem;
    }

    .downloads-heading {
        font-size: 1.5rem;
    }

    .download-card {
        padding: 1.5rem;
    }

    .requirement-card {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}
