/* ===== ساختار اصلی ===== */
.pipe-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    background: #eeefeb;
    overflow: hidden;
    width: 100%;
}

/* ===== تصویر سمت چپ ===== */
/* .banner-image {
    background-image: url('/images/etesalat3.png');
    background-size: cover;
    background-position: center;
    background-color: transparent;
    background-repeat: no-repeat;
} */

/* ===== متن سمت راست ===== */
.banner-text {
    width: 100%;
    padding: 48px;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* افکت ورود از راست */
    opacity: 0;
    transform: translateX(60px);
    animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== عنوان ===== */
.banner-text .title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 800;
}

/* ===== توضیحات ===== */
.banner-text .desc {
    font-size: 1rem;
    margin-bottom: 24px;
}

/* ===== دکمه ===== */
.banner-text .cta {
    width: 30%;
    display: inline-block;
    padding: 10px 20px;
    background: red;
    color: white;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
}

.banner-text .cta:hover {
    background: #f3343b;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 900px) {
    .pipe-banner {
        grid-template-columns: 1fr;
        /* جعل تصویر بالا، متن پایین */
    }

    .banner-text .cta {
        width: 50%;
    }

    .banner-image {
        height: 260px;
    }

    .banner-text {
        padding: 32px;
    }

    .banner-text .title {
        font-size: 1.3rem;
    }

    .banner-text .desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }
}