/* IT44 Box Text Styles */

.it44-box-text {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.box-text-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.box-text-container:hover {
    box-shadow: 0px 20px 80px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.box-text-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.box-text-column {
    flex: 1;
}

.box-text-content {
    min-width: 0;
}

.box-text-chart {
    min-width: 0;
}

.chart-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chart-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
    text-align: center;
}

.efficiency-chart {
    width: 100% !important;
    height: 300px !important;
    max-height: 100%;
    margin-bottom: 20px;
}

.chart-container .box-text-button {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;
}

.chart-container .box-text-btn {
    width: 100%;
    max-width: 100%;
}

.box-text-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.box-text-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #206bb3;
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.box-text-description {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.box-text-items {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.box-text-items li {
    font-size: 16px;
    color: #2d3748;
    line-height: 1.6;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.box-text-items li:last-child {
    border-bottom: none;
}

.box-text-items li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #206bb3;
    font-weight: bold;
    font-size: 18px;
}

.box-text-button {
    margin-top: 30px;
    text-align: left;
}

.box-text-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #206bb3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px rgba(32, 107, 179, 0.3);
}

.box-text-btn:hover {
    background: #1a5490;
    transform: translateY(-2px);
    box-shadow: 0px 6px 20px rgba(32, 107, 179, 0.4);
    color: #ffffff;
}

.box-text-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .box-text-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .box-text-container {
        padding: 40px 30px;
    }
    
    .box-text-title {
        font-size: 32px;
    }
    
    .box-text-subtitle {
        font-size: 22px;
    }
    
    .box-text-description {
        font-size: 17px;
    }
    
    .efficiency-chart {
        height: 250px !important;
    }
}

@media (max-width: 768px) {
    .it44-box-text {
        max-width: none;
        margin: 0;
        padding: 20px 10px;
    }

    .box-text-container {
        padding: 35px 25px;
    }

    .box-text-row {
        gap: 25px;
    }

    .box-text-title {
        font-size: 28px;
    }

    .box-text-subtitle {
        font-size: 20px;
    }

    .box-text-description {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .box-text-items li {
        font-size: 15px;
        padding: 10px 0;
        padding-left: 28px;
    }

    .box-text-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .box-text-container {
        padding: 25px 15px;
        border-radius: 8px;
    }

    .box-text-row {
        gap: 15px;
    }

    .chart-container {
        padding: 15px;
        border-radius: 8px;
    }

    .chart-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .efficiency-chart {
        height: 200px !important;
    }

    .box-text-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .box-text-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .box-text-description {
        font-size: 14px;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .box-text-items li {
        font-size: 13px;
        padding: 6px 0;
        padding-left: 22px;
        line-height: 1.4;
    }

    .box-text-items li:before {
        font-size: 14px;
    }

    .box-text-btn {
        padding: 12px 20px;
        font-size: 13px;
        width: 100%;
        text-align: center;
        letter-spacing: 0.02em;
    }

    .box-text-button {
        text-align: center;
        margin-top: 20px;
    }

    .chart-container .box-text-button {
        padding-top: 15px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .box-text-container {
        padding: 20px 12px;
    }

    .chart-container {
        padding: 12px;
    }

    .box-text-title {
        font-size: 20px;
    }

    .box-text-subtitle {
        font-size: 15px;
    }

    .box-text-description {
        font-size: 13px;
    }

    .box-text-items li {
        font-size: 12px;
        padding-left: 20px;
    }

    .box-text-items li:before {
        font-size: 13px;
    }

    .chart-title {
        font-size: 15px;
    }

    .box-text-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
}

