/* AI Consulting Page Specific Styles */

/* Font Variables */
:root {
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Typography for Consulting */
.consulting h1, .consulting h2, .consulting h3 {
    font-family: var(--font-heading);
}

.consulting p, .consulting span, .consulting div {
    font-family: var(--font-body);
}

/* Consulting Cards */
.consulting-card h3, .consulting-card h4 {
    font-family: var(--font-heading);
}

.consulting-card p, .consulting-card span {
    font-family: var(--font-body);
}

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.service-hero-text {
    z-index: 2;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.service-hero p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

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

.service-hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 0;
}

/* Roadmap Styles */
.consulting-roadmap {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 600px;
}

.roadmap-header {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roadmap-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.roadmap-progress {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.roadmap-phases {
    padding: 1.5rem;
}

.phase {
    position: relative;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #e2e8f0;
    transition: all 0.3s ease;
}

.phase.completed {
    border-left-color: #10b981;
    background: #f0fdf4;
}

.phase.active {
    border-left-color: #3b82f6;
    background: #f0f9ff;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.1);
}

.phase:last-child {
    margin-bottom: 0;
}

.phase-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.phase-icon i {
    font-size: 1.2rem;
    color: white;
}

.phase.completed .phase-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.phase.active .phase-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.phase-content {
    flex: 1;
}

.phase-content h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}

.phase-content p {
    margin: 0 0 0.5rem 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.phase-status {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    display: inline-block;
}

.phase.completed .phase-status {
    background: #dcfce7;
    color: #166534;
}

.phase.active .phase-status {
    background: #dbeafe;
    color: #1d4ed8;
}

.phase:not(.completed):not(.active) .phase-status {
    background: #f1f5f9;
    color: #64748b;
}

.phase {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.3);
    height: 6px;
    border-radius: 3px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Consulting Services Grid */
.consulting-services {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.service-outcome {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #1e293b;
}

.consulting-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.consulting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.consulting-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.consulting-icon i {
    font-size: 2rem;
    color: white;
}

.consulting-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.consulting-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Methodology Section */
.consulting-methodology {
    padding: 6rem 0;
    background: #f8fafc;
}

.methodology-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.methodology-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3b82f6, #1d4ed8);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.timeline-content {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: calc(50% - 60px);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.deliverable {
    background: #f0f9ff;
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Additional Interactive Elements */
.consulting-card .card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.consulting-card:hover .card-footer {
    opacity: 1;
    transform: translateY(0);
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    color: #1d4ed8;
    gap: 0.75rem;
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(3px);
}

/* Enhanced Methodology Steps */
.methodology-step {
    position: relative;
    overflow: hidden;
}

.methodology-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: 0.6s;
}

.methodology-step:hover::before {
    left: 100%;
}

.methodology-step .step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.methodology-step .step-icon i {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.methodology-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.methodology-step:hover .step-icon i {
    transform: rotate(360deg);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Pricing Section */
.service-pricing {
    padding: 6rem 0;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: #3b82f6;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.1);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: #64748b;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
}

.period {
    color: #64748b;
    font-size: 1rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
}

.pricing-features i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-hero {
        padding: 6rem 0 4rem;
        min-height: 70vh;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .service-hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .service-hero-visual {
        order: -1;
        display: flex;
        justify-content: center;
    }
    
    .consulting-roadmap {
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .methodology-timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .methodology-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .consulting-card {
        padding: 2rem 1.5rem;
    }
    
    .consulting-icon {
        width: 60px;
        height: 60px;
    }
    
    .consulting-icon i {
        font-size: 1.5rem;
    }
    
    .consulting-card h3 {
        font-size: 1.3rem;
    }
    
    .consulting-card p {
        padding-left: 1rem;
    }
    
    .consulting-card:hover p {
        padding-left: 1.5rem;
    }
    
    .roadmap-header {
        padding: 1rem;
        text-align: center;
    }
    
    .roadmap-phases {
        padding: 1rem;
    }
    
    .phase {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .phase-icon {
        width: 35px;
        height: 35px;
    }
    
    .phase-icon i {
        font-size: 0.9rem;
    }
    
    .methodology-step .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .methodology-step .step-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .consulting-card {
        padding: 1.5rem 1rem;
    }
    
    .consulting-card h3 {
        font-size: 1.1rem;
    }
    
    .consulting-icon {
        width: 50px;
        height: 50px;
    }
    
    .consulting-icon i {
        font-size: 1.2rem;
    }
    
    .phase {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .phase-content h5 {
        font-size: 0.95rem;
    }
    
    .phase-content p {
        font-size: 0.85rem;
    }
}
