/* ============================================================
   SOLUTIONS.CSS – Solutions Page Specific Styles
   ============================================================ */

.section-solutions-list {
    background: var(--bg-body);
}

.digitization-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.dv-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.dv-item i {
    font-size: 4.5rem;
    transition: all 0.4s ease;
}

.dv-paper i   { color: var(--text-muted); }
.dv-digital i { color: var(--primary-light); }

.dv-item:hover i {
    transform: translateY(-8px) scale(1.1);
}

.dv-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80px;
    height: 40px;
}

/* Modern Animated Arrow */
.premium-arrow {
    width: 60px;
    height: 3px;
    background: var(--grad-mixed);
    position: relative;
    border-radius: 4px;
    animation: arrow-slide 2s ease-in-out infinite;
}

.premium-arrow::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-top: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
}

@keyframes arrow-slide {
    0%, 100% { transform: translateX(0); opacity: 0.8; }
    50% { transform: translateX(10px); opacity: 1; }
}

/* Responsive fixes for digitization visual */
@media (max-width: 576px) {
    .digitization-visual {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .dv-arrow {
        transform: rotate(90deg);
        height: 60px;
        width: 40px;
    }
    
    .premium-arrow {
        width: 40px;
    }
}

/* DMS Feature Cards */
.dms-feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dms-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card-hover);
    border-color: var(--border-blue);
}

/* Solution Grid Card */
.solution-grid-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution-grid-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-blue);
    box-shadow: var(--shadow-blue);
}

.sgc-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.sgc-blue {
    background: rgba(26, 60, 143, 0.1);
    color: var(--primary-light);
}

.sgc-red {
    background: rgba(193, 18, 31, 0.1);
    color: var(--accent);
}

.solution-grid-card:hover .sgc-icon {
    transform: scale(1.1) rotate(5deg);
}

.sgc-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.sgc-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}
