/* ============================================
   HEADER1 - FOR OTHER PAGES (WITHOUT HERO)
   Specific styles for header on other pages
   ============================================ */

/* Header Page Variant - Transparent Initially */
.header-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.header-page .section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.header-page .nav-container {
    position: relative;
    z-index: 1;
}

.header-page.scrolled {
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Header Banner */
.page-header-banner {
    position: relative;
    padding: 150px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    margin-top: 90px; /* Account for fixed header */
}

.page-header-banner .section-background,
.page-header-banner .section-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: #9ca3af;
}

.breadcrumb a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    transition: width 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb a:hover::after {
    width: 100%;
}

.breadcrumb i {
    font-size: 10px;
    color: #6b7280;
}

.breadcrumb span {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Design for Header1 */
@media screen and (max-width: 768px) {
    .page-header-banner {
        padding: 120px 0 60px;
        margin-top: 70px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .breadcrumb {
        font-size: 12px;
        gap: 8px;
    }
}

@media screen and (max-width: 480px) {
    .page-header-banner {
        padding: 100px 0 50px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .breadcrumb {
        font-size: 11px;
        flex-wrap: wrap;
    }
}

/* Additional Header Enhancements */
.header-page .logo-image {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
}

.header-page .nav-link {
    background: rgba(255, 255, 255, 0.05);
}

.header-page .nav-link:hover {
    background: rgba(0, 212, 255, 0.12);
}

/* Decorative Elements for Page Header */
.page-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.page-header-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, #7c3aed, transparent);
    opacity: 0.5;
}
