/* Modern Hero Property Slider */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
}

.hero-property-slider {
    width: 100%;
    height: clamp(520px, 82vh, 860px);
}

.hero-property-slider .swiper-slide {
    height: auto;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: clamp(520px, 82vh, 860px);
    overflow: hidden;
}

.hero-slide__media {
    position: absolute;
    inset: 0;
}

.hero-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 8s ease-out;
}

.hero-property-slider .swiper-slide-active .hero-slide__media img {
    transform: scale(1);
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 17, 33, 0.88) 0%, rgba(7, 17, 33, 0.55) 42%, rgba(7, 17, 33, 0.15) 100%),
        linear-gradient(0deg, rgba(7, 17, 33, 0.75) 0%, transparent 45%);
    pointer-events: none;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 0 90px;
    max-width: 720px;
}

.hero-slide__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 90, 60, 0.18);
    border: 1px solid rgba(255, 90, 60, 0.45);
    color: #ffb9a8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-slide__badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color, #ff5a3c);
    box-shadow: 0 0 10px rgba(255, 90, 60, 0.8);
}

.hero-slide__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
}

.hero-slide__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.hero-slide__title a:hover {
    color:  #8bac3e;
}

.hero-slide__desc {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.95rem, 1.6vw, 1.125rem);
    line-height: 1.7;
    max-width: 560px;
}

.hero-slide__meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 600;
}

.hero-slide__meta i {
    margin-right: 6px;
    color: var(--secondary-color, #ff5a3c);
}

.hero-slide__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--secondary-color, #ff5a3c);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(255, 90, 60, 0.35);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-slide__cta:hover {
    background: #8bac3e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(255, 90, 60, 0.45);
}

.hero-slide__cta i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.hero-slide__cta:hover i {
    transform: translateX(4px);
}

.hero-slider__nav {
    position: absolute;
    right: 24px;
    bottom: 36px;
    z-index: 5;
    display: flex;
    gap: 12px;
}

.hero-slider__prev,
.hero-slider__next {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-slider__prev:hover,
.hero-slider__next:hover {
    background: var(--secondary-color, #ff5a3c);
    border-color: var(--secondary-color, #ff5a3c);
    transform: translateY(-2px);
}

.hero-slider__prev.swiper-button-disabled,
.hero-slider__next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.hero-slider__pagination {
    position: absolute;
    left: 50%;
    bottom: 42px;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    width: auto !important;
}

.hero-slider__pagination .swiper-pagination-bullet {
    width: 36px;
    height: 4px;
    margin: 0 !important;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.hero-slider__pagination .swiper-pagination-bullet-active {
    width: 56px;
    background: var(--secondary-color, #ff5a3c);
}

.hero-slider__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-slider__progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--secondary-color, #ff5a3c), #ff8a65);
    transition: width 0.1s linear;
}

@media (max-width: 991px) {
    .hero-property-slider,
    .hero-slide {
        height: clamp(480px, 72vh, 700px);
    }

    .hero-slide__content {
        padding-bottom: 110px;
    }

    .hero-slider__nav {
        right: 16px;
        bottom: 72px;
    }

    .hero-slider__prev,
    .hero-slider__next {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .hero-property-slider,
    .hero-slide {
        height: clamp(440px, 68vh, 620px);
    }

    .hero-slide__overlay {
        background:
            linear-gradient(180deg, rgba(7, 17, 33, 0.2) 0%, rgba(7, 17, 33, 0.88) 72%),
            linear-gradient(0deg, rgba(7, 17, 33, 0.8) 0%, transparent 50%);
    }

    .hero-slide__content {
        padding: 28px 0 100px;
    }

    .hero-slider__nav {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide__media img {
        transform: none !important;
        transition: none;
    }
}
