/* Neuromarketing About & Services Pages */

/* Trust Building Colors */
:root {
    --trust-blue: #1e40af;
    --success-green: #10b981;
    --energy-orange: #f59e0b;
    --urgency-red: #ef4444;
    --authority-dark: #1f2937;
}

/* Hero Sections - Attention Grabbing */
.neuro-hero {
    background: linear-gradient(135deg, var(--trust-blue) 0%, var(--authority-dark) 100%);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.neuro-hero::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 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 20s linear infinite;
}

/* Trust Indicators */
.trust-badge {
    background: var(--success-green);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Interactive Cards */
.neuro-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.neuro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.neuro-card:hover::before {
    left: 100%;
}

.neuro-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--energy-orange);
}

/* Value Proposition Cards */
.value-card {
    background: linear-gradient(145deg, white 0%, #f8fafc 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--trust-blue);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--trust-blue), var(--energy-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Team Cards - Social Proof */
.team-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.team-card::after {
    content: '✓ Verified Expert';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--success-green);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.team-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--trust-blue);
    transition: all 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
    border-color: var(--energy-orange);
}

/* Stats Section - Gamified */
.stat-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--trust-blue), var(--energy-orange));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--trust-blue), var(--energy-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Cards - Conversion Focused */
.service-card-neuro {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card-neuro:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--energy-orange);
}

.service-header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--trust-blue), var(--energy-orange));
    opacity: 0.9;
}

.service-icon {
    font-size: 3rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.service-card-neuro:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

/* CTA Buttons - Psychological */
.cta-neuro {
    background: linear-gradient(135deg, var(--energy-orange) 0%, var(--urgency-red) 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.cta-neuro::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-neuro:hover::before {
    left: 100%;
}

.cta-neuro:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

/* Urgency Indicators */
.urgency-banner {
    background: var(--urgency-red);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-align: center;
    animation: urgencyPulse 2s infinite;
    margin: 1rem 0;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Social Proof Elements */
.social-proof-bar {
    background: var(--success-green);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin: 5px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .neuro-hero {
        min-height: 50vh;
    }
    
    .neuro-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-neuro {
        width: 100%;
        margin: 10px 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .neuro-card,
    .value-card,
    .team-card,
    .service-card-neuro {
        transition: none;
    }
    
    .trust-badge,
    .urgency-banner {
        animation: none;
    }
}

/* Training Section Styles */
.training-section {
    margin-top: 3rem;
}

.training-header {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 50%, #581c87 100%);
    position: relative;
    overflow: hidden;
}

.training-header::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 60 60"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

.training-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}

.training-card-header {
    position: relative;
    padding: 1rem;
    background: linear-gradient(45deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.training-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.popularity-badge {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.training-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.training-benefits {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.benefit-item {
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: scale(1.05);
}

.training-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%) !important;
    position: relative;
    overflow: hidden;
}

.training-cta::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 40 40"><defs><pattern id="stars" width="40" height="40" patternUnits="userSpaceOnUse"><polygon points="20,5 22,15 30,15 24,20 26,30 20,25 14,30 16,20 10,15 18,15" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="40" height="40" fill="url(%23stars)"/></svg>') repeat;
    pointer-events: none;
}

.countdown-timer {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: bold;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(255,255,255,0.3); }
    to { box-shadow: 0 0 20px rgba(255,255,255,0.6); }
}

/* Purple color class */
.text-purple { color: #7c3aed !important; }
.btn-purple {
    background-color: #7c3aed;
    border-color: #7c3aed;
    color: white;
}
.btn-purple:hover {
    background-color: #6d28d9;
    border-color: #6d28d9;
    color: white;
}
.bg-purple { background-color: #7c3aed !important; }

/* Training countdown animation */
#training-countdown {
    color: #fbbf24;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.training-card:hover .training-icon {
    transform: scale(1.2) rotate(10deg);
    transition: all 0.3s ease;
}

.training-card:hover .popularity-badge {
    animation-duration: 1s;
}

/* Mobile Training Styles */
@media (max-width: 768px) {
    .training-card {
        margin-bottom: 1rem;
    }
    
    .training-details {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .detail-item {
        font-size: 0.75rem;
    }
    
    .training-icon {
        font-size: 1.5rem;
    }
    
    .popularity-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
}