/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .swiper {
    width: 100%;
    height: 100vh;
}

.hero .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.5) 50%, rgba(255,146,34,0.15) 100%);
}

.hero__shape {
    position: absolute;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.hero__shape--1 {
    right: -5%;
    bottom: -10%;
    width: 40%;
    max-width: 400px;
}

.hero__shape--2 {
    left: -5%;
    top: 10%;
    width: 20%;
    max-width: 200px;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.hero__label {
    display: inline-block;
    background: rgba(255, 146, 34, 0.2);
    color: var(--color-primary-light);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 146, 34, 0.3);
}

.hero__title {
    font-size: var(--font-size-4xl);
    color: white;
    margin-bottom: var(--space-lg);
    max-width: 650px;
    line-height: 1.15;
}

.hero__title span {
    color: var(--color-primary);
}

.hero__subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero__image {
    display: none;
    position: absolute;
    right: 5%;
    bottom: 5%;
    z-index: 1;
    max-width: 350px;
}

.hero__image img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Hero Pagination */
.hero .swiper-pagination {
    bottom: 30px !important;
}

.hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.hero .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 6px;
}

/* Hero Navigation */
.hero .swiper-button-next,
.hero .swiper-button-prev {
    color: white;
    display: none;
}

/* Responsive */
@media (min-width: 768px) {
    .hero__title {
        font-size: var(--font-size-4xl);
    }

    .hero .swiper-button-next,
    .hero .swiper-button-prev {
        display: flex;
    }
}

@media (min-width: 992px) {
    .hero__title {
        font-size: var(--font-size-5xl);
    }

    .hero__image {
        display: block;
    }

    .hero__shape {
        opacity: 0.6;
    }
}
