/* Download Page Specific Styles */

/* Download Hero Section */
.download-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4b3 100%);
    text-align: center;
}

.download-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d35400;
    margin-bottom: 1.5rem;
}

.download-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Download Section */
.download-section {
    padding: 5rem 0;
    background: white;
}

.download-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.download-main h2 {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 1.5rem;
}

.download-main p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.download-buttons {
    margin: 2rem 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.4);
    color: white;
}

.download-btn img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.download-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
}

.download-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.download-info p:last-child {
    margin-bottom: 0;
}

.download-info strong {
    color: #e67e22;
}

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

.download-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Download Features */
.download-features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
}

.download-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

.feature-card {
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.feature-card h3 {
    color: #e67e22;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Requirements Section */
.requirements-section {
    padding: 5rem 0;
    background: white;
}

.requirements-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

.requirements-text h3 {
    color: #d35400;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.requirements-text h3:first-child {
    margin-top: 0;
}

.requirements-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.requirements-text li {
    color: #666;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.requirements-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
    font-size: 1.2rem;
}

.requirements-text strong {
    color: #e67e22;
}

.note {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    font-style: italic;
    color: #2c3e50;
    margin-top: 2rem;
}

/* Installation Guide */
.installation-guide {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
}

.installation-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

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

.step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    padding-top: 3rem;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Rubik', sans-serif;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.step-content h3 {
    color: #e67e22;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Download FAQ */
.download-faq {
    padding: 5rem 0;
    background: white;
}

.download-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #e67e22;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-item a {
    color: #f39c12;
    font-weight: 600;
}

.faq-item a:hover {
    color: #e67e22;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    background: white;
    color: #e67e22;
}

.btn-large:hover {
    background: #f8f8f8;
    color: #d35400;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .installation-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .download-hero {
        padding: 2rem 0;
    }
    
    .download-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .download-section,
    .download-features,
    .requirements-section,
    .installation-guide,
    .download-faq,
    .final-cta {
        padding: 3rem 0;
    }
    
    .download-main h2,
    .download-features h2,
    .requirements-section h2,
    .installation-guide h2,
    .download-faq h2,
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .download-btn {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .installation-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .download-hero h1 {
        font-size: 2rem;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .step {
        padding: 1.5rem;
        padding-top: 2.5rem;
    }
    
    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
    
    .btn-large {
        font-size: 1.1rem;
        padding: 1.2rem 2rem;
        width: 100%;
        max-width: 300px;
    }
}
