/* ==========================
   Hero Section
========================== */

.hero-section{
    position:relative;
    min-height:90vh;
    display:flex;
    align-items:center;
    background:
        linear-gradient(rgba(3,14,34,.75),rgba(3,14,34,.75)),
        url('../images/dubai-skyline-hero.png');
    background-size:cover;
    background-position:center;
    color:#fff;
}

.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-left{
    flex:1;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:flex-end;
}

.hero-tag{
    display:inline-block;
    color:#D4AF37;
    font-weight:600;
    margin-bottom:20px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-section h1{
    font-size:60px;
    line-height:1.1;
    color:#fff;
    margin-bottom:25px;
}

.hero-section h1 span{
    color:#D4AF37;
}

.hero-section p{
    font-size:20px;
    max-width:600px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-card{
    background:#ffffff;
    color:#0A2540;
    border-radius:16px;
    padding:35px;
    max-width:360px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.hero-card h3{
    margin-bottom:20px;
}

.hero-card ul{
    list-style:none;
    padding:0;
}

.hero-card li{
    margin-bottom:14px;
}

@media(max-width:991px){

.hero-content{
    flex-direction:column;
    text-align:center;
}

.hero-right{
    justify-content:center;
}

.hero-section h1{
    font-size:42px;
}

}