
.floating-contact{
    position: fixed;
    left: 15px;
    top: 85%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-contact a{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:28px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
    animation: float 2s ease-in-out infinite;
}

/* Second Button Delay */
.floating-contact a:nth-child(2){
    animation-delay: .5s;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn{
    background:#b87409;
}

.floating-contact a:hover{
    transform:scale(1.12);
}

/* Up Down Animation */
@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0);
    }
}

/* Responsive */
@media(max-width:768px){

.floating-contact{
    left:10px;
}

.floating-contact a{
    width:50px;
    height:50px;
    font-size:22px;
}

}
.road-section{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
    background:url('dubai-bg.jpg') center/cover no-repeat;
}

.road{
    position:absolute;
    bottom:0;
    width:100%;
    height:180px;
    background:url('road.png') center/cover no-repeat;
}

.car{
    position:absolute;
    bottom:30px;
    width:140px;
}

/* Left to Right */
.car1{
    animation: leftToRight 12s linear infinite;
}

.car2{
    animation: leftToRight 18s linear infinite;
    animation-delay:3s;
}

/* Right to Left */
.car3{
    animation: rightToLeft 15s linear infinite;
}

.car4{
    animation: rightToLeft 20s linear infinite;
    animation-delay:5s;
}

.reverse{
    transform:scaleX(-1);
}

@keyframes leftToRight{
    from{
        left:200px;
    }
    to{
        left:-110%;
    }
}

@keyframes rightToLeft{
    from{
        right:200px;
    }
    to{
        right:110%;
    }
}
.popular-routes {
    margin-bottom: 22px;
    background: #053057;
    padding: 20px 20px;
    color: #fff;
    text-align: center;
}

.popular-routes .container{
    max-width: 1280px;
    margin:auto;
}

.sub-title{
    display:block;
    color:#45d18f;
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.popular-routes h2{
    font-size:50px;
    margin:0;
    font-weight:700;
    color:#fff7ea;
    font-family: Georgia, serif;
}

.popular-routes p{
    color:#c7d4cd;
    margin-top:0px;
    font-size:20px;
}

.routes-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-top:5px;
}

.route-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:22px;
    padding:17px 21px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:.4s;
    backdrop-filter:blur(10px);
}

.route-card:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,0.12);
}

.dot{
    width:11px;
    height:11px;
    background:#f4b942;
    border-radius:50%;
    flex-shrink:0;
}

.route-info{
    flex:1;
    text-align:left;
    margin-left:15px;
}

.route-info h3{
    margin:0;
    font-size:16px;
    font-weight:700;
    color:#fff;
}

.route-info span{
    display:block;
    margin-top:8px;
    color:#bfc8c3;
    font-size:16px;
    line-height:1.5;
}

.price{
    color:#f4b942;
    font-size:22px;
    font-weight:700;
    text-align:right;
    white-space:nowrap;
}

.price small{
    display:block;
    font-size:15px;
    color:#bfc8c3;
    margin-top:5px;
    font-weight:400;
}

/* Tablet */
@media (max-width:991px){

    .routes-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .popular-routes h2{
        font-size:48px;
    }
}

/* Mobile */
@media (max-width:767px){

    .routes-grid{
        grid-template-columns:1fr;
    }

    .popular-routes{
        padding:70px 15px;
    }

    .popular-routes h2{
        font-size:36px;
    }

    .popular-routes p{
        font-size:16px;
    }

    .route-card{
        padding:18px;
    }

    .route-info h3{
        font-size:18px;
    }

    .route-info span{
        font-size:14px;
    }

    .price{
        font-size:24px;
    }
}
/*popup form code button book now*/
