/* Solutions Page Specific Styles */

/* Solutions Hero */
.solutions-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.solutions-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.solutions-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Solutions Grid */
.solutions-grid {
    padding: 4rem 0;
    background: #f8fafc;
}

.solutions-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Solution Cards */
.solution-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.solution-icon {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

.solution-content {
    padding: 2.5rem;
}

/* Solution Sections */
.solution-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.solution-section:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.solution-section:last-child {
    margin-bottom: 0;
}

/* Feature Lists - Enhanced "Our Approach" Styling with Arrow Wiggles */
.feature-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2) !important;
}

/* More specific selector to override any inheritance issues */
.solution-section .feature-list {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border: none !important;
    outline: none !important;
}

.feature-list li {
    padding: 1.5rem !important;
    border-bottom: 2px solid #e2e8f0 !important;
    position: relative !important;
    padding-left: 4rem !important;
    line-height: 1.7 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-bottom: 1rem !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #e2e8f0 !important;
}

.feature-list li:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.feature-list li::before {
    content: "→" !important;
    position: absolute !important;
    left: 1.5rem !important;
    color: #2563eb !important;
    font-weight: bold !important;
    font-size: 1.8rem !important;
    transition: all 0.3s ease !important;
    transform: translateX(0) scale(1) !important;
    z-index: 1 !important;
}

.feature-list li:hover {
    background: #f0f9ff !important;
    padding-left: 4.5rem !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    transform: translateX(5px) !important;
}

.feature-list li:hover::before {
    animation: arrowWiggle 0.8s ease-in-out !important;
    color: #1d4ed8 !important;
    transform: scale(1.3) !important;
}

/* Enhanced Typography for Feature List */
.feature-list strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.feature-list li {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

/* Solution Section Headers */
.solution-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #e2e8f0;
    position: relative;
}

.solution-section h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.solution-section p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Arrow Wiggle Animation */
@keyframes arrowWiggle {
    0%, 100% { transform: translateX(0) rotate(0deg) scale(1); }
    25% { transform: translateX(5px) rotate(8deg) scale(1.1); }
    50% { transform: translateX(0) rotate(0deg) scale(1); }
    75% { transform: translateX(-5px) rotate(-8deg) scale(1.1); }
}

/* Impact Lists - Simple Business Impact Design (No Arrow Wiggles) */
.impact-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.impact-list li {
    background: white;
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 8px;
    border-left: 3px solid #2563eb;
    font-weight: 500;
    color: #374151;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.impact-list li::before {
    content: "•";
    position: absolute;
    left: 0.75rem;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.5rem;
}

.impact-list li:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left-color: #1d4ed8;
}

/* Case Study */
.case-study {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #bae6fd;
}

.case-study p {
    margin: 0;
    color: #0c4a6e;
    font-weight: 500;
}

.case-study strong {
    color: #1e293b;
}

/* Solution CTA */
.solution-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

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

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

.cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Active Navigation */
.nav-menu a.active {
    color: #2563eb;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solutions-hero h1 {
        font-size: 2.5rem;
    }
    
    .solutions-hero p {
        font-size: 1.1rem;
    }
    
    .solution-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .solution-header h2 {
        font-size: 1.5rem;
    }
    
    .solution-content {
        padding: 1.5rem;
    }
    
    .impact-list {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .solutions-hero {
        padding: 6rem 0 3rem;
    }
    
    .solutions-hero h1 {
        font-size: 2rem;
    }
    
    .solution-header {
        padding: 1.5rem;
    }
    
    .solution-content {
        padding: 1rem;
    }
    
    .feature-list li {
        padding-left: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* Animation for solution cards */
.solution-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.solution-card:nth-child(1) {
    animation-delay: 0.1s;
}

.solution-card:nth-child(2) {
    animation-delay: 0.2s;
}

.solution-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for interactive elements */
.solution-card:hover .solution-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    background: #f8fafc;
    border-radius: 8px;
    padding-left: 2.5rem;
    transition: all 0.3s ease;
}

.impact-list li:hover {
    background: #e0f2fe;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Print styles */
@media print {
    .solution-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .solutions-cta {
        display: none;
    }
    
    .navbar {
        display: none;
    }
} 