/* ── Hero Slider (SkyBreeze style) ────────────────────────── */
.hero-slider { background: #0F1B2D; position: relative; }
.hero-swiper { position: relative; }
.hero-slide {
    background: #0F1B2D;
    background-size: cover;
    background-position: center right;
    min-height: 580px;
    display: flex;
    align-items: center;
    position: relative;
}
/* Dark gradient overlay for text readability */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0F1B2D 30%, rgba(15,27,45,0.85) 60%, rgba(15,27,45,0.6) 100%);
    z-index: 1;
}
.hero-slide__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}
.hero-slide__content { flex: 1; max-width: 580px; }

/* Badge tags */
.hero-slide__badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-slide__badge {
    display: inline-block;
    background: rgba(228,35,19,0.15);
    color: var(--color-red);
    border: 1px solid rgba(228,35,19,0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.hero-slide__heading {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    color: #FFFFFF;
}
.hero-slide__text {
    font-size: 16px;
    color: #9FA3A5;
    line-height: 1.7;
    margin-bottom: 28px;
}
.hero-slide__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-slide__btns .btn--red {
    background: var(--color-red);
    color: #FFFFFF;
    border-color: var(--color-red);
    padding: 16px 32px;
    font-size: 16px;
}
.hero-slide__btns .btn--outline {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.3);
    padding: 16px 32px;
    font-size: 16px;
}
.hero-slide__btns .btn--outline:hover {
    background: rgba(255,255,255,0.1);
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.5);
}

/* Right side image (hidden — using background image instead) */
.hero-slide__image { display: none; }

/* Swiper controls — arrows on right */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: #FFFFFF;
    opacity: 0.4;
    transition: all var(--transition);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    right: 40px;
}
.hero-swiper .swiper-button-prev { right: auto; left: auto; right: 100px; }
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    opacity: 1;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after { font-size: 18px; }

/* Pagination — pill style like SkyBreeze */
.hero-swiper .swiper-pagination {
    bottom: 30px !important;
}
.hero-swiper .swiper-pagination-bullet {
    background: #FFFFFF;
    opacity: 0.3;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-red);
    width: 32px;
    border-radius: 5px;
}

/* ── Trust Bar (below slider) ────────────────────────────── */
.trust-bar {
    background: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #E0E0E0;
}
.trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-item__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red);
}
.trust-item__text { font-size: 13px; color: #555; }
.trust-item__value { font-size: 15px; font-weight: 700; color: #1A1A1A; display: block; }
.trust-item__icon--img { background: none; }
.trust-item__icon--img img { max-height: 24px; width: auto; }
.trust-item__stars { color: #E8A800; font-size: 14px; }

/* Reviews Swiper */
.reviews-swiper .swiper-slide { padding: 4px; }
.reviews-swiper .swiper-pagination-bullet {
    background: #1A1A1A;
    opacity: 0.2;
}
.reviews-swiper .swiper-pagination-bullet-active {
    background: var(--color-red);
    opacity: 1;
}
