/* ============================================
   App Download Section - Modern
============================================ */

.app-section {
    padding: 70px 0;
    background: #f8fafc;
}

.app-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ========== কন্টেন্ট ========== */
.app-tag {
    display: inline-block;
    background: #e8f5e9;
    color: #00A65A;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.app-tag i {
    margin-right: 6px;
}

.app-section-title {
    font-size: 38px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.app-section-title span {
    color: #00A65A;
}

.app-section-desc {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 28px;
    line-height: 1.7;
}

.app-section-desc strong {
    color: #00A65A;
}

/* ========== ফিচার লিস্ট ========== */
.app-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.app-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1e1e2e;
}

.app-feature-list li i {
    color: #00A65A;
    font-size: 18px;
}

/* ========== বাটন ========== */
.app-download-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0a0a0a;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.app-download-btn small {
    display: block;
    font-size: 10px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-download-btn strong {
    font-size: 16px;
    font-weight: 700;
}

/* ========== স্ট্যাটস ========== */
.app-stats {
    display: flex;
    gap: 40px;
}

.app-stats div {
    display: flex;
    flex-direction: column;
}

.app-stats span {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
}

.app-stats label {
    font-size: 13px;
    color: #8b8b8b;
}

/* ========== মকআপ ========== */
.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-screen {
    width: 280px;
    height: 540px;
    background: white;
    border-radius: 36px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 8px solid #0a0a0a;
    display: flex;
    flex-direction: column;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
}

.phone-dots {
    display: flex;
    gap: 6px;
}

.phone-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.phone-dots span:nth-child(1) { background: #ef4444; }
.phone-dots span:nth-child(2) { background: #f59e0b; }
.phone-dots span:nth-child(3) { background: #22c55e; }

.phone-time {
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
}

.phone-body {
    flex: 1;
    padding: 16px;
    background: #ffffff;
}

.phone-banner {
    background: #00A65A;
    color: white;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 600;
}

.phone-banner i {
    margin-right: 8px;
}

.phone-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #eef2f6;
}

.phone-item i {
    color: #00A65A;
    font-size: 18px;
}

.phone-item span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #0a0a0a;
}

.phone-item-price {
    font-weight: 700;
    color: #00A65A;
}

.phone-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px 16px;
    background: #f8fafc;
    border-top: 1px solid #eef2f6;
}

.phone-nav i {
    font-size: 18px;
    color: #8b8b8b;
}

.phone-nav i:nth-child(3) {
    color: #00A65A;
}

.phone-badge {
    position: absolute;
    top: 24px;
    right: -12px;
    background: linear-gradient(135deg, #ff6b35, #ff2e2e);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

/* ============================================
   রেসপন্সিভ
============================================ */

@media (max-width: 992px) {
    .app-section-wrapper {
        gap: 40px;
    }
    .app-section-title {
        font-size: 30px;
    }
    .phone-screen {
        width: 240px;
        height: 470px;
    }
}

@media (max-width: 768px) {
    .app-section {
        padding: 50px 0;
    }
    .app-section-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .app-feature-list {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .app-download-buttons {
        justify-content: center;
    }
    .app-stats {
        justify-content: center;
    }
    .phone-screen {
        width: 220px;
        height: 440px;
    }
    .app-section-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .app-section {
        padding: 35px 0;
    }
    .app-section-title {
        font-size: 22px;
    }
    .app-feature-list {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    .app-download-btn {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }
    .app-stats {
        gap: 20px;
    }
    .app-stats span {
        font-size: 18px;
    }
    .phone-screen {
        width: 190px;
        height: 380px;
        border-width: 6px;
        border-radius: 28px;
    }
    .phone-banner {
        font-size: 13px;
        padding: 10px;
    }
    .phone-item {
        padding: 8px 10px;
        font-size: 12px;
    }
    .phone-item i {
        font-size: 14px;
    }
    .phone-item span {
        font-size: 12px;
    }
    .phone-item-price {
        font-size: 11px;
    }
    .phone-badge {
        top: 16px;
        right: -8px;
        font-size: 10px;
        padding: 4px 12px;
    }
    .phone-nav i {
        font-size: 14px;
    }
}
