.hero-section {
    position: relative;
    min-height: 850px;
    background-image: url('../images/vegan-hair-treatments-dubai-salon.png');
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.65) 40%,
        rgba(0,0,0,.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin-left: 8%;
    color: #fff;
}

.hero-welcome {
    display: block;
    color: #d4af37;
    font-size: 48px;
    font-family: "Brush Script MT", cursive;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 78px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    color: #fff;
}

.hero-line {
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.hero-subtitle span {
    color: #d4af37;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 700px;
}

.hero-rating {
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-rating span {
    margin: 0 12px;
    opacity: .6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.btn-book {
    background: #d4af37;
    color: #000;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-whatsapp {
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-services span {
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 30px;
    background: rgba(255,255,255,.08);
    font-size: 13px;
}

.hero-services a {
    text-decoration: none;
}

.hero-services a:hover span {
    background: #fff;
    color: #d4af37;
    border-color: #fff;
}

.hero-services span {
    transition: all 0.3s ease;
}

.video-slider-section {
    background: #000;
    padding: 80px 0;
    overflow: hidden;
}

.video-section-title {
    text-align: center;
    color: #fff;
    margin-bottom: 45px;
}

.video-section-title span {
    font-family: "Brush Script MT", cursive;
    color: #d4af37;
    font-size: 34px;
}

.video-section-title h2 {
    font-family: Georgia, serif;
    font-size: 48px;
    color: #fff;
    margin: 10px 0;
}

.video-section-title p {
    color: #ccc;
    font-size: 16px;
}

.artistic-video-slider {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
}

.video-card {
    position: relative;
    display: block;
    height: 430px;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    background: #111;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
}

.video-overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.05)
    );
}

.video-overlay span {
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.video-overlay h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
}

.video-card:hover video {
    transform: scale(1.06);
    transition: all .5s ease;
}

@media (max-width: 767px) {
    .video-slider-section {
        padding: 55px 0;
    }

    .video-section-title h2 {
        font-size: 34px;
    }

    .video-card {
        height: 380px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        margin: 0 25px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}