/* ======================================
   Enhanced Breadcrumb Styles
   ====================================== */

.breadcrumbs {
    padding: 100px 0 60px 0;
    background: linear-gradient(135deg, #37517e 0%, #2a3f63 50%, #1e2e4f 100%);
    position: relative;
    overflow: hidden;
}

.breadcrumbs::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 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.6;
}

.breadcrumbs .container {
    position: relative;
    z-index: 1;
}

.breadcrumb-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.breadcrumb-title {
    flex: 1;
    min-width: 250px;
}

.breadcrumb-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInLeft 0.6s ease;
}

.breadcrumb-title .breadcrumb-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
    font-weight: 400;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInRight 0.6s ease;
}

.breadcrumbs ol li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs ol li + li {
    padding-left: 12px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 12px;
    color: rgba(255, 255, 255, 0.6);
    content: "/";
    font-weight: 500;
}

.breadcrumbs ol a {
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 2px 0;
}

.breadcrumbs ol a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #47b2e4;
    transition: width 0.3s ease;
}

.breadcrumbs ol a:hover {
    color: #47b2e4;
}

.breadcrumbs ol a:hover::after {
    width: 100%;
}

.breadcrumbs ol li:last-child {
    font-weight: 600;
    color: #47b2e4;
}

/* Icon Styles */
.breadcrumb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #47b2e4 0%, #209dd8 100%);
    border-radius: 12px;
    margin-right: 15px;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(71, 178, 228, 0.3);
    float: left;
    margin-top: 5px;
}

.breadcrumb-title-with-icon {
    overflow: hidden;
}

.breadcrumb-title-with-icon h2 {
    padding-top: 5px;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .breadcrumbs {
        padding: 80px 0 50px 0;
    }
    
    .breadcrumb-title h2 {
        font-size: 2rem;
    }
    
    .breadcrumb-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .breadcrumbs ol {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 70px 0 40px 0;
    }
    
    .breadcrumb-title h2 {
        font-size: 1.6rem;
    }
    
    .breadcrumb-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-right: 12px;
    }
    
    .breadcrumbs ol {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-title h2 {
        font-size: 1.4rem;
    }
    
    .breadcrumb-subtitle {
        font-size: 0.95rem !important;
    }
    
    .breadcrumbs ol {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .breadcrumbs ol li + li::before {
        padding-left: 8px;
        padding-right: 8px;
    }
}

