.has-position-relative {
    position: relative;
}
.breadcrumb-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* Gradient overlay for better text readability */
.breadcrumb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}
/* Hero body enhancements */
.breadcrumb-hero .hero-body {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-bottom: 2.5rem;
}
/* Enhanced breadcrumb styling */
.breadcrumb-hero .breadcrumb {
    background: transparent;
    box-shadow: none;
    margin-bottom: 0;
}
.breadcrumb-hero .breadcrumb ul {
    align-items: flex-end;
    gap: 0.5rem;
}
.breadcrumb-hero .breadcrumb li:not(:last-child)::after {
    content: "";
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    transform: rotate(-40deg);
    display: inline-block;
    margin: 0 0.5rem;
}
.breadcrumb-hero .breadcrumb a,
.breadcrumb-hero .breadcrumb li.is-active a {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.breadcrumb-hero .breadcrumb a:hover {
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
    transform: translateY(-1px);
}
/* Subtle animation on hover */
.breadcrumb-hero .breadcrumb li {
    transition: transform 0.3s ease;
}
.breadcrumb-hero .breadcrumb li:hover {
    transform: translateY(-2px);
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .breadcrumb-hero .breadcrumb a {
        font-size: 1rem;
    }
}
