/* AI Testing Section Styles */
.ai-testing-section {
    position: relative;
    padding: 60px 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.ai-testing-content {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 360px;
}

.ai-text {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: none !important;
}

.ai-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.ai-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 90%;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    min-height: 160px;
}

.feature-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card i {
    font-size: 1.5rem;
    color: #4facfe;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
}

.ai-visual {
    position: relative;
    height: 100% !important;
    width: 100%;
    min-height: 400px;
    max-height: 440px;
}

.canvas-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4facfe, transparent);
    animation: scanMove 3s linear infinite;
}

@keyframes scanMove {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Button Styles */
.btn-primary, .btn-book {
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-book i {
    font-size: 1.2rem;
}

.btn-primary:hover, .btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.2);
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

/* Book Now Button Position */
.book-now {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
}

.book-now i {
    font-size: 1.1rem;
}

.book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .ai-testing-content {
        grid-template-columns: 1fr;
        max-width: 720px;
        gap: 1.5rem;
        min-height: auto;
    }

    .ai-text {
        order: 1;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        height: auto;
    }

    .ai-visual {
        height: 360px;
        order: 0;
        max-width: 480px;
        margin: 0 auto;
        min-height: 320px;
    }

    .ai-features {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        margin: 1rem 0 0;
    }

    .feature-card {
        min-height: 140px;
    }

    .ai-text h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .ai-testing-section {
        padding: 40px 0;
    }

    .ai-text h2 {
        font-size: 2.5rem;
    }

    .ai-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-card {
        min-height: 130px;
        padding: 1.25rem;
    }

    .feature-card i {
        min-width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .ai-visual {
        height: 280px;
    }

    .book-now {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .ai-testing-content {
        padding: 0 1rem;
    }

    .ai-features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .ai-text {
        padding: 0.75rem;
    }

    .ai-text h2 {
        font-size: 1.75rem;
    }

    .ai-visual {
        height: 240px;
    }

    .book-now {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .book-now span {
        display: none; /* Hide text on mobile, show only icon */
    }
} 