/* ========================================
   Super Professional Page Header
   Blue & Gold Theme - 2025 Design
======================================== */

.page-header {
    position: relative;
    display: block;
    background: linear-gradient(135deg, #044a61 0%, #06607f 50%, #0983a8 100%);
    z-index: 1;
    overflow: hidden;
    min-height: 400px;
}

/* Animated Background Overlay */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 96, 127, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(9, 131, 168, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Geometric Pattern Overlay */
.page-header::after {
    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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* Background Image Enhancement */
.page-header__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.15;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
    filter: blur(2px);
    transform: scale(1.1);
}

/* Inner Content Container */
.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
    padding: 180px 0 160px;
    z-index: 15;
    animation: fadeInUp 0.8s ease-out;
}

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

/* Page Title - Super Attractive Golden */
.page-header__inner h2 {
    font-size: 56px;
    background: linear-gradient(135deg, #D4AF37, #E5C65A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    position: relative;
    display: block;
    animation: titleSlideIn 1s ease-out;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Golden Underline Effect */
.page-header__inner h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #D4AF37, #E5C65A);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    animation: expandWidthFull 1s ease-out 0.5s both;
}

@keyframes expandWidthFull {
    from { 
        width: 0;
        left: 50%;
        right: 50%;
    }
    to { 
        width: 100%;
        left: 0;
        right: 0;
    }
}

/* Breadcrumb Container */
.thm-breadcrumb {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 12px 30px;
    margin-top: 0;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    animation: breadcrumbFadeIn 1s ease-out 0.3s both;
}

@keyframes breadcrumbFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breadcrumb Items */
.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.thm-breadcrumb li+li {
    margin-left: 8px;
}

/* Breadcrumb Links */
.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 3px 8px;
    border-radius: 8px;
}

.thm-breadcrumb li a:hover {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

/* Active Breadcrumb */
.thm-breadcrumb li.active {
    color: #D4AF37;
    font-weight: 600;
}

/* Breadcrumb Separator */
.thm-breadcrumb li span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

/* Decorative Elements */
.page-header__decorative {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

/* Floating Particles */
.page-header__decorative::before,
.page-header__decorative::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    animation: floatParticle 8s ease-in-out infinite;
}

.page-header__decorative::before {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.page-header__decorative::after {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.5;
    }
}

/* Bottom Wave Effect */
.page-header__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 10;
    overflow: hidden;
}

.page-header__wave svg {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .page-header__inner h2 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .page-header__inner {
        padding: 150px 0 140px;
    }
    
    .page-header__inner h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .page-header {
        min-height: 350px;
    }
    
    .page-header__inner {
        padding: 120px 0 110px;
    }
    
    .page-header__inner h2 {
        font-size: 36px;
    }
    
    .thm-breadcrumb {
        padding: 10px 20px;
    }
    
    .thm-breadcrumb li,
    .thm-breadcrumb li a {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .page-header {
        min-height: 300px;
    }
    
    .page-header__inner {
        padding: 100px 0 90px;
    }
    
    .page-header__inner h2 {
        font-size: 28px;
    }
    
    .page-header__inner h2::after {
        width: 60px;
    }
    
    .thm-breadcrumb {
        padding: 8px 15px;
        margin-top: 20px;
    }
    
    .thm-breadcrumb li,
    .thm-breadcrumb li a {
        font-size: 12px;
    }
}

/* Premium Hover Effects */
.page-header__inner h2:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Shimmer Effect on Title */
.page-header__inner h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Add Glass Morphism to Breadcrumb */
.thm-breadcrumb {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Icon Before Title (Optional Enhancement) */
.page-header__inner h2 .icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #E5C65A);
    border-radius: 50%;
    margin-right: 15px;
    vertical-align: middle;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: iconRotate 3s ease-in-out infinite;
}

@keyframes iconRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

