/* Product Solutions Page Styles */

/* ============================================
   Breadcrumb Navigation
   ============================================ */
.breadcrumb-section {
    background-color: #f8f9fa;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-easing);
}

.breadcrumb-item a:hover {
    color: #e66a00;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 600;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin-left: var(--spacing-sm);
    color: #ccc;
}

/* ============================================
   Banner Section
   ============================================ */
.solutions-banner-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-white);
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.banner-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--text-white);
}

.banner-subtitle {
    font-size: 24px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: var(--text-white);
}

/* ============================================
   Introduction Section
   ============================================ */
.solutions-intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* ============================================
   Solutions Grid Section
   ============================================ */
.solutions-grid-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) var(--transition-easing);
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 116, 0, 0.2);
}

.solution-card.featured {
    border: 3px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(255, 116, 0, 0.3);
}

.solution-icon {
    margin-bottom: 25px;
}

.solution-icon svg {
    width: 60px;
    height: 60px;
}

.solution-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.solution-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.solution-features {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.solution-features h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.solution-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    font-size: 14px;
    color: #666;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.solution-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.solution-benefits {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    font-size: 24px;
}

.benefit-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.solution-cta-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-easing);
}

.solution-cta-btn:hover {
    background: #e66900;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 116, 0, 0.3);
}

/* ============================================
   Why Solutions Section
   ============================================ */
.why-solutions-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.why-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-card {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all var(--transition-speed) var(--transition-easing);
}

.why-card:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.why-icon {
    margin-bottom: 20px;
}

.why-icon svg {
    width: 50px;
    height: 50px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   Success Stories Section
   ============================================ */
.success-stories-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.story-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) var(--transition-easing);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 116, 0, 0.15);
}

.story-image {
    width: 100%;
    /* height: 250px; */
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) var(--transition-easing);
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.story-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-stat .stat-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.story-stat .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.story-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

/* ============================================
   CTA Section
   ============================================ */
.solutions-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff7400 0%, #ff8e53 100%);
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-primary-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-easing);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-speed) var(--transition-easing);
}

.cta-secondary-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ============================================
   Responsive Design - Tablet
   ============================================ */
@media (max-width: 1024px) {
    .banner-title {
        font-size: 42px;
    }

    .banner-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-stats {
        gap: 40px;
    }
}

/* ============================================
   Responsive Design - Mobile
   ============================================ */
@media (max-width: 768px) {
    .solutions-intro-section,
    .solutions-grid-section,
    .why-solutions-section,
    .success-stories-section,
    .solutions-cta-section {
        padding: 50px 0;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .intro-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 30px;
    }

    .solution-title {
        font-size: 24px;
    }

    .solution-description {
        font-size: 15px;
    }

    .why-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-card {
        padding: 25px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .story-stats {
        flex-direction: column;
        gap: 15px;
    }

    .story-stat {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 24px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .solution-card {
        padding: 25px;
    }

    .solution-title {
        font-size: 20px;
    }

    .featured-badge {
        font-size: 10px;
        padding: 6px 35px;
    }
}
