.hero{
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-video,
.hero-overlay{
    position: absolute;
    inset: 0;
}

.hero-bg-video{
    z-index: 1;
}

.hero-bg-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay{
    background: rgba(0,0,0,0.58);
    z-index: 2;
}

.hero .container{
    position: relative;
    z-index: 3;
}

.hero-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 650px;
}

.hero-left{
    max-width: 760px;
}

.hero-left h1{
    color: #fff;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 28px;
}

.hero-left h1 span{
    color: #007bff;
    font-weight: 700;
}

.hero-left p{
    color: #fff;
    font-size: 17px;
    line-height: 1.8;
    max-width: 900px;
    margin-bottom: 32px;
}

.hero-btn{
    display: flex;
    align-items: center;
}

.btn-main{
    background: #6b5552;
    color: #fff;
    padding: 17px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: capitalize;
}

.btn-arrow{
    width: 55px;
    height: 55px;
    background: #007bff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -5px;
    font-size: 18px;
}

.play-btn{
    width: 110px;
    height: 110px;
    background: #007bff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.play-btn i{
    margin-left: 5px;
}

.typing-title{
    display: none;
}

@media(max-width: 991px){
    .hero-content{
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }

    .hero-left h1{
        font-size: 38px;
    }

    .hero-right{
        align-self: center;
    }
}

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.08);
}

/* WhatsApp */
.float-btn.whatsapp {
    background: #25D366;
}

/* Call */
.float-btn.call {
    background: #0d6efd;
}

/* Mobile spacing */
@media (max-width: 576px) {
    .floating-contact {
        right: 15px;
        bottom: 15px;
    }
}