/* Index Page Styles */

.contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 3rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem;
    border-radius: 1rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--pipeline-primary);
    color: white;
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.dashboard-preview {
    background: #0d1117;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.preview-kpi {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Dashboard Screenshot with Outline */
.dashboard-mockup {
    padding: 2rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

.dashboard-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-screenshot:hover {
    transform: translateY(-8px);
}


/* Podcast Section */
#podcast {
    position: relative;
}

.podcast-card {
    max-width: 800px;
    margin: 0 auto;
}

.podcast-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 60px rgba(124, 58, 237, 0.5);
        transform: scale(1.05);
    }
}

.audio-player-wrapper {
    margin: 2rem 0;
}

.custom-audio-player {
    width: 100%;
    max-width: 600px;
    height: 60px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 0 1rem 0.5rem;
    transition: all 0.3s ease;
}

.custom-audio-player:hover {
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.custom-audio-player:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* Audio player controls styling */
.custom-audio-player::-webkit-media-controls-panel {
    background: transparent;
}

.custom-audio-player::-webkit-media-controls-play-button,
.custom-audio-player::-webkit-media-controls-pause-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.custom-audio-player::-webkit-media-controls-current-time-display,
.custom-audio-player::-webkit-media-controls-time-remaining-display {
    color: var(--slate-300);
}

.custom-audio-player::-webkit-media-controls-timeline {
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
}

.custom-audio-player::-webkit-media-controls-volume-slider {
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .podcast-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .custom-audio-player {
        height: 50px;
        padding: 0 1rem 0.1rem;
    }
    
    .audio-player-wrapper {
        max-width: 75% !important;
        margin-bottom: 1rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .podcast-card {
        padding: 2rem 1rem !important;
    }
}


/* Unmissable Badge for Podcast Section */
.unmissable-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    animation: unmissable-pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.unmissable-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes unmissable-pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6);
        transform: scale(1.05);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
