/* AIcal-analyzer Custom Styles */

/* Animation delays for fade-in elements */
.hero-image {
    animation-delay: 0.3s;
}

.feature-card-1 {
    animation-delay: 0.2s;
}

.feature-card-2 {
    animation-delay: 0.4s;
}

.feature-card-3 {
    animation-delay: 0.6s;
}

.demo-container {
    animation-delay: 0.2s;
}

.pricing-card-1 {
    animation-delay: 0.2s;
}

.pricing-card-2 {
    animation-delay: 0.4s;
}

.pricing-card-3 {
    animation-delay: 0.6s;
}

/* Call container styling */
.call-container {
    height: 300px;
    overflow-y: auto;
}

/* Progress bars */
.sentiment-bar {
    width: 50%;
}

.audio-progress {
    width: 0%;
}

.audio-sentiment-bar {
    width: 50%;
}

/* Glass effect for audio demo */
.audio-demo-container {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Additional utility classes for better organization */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scale-hover:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.newsletter-input {
    background: white;
    color: var(--dark-color);
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.newsletter-button {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.newsletter-button:disabled {
    background: rgba(255, 255, 255, 0.7);
    cursor: not-allowed;
    transform: none;
}

.newsletter-message {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.newsletter-message.success {
    color: #86efac;
}

.newsletter-message.error {
    color: #fca5a5;
}

/* Footer Enhancements */
.footer-company-info {
    background: rgba(55, 65, 81, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.footer-social-link {
    background: rgba(55, 65, 81, 0.5);
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #9CA3AF;
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-section-title {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: #9CA3AF;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

.footer-link i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
    color: var(--primary-color);
}

.footer-contact-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(75, 85, 99, 0.3);
}

.footer-contact-link {
    color: #9CA3AF;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.footer-contact-link:hover {
    color: white;
}

.footer-contact-link i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.footer-security-badge i {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-card-popular {
        transform: none;
    }
    
    .newsletter-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-company-info {
        margin-bottom: 2rem;
    }
    
    .footer-social-link {
        padding: 0.5rem;
    }
}