/*=========================================
                HERO
=========================================*/

.hero{
    position:relative;
    min-height:860px;
    display:flex;
    align-items:center;
    overflow:hidden;

    background:
    linear-gradient(
        90deg,
        rgba(250,245,238,.98) 0%,
        rgba(250,245,238,.96) 25%,
        rgba(250,245,238,.82) 45%,
        rgba(250,245,238,.45) 60%,
        rgba(250,245,238,.05) 80%
    ),
    url("../images/hero.png");

    background-size:cover;
    background-position:right center;
    background-repeat:no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.04);
}

.hero-container{
    position:relative;
    z-index:2;
}

.hero-content{
    display:flex;
    align-items:center;
}

.hero-left{
    width:55%;
    padding:80px 0;
}

/*=========================================
BADGE
=========================================*/

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#fff;

    color:#ef7f1a;

    font-size:15px;

    font-weight:700;

    padding:14px 26px;

    border-radius:50px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    margin-bottom:35px;
}

/*=========================================
HEADING
=========================================*/

.hero h1{

    font-size:50px;

    line-height:1.03;

    color:#7d1d14;

    margin-bottom:28px;

    font-weight:800;
}

.hero h1 span{

    color:#ef7f1a;
}

.hero p{

    font-size:2px;

    line-height:1.8;

    color:#555;

    max-width:650px;

    margin-bottom:42px;
}

/*=========================================
FEATURES
=========================================*/

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:45px;
}

.feature-card{

    background:#fff;

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;
}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 40px rgba(0,0,0,.12);
}

.feature-icon{

    width:68px;

    height:68px;

    background:#ef7f1a;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:25px;

    flex-shrink:0;
}

.feature-text h4{

    color:#7d1d14;

    font-size:17px;

    margin-bottom:5px;
}

.feature-text span{

    color:#666;

    font-size:17px;
}

/*=========================================
ACTION BAR
=========================================*/

.hero-action-bar{

    display:flex;

    width:100%;

    gap:0;

    overflow:hidden;

}

.hero-action.book{

    background:#ef7f1a;

    color:#fff;

    flex:1;

    min-width:0;

    border-radius:0;

}

.hero-action{

    flex:1;

    height:72px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#fff;

    font-size:22px;

    font-weight:700;

}

.action-btn i{

    font-size:10px;
}

.call-btn{

    background:#a06032;
}

.whatsapp-btn{

    background:#00b628;
}

.book-btn{

    background:#193d68;
}

.call-btn:hover{

    background:#ff6e00;
}

.whatsapp-btn:hover{

    background:#00c92f;
}

.book-btn:hover{

    background:#25558f;
}

.action-btn:hover{

    transform:scale(1.02);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.hero-left{

width:60%;

}

.hero h1{

font-size:64px;

}

.hero p{

font-size:20px;

}

}

@media(max-width:992px){

.hero{

background:
linear-gradient(
180deg,
rgba(250,245,238,.92),
rgba(250,245,238,.85)
),
url("../images/hero.png");

background-position:center;
}

.hero-left{

width:100%;

text-align:center;

}

.hero-features{

grid-template-columns:1fr;

}

.hero-action-bar{
    flex-direction:column;
}

.action-btn{

font-size:22px;

height:72px;

}

.hero h1{

font-size:50px;

}

.hero p{

font-size:18px;

}

}

@media (max-width:768px){

    .hero{

    min-height:20px;
    padding:25px 0px;

    background:
    linear-gradient(
        rgba(250,245,238,.78),
        rgba(250,245,238,.78)
    ),
    url("../images/hero.png");

    background-size:cover;
    background-position:75% center;
    background-repeat:no-repeat;
}
       

    .hero-content{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .hero-left{
        width:100%;
        padding:20px 0;
    }

    .hero-badge{
        font-size:13px;
        padding:10px 18px;
    }

    .hero h1{
        font-size:34px;
        line-height:1.2;
    }

    .hero p{
        font-size:16px;
        max-width:100%;
        margin-bottom:10px;
    }

    .hero-features{
        grid-template-columns:1fr;
        gap:15px;
    }

    .feature-card{
        padding:18px;
    }

    .feature-icon{
        width:55px;
        height:55px;
        font-size:20px;
    }

    .feature-text h4{
        font-size:16px;
    }

    .feature-text span{
        font-size:14px;
    }

    .hero-action-bar{

    display:flex;

    width:100%;

    gap:12px;

    margin-top:20px;

}
   

    .hero-action{

    flex:1;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    transition:.3s;
}

}