/* ===== PAGE BANNERS ===== */
.page-banner {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-banner-container {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

.page-banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 32px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.8s ease-out;
}

.page-banner-badge i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.page-banner-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.page-banner-title .highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-banner-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.page-banner-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.page-banner-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.page-banner-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-banner-feature i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.page-banner-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.page-banner-cta .btn {
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.page-banner-cta .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #f59e0b);
    border: none;
    color: var(--dark-color);
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
}

.page-banner-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
}

.page-banner-cta .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.page-banner-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Breadcrumbs */
.page-breadcrumbs {
    background: var(--gray-50);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-separator {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: var(--gray-700);
    font-weight: 600;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-banner {
        min-height: 50vh;
    }
    
    .page-banner-container {
        padding: 60px 0 40px;
    }
    
    .page-banner-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .page-banner-feature {
        width: 100%;
        justify-content: center;
    }
    
    .page-banner-cta {
        flex-direction: column;
    }
    
    .page-banner-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-banner-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .page-banner-subtitle {
        font-size: 1.1rem;
    }
    
    .page-banner-feature {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}
