/* ===========================
   SHIELD PANEL SECTION
   =========================== */

.shield-panel-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.shield-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===== LEFT SIDE - CONTENT ===== */
.shield-panel-content {
    padding-right: 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-badge i {
    font-size: 1rem;
}

.shield-panel-content .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shield-panel-content .section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* ===== FEATURES LIST ===== */
.shield-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.shield-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.shield-feature-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(5px);
}

.shield-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    color: var(--primary);
    font-size: 1.3rem;
}

.shield-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.shield-feature-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA BUTTON ===== */
.shield-cta .btn-primary {
    padding: 1rem 2rem;
}

/* ===== RIGHT SIDE - IMAGE SLIDER ===== */
.shield-panel-slider {
    position: relative;
}

.slider-container {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    transition: height 0.5s ease-in-out;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.panel-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}


/* ===== SLIDER CONTROLS ===== */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 107, 53, 0.8);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

/* ===== SLIDER INDICATORS ===== */
.slider-indicators {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .shield-panel-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .shield-panel-content {
        padding-right: 0;
    }

    .shield-panel-content .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .shield-panel-section {
        padding: 4rem 0;
    }

    .shield-panel-content .section-title {
        font-size: 1.8rem;
    }

    .shield-panel-content .section-description {
        font-size: 1rem;
    }

    .shield-feature-item {
        padding: 1rem;
    }

    .shield-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .shield-feature-text h4 {
        font-size: 1rem;
    }

    .shield-feature-text p {
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 0.5rem;
    }

    .slider-next {
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .shield-panel-section {
        padding: 3rem 0;
    }

    .shield-panel-content .section-title {
        font-size: 1.5rem;
    }

    .shield-features {
        gap: 1rem;
    }

    .shield-feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .slide-caption {
        font-size: 0.9rem;
        padding: 1rem;
    }
}
