/* infratech_fractional.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.spk-frac-section {
    background-color: #F7F9FB;
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
    color: #4A5568;
    overflow: hidden;
    position: relative;
}

.spk-frac-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.spk-frac-left {
    flex: 1 1 500px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.spk-frac-left.spk-frac-visible {
    opacity: 1;
    transform: translateX(0);
}

.spk-frac-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.spk-frac-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0F2B46;
    line-height: 1.3;
    margin-bottom: 15px;
}

.spk-frac-highlight {
    color: #71B100;
}

.spk-frac-subtitle {
    font-size: 1.05rem;
    font-weight: 500;
    color: #4A5568;
    margin-bottom: 40px;
    padding-left: 16px;
    border-left: 4px solid #71B100;
}

.spk-frac-details-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(15, 43, 70, 0.08);
    border: 1px solid rgba(15, 43, 70, 0.04);
}

.spk-frac-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0F2B46;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(15, 43, 70, 0.08);
}

.spk-frac-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px dashed rgba(15, 43, 70, 0.1);
}

.spk-frac-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spk-frac-label {
    font-weight: 500;
    color: #4A5568;
    font-size: 0.95rem;
    flex: 0 0 45%;
}

.spk-frac-value {
    font-weight: 600;
    color: #0F2B46;
    font-size: 1rem;
    text-align: right;
    flex: 0 0 55%;
}

.spk-frac-tax-note {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

.spk-frac-benefit {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(15, 43, 70, 0.06);
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
    transform: translateX(50px);
}

.spk-frac-benefit.spk-frac-visible {
    opacity: 1;
    transform: translateX(0);
}

.spk-frac-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 43, 70, 0.12);
    border: 1px solid #71B100;
}

.spk-frac-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(113, 177, 0, 0.1);
    color: #71B100;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spk-frac-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.spk-frac-content-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0F2B46;
    margin-bottom: 8px;
    margin-top: 0;
}

.spk-frac-content-desc {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .spk-frac-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .spk-frac-left, .spk-frac-right {
        flex: 1 1 auto;
        width: 100%;
    }
    
    .spk-frac-right {
        gap: 20px;
    }
    
    .spk-frac-benefit {
        transform: translateY(40px);
    }
}

@media (max-width: 576px) {
    .spk-frac-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .spk-frac-value {
        text-align: left;
    }
    
    .spk-frac-heading {
        font-size: 1.8rem;
    }
}
