/* Products Page */
.products-page {
    padding-top: 0;
}

/* Banner */
.page-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 51, 0.9), rgba(36, 111, 243, 0.7));
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.page-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Products List */
.products-list {
    padding: 80px 0;
    background: #f4f7fb;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.product-card:last-child {
    margin-bottom: 0;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-card-img {
    width: 100%;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-info {
    padding: 0 40px;
}

.product-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #246ff3;
    margin-bottom: 14px;
    padding-left: 14px;
    border-left: 4px solid #246ff3;
}

.product-card-desc {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 28px;
}

.product-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.95rem;
    color: #246ff3;
    background: rgba(36, 111, 243, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-card-btn:hover {
    color: white;
    background: #246ff3;
}

.product-card-btn i {
    transition: transform 0.3s ease;
}

.product-card-btn:hover i {
    transform: translateX(4px);
}

/* Products CTA */
.products-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #246ff3, #1a5ad4);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 1.1rem;
    color: #246ff3;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover i {
    transform: translateX(4px);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-card {
        grid-template-columns: 1fr;
    }

    .product-card-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 200px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-desc {
        font-size: 1rem;
    }

    .products-list {
        padding: 40px 0;
    }

    .product-card {
        margin-bottom: 24px;
        border-radius: 12px;
    }

    .product-card-info {
        padding: 24px;
    }

    .product-card-title {
        font-size: 1.2rem;
        padding-left: 12px;
        margin-bottom: 12px;
    }

    .product-card-desc {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .product-card-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .products-cta {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .cta-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-banner {
        height: 180px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-desc {
        font-size: 0.9rem;
    }

    .product-card-info {
        padding: 20px;
    }

    .product-card-title {
        font-size: 1.1rem;
    }

    .product-card-desc {
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .cta-desc {
        font-size: 0.9rem;
    }
}
