/* Wave Hero Section */
.wave-hero-section {
    position: relative;
    background: linear-gradient(135deg, #004b6b 0%, #366072 50%, #51b146 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.wave-hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.wave-hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    /* margin-bottom: 30px; */
    font-size: 0.9rem;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.breadcrumb-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.breadcrumb-link i {
    font-size: 0.8rem;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(81, 177, 70, 0.3);
    backdrop-filter: blur(10px);
}

/* Hero Text */
.wave-hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #ffffff 0%, #51b146 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease-out forwards;
    transform: translateY(30px);
    opacity: 0;
}

.wave-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: subtitleSlideIn 1s ease-out 0.3s forwards;
    transform: translateY(30px);
    opacity: 0;
}

/* Hero Background Image */
.wave-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 30px;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 4;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill {
    fill: #ffffff;
}

/* Animations */
@keyframes titleSlideIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes subtitleSlideIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Dark Theme */
.dark-theme .wave-hero-section {
    background: linear-gradient(135deg, #004b6b 0%, #2d2d2d 50%, #51b146 100%);
}

.dark-theme .wave-hero-title {
    background: linear-gradient(135deg, #eeeff1 0%, #51b146 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark-theme .wave-hero-subtitle {
    color: rgba(238, 239, 241, 0.9);
}

.dark-theme .breadcrumb-link {
    color: rgba(238, 239, 241, 0.8);
    background: rgba(238, 239, 241, 0.1);
}

.dark-theme .breadcrumb-link:hover {
    color: #eeeff1;
    background: rgba(238, 239, 241, 0.2);
}

.dark-theme .breadcrumb-separator {
    color: rgba(238, 239, 241, 0.6);
}

.dark-theme .breadcrumb-current {
    color: #eeeff1;
    background: rgba(81, 177, 70, 0.3);
}

.dark-theme .wave-divider .shape-fill {
    fill: #1e1e1e;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .wave-hero-section {
        min-height: 20vh;
    }
    
    .wave-hero-title {
        font-size: 2.8rem;
    }
    
    .wave-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .wave-hero-image {
        width: 50%;
        opacity: 0.05;
    }
    
    .breadcrumb-nav {
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .wave-hero-section {
        min-height: 20vh;
    }
    
    .wave-hero-content {
        padding: 10px 0;
    }
    
    .wave-hero-title {
        font-size: 2.2rem;
    }
    
    .wave-hero-subtitle {
        font-size: 1rem;
    }
    
    .wave-hero-image {
        display: none;
    }
    
    .breadcrumb-nav {
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .breadcrumb-link {
        padding: 4px 8px;
    }
    
    .breadcrumb-current {
        padding: 4px 8px;
    }
}

@media (max-width: 575.98px) {
    .wave-hero-title {
        font-size: 1.8rem;
    }
    
    .wave-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .wave-hero-content {
        padding: 20px 0;
    }
}

