/* Subpages Styles */

/* Hero Section for Subpages */
.subpage-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.subpage-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.subpage-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
}

.subpage-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.subpage-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

.subpage-cta .btn-primary {
    font-size: 1.1rem;
    padding: 16px 32px;
}

/* Hero Variations */
.subpage-hero-emergency {
    background: linear-gradient(135deg, #2d1b1b 0%, #1a1a2e 100%);
}

.subpage-hero-jobs {
    background: linear-gradient(135deg, #1b2d1b 0%, #1a1a2e 100%);
}

.subpage-hero-transport {
    background: linear-gradient(135deg, #1b1b2d 0%, #1a1a2e 100%);
}

.subpage-hero-shopping {
    background: linear-gradient(135deg, #2d2b1b 0%, #1a1a2e 100%);
}

.subpage-hero-services {
    background: linear-gradient(135deg, #1b2d2d 0%, #1a1a2e 100%);
}

/* Benefits Section */
.subpage-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.subpage-benefits h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1a1a2e;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Steps Section */
.subpage-steps {
    padding: 80px 0;
    background: #fff;
}

.subpage-steps h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1a1a2e;
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-item p {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}

.step-arrow {
    font-size: 2rem;
    color: #ccc;
}

/* Examples Section */
.subpage-examples {
    padding: 80px 0;
    background: #f8f9fa;
}

.subpage-examples h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1a1a2e;
}

.examples-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.examples-row-wrap {
    max-width: 800px;
}

.example-mini {
    background: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    color: #333;
}

.example-emoji {
    font-size: 1.5rem;
}

/* Download Section */
.subpage-download {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.subpage-download h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.subpage-download > .container > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.subpage-download .download-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer Simple */
.footer-simple {
    text-align: center;
    padding: 40px 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-simple p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .subpage-hero {
        padding: 100px 20px 60px;
    }

    .subpage-hero h1 {
        font-size: 1.75rem;
    }

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

    .subpage-icon {
        font-size: 48px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .steps-row {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .examples-row {
        flex-direction: column;
        padding: 0 20px;
    }

    .example-mini {
        width: 100%;
        justify-content: center;
    }

    .subpage-benefits,
    .subpage-steps,
    .subpage-examples,
    .subpage-download {
        padding: 60px 20px;
    }

    .subpage-benefits h2,
    .subpage-steps h2,
    .subpage-examples h2,
    .subpage-download h2 {
        font-size: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}
