/* ===== PRODUCTS PAGE CSS ===== */

/* Page Hero */
.products-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1e3c72 100%);
    padding: 100px 24px 60px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.products-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.products-hero-badge {
    display: inline-block;
    background: rgba(255,215,0,.12);
    border: 1px solid rgba(255,215,0,.35);
    color: #ffd700;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.products-hero-content { position: relative; z-index: 1; }
.products-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.products-hero h1 span { color: #ffd700; }
.products-hero p {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Products Page Layout */
.products-page { padding: 60px 0; }

/* Filter Tabs */
.prod-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
}
.prod-filter {
    padding: 8px 20px;
    border: 1.5px solid #dde3f0;
    background: #fff;
    color: #555;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
}
.prod-filter:hover,
.prod-filter.active {
    background: #0d1b3e;
    color: #fff;
    border-color: #0d1b3e;
}

/* Section Title */
.prod-section { margin-bottom: 56px; }
.prod-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f2f8;
}
.prod-section-title i {
    font-size: 1.4rem;
    color: #1e3c72;
    width: 44px;
    height: 44px;
    background: #eef2ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod-section-title h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d1b3e;
    margin: 0;
}

/* Products Grid */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Product Card */
.prod-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eaeef5;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .3s, transform .3s, border-color .3s;
    position: relative;
}
.prod-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #eaeef5;
    transition: background .3s;
}
.prod-card:hover::before { background: linear-gradient(90deg, #0d1b3e, #ffd700); }
.prod-card:hover {
    box-shadow: 0 12px 40px rgba(30,60,114,.12);
    transform: translateY(-5px);
    border-color: #c5d3ee;
}

.prod-card-icon {
    padding: 24px 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin: 24px 24px 0;
    font-size: 1.4rem;
}

.prod-card-body {
    padding: 16px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.prod-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1b3e;
    margin-bottom: 10px;
    line-height: 1.3;
}
.prod-card-body p {
    font-size: .83rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 14px;
    flex: 1;
}

/* Product Tags */
.prod-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.prod-tags span {
    background: #f0f4ff;
    color: #1e3c72;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
}

/* Product CTA */
.prod-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #0d1b3e;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #0d1b3e;
    padding: 8px 16px;
    border-radius: 7px;
    transition: all .2s;
    align-self: flex-start;
}
.prod-cta:hover {
    background: #0d1b3e;
    color: #fff;
    text-decoration: none;
}

/* Bottom CTA Band */
.prod-cta-band {
    background: linear-gradient(135deg, #0d1b3e, #1e3c72);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    margin-top: 20px;
}
.prod-cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.prod-cta-content p {
    color: rgba(255,255,255,.65);
    margin-bottom: 24px;
}
.prod-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .prod-grid { grid-template-columns: 1fr; }
    .products-hero { padding: 90px 20px 40px; }
    .prod-cta-band { padding: 32px 20px; }
}

/* Product Card Image */
.prod-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}
.prod-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .4s ease;
}
.prod-card:hover .prod-card-img img { transform: scale(1.06); }
