/* HEADER STYLES (Project Standard) */
.page-header {
    position: relative;
    height: 360px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    background-color: #ffffff;
}

.header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
}

.header-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    animation: shineMove 6s infinite ease-in-out;
    pointer-events: none;
}

@keyframes shineMove {
    0% {
        left: -100%;
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    40% {
        left: 200%;
        opacity: 0;
    }

    100% {
        left: 200%;
        opacity: 0;
    }
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 60%, #ffffff 100%);
    z-index: 3;
}

.header-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

.header-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.2rem;
    margin-bottom: 10px;
    letter-spacing: 4px;
    background: linear-gradient(to right, #143450 0%, #00a8cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #143450;
    margin-bottom: 20px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.breadcrumb-item a,
.breadcrumb-item.active {
    color: #143450;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* PLANS WRAPPER */
.plans-wrapper {
    background: #ffffff;
}

/* COVER SECTION */
.cover-section {
    padding: 60px 0;
    background: #ffffff;
}

.cover-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cover-image {
    width: 100%;
    height: auto;
    display: block;
}

/* PLANS SECTION */
.plans-section {
    padding: 60px 0 100px;
    background: #ffffff;
}

/* FILTERS */
.filters-container {
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-title {
    font-size: 1rem;
    font-weight: 700;
    color: #143450;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-title::before {
    content: '';
    width: 3px;
    height: 18px;
    background: linear-gradient(135deg, #143450 0%, #00a8cc 100%);
    border-radius: 3px;
}

.reset-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: transparent;
    border: 1.5px solid #e0e0e0;
    border-radius: 20px;
    color: #666;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-link:hover {
    background: #143450;
    border-color: #143450;
    color: #ffffff;
    transform: translateY(-1px);
}

.reset-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.reset-link:hover i {
    transform: rotate(-180deg);
}

.filter-row {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.filter-section {
    flex: 1;
    min-width: 0;
}

.filter-separator {
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, #e0e0e0 20%, #e0e0e0 80%, transparent 100%);
    align-self: stretch;
    margin: 5px 0;
}

.filter-label-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #143450;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-label-row i {
    font-size: 0.95rem;
    color: #00a8cc;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    padding: 7px 16px;
    background: #f8f9fa;
    border: 1.5px solid #e9ecef;
    border-radius: 20px;
    color: #555;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.filter-chip:hover {
    border-color: #00a8cc;
    background: #ffffff;
    color: #00a8cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 204, 0.15);
}

.filter-chip.active {
    background: linear-gradient(135deg, #143450 0%, #00a8cc 100%);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(20, 52, 80, 0.25);
    transform: translateY(-1px);
}

.filter-chip.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 52, 80, 0.35);
}

.results-info {
    text-align: center;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
}

.results-info span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.3px;
}

/* PLANS GRID */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.plan-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f8f9fa;
}

.plan-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.plan-card:hover .plan-image {
    transform: scale(1.1);
}

.plan-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 52, 80, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover .plan-overlay {
    opacity: 1;
}

.plan-overlay i {
    font-size: 3rem;
    color: #ffffff;
}

.plan-info {
    padding: 20px;
}

.plan-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #143450;
    margin-bottom: 8px;
}

.plan-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.1rem;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .page-header {
        height: 280px;
    }

    .header-title {
        font-size: 2.1rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .filters-container {
        margin-bottom: 30px;
        padding: 18px;
    }

    .filter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .reset-link {
        width: 100%;
        justify-content: center;
    }

    .filter-row {
        flex-direction: column;
        gap: 18px;
    }

    .filter-separator {
        display: none;
    }

    .filter-section {
        margin-bottom: 0;
    }

    .results-info {
        margin-top: 15px;
        padding-top: 15px;
    }
}

@media (max-width: 576px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .header-title {
        font-size: 1.8rem;
    }

    .filter-chip {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .filter-title {
        font-size: 0.9rem;
    }

    .filter-label-row {
        font-size: 0.75rem;
    }
}