/* Banner Section */
.banner-section {
    padding: 20px 0 20px 0;
    background-color: #F8FAFC;
    align-items: center;
    align-content: center;
}

.banner-container {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 40px;
    align-items: center;
    align-content: center;
    max-width: 1650px;
    margin: 60px auto;
    padding: 0px;
    background-image: url('/assets/banner/ev-charger.png');
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner-badge {
    top: 0;
    left: 0;
    display: inline-block;
    background: linear-gradient(135deg, #13618C 0%, #297B35 100%);
    color: #FFFFFF;
    padding: 6px 18px;
    border-radius: 0 0 16px 0;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
    letter-spacing: 0.02em;
}

.banner-text {
    padding: 0 60px;
}

.banner-title {
    font-size: 28px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.banner-description {
    font-size: 16px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 25px;
    line-height: 1.6;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #13618C 0%, #297B35 100%);
    color: #FFFFFF;
    border: none;
    padding: 12px 28px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(19, 97, 140, 0.3);
}

.banner-button:hover {
    box-shadow: 0 4px 16px rgba(19, 97, 140, 0.4);
    transform: translateY(-2px);
}

.banner-button .arrow-icon {
    font-size: 16px;
}

/* .banner-image {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('/assets/banner/ev-charger.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
} */

/* Responsive Design */
@media (max-width: 768px) {
    .banner-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 16px;
    }

    .banner-text {
        padding: 0 20px;
    }

    .banner-title {
        font-size: 22px;
    }

    .banner-description {
        font-size: 14px;
    }

    .banner-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .banner-section {
        padding: 20px 0;
    }

    .banner-container {
        margin: 20px 12px;
        gap: 16px;
    }

    .banner-text {
        padding: 0 16px;
    }

    .banner-title {
        font-size: 18px;
    }

    .banner-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .banner-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .banner-image {
        height: 200px;
    }
}
