.page-title-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-16) 0 var(--space-12) 0;
    position: relative;
    overflow: hidden;

}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white) !important;
}

.page-title{
    color: var(--white) !important;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: var(--space-6);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    transition: all var(--transition-normal);
}

.breadcrumb-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.breadcrumb-link i {
    font-size: var(--text-xs);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-xs);
}

.breadcrumb-current {
    color: var(--white);
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
}

/* Page Title */
.page-title-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin: 0 0 var(--space-4) 0;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: var(--leading-relaxed);
    font-weight: var(--font-normal);
}

/* Background Decorative Elements */
.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.bg-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

.bg-shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
}

/* Page Header Responsive Design */
@media (max-width: 1024px) {
    .page-title {
        font-size: var(--text-4xl);
    }

    .page-subtitle {
        font-size: var(--text-lg);
    }
}

@media (max-width: 768px) {
    .page-title-section {
        padding: var(--space-12) 0 var(--space-8) 0;
        /* margin-top: 70px; */
    }

    .page-title {
        font-size: var(--text-3xl);
    }

    .page-subtitle {
        font-size: var(--text-base);
    }

    .breadcrumb-list {
        gap: var(--space-2);
    }

    .breadcrumb-link {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-2);
    }

    .breadcrumb-current {
        font-size: var(--text-xs);
    }
}

@media (max-width: 480px) {
    .page-title-section {
        padding: 0 0 var(--space-6) 0;
    }

    .page-title {
        font-size: var(--text-2xl);
    }

    .page-subtitle {
        font-size: var(--text-sm);
    }

    .breadcrumb-list {
        flex-direction: column;
        gap: var(--space-1);
    }

    .breadcrumb-separator {
        transform: rotate(90deg);
    }

    .bg-shape-1,
    .bg-shape-2,
    .bg-shape-3 {
        display: none;
    }
}