/* ================== Products Page Hero ================== */
.products-hero {
    background-image: linear-gradient(to right, rgba(9, 64, 114, 0.95) 0%, rgba(9, 64, 114, 0.8) 60%, rgba(9, 64, 114, 0.4) 100%), url('../assets/Background-index.png');
    background-size: cover;
    background-position: center;
    min-height: 280px;
    display: flex;
    align-items: center;
}

/* ================== Section Headers ================== */
.products-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.products-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    position: relative;
    padding-bottom: 10px;
    margin: 0;
}

.products-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* ================== Product Cards ================== */
.prod-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.prod-img-wrap {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    padding: 20px;
}

.prod-img-wrap img {
    transition: transform 0.5s ease;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.prod-card:hover .prod-img-wrap img {
    transform: scale(1.07);
}

.prod-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 64, 114, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.prod-card:hover .prod-overlay {
    opacity: 1;
}

.prod-overlay-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #fff;
    color: var(--secondary-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.prod-card:hover .prod-overlay-btn {
    transform: translateY(0);
}

.prod-overlay-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.prod-info {
    padding: 20px 20px 24px;
}

.prod-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.prod-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.prod-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.prod-link:hover {
    color: var(--secondary-dark);
    gap: 8px;
}

/* ================== CTA Banner ================== */
.products-cta-banner {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    box-shadow: 0 10px 40px rgba(9, 64, 114, 0.3);
}

.prod-cta-outline {
    display: inline-block;
    padding: 15px 35px;
    color: #fff;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.prod-cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}