/* ============================================
   PELIXARMOR PAGE BANNER STYLES
   ============================================ */

.PelixArmor-page-banner {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 200px 0 80px;
}

/* Background */
.PelixArmor-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #050a12 0%, #0a1628 50%, #121d2f 100%);
}

.PelixArmor-banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.4;
}

.PelixArmor-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.PelixArmor-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(5, 10, 18, 0.85) 0%,
            rgba(10, 22, 40, 0.8) 50%,
            rgba(5, 10, 18, 0.95) 100%);
}

/* Particles */
.PelixArmor-banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.PelixArmor-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.35) 0%, transparent 70%);
    animation: pelixBannerFloat 10s ease-in-out infinite;
}

.PelixArmor-particle-1 {
    width: 250px;
    height: 250px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.PelixArmor-particle-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 10%;
    animation-delay: -4s;
}

.PelixArmor-particle-3 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 55%;
    animation-delay: -7s;
}

@keyframes pelixBannerFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }

    50% {
        transform: translate(15px, -15px) scale(1.05);
        opacity: 0.4;
    }
}

/* Grid Pattern */
.PelixArmor-banner-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Glow Effects */
.PelixArmor-banner-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
}

.PelixArmor-glow-left {
    top: -80px;
    left: -80px;
    background: #c9a227;
}

.PelixArmor-glow-right {
    bottom: -80px;
    right: -80px;
    background: #00d4ff;
}

/* Content */
.PelixArmor-banner-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

/* Breadcrumbs */
.PelixArmor-breadcrumbs {
    margin-bottom: 25px;
}

.PelixArmor-breadcrumb-trail {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    background: rgba(10, 22, 40, 0.7);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.PelixArmor-breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.PelixArmor-breadcrumb-link:hover {
    color: #c9a227;
}

.PelixArmor-breadcrumb-sep {
    color: rgba(201, 162, 39, 0.5);
    font-size: 16px;
    font-weight: 300;
}

.PelixArmor-breadcrumb-active {
    color: #c9a227;
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

/* Badge */
.PelixArmor-banner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 30px;
    margin-bottom: 22px;
}

.PelixArmor-banner-badge span {
    font-family: 'Exo 2', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #c9a227;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

/* Title */
.PelixArmor-banner-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 18px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
}

.PelixArmor-banner-title span {
    background: linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #c9a227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.PelixArmor-banner-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.65);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Divider */
.PelixArmor-banner-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.PelixArmor-divider-line {
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.4), transparent);
}

.PelixArmor-divider-icon {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #c9a227, #e8c547);
    border-radius: 2px;
    transform: rotate(45deg);
}

/* Features */
.PelixArmor-banner-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.PelixArmor-banner-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 30px;
}

.PelixArmor-banner-feature svg {
    width: 16px;
    height: 16px;
    fill: #c9a227;
}

.PelixArmor-banner-feature span {
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* CTA Buttons */
.PelixArmor-banner-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.PelixArmor-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #c9a227 100%);
    border-radius: 12px;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #050a12;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.3);
}

.PelixArmor-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201, 162, 39, 0.4);
}

.PelixArmor-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 12px;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #00d4ff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.PelixArmor-cta-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

/* Bottom Gradient */
.PelixArmor-banner-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #050a12, transparent);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .PelixArmor-page-banner {
        min-height: 35vh;
        padding: 110px 0 60px;
    }

    .PelixArmor-banner-content {
        padding: 0 20px;
    }

    .PelixArmor-breadcrumb-trail {
        padding: 8px 16px;
        gap: 10px;
    }

    .PelixArmor-breadcrumb-link,
    .PelixArmor-breadcrumb-active {
        font-size: 12px;
    }

    .PelixArmor-banner-features {
        gap: 10px;
    }

    .PelixArmor-banner-feature {
        padding: 6px 12px;
    }

    .PelixArmor-banner-feature span {
        font-size: 11px;
    }

    .PelixArmor-banner-cta {
        flex-direction: column;
        align-items: center;
    }

    .PelixArmor-cta-primary,
    .PelixArmor-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }

    .PelixArmor-banner-divider {
        margin-top: 20px;
    }

    .PelixArmor-divider-line {
        width: 40px;
    }
}