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

.app-section-modern {
    background: linear-gradient(135deg, #0f8040 0%, #064020 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    color: white;
}

/* Background Decorations */
.app-section-modern::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.app-section-modern::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
    border-radius: 50%;
    z-index: 0;
}

.app-container {
    position: relative;
    z-index: 1;
}

.app-content-modern {
    padding-right: 2rem;
}

.app-title-modern {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #dcfce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-desc-modern {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.app-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #4ade80;
}

.feature-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-store {
    background: white;
    color: #1a202c;
    border-radius: 10px;
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid white;
}

.btn-store:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: transparent;
    color: white;
}

.store-icon {
    font-size: 1.75rem;
}

.store-text small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.store-text strong {
    display: block;
    font-size: 1rem;
    line-height: 1;
}

/* Phone Mockup */
.phone-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 320px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    animation: float-phone 6s ease-in-out infinite;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: rotateY(0) rotateX(0) scale(1.05);
}

@keyframes float-phone {

    0%,
    100% {
        transform: translateY(0) rotateY(-15deg) rotateX(10deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-15deg) rotateX(10deg);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .app-section-modern {
        padding: 4rem 0;
        text-align: center;
    }

    .app-content-modern {
        padding-right: 0;
        margin-bottom: 4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-features {
        justify-content: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .phone-mockup {
        width: 280px;
        transform: rotateY(0) rotateX(0);
        animation: float-simple 6s ease-in-out infinite;
    }

    @keyframes float-simple {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }
    }
}