/* Competitive Advantage Swiper Section
========================================== */
.comp-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.comp-swiper .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.5s ease;
}

.comp-swiper .swiper-slide-active {
    opacity: 1 !important;
}

/* Slide Container Layout */
.comp-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.comp-container-column {
    display: flex;
    flex-direction: column;
}

/* Text Content */

/* Image */
.comp-container .gbp-button--primary {
    max-width: fit-content;
}
/* Navigation Container - Bottom Area */
.comp-swiper-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Pagination Dots - Left Side */
.comp-swiper-nav .swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    gap: 10px;
    text-align: left;
}

.comp-swiper-nav .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1px solid var(--accent-2);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 !important;
}

.comp-swiper-nav .swiper-pagination-bullet-active {
    background: var(--accent-2);
}

/* Arrow Navigation - Right Side (Vertical Stack) */
.comp-swiper-nav .gb-element-cffbf3e8 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comp-swiper-next {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: var(--accent-2);
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}
.comp-swiper-prev {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: rgba(171, 225, 227, 0.3);
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.comp-swiper-prev:hover,
.comp-swiper-next:hover {
    background: var(--accent-2);
    color: #fff;
}

.comp-swiper-prev.swiper-button-disabled,
.comp-swiper-next.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Rotate arrows to point up/down */
.comp-swiper-prev .gb-shape {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-swiper-next .gb-shape {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-swiper-prev svg,
.comp-swiper-next svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 991px) {
    .comp-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comp-container-column:first-child {
        order: 1;
    }
    
    .comp-image {
        order: 0;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .comp-swiper-nav {
        margin-top: 24px;
    }
    
    .comp-swiper-nav .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    .comp-container .swiper-arrows {
        display: none;
    }
    .comp-swiper-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
    .comp-swiper-prev,
    .comp-swiper-next {
        width: 36px;
        height: 36px;
    }
}
