/* ====================== */
/* AI AUTOMATION SECTION - COMPLETE UPDATED CSS */
/* ====================== */
.ai-automation-section {
    background: #000000;
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.ai-highlight {
    color: #4CAF50;
    font-weight: 700;
}

.white-text {
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 400;
    color: #cccccc;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ai-feature-card {
    background: #000000;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(8, 126, 139, 0.8);
    border-color: rgba(8, 126, 139, 0.5);
}

.ai-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #4CAF50 0%, #008c98 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ai-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
}

.ai-feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.ai-feature-card p {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.coming-soon {
    background: rgba(30,30,30,0.8);
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 2rem;
    grid-column: span 2;
    position: relative;
}

.coming-soon h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
}

.badge {
    background: rgba(0,188,212,0.2);
    color: #00bcd4;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.coming-soon ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.coming-soon li {
    position: relative;
    padding-left: 1.8rem;
    color: #e0e0e0;
}

.coming-soon li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.pulse-dots {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 1.5s infinite ease-in-out;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .coming-soon {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ai-feature-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .ai-icon {
        width: 38px;
        height: 38px;
    }
    
    .ai-icon svg {
        width: 18px;
        height: 18px;
    }
}