/* --- ADVANCED PREMIUM BUTTONS --- */
    .btn-premium {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--luxury-gradient);
        color: #fff;
        padding: 15px 35px;
        border-radius: 50px; /* Pill shape is very modern */
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        border: none;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 20px rgba(255, 80, 3, 0.2);
    }

    /* Icon sliding animation */
    .btn-premium i {
        font-size: 1.3rem;
        transition: transform 0.3s ease;
    }

    .btn-premium:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(242, 41, 91, 0.4); /* Red glow on hover */
        color: #fff;
    }

    .btn-premium:hover i {
        transform: translateX(8px); /* Arrow shoots to the right */
    }

    /* A secondary "Ghost" button for luxury contrast */
    .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #fff;
        padding: 15px 35px;
        border-radius: 50px;
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        transition: all 0.4s ease;
    }

    .btn-ghost:hover {
        background: #fff;
        color: #000;
        border-color: #fff;
    }



.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.heroSwiper { width: 100%; height: 100%; }

.slide-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out; /* The Ken Burns effect foundation */
}

/* When slide is active, zoom in slowly */
.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.slide-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-content h2 span {
    color: transparent;
    -webkit-text-stroke: 1px #fff; /* Advanced "Luxury" typography style */
}