/* ─── PAGE HERO ─────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .06) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    right: -100px;
    bottom: -100px;
    background: rgba(0, 196, 167, .08);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-title em {
    font-style: normal;
    color: var(--teal);
}

.page-hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: .875rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .6);
}

.breadcrumb a:hover {
    color: var(--teal);
}

.breadcrumb span {
    color: var(--teal);
}

.breadcrumb i {
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
}

/* ─── CATEGORY SECTION ─────────────────────────────── */
.category-section {
    background: var(--off-white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ─── CATEGORY CARD ─────────────────────────────── */
.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.category-card:hover .category-img img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 50, .85) 0%, rgba(10, 20, 50, .3) 50%, rgba(10, 20, 50, .1) 100%);
    border-radius: 20px;
    transition: background var(--t) var(--ease);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 196, 167, .9) 0%, rgba(10, 20, 50, .4) 60%, rgba(10, 20, 50, .15) 100%);
}

.category-name {
    position: relative;
    z-index: 2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    padding: 24px;
    line-height: 1.3;
    transition: transform var(--t) var(--ease);
}

.category-card:hover .category-name {
    transform: translateY(-4px);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 70px;
    }

    .page-hero-title {
        font-size: clamp(1.375rem, 4.5vw, 1.75rem);
    }

    .page-hero-desc {
        font-size: 1rem;
    }

    .category-section {
        padding: 60px 0;
    }

    .category-name {
        font-size: 1rem;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-card {
        aspect-ratio: 16 / 10;
    }
}