/* GenAI Consulting - Unique Section Designs */

/* ============================================
   GENAI HERO WORKSPACE - Concept 1+2+3 Hybrid
   ============================================ */

.genai-hero-workspace {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1438 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

/* Neural Network Canvas Background */
.genai-neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.genai-neural-bg canvas {
    width: 100%;
    height: 100%;
}

.genai-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.genai-hero-content {
    color: white;
}

.genai-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    color: #667eea;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

.genai-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.genai-typing-text {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.typing-cursor {
    display: inline-block;
    color: #667eea;
    animation: blink 1s infinite;
    margin-left: 5px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.genai-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Live Stats */
.genai-live-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.genai-stat-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.genai-stat-box:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.genai-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.genai-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Buttons */
.genai-hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.genai-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    border: none;
    cursor: pointer;
}

.genai-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    color: white;
    text-decoration: none;
}

.genai-btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.genai-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

/* Trust Row */
.genai-trust-row {
    display: flex;
    gap: 25px;
}

.genai-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.genai-trust-item i {
    color: #667eea;
}

/* Right: GenAI Workspace Demo */
.genai-hero-demo {
    position: relative;
}

.genai-workspace-window {
    background: rgba(10, 14, 39, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(20px);
}

.workspace-header {
    background: rgba(102, 126, 234, 0.1);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.window-title {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
}

.workspace-body {
    padding: 25px;
}

/* Prompt Section */
.prompt-section {
    margin-bottom: 20px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.prompt-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 18px;
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
}

.prompt-text {
    color: rgba(255, 255, 255, 0.9);
}

.typing-indicator {
    color: #667eea;
    animation: blink 1.5s infinite;
}

/* Processing Section */
.processing-section {
    margin-bottom: 20px;
}

.processing-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.processing-progress {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    border-radius: 2px;
    width: 0%;
    animation: processProgress 3s ease-in-out infinite;
}

@keyframes processProgress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 100%; }
}

.processing-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.processing-text i {
    color: #667eea;
}

/* Output Section */
.output-section {
    margin-bottom: 20px;
}

.ai-output {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 18px;
    color: white;
    font-size: 0.95rem;
    line-height: 1.8;
}

.output-line {
    margin-bottom: 5px;
}

.output-line.highlight {
    color: #f093fb;
    font-weight: 600;
}

/* Model Info Bar */
.model-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.model-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 700;
    font-size: 0.85rem;
}

.model-stats {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.model-stats i {
    color: #667eea;
    margin-right: 5px;
}

/* Floating Badges */
.genai-float-badge {
    position: absolute;
    background: rgba(10, 14, 39, 0.9);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

.genai-float-badge i {
    color: #667eea;
}

.badge-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

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

/* Scroll Indicator */
.genai-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    animation: fadeInUp 1s ease-out 2s both;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #667eea;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .genai-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .genai-hero-title {
        font-size: 2.8rem;
    }
    
    .genai-hero-demo {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .genai-hero-workspace {
        padding: 80px 0 60px;
    }
    
    .genai-hero-title {
        font-size: 2rem;
    }
    
    .genai-hero-subtitle {
        font-size: 1rem;
    }
    
    .genai-live-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .genai-hero-cta {
        flex-direction: column;
    }
    
    .genai-trust-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .genai-float-badge {
        display: none;
    }
    
    .genai-scroll-indicator {
        display: none;
    }
}

/* ============================================
   GENAI SERVICES SHOWCASE
   ============================================ */

/* GenAI Services Showcase - Unique Design */
.genai-services-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 100%);
    position: relative;
    overflow: hidden;
}

.genai-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    opacity: 0.3;
}

.genai-wave-bg svg {
    width: 100%;
    height: 100%;
}

.genai-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.genai-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    color: #667eea;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.6); }
}

.genai-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.genai-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* GenAI Service Cards - Horizontal Layout */
.genai-service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.genai-service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.genai-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.genai-service-card:hover::before {
    transform: scaleX(1);
}

.genai-service-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.genai-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(102, 126, 234, 0.1);
    line-height: 1;
}

.genai-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.genai-icon-glow {
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 24px;
    opacity: 0.3;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0; }
}

.genai-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.genai-card-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.genai-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.genai-features-list li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.genai-features-list li i {
    color: #667eea;
    font-size: 1rem;
}

.genai-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.genai-card-link:hover {
    gap: 15px;
    color: #f093fb;
}

.genai-card-link i {
    transition: transform 0.3s ease;
}

.genai-card-link:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .genai-title {
        font-size: 2rem;
    }
    
    .genai-subtitle {
        font-size: 1rem;
    }
    
    .genai-service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .genai-service-card {
        padding: 30px 20px;
    }
    
    .genai-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
