/* AI Consultancy Page Styles */

/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
    overflow: hidden;
    position: relative;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subhead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
    height: 500px;
}

/* Floating Cards Animation */
.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.ai-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.ai-card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.ai-card:nth-child(2) {
    top: 40%;
    left: 30%;
    animation: float 6s ease-in-out infinite 1s;
}

.ai-card:nth-child(3) {
    top: 60%;
    left: 20%;
    animation: float 6s ease-in-out infinite 2s;
}

.ai-card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.ai-icon {
    font-size: 2rem;
}

.ai-text {
    font-size: 1rem;
    color: #1e293b;
}

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

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Agentic AI Section */
.agentic-ai-section {
    background: white;
}

.example-cards {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.example-card {
    background: #f8faff;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* Delivery Section */
.deliver-section {
    background: #f8faff;
    text-align: center;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.delivery-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.delivery-card:hover {
    transform: translateY(-5px);
}

.delivery-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Playbooks Section */
.playbooks-section {
    background: white;
    text-align: center;
}

.playbooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.playbook-card {
    background: #f8faff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: left;
    transition: transform 0.3s ease;
}

.playbook-card:hover {
    transform: translateY(-5px);
}

.playbook-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.learn-more {
    margin-top: 1.5rem;
    background: none;
    border: none;
    color: #3b82f6;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
}

/* Why Us Section */
.why-us-section {
    background: #f8faff;
}

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

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

.feature-icon {
    font-size: 2.5rem;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f8faff;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #64748b;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Closing CTA */
.closing-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.closing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.cta-button {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: #3b82f6;
    color: white;
    border: none;
}

.cta-button.primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.cta-button.secondary:hover {
    background: #f8faff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        padding: 6rem 0 4rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .section-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section .container,
    .section-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        height: 400px;
        order: -1;
    }

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

    .feature {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .delivery-grid,
    .playbooks-grid {
        grid-template-columns: 1fr;
    }
} 