/* Single Solution Page Styles */

/* Basic Layout */
.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Single Solution Page Styles */
.solution-page {
    background: #fff;
}

.solution-single {
    position: relative;
}

/* Solution Hero Section */
.solution-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #111d31 0%, #273039 100%);
    overflow: hidden;
}

.solution-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.solution-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 152, 219, 0.7);
    z-index: 2;
}

.solution-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.rating-pill i {
    color: #ffd700;
}

.solution-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.solution-info-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.solution-pill {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.solution-hook {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2874a6;
    color: #fff;
    border: 2px solid #2874a6;
}

.btn-primary:hover {
    background: #1d5272;
    border-color: #1d5272;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #e6eaec;
    color: #273039;
    border: 2px solid #e6eaec;
}

/* Button with icons */
.btn i {
    margin-left: 0.5rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

/* Solution Overview Section */
.solution-overview-section {
    background: #fff;
}

.solution-overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-content {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* Solutions Grid Section */
.solutions-grid-section {
    background: #f8f9fa;
}

.solutions-grid-content {
    text-align: center;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.solution-grid-item {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.solution-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--menu-color-3);
    border-radius: 55px;
}

.solution-icon i {
    font-size: 24px;
    color: #fff;
    line-height: 1;
}

.solution-item-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.solution-item-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex: 1;
}

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

.solution-learn-more:hover {
    color: #a8c442;
    transform: translateX(5px);
}

.solution-learn-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

/* Why Work With Us Section */
.why-work-with-us-section {
    background: #fff;
}

.why-work-with-us-content {
    text-align: center;
}

.differentiators-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 600px;
    text-align: left;
}

.differentiators-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.125rem;
    color: #4a5568;
    position: relative;
    padding-left: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.differentiators-list li i {
    color: #273039;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

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

/* Solution Bottom CTA Section */
.solution-bottom-cta-section {
    background: var(--menu-color-3);
    color: #fff;
    text-align: center;
}

.solution-bottom-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.solution-bottom-cta-section .section-title {
    color: #fff;
}

.solution-bottom-cta-section .section-content {
    color: #fff;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .solution-title {
        font-size: 3rem;
    }
    
    .differentiators-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .solution-hero {
        min-height: 100vh;
    }
    
    .solution-title {
        font-size: 2.5rem;
    }
    
    .solution-hook {
        font-size: 1.1rem;
    }
    
    .solution-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .solution-info-pills {
        flex-direction: column;
        align-items: center;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-grid-item {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-content {
        font-size: 1rem;
    }
    
    .differentiators-list {
        max-width: 100%;
    }
    
    .differentiators-list li {
        font-size: 1rem;
        padding-left: 2rem;
    }
}

@media (max-width: 480px) {
    .solution-title {
        font-size: 2rem;
    }
    
    .solution-grid-content {
        padding: 1rem;
    }
    
    .solution-item-title {
        font-size: 1.2rem;
    }
    
    .solution-item-description {
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-grid-item:nth-child(1) { animation-delay: 0.1s; }
.solution-grid-item:nth-child(2) { animation-delay: 0.2s; }
.solution-grid-item:nth-child(3) { animation-delay: 0.3s; }
.solution-grid-item:nth-child(4) { animation-delay: 0.4s; }
.solution-grid-item:nth-child(5) { animation-delay: 0.5s; }
.solution-grid-item:nth-child(6) { animation-delay: 0.6s; }
