/* =========================================
   APP PROMOTION - LUXE 3D DESIGN (V2.0)
   ========================================= */

.app-promotion-luxe {
    padding: 100px 0;
    background: #f8fafc;
}

.app-luxe-card {
    background: #1e3a5f; /* Deep Navy from screenshot */
    background: linear-gradient(135deg, #1e3a5f 0%, #152b46 100%);
    border-radius: 45px;
    padding: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(15, 34, 56, 0.2);
}

/* Subtle pattern overlay */
.app-luxe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.app-luxe-title {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.app-luxe-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 40px;
}

/* ── Discovery Button (Cyan Glow) ───── */
.btn-discovery-luxe {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00d4ff; /* Stronger Cyan */
    background: linear-gradient(135deg, #00d4ff 0%, #00a8ff 100%);
    color: #0b2c54 !important; /* High contrast dark navy text on cyan */
    padding: 18px 40px;
    border-radius: 20px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 10;
}

.btn-discovery-luxe:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, #00e0ff 0%, #00b8ff 100%);
}

.btn-discovery-luxe i {
    font-size: 20px;
}

/* ── Store Buttons Luxe ─────────────── */
.app-luxe-stores {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stores-label-luxe {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stores-grid-luxe {
    display: flex;
    gap: 15px;
}

.store-btn-luxe {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.store-btn-luxe:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.store-btn-luxe i {
    font-size: 22px;
}

.store-btn-luxe span {
    font-size: 15px;
    font-weight: 700;
}

/* ── 3D Phone Mockup ─────────────────── */
.app-luxe-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-3d-wrapper {
    position: absolute;
    right: -50px;
    width: 320px;
    transform: rotate(-5deg) translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 50px 80px rgba(0,0,0,0.5));
}

.app-luxe-card:hover .phone-3d-wrapper {
    transform: rotate(0deg) translateY(0);
}

.phone-img-luxe {
    width: 100%;
    border-radius: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .app-luxe-card { padding: 50px 30px; }
    .app-luxe-title { font-size: 2.2rem; }
    .phone-3d-wrapper { 
        position: relative; 
        right: 0; 
        width: 250px; 
        margin-top: 50px;
        transform: none;
    }
    .app-luxe-card:hover .phone-3d-wrapper { transform: none; }
}
