/* Import base styles from motion graphics */
@import url('motion-graphics-style.css');

/* Multi-Market Entry Strategy Hero Section Specific Styles */
.multimarket-hero-section {
    background: #F9F6F0;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.multimarket-hero-section .hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.multimarket-hero-section .hero-text {
    flex: 1;
    max-width: 500px;
}

.multimarket-hero-section .hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.multimarket-hero-section .hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.multimarket-hero-section .hero-illustration {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Multi-Market Mockup Styles */
.multimarket-mockup {
    width: 450px;
    height: 350px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.multimarket-mockup:hover {
    transform: scale(1.05);
}

/* Demo Button Styling */
.demo-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8B5CF6;
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-button:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.demo-button i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.demo-button:hover i {
    transform: translateX(4px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .multimarket-hero-section .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .multimarket-hero-section .hero-title {
        font-size: 36px;
    }
    
    .multimarket-hero-section .hero-description {
        font-size: 16px;
    }
    
    .multimarket-mockup {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .multimarket-hero-section {
        padding: 40px 0 60px;
    }
    
    .multimarket-hero-section .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .multimarket-hero-section .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .demo-button {
        padding: 14px 24px;
        font-size: 13px;
    }
}

/* Breadcrumb update for Multi-Market Entry */
.breadcrumb-current {
    color: #8B5CF6;
    font-weight: 600;
}

/* Additional Multi-Market specific Icon Styling */
.area-icon {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.application-card:hover .area-icon {
    transform: scale(1.1);
}

/* Service Cards Hover Effects */
.application-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #8B5CF6;
}

/* Process Steps Enhancement */
.process-step:hover .step-number {
    background: #8B5CF6;
    color: #fff;
    transform: scale(1.1);
}

/* Benefit Cards Enhancement */
.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover .icon {
    transform: scale(1.05);
}

/* CTA Button Variations */
.action-button {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    transition: all 0.3s ease;
}

.action-button:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.start-project-button {
    background: #8B5CF6;
    color: #fff;
    transition: all 0.3s ease;
}

.start-project-button:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

/* Pricing Section Enhancements */
.premium-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Footer styling consistency */
.footer-section {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

/* Animation for floating elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.multimarket-mockup {
    animation: float 6s ease-in-out infinite;
}

/* Loading states for better UX */
.multimarket-mockup {
    opacity: 0;
    animation: fadeInFloat 1s ease-out forwards, float 6s ease-in-out infinite 1s;
}

@keyframes fadeInFloat {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced typography for multi-market context */
.section-title .title-highlight {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-title .title-highlight {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-title .title-highlight {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Multi-Market specific color scheme */
.pricing-badge.creative {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.get-started-btn {
    background: #8B5CF6;
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.cta-get-started-btn {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    transition: all 0.3s ease;
}

.cta-get-started-btn:hover {
    background: linear-gradient(135deg, #7C3AED, #8B5CF6);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

/* Multi-market specific advantages styling */
.advantages-card {
    border-left: 4px solid #8B5CF6;
}

.advantage-bar {
    background: linear-gradient(90deg, #8B5CF6, #7C3AED);
}

/* Strategic service differentiation */
.application-card:nth-child(1) {
    border-top: 3px solid #3B82F6;
}

.application-card:nth-child(2) {
    border-top: 3px solid #10B981;
}

.application-card:nth-child(3) {
    border-top: 3px solid #F5C842;
}

.application-card:nth-child(4) {
    border-top: 3px solid #EF4444;
}

.application-card:nth-child(5) {
    border-top: 3px solid #8B5CF6;
}

.application-card:nth-child(6) {
    border-top: 3px solid #10B981;
}

/* Strategic planning visual enhancements */
.hero-illustration::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Strategic market indicators */
.benefits-grid .benefit-card:hover {
    border-left: 4px solid #8B5CF6;
}

/* Multi-market and strategic styling touches */
.application-areas-grid .application-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: #8B5CF6;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.application-areas-grid .application-card:hover::after {
    opacity: 1;
}

/* Strategy-specific visual elements */
.process-steps .process-step::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, #8B5CF6, #7C3AED);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-steps .process-step:hover::before {
    opacity: 1;
}

/* Enhanced strategic focus indicators */
.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #7C3AED);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Multi-market priority indicators */
.benefits-grid::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8B5CF6, transparent);
}

.benefits-grid {
    position: relative;
}