/* =========================
GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* =========================
RESET
========================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Roboto',sans-serif;
background:#000;
color:#333;
line-height:1.6;
}

/* =========================
TOP BAR
========================= */
.topbar{
background:#111;
color:#fff;
padding:8px 20px;
display:flex;
justify-content:space-between;
font-size:14px;
}

.topbar a{
color:#ff9800;
text-decoration:none;
}

/* =========================
HEADER
========================= */
.main-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 25px;
background:#fff;
box-shadow:0 3px 15px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:999;
}

.logo a{
font-size:24px;
font-weight:700;
color:#ff9800;
text-decoration:none;
}

nav a{
margin:0 12px;
text-decoration:none;
color:#333;
font-weight:500;
}

nav a:hover{
color:#ff9800;
}

/* =========================
HERO VIDEO
========================= */
.hero-video{
position:relative;
height:100vh;
overflow:hidden;
}

.hero-video video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:#fff;
text-align:center;
}

.hero-video::after{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
top:0;
}
/* BOOKING SECTION FULL BACKGROUND */
/* FULL BACKGROUND */
#bookingForm{
background:#ff9800;
padding:60px 20px;
}

/* CENTER BOX */
.booking-box{
max-width:800px;
margin:0 auto;
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 5px 25px rgba(0,0,0,0.2);
}

/* GRID */
.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

/* INPUT */
.form-grid input,
.form-grid select{
width:100%;
padding:12px;
border:1px solid #ccc;
border-radius:5px;
}

/* FULL WIDTH ITEMS */
form p,
form button,
.whatsapp-btn{
display:block;
width:100%;
margin-top:10px;
}

/* BUTTON */
form button{
background:#ff9800;
color:#fff;
border:none;
padding:12px;
border-radius:5px;
}

/* WHATSAPP */
.whatsapp-btn{
background:#25D366;
color:#fff;
text-align:center;
padding:12px;
border-radius:5px;
text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){

.form-grid{
grid-template-columns:1fr;
}

.booking-box{
margin:10px;
padding:20px;
}

}
/* =========================
CITY GRID
========================= */
.cities-img{
padding:40px;
background:#111;
text-align:center;
}

.cities-img h2{
color:#FFD700;
margin-bottom:25px;
}

.cities-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}
@media(max-width:768px){
.cities-grid{
grid-template-columns:1fr;
}
}
.city-card{
position:relative;
overflow:hidden;
border-radius:12px;
box-shadow:0 0 15px rgba(0,0,0,0.3);
}

.city-card img{
width:100%;
height:220px;
object-fit:cover;
transition:0.5s;
}

.city-overlay{
position:absolute;
bottom:0;
width:100%;
background:linear-gradient(transparent, rgba(0,0,0,0.9));
color:#fff;
padding:20px;
text-align:center;
}

.city-overlay a{
display:inline-block;
margin-top:10px;
background:#FFD700;
color:#000;
padding:8px 15px;
text-decoration:none;
border-radius:5px;
}

.city-card:hover img{
transform:scale(1.1);
}
grid-template-columns:1fr;

/* =========================
BOOKING FORM
========================= */
.booking-box{
max-width:600px;
margin:40px auto;
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.booking-box input,
.booking-box select{
width:100%;
padding:12px;
margin-bottom:15px;
border-radius:5px;
border:1px solid #ccc;
}

.booking-box button{
width:100%;
padding:14px;
background:#ff9800;
color:#fff;
border:none;
border-radius:6px;
}

/* =========================
FOOTER
========================= */
.footer{
background:#1c1c1c;
color:#fff;
padding:40px 20px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.footer-col h3{
color:#ff9800;
margin-bottom:15px;
}

.footer-col a{
color:#fff;
text-decoration:none;
}

.footer-col a:hover{
color:#ff9800;
}

/* =========================
FLOAT BUTTONS
========================= */
.float-call{
position:fixed;
bottom:90px;
right:20px;
background:#ff9800;
color:#fff;
padding:12px;
border-radius:50%;
}

.float-wa{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:#fff;
padding:12px;
border-radius:50%;
}
.call-btn, .wa-btn{
right:10px;
padding:12px;
}
/* =========================
ROAD ANIMATION
========================= */
.road-section{
position:relative;
width:100%;
height:120px;
background:#000;
overflow:hidden;
}

.road{
position:absolute;
bottom:0;
width:100%;
height:6px;
background:repeating-linear-gradient(
to right,
#fff 0px,
#fff 30px,
transparent 30px,
transparent 60px
);
animation:roadMove 1s linear infinite;
}

.taxi{
position:absolute;
bottom:10px;
width:120px;
animation:taxiMove 8s linear infinite;
}

.bus{
position:absolute;
bottom:10px;
width:150px;
animation:busMove 10s linear infinite;
}

@keyframes taxiMove{
0%{left:-150px;}
100%{left:100%;}
}

@keyframes busMove{
0%{left:-200px;}
100%{left:100%;}
}

@keyframes roadMove{
0%{background-position:0;}
100%{background-position:60px;}
}

/* =========================
RESPONSIVE
========================= */
@media(max-width:768px){

.hero-video video{
display:none;
}

.hero-video{
background:url('/images/hero.jpg') center/cover;
height:400px;
}

}
@media(max-width:768px){

.main-header{
flex-direction:column;
text-align:center;
}

nav{
margin-top:10px;
}

}
/* =========================
GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* =========================
RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Roboto',sans-serif;
background:#f7f7f7;
color:#333;
line-height:1.6;
}

/* =========================
TOP BAR
========================= */

.topbar{
background:#111;
color:#fff;
padding:8px 20px;
display:flex;
justify-content:space-between;
font-size:14px;
}

.topbar a{
color:#ff9800;
text-decoration:none;
margin-right:15px;
}

/* =========================
HEADER
========================= */

.main-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 25px;
background:#fff;
box-shadow:0 3px 15px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:999;
}

.logo a{
font-size:24px;
font-weight:700;
color:#ff9800;
text-decoration:none;
}

nav a{
margin:0 12px;
text-decoration:none;
color:#333;
font-weight:500;
}

nav a:hover{
color:#ff9800;
}

.header-btn a{
margin-left:10px;
padding:8px 16px;
border-radius:5px;
text-decoration:none;
font-size:14px;
}

.call-btn{
background:#ff9800;
color:#fff;
}

.wa-btn{
background:#25D366;
color:#fff;
}

/* =========================
HERO
========================= */

.hero-pro{
position:relative;
height:100vh;
overflow:hidden;
}

/* VIDEO */
.bg-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

/* DARK OVERLAY */
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:-1;
}

/* TEXT */
.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:#fff;
}

/* TEXT ANIMATION */
.animate-text{
opacity:0;
transform:translateY(30px);
animation:fadeUp 1s forwards;
}

.animate-text.delay{
animation-delay:1s;
}

@keyframes fadeUp{
to{
opacity:1;
transform:translateY(0);
}
}

/* BUTTON */
.hero-btn{
display:inline-block;
margin-top:20px;
background:#FFD700;
color:#000;
padding:12px 25px;
text-decoration:none;
border-radius:6px;
font-weight:bold;
transition:0.3s;
}

.hero-btn:hover{
background:#fff;
}

/* MOBILE */
@media(max-width:400px){
.hero-pro{
height:400px;
}

@media(max-width:768px){
.hero-video video{
display:none;
}
.hero-video{
background:url('images/hero.jpg') center/cover;
}
}

/* =========================
ROUTE GRID
========================= */

.cities-img{
padding:40px;
background:#111;
text-align:center;
}

.cities-img h2{
color:#FFD700;
margin-bottom:25px;
}

/* GRID */
.cities-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

/* CARD */
.city-card{
position:relative;
overflow:hidden;
border-radius:12px;
box-shadow:0 0 15px rgba(0,0,0,0.3);
}

/* IMAGE */
.city-card img{
width:100%;
height:220px;
object-fit:cover;
transition:0.5s;
}

/* OVERLAY */
.city-overlay{
position:absolute;
bottom:0;
width:100%;
background:linear-gradient(transparent, rgba(0,0,0,0.9));
color:#fff;
padding:20px;
text-align:center;
}

/* TEXT */
.city-overlay h3{
margin:0;
font-size:20px;
}

/* BUTTON */
.city-overlay a{
display:inline-block;
margin-top:10px;
background:#FFD700;
color:#000;
padding:8px 15px;
text-decoration:none;
border-radius:5px;
font-weight:bold;
}

/* HOVER EFFECT */
.city-card:hover img{
transform:scale(1.1);
}

.city-overlay a:hover{
background:#fff;
}

/* MOBILE */
@media(max-width:768px){
.cities-grid{
grid-template-columns:1fr;
}
}
/* =========================
ROUTE SEO PAGE
========================= */

.route-content{
background:#fff;
max-width:1000px;
margin:40px auto;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.route-content h1{
font-size:30px;
margin-bottom:15px;
}

.route-content h2{
font-size:24px;
margin-top:25px;
margin-bottom:10px;
}

.route-content p{
margin-bottom:15px;
}

.route-content ul{
list-style:none;
}

.route-content li{
background:#f5f5f5;
padding:10px;
margin-bottom:8px;
border-left:4px solid #ff9800;
border-radius:4px;
}

/* =========================
MAP
========================= */

#map{
width:100%;
height:350px;
margin-top:20px;
border-radius:10px;
}

/* =========================
BOOKING FORM
========================= */

.booking-box{
max-width:600px;
margin:40px auto;
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.booking-box h2{
text-align:center;
margin-bottom:20px;
}

.booking-box input,
.booking-box select{
width:100%;
padding:12px;
margin-bottom:15px;
border-radius:5px;
border:1px solid #ccc;
font-size:15px;
}

.booking-box button{
width:100%;
padding:14px;
background:#ff9800;
color:#fff;
border:none;
border-radius:6px;
font-size:18px;
cursor:pointer;
}

.booking-box button:hover{
background:#e68900;
}

/* =========================
WHY CHOOSE
========================= */

.why-choose{
max-width:700px;
margin:30px auto;
list-style:none;
}

.why-choose li{
background:#ff9800;
color:#fff;
padding:12px;
margin-bottom:10px;
border-radius:5px;
text-align:center;
font-weight:500;
}

/* =========================
FOOTER
========================= */

.footer{
background:#1c1c1c;
color:#fff;
padding:40px 20px;
margin-top:40px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.footer-col h3{
color:#ff9800;
margin-bottom:15px;
}

.footer-col ul{
list-style:none;
}

.footer-col li{
margin-bottom:8px;
}

.footer-col a{
color:#fff;
text-decoration:none;
}

.footer-col a:hover{
color:#ff9800;
}

.footer-bottom{
text-align:center;
margin-top:25px;
border-top:1px solid #444;
padding-top:15px;
}

/* =========================
FLOATING BUTTONS
========================= */

.float-call{
position:fixed;
bottom:90px;
right:20px;
background:#ff9800;
color:#fff;
padding:12px 16px;
border-radius:50px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.float-wa{
position:fixed;
bottom:30px;
right:20px;
background:#25D366;
color:#fff;
padding:12px 16px;
border-radius:50px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

.main-header{
flex-direction:column;
}

nav{
margin-top:10px;
}

.hero h2{
font-size:28px;
}

.route-content{
margin:20px;
padding:20px;
}

}
body{
background:orange;
}
/* TARIFF HERO */

.tariff-hero{

background:linear-gradient(90deg,#ff9800,#ff6a00);
color:white;
text-align:center;
padding:60px 20px;

}

.tariff-hero h1{

font-size:38px;
margin-bottom:10px;

}

/* TARIFF SECTION */

.tariff-section{

max-width:1200px;
margin:auto;
padding:40px 20px;

}

.tariff-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;

}

.tariff-card{

background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;

}

.tariff-card h3{

font-size:22px;
margin-bottom:10px;

}

.price{

font-size:28px;
color:#ff9800;
font-weight:bold;
margin-bottom:15px;

}

.tariff-card ul{

list-style:none;
margin-bottom:20px;

}

.tariff-card li{

margin-bottom:8px;

}

.tariff-btn{

display:inline-block;
background:#ff9800;
color:white;
padding:10px 20px;
border-radius:6px;
text-decoration:none;

}

.tariff-btn:hover{

background:#e68900;

}

/* TARIFF INFO */

.tariff-info{

max-width:900px;
margin:40px auto;
padding:20px;
text-align:center;

}

.tariff-info ul{

list-style:none;
margin-top:15px;

}

.tariff-info li{

margin-bottom:8px;

}
.taxi-animation::after{
content:"";
position:absolute;
bottom:0;
width:100%;
height:5px;
background:repeating-linear-gradient(
to right,
#fff 0px,
#fff 20px,
transparent 20px,
transparent 40px
);
}
/* ROAD BACKGROUND */
.road-section{
position:relative;
width:100%;
height:120px;
background:#000;
overflow:hidden;
}

/* ROAD LINE */
.road{
position:absolute;
bottom:0;
width:100%;
height:6px;
background:repeating-linear-gradient(
to right,
#fff 0px,
#fff 30px,
transparent 30px,
transparent 60px
);
animation:roadMove 1s linear infinite;
}

/* TAXI */
.taxi{
position:absolute;
bottom:10px;
width:120px;
left:-150px;
animation:taxiMove 8s linear infinite;
}

/* BUS */
.bus{
position:absolute;
bottom:10px;
width:150px;
left:-200px;
animation:busMove 10s linear infinite;
}

/* ANIMATION */
@keyframes taxiMove{
0%{left:-150px;}
100%{left:100%;}
}

@keyframes busMove{
0%{left:-200px;}
100%{left:100%;}
}

@keyframes roadMove{
0%{background-position:0;}
100%{background-position:60px;}
}
/* NIGHT SKY */
body{
background:#000;
}

/* STARS */
body::before{
content:"";
position:fixed;
width:100%;
height:100%;
background:url('images/stars.png');
opacity:0.3;
z-index:-1;
}

/* MOON */
.moon{
position:absolute;
top:20px;
right:40px;
width:80px;
height:80px;
background:#fff;
border-radius:50%;
box-shadow:0 0 30px #fff;
}
.hero-anim{
height:400px;
color:#fff;
text-align:center;
padding-top:120px;
background:linear-gradient(#000,#111);
position:relative;
overflow:hidden;
}

/* TEXT ANIMATION */
.hero-anim h1{
font-size:40px;
animation:fadeDown 1s ease;
}

.hero-anim p{
animation:fadeUp 2s ease;
}

.hero-btn{
display:inline-block;
margin-top:20px;
background:#FFD700;
color:#000;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
animation:zoomIn 2s ease;
}

/* ANIMATIONS */
@keyframes fadeDown{
from{opacity:0; transform:translateY(-50px);}
to{opacity:1; transform:translateY(0);}
}

@keyframes fadeUp{
from{opacity:0; transform:translateY(50px);}
to{opacity:1; transform:translateY(0);}
}

@keyframes zoomIn{
from{transform:scale(0);}
to{transform:scale(1);}
}
.whatsapp-btn{
display:inline-block;
background:#25D366;
color:#fff;
padding:10px 20px;
text-decoration:none;
border-radius:5px;
}
.live-booking{
position:fixed;
bottom:80px;
left:20px;
background:#000;
color:#FFD700;
padding:10px 15px;
border-radius:5px;
font-size:14px;
display:none;
z-index:999;
}
/* ===== FOOTER ===== */
.city-footer{
background:#111;
color:#fff;
padding-top:40px;
font-family:Arial, sans-serif;
}

/* CONTAINER */
.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
padding:20px 8%;
}

/* COLUMNS */
.footer-col{
flex:1;
min-width:250px;
margin-bottom:20px;
}

/* HEADINGS */
.footer-col h3{
font-size:18px;
margin-bottom:15px;
color:#ff3c00;
}

/* LINKS */
.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
text-decoration:none;
color:#ccc;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#fff;
padding-left:5px;
}

/* TEXT */
.footer-col p{
color:#ccc;
line-height:1.6;
}

/* INPUT */
.footer-col input{
width:100%;
padding:10px;
border:none;
outline:none;
margin-bottom:10px;
border-radius:5px;
}

/* BUTTON */
.footer-col button{
background:#ff3c00;
color:#fff;
border:none;
padding:10px 15px;
border-radius:5px;
cursor:pointer;
transition:0.3s;
}

.footer-col button:hover{
background:#e63600;
}

/* BOTTOM */
.footer-bottom{
text-align:center;
padding:15px;
background:#000;
font-size:14px;
color:#aaa;
}

/* ===== FLOAT BUTTONS ===== */
.call-btn, .wa-btn{
position:fixed;
right:15px;
width:50px;
height:50px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:22px;
text-decoration:none;
z-index:999;
}

/* CALL BUTTON */
.call-btn{
bottom:80px;
background:#007bff;
}

/* WHATSAPP BUTTON */
.wa-btn{
bottom:20px;
background:#25D366;
}

/* HOVER */
.call-btn:hover{
background:#0056b3;
}

.wa-btn:hover{
background:#1ebe5d;
}

/* ===== ROAD ANIMATION ===== */
.road-section{
position:relative;
width:100%;
height:100px;
overflow:hidden;
background:#333;
}

.road{
position:absolute;
width:200%;
height:4px;
background:#fff;
top:50%;
left:0;
animation:roadMove 2s linear infinite;
}

@keyframes roadMove{
from{transform:translateX(0);}
to{transform:translateX(-50%);}
}

/* MOVING VEHICLES */
.taxi{
position:absolute;
bottom:10px;
left:-100px;
width:80px;
animation:moveTaxi 8s linear infinite;
}

.bus{
position:absolute;
bottom:40px;
right:-120px;
width:100px;
animation:moveBus 10s linear infinite;
}

@keyframes moveTaxi{
from{left:-100px;}
to{left:110%;}
}

@keyframes moveBus{
from{right:-120px;}
to{right:110%;}
}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width:768px){

.footer-container{
flex-direction:column;
text-align:center;
}

.footer-col{
margin-bottom:25px;
}

.call-btn, .wa-btn{
width:45px;
height:45px;
font-size:20px;
}

}
