/* BlueCall App Page Styles */

/* Import base styles */
@import url('style.css');

/* App Section with Blue Theme */
.app-section {
    background: linear-gradient(135deg, #2196F3 0%, #21CBF3 100%);
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="c" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="150" cy="150" r="100" fill="url(%23c)"/><circle cx="850" cy="250" r="130" fill="url(%23c)"/><circle cx="400" cy="750" r="110" fill="url(%23c)"/><circle cx="750" cy="550" r="95" fill="url(%23c)"/></svg>');
    opacity: 0.4;
    animation: float 30s ease-in-out infinite;
}

/* App Icon Large */
.app-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.app-icon-large i {
    font-size: 3rem;
}

/* App Stats */
.app-stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-item i {
    font-size: 1.2rem;
}

/* Feature Cards with Blue Theme */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2196F3 0%, #21CBF3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
    border-color: #2196F3;
}

.pricing-card.featured {
    border-color: #2196F3;
    position: relative;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2196F3 0%, #21CBF3 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #2196F3;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
}

.period {
    font-size: 1rem;
    color: #6c757d;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    font-size: 1.1rem;
}

/* Screenshot Gallery */
.screenshot-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.1);
}

.screenshot-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.2);
}

.screenshot-item img {
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.1);
}

/* Phone Mockup */
.phone-mockup {
    text-align: center;
    position: relative;
}

.phone-mockup i {
    animation: phoneFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(33, 150, 243, 0.3));
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Download CTA Section */
#download {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    position: relative;
    overflow: hidden;
}

#download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="d" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="800" cy="100" r="120" fill="url(%23d)"/><circle cx="200" cy="400" r="160" fill="url(%23d)"/></svg>');
    opacity: 0.3;
}

/* Blue Theme Buttons */
.btn-primary {
    background: linear-gradient(135deg, #2196F3 0%, #21CBF3 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
}

.btn-outline-primary {
    border: 2px solid #2196F3;
    color: #2196F3;
}

.btn-outline-primary:hover {
    background: #2196F3;
    border-color: #2196F3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-section {
        padding: 2rem 0;
        text-align: center;
    }
    
    .app-icon-large {
        width: 80px;
        height: 80px;
        margin: 0 auto 2rem;
    }
    
    .app-icon-large i {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .badge-popular {
        top: -12px;
        padding: 0.4rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .app-section {
        min-height: 80vh;
    }
    
    .app-stats {
        padding: 1rem;
    }
    
    .feature-card, .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animation Enhancements */
@keyframes callPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.feature-icon:hover {
    animation: callPulse 1s ease-in-out;
}

/* Accessibility Improvements */
.pricing-card:focus,
.feature-card:focus,
.screenshot-item:focus {
    outline: 2px solid #2196F3;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .app-section {
        background: white !important;
        color: black !important;
        min-height: auto !important;
    }
    
    .app-section::before,
    #download::before {
        display: none;
    }
    
    .btn, .navbar, footer {
        display: none;
    }
    
    .pricing-card {
        break-inside: avoid;
    }
} 