/* VB AI Solutions - AI Solutions Page (extends homepage style) */

/* Header CTA as link */
.header-content a.header-cta {
    display: inline-block;
    text-decoration: none;
    color: white;
}

.logo-container a {
    display: flex;
    align-items: center;
}

/* Service Hero */
.service-hero {
    padding: 8rem 5% 5rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--off-white) 100%);
    text-align: center;
}

.service-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-hero .gradient-text {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Content Section */
.content-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.main-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.main-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--primary-blue);
}

.main-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.main-content ul,
.main-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
    color: var(--text-secondary);
}

.main-content li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

/* Feature Cards - match homepage service-card style */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    padding: 2rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-xl);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    padding: 2rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    text-decoration: none;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s, padding-left 0.3s;
}

.sidebar-list a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

/* CTA Box */
.cta-box {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.cta-box h3 {
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-size: 0.95rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-white {
    background: white;
    color: var(--primary-orange);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Page Footer */
.ai-page-footer {
    padding: 4rem 5% 2rem;
    background: var(--text-primary);
    color: white;
    text-align: center;
}

.ai-page-footer .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.ai-page-footer .logo img {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.ai-page-footer p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.ai-page-footer .copyright {
    opacity: 0.6;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Process Section (service pages) */
.process-section {
    padding: 5rem 5%;
    background: var(--off-white);
}

.process-section .section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.process-section .section-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.process-section .section-head p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-section .process-step {
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.process-section .process-step:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
}

.process-section .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
}

/* FAQ Section (service pages) */
.faq-section {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section > h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.faq-item {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .service-hero {
        padding: 6rem 5% 4rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}
