/* XK Interactive - SICK FUTURISTIC MOBILE MENU: Cyberpunk AF */
/* Advanced mobile navigation with sliding panels, glowing effects, and badass animations */

/* ===== CYBERPUNK EFFECTS ===== */
@keyframes cyberpunkGlow {
    0%, 100% {
        box-shadow: 0 0 5px #FF6B35, 0 0 10px #FF6B35, 0 0 15px #FF6B35;
        text-shadow: 0 0 5px #FF6B35;
    }
    50% {
        box-shadow: 0 0 10px #FFD23F, 0 0 20px #FFD23F, 0 0 30px #FFD23F;
        text-shadow: 0 0 10px #FFD23F;
    }
}

@keyframes dataStream {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes glitchEffect {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-1px); }
    80% { transform: translateX(1px); }
}

@keyframes neonPulse {
    0%, 100% {
        border-color: #FF6B35;
        box-shadow: 0 0 5px #FF6B35, inset 0 0 5px #FF6B35;
    }
    50% {
        border-color: #FFD23F;
        box-shadow: 0 0 20px #FFD23F, inset 0 0 10px #FFD23F;
    }
}

@keyframes matrixRain {
    0% { transform: translateY(-100%); opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #0D1117 0%, #161B22 100%);
    border-left: 1px solid #30363D;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu-container.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #30363D;
    background: rgba(255, 107, 53, 0.05);
}

.menu-logo-img {
    height: 40px;
    width: auto;
}

.menu-close-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #F0F6FC;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.close-line:first-child {
    transform: rotate(45deg);
}

.close-line:last-child {
    transform: rotate(-45deg);
}

.menu-close-btn:hover .close-line {
    background: #FF6B35;
}

/* Mobile Menu Content */
.mobile-menu-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.menu-level {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 1rem 0;
}

.menu-level.active {
    transform: translateX(0);
}

.menu-level[data-level="0"] {
    transform: translateX(0);
}

/* Submenu Header */
.submenu-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #30363D;
    background: rgba(255, 107, 53, 0.05);
}

.back-btn {
    background: none;
    border: none;
    color: #FF6B35;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-right: 1rem;
}

.back-btn:hover {
    background: rgba(255, 107, 53, 0.1);
}

.submenu-header h3 {
    color: #F0F6FC;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

/* Mobile Navigation */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.mobile-nav-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #F0F6FC;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    background: rgba(255, 107, 53, 0.05);
    color: #FF6B35;
    padding-left: 2rem;
}

.mobile-nav-link:active {
    transform: scale(0.98);
}

.nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.1rem;
    color: #FF6B35;
}

.nav-text {
    flex: 1;
    font-weight: 500;
    font-size: 1rem;
}

.nav-description {
    font-size: 0.8rem;
    color: #8B949E;
    margin-top: 0.25rem;
    display: block;
}

.nav-arrow {
    margin-left: auto;
    color: #8B949E;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover .nav-arrow {
    color: #FF6B35;
    transform: translateX(5px);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid #30363D;
    background: rgba(255, 107, 53, 0.02);
}

.quick-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quick-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 1px solid #30363D;
    color: #F0F6FC;
}

.quick-action.primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
    border-color: #FF6B35;
    color: #000;
}

.quick-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.quick-action.primary:hover {
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    color: #FF6B35;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF6B35;
    color: #000;
    transform: translateY(-3px) scale(1.1);
}

.menu-footer-info {
    text-align: center;
}

.menu-footer-info p {
    color: #8B949E;
    font-size: 0.8rem;
    margin: 0;
}

/* Hamburger Animation */
.navbar-toggler {
    position: relative;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.navbar-toggler-icon {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background: #F0F6FC;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #F0F6FC;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-toggler.active .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
    background: #FF6B35;
}

.navbar-toggler.active .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
    background: #FF6B35;
}

/* Body scroll lock */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-menu-container {
        width: 90%;
    }

    .mobile-nav-link {
        padding: 0.875rem 1rem;
    }

    .nav-text {
        font-size: 0.95rem;
    }

    .nav-description {
        font-size: 0.75rem;
    }
}

/* Animation keyframes */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Focus styles for accessibility */
.mobile-nav-link:focus,
.back-btn:focus,
.menu-close-btn:focus,
.quick-action:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mobile-menu-container {
        border-left: 2px solid #FF6B35;
    }

    .mobile-nav-link {
        border-bottom: 1px solid #30363D;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .mobile-menu-container,
    .mobile-menu-overlay,
    .menu-level,
    .mobile-nav-item,
    .mobile-nav-link,
    .navbar-toggler-icon,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        transition: none;
    }

    .mobile-nav-link::before {
        display: none;
    }
}

/* ===== MEGA MENU STYLES ===== */
/* Desktop mega menu navigation */

/* Mega Menu Container */
.has-mega-menu {
    position: relative;
}

.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1200px;
    background: linear-gradient(135deg, #0D1117 0%, #161B22 100%);
    border: 1px solid #30363D;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 1rem;
}

.mega-menu-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mega Menu Content */
.mega-menu-content {
    padding: 2rem;
}

.mega-menu-title {
    color: #F0F6FC;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FF6B35;
    display: inline-block;
}

/* Mega Menu Items */
.mega-menu-item {
    margin-bottom: 1rem;
}

.mega-menu-link {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #F0F6FC;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.mega-menu-link:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.2);
    color: #F0F6FC;
    transform: translateY(-2px);
}

.mega-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
    color: #000;
    flex-shrink: 0;
}

.mega-item-content h5 {
    color: #F0F6FC;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mega-item-content p {
    color: #8B949E;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Pricing removed from mega menu */

/* Portfolio Items in Mega Menu */
.mega-portfolio-item {
    margin-bottom: 1rem;
}

.mega-portfolio-link {
    display: block;
    text-decoration: none;
    color: #F0F6FC;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.mega-portfolio-link:hover {
    color: #F0F6FC;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.mega-portfolio-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 8px;
}

.mega-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-portfolio-link:hover .portfolio-overlay {
    opacity: 1;
}

.mega-portfolio-link:hover .mega-portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay i {
    color: white;
    font-size: 1.5rem;
}

.mega-portfolio-content {
    padding: 1rem 0;
}

.mega-portfolio-content h6 {
    color: #F0F6FC;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.mega-portfolio-content p {
    color: #8B949E;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.portfolio-category {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Category Links */
.mega-menu-categories {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #30363D;
}

.mega-menu-categories h5 {
    color: #F0F6FC;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 6px;
    color: #FF6B35;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.category-link:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #FF6B35;
    transform: translateY(-2px);
}

/* Mega Menu Highlight Section */
.mega-menu-highlight {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
}

.highlight-content h5 {
    color: #F0F6FC;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.highlight-content p {
    color: #8B949E;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.highlight-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    color: #FF6B35;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: #8B949E;
    font-size: 0.8rem;
}

/* Team Showcase */
.team-showcase h5 {
    color: #F0F6FC;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.team-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0D1117;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.team-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.team-info h6 {
    color: #F0F6FC;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-info span {
    color: #8B949E;
    font-size: 0.8rem;
}

/* Company Values */
.company-values h6 {
    color: #F0F6FC;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.company-values ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-values li {
    color: #8B949E;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.company-values i {
    color: #FF6B35;
}

/* Client Testimonial */
.client-testimonial {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #30363D;
}

.client-testimonial blockquote {
    color: #F0F6FC;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    border-left: 3px solid #FF6B35;
}

.client-testimonial cite {
    color: #8B949E;
    font-size: 0.8rem;
    font-style: normal;
}

/* Mega Menu Backdrop */
.mega-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.3);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-menu-backdrop.show {
    opacity: 1;
}

/* About Content */
.about-content p {
    color: #8B949E;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-links .mega-menu-link {
    padding: 0.5rem 0;
    border: none;
    background: none;
}

.about-links .mega-menu-link:hover {
    background: none;
    color: #FF6B35;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .mega-menu-container {
        max-width: 900px;
    }

    .mega-menu-content {
        padding: 1.5rem;
    }
}

@media (max-width: 991px) {
    .has-mega-menu .mega-menu-container {
        display: none;
    }
}

/* Focus styles for accessibility */
.mega-menu-link:focus,
.mega-portfolio-link:focus,
.category-link:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

/* ===== BREADCRUMB NAVIGATION STYLES ===== */
/* Dynamic breadcrumb system with animations */

/* Breadcrumb Container */
.breadcrumb-container {
    position: fixed;
    top: 80px; /* Below main navigation */
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #30363D;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumb-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 0.75rem 0;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #8B949E;
    opacity: 0;
    transform: translateY(10px);
    animation: breadcrumbFadeIn 0.3s ease forwards;
}

.breadcrumb-item:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 0.75rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF6B35' viewBox='0 0 320 512'%3E%3Cpath d='M96 480c-8.188 0-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L242.8 256L73.38 86.63c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l192 192c12.5 12.5 12.5 32.75 0 45.25l-192 192C112.4 476.9 104.2 480 96 480z'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
}

.breadcrumb-item.active {
    color: #F0F6FC;
    font-weight: 500;
}

.breadcrumb-link {
    color: #8B949E;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.breadcrumb-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.breadcrumb-link:hover {
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(3px);
}

.breadcrumb-link:hover::before {
    left: 100%;
}

.breadcrumb-link:active {
    transform: scale(0.95);
}

/* Breadcrumb animations */
@keyframes breadcrumbFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive breadcrumbs */
@media (max-width: 768px) {
    .breadcrumb-container {
        top: 70px; /* Adjust for smaller nav on mobile */
    }

    .breadcrumb-nav {
        padding: 0.5rem 0;
    }

    .breadcrumb {
        font-size: 0.8rem;
        gap: 0.25rem;
    }

    .breadcrumb-item:not(:last-child)::after {
        width: 12px;
        height: 12px;
        margin-left: 0.5rem;
        background-size: 8px;
    }

    .breadcrumb-link {
        padding: 0.125rem 0.25rem;
    }
}

/* Hide breadcrumbs on very small screens */
@media (max-width: 480px) {
    .breadcrumb-container {
        display: none;
    }
}

/* Breadcrumb focus styles */
.breadcrumb-link:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
    background: rgba(255, 107, 53, 0.1);
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .breadcrumb-container {
        background: #000;
        border-bottom: 2px solid #FF6B35;
    }

    .breadcrumb-item {
        color: #FFF;
    }

    .breadcrumb-link {
        color: #FFF;
    }

    .breadcrumb-link:hover {
        background: #FF6B35;
        color: #000;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .breadcrumb-container {
        transition: none;
    }

    .breadcrumb-item {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .breadcrumb-link {
        transition: none;
    }

    .breadcrumb-link::before {
        display: none;
    }
}

/* Print styles */
@media print {
    .breadcrumb-container {
        position: static;
        background: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .breadcrumb-link {
        color: #000 !important;
    }

    .breadcrumb-item:not(:last-child)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 320 512'%3E%3Cpath d='M96 480c-8.188 0-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L242.8 256L73.38 86.63c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l192 192c12.5 12.5 12.5 32.75 0 45.25l-192 192C112.4 476.9 104.2 480 96 480z'/%3E%3C/svg%3E");
    }
}
