/* =========================================
   WEBGUIDE MOBILE APP - PAGE SPECIFIC CSS
   ========================================= */

/* Hero bölümü 'webguide-money-page.css' üzerinden stil alıyor. */

/* --- APP SHOWCASE SECTION --- */
.app-showcase-section {
    padding: 6rem 0;
    background-color: #fff;
    overflow: hidden;
}

.app-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.app-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.app-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.app-feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--clr-surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--clr-primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature-sub {
    display: block;
    font-size: 0.9rem;
    color: var(--clr-text-light);
    margin-top: 0.2rem;
}

/* --- PHONE MOCKUP ANIMATION --- */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 8px solid #333;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #333;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Screen Content Animation */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.app-menu-icon, .app-user-icon { width: 24px; height: 24px; background: #cbd5e1; border-radius: 6px; }
.app-logo { font-size: 1rem; font-weight: 800; color: var(--clr-secondary); }

.app-hero-card {
    width: 100%;
    height: 120px;
    background: var(--clr-primary);
    border-radius: 16px;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideIn 0.5s ease-out 0.2s forwards;
}

.app-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.app-item {
    flex: 1;
    height: 80px;
    background: #fff;
    border-radius: 12px;
    opacity: 0;
    animation: slideIn 0.5s ease-out 0.4s forwards;
}

.app-list-item {
    width: 100%;
    height: 50px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 10px;
    opacity: 0;
}
.item-1 { animation: slideIn 0.5s ease-out 0.6s forwards; }
.item-2 { animation: slideIn 0.5s ease-out 0.7s forwards; }
.item-3 { animation: slideIn 0.5s ease-out 0.8s forwards; }

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-secondary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 5;
    animation: float 3s ease-in-out infinite;
}

.badge-1 { top: 100px; right: -30px; animation-delay: 0s; }
.badge-2 { bottom: 100px; left: -30px; animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .app-showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .app-content-col { padding-right: 0; }
    .app-features-list li {
        justify-content: center;
        text-align: left;
    }
    .phone-mockup { transform: rotate(0deg); }
    .phone-mockup:hover { transform: scale(1.02); }
}