/* Placeholder styles for missing images */

/* Logo placeholder */
.logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo::before {
    content: 'ॐ';
}

.footer-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-logo::before {
    content: 'ॐ';
}

/* App mockup placeholder */
.phone-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 25px;
    border: 8px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.phone-placeholder::before {
    content: '📱 OKPandit App\A📿 Coming Soon';
    white-space: pre;
    line-height: 1.6;
}

/* Download buttons placeholder */
.app-store-btn,
.google-play-btn {
    width: 150px;
    height: 50px;
    /* background: #000; */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition);
}

/* .app-store-btn::before {
    content: '📱 App Store';
}

.google-play-btn::before {
    content: '🤖 Google Play';
} */

.download-btn {
    display: flex;
}
.download-btn:hover .app-store-btn,
.download-btn:hover .google-play-btn {
    background: #333;
    transform: translateY(-2px);
}

/* Download section image placeholder */
.phones-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 179, 71, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.phones-placeholder::before {
    content: '📱📱 OKPandit\AMulti-Device Experience';
    white-space: pre;
    line-height: 1.6;
}

/* Add some animation to placeholders */
.phone-placeholder,
.phones-placeholder {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}