/* AI Academy WordPress Plugin Styles */
.ai-academy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Section */
.ai-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.ai-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    margin-bottom: 24px;
}

.ai-status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.ai-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1e293b;
}

.ai-gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-hero-description {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.ai-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.ai-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ai-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.ai-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.ai-btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.ai-btn-outline:hover {
    background: #3b82f6;
    color: white;
}

.ai-btn-full {
    width: 100%;
    justify-content: center;
}

.ai-trust-indicators {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.ai-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.ai-trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ai-blue { background: #3b82f6; }
.ai-green { background: #10b981; }
.ai-purple { background: #8b5cf6; }
.ai-orange { background: #f59e0b; }

/* Hero Image */
.ai-hero-image {
    position: relative;
    height: 400px;
}

.ai-floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    animation: float 6s ease-in-out infinite;
}

.ai-card-1 {
    top: 20px;
    left: 20px;
    width: 200px;
    animation-delay: 0s;
}

.ai-card-2 {
    top: 120px;
    right: 20px;
    width: 180px;
    animation-delay: 2s;
}

.ai-card-3 {
    bottom: 40px;
    left: 60px;
    width: 160px;
    animation-delay: 4s;
}

.ai-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1e293b;
}

.ai-progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.ai-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 4px;
    animation: progress 3s ease-in-out infinite;
}

.ai-card-metrics {
    display: flex;
    gap: 16px;
}

.ai-metric {
    text-align: center;
}

.ai-metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.ai-metric-label {
    font-size: 0.875rem;
    color: #64748b;
}

.ai-growth-chart {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 40px;
}

.ai-chart-bar {
    width: 12px;
    background: linear-gradient(180deg, #8b5cf6, #3b82f6);
    border-radius: 2px;
    animation: grow 2s ease-in-out infinite;
}

/* Stats Section */
.ai-stats-section {
    margin-bottom: 80px;
}

.ai-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.ai-stat-card {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ai-stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.ai-stat-label {
    color: #64748b;
    font-weight: 500;
}

/* Curriculum Preview */
.ai-curriculum-preview {
    margin-bottom: 80px;
}

.ai-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.ai-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.ai-section-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.ai-curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.ai-curriculum-phase {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ai-phase-header {
    padding: 24px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-foundation {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.ai-intermediate {
    background: linear-gradient(135deg, #10b981, #059669);
}

.ai-advanced {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.ai-phase-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.ai-phase-topics {
    padding: 24px;
    list-style: none;
    margin: 0;
}

.ai-phase-topics li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.ai-phase-topics li:last-child {
    border-bottom: none;
}

.ai-phase-topics li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 12px;
}

/* Enrollment Section */
.ai-enrollment-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 80px 40px;
    border-radius: 20px;
    margin-bottom: 80px;
}

.ai-enrollment-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.ai-enrollment-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ai-enrollment-form h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
}

.ai-form-group {
    margin-bottom: 24px;
}

.ai-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.ai-form-group input,
.ai-form-group textarea,
.ai-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.ai-form-group input:focus,
.ai-form-group textarea:focus,
.ai-form-group select:focus {
    outline: none;
    border-color: #3b82f6;
}

.ai-enrollment-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-info-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ai-info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.ai-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-info-card li {
    padding: 8px 0;
    color: #475569;
}

.ai-schedule-call {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.ai-schedule-call h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.ai-schedule-call p {
    color: #64748b;
    margin-bottom: 20px;
}

/* Modal */
.ai-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.ai-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.ai-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #64748b;
}

.ai-modal-close:hover {
    color: #1e293b;
}

.ai-modal-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 95%; }
}

@keyframes grow {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ai-hero-title {
        font-size: 2.5rem;
    }
    
    .ai-hero-buttons {
        flex-direction: column;
    }
    
    .ai-enrollment-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .ai-curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-hero-image {
        height: 300px;
    }
    
    .ai-floating-card {
        position: relative;
        margin-bottom: 20px;
    }
    
    .ai-card-1, .ai-card-2, .ai-card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

@media (max-width: 480px) {
    .ai-academy-container {
        padding: 0 15px;
    }
    
    .ai-hero-section {
        padding: 60px 20px;
    }
    
    .ai-enrollment-section {
        padding: 60px 20px;
    }
    
    .ai-enrollment-form {
        padding: 30px 20px;
    }
    
    .ai-stats-grid {
        grid-template-columns: 1fr;
    }
}