/* Swiper Slider Styles */
.reasons-swiper {
    padding: 2rem 0;
}

.reasons-swiper .swiper-wrapper {
    padding-bottom: 3rem;
}

.reasons-swiper .swiper-slide {
    height: auto;
}

.reason-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
    height: 100%;
    margin-top: 5px;
}

.reason-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
    margin-top: 0;
}

.reason-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reason-card p {
    color: #aaa;
    font-weight: 300;
    line-height: 1.6;
}

/* Swiper Navigation */
.reasons-swiper .swiper-button-next,
.reasons-swiper .swiper-button-prev {
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s;
}

.reasons-swiper .swiper-button-next:hover,
.reasons-swiper .swiper-button-prev:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Swiper Pagination */
.reasons-swiper .swiper-pagination-bullet {
    background: rgba(201, 169, 110, 0.3);
    opacity: 1;
}

.reasons-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
}

/* Adjust Swiper slides for better fit */
@media (min-width: 1024px) {
    .reasons-swiper .swiper-slide {
        width: calc(33.333% - 10px) !important;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .reasons-swiper .swiper-slide {
        width: calc(50% - 10px) !important;
    }
}