*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
line-height:1.6;
color:#333;
background:#fff;
}

a{
text-decoration:none;
color:inherit;
}

ul{
list-style:none;
}

/* CONTAINER */

.container{
width:90%;
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}

/* HEADER */

.header{
background:#fff;
color:#000;
padding:15px 0;
position:fixed;
top:0;
width:100%;
z-index:999;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo{
font-size:22px;
font-weight:bold;
color:#000;
}

.logo a{
display:flex;
align-items:center;
}

.logo img{
height:45px;
width:auto;
}

.nav ul{
display:flex;
gap:30px;
}

.nav a{
color:#000;
font-weight:600;
font-size:14px;
letter-spacing:0.5px;
}

.call-btn a{
background:#fbbd23;
padding:12px 25px;
border-radius:25px;
font-weight:bold;
color:#000;
font-size:15px;
}

.hamburger{
display:none;
font-size:22px;
cursor:pointer;
}

/* INFO BAR */

.info-bar{
margin-top:62px;
background:#fff;
padding:10px 0;
text-align:center;
}

.info-container p{
font-size:14px;
color:#333;
margin-bottom:2px;
}

.info-container h1{
font-size:32px;
font-weight:700;
margin-bottom:2px;
animation:colorCycle 8s linear infinite;
}

@keyframes colorCycle{
0%{color:#e63946;}
20%{color:#f77f00;}
40%{color:#2a9d8f;}
60%{color:#264653;}
80%{color:#7209b7;}
100%{color:#e63946;}
}

.info-container .steps{
font-size:14px;
color:#666;
}

/* HERO */

.hero{
min-height:600px;
background:linear-gradient(135deg, rgba(230,245,255,1) 0%, rgba(255,255,255,1) 100%);
position:relative;
padding:0;
overflow:hidden;
}

.hero-wrapper{
width:100%;
max-width:1400px;
margin:0 auto;
position:relative;
height:600px;
}

.hero-image{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
}

.hero-image img{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
}

.booking-box{
position:absolute;
left:5%;
top:50%;
transform:translateY(-50%);
z-index:10;
background:linear-gradient(145deg, #1a1a1a 0%, #000 100%);
padding:0;
border-radius:15px;
box-shadow:0 20px 60px rgba(0,0,0,0.5);
width:100%;
max-width:380px;
overflow:hidden;
border:1px solid rgba(251,189,35,0.2);
}

.tabs{
display:flex;
background:#000;
border-bottom:2px solid #222;
}

.tab{
flex:1;
padding:16px;
background:transparent;
color:#999;
border:none;
cursor:pointer;
font-size:15px;
font-weight:600;
border-bottom:3px solid transparent;
transition:all 0.3s ease;
position:relative;
}

.tab:hover{
color:#fbbd23;
background:rgba(251,189,35,0.05);
}

.tab.active{
background:rgba(251,189,35,0.1);
color:#fbbd23;
border-bottom:3px solid #fbbd23;
}

.tab i{
margin-right:8px;
font-size:16px;
}

.tab-content{
display:none;
padding:25px;
background:linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
}

.tab-content.active{
display:block;
}

.sub-tabs{
display:flex;
gap:10px;
margin-bottom:20px;
}

.sub-tab{
flex:1;
padding:12px;
background:#222;
color:#fff;
border:2px solid #333;
cursor:pointer;
font-size:14px;
font-weight:600;
border-radius:8px;
transition:all 0.3s ease;
}

.sub-tab:hover{
background:#333;
border-color:#fbbd23;
transform:translateY(-2px);
}

.sub-tab.active{
background:#fbbd23;
color:#000;
border-color:#fbbd23;
box-shadow:0 4px 15px rgba(251,189,35,0.3);
}

.booking-box input,
.booking-box select{
width:100%;
padding:14px;
margin-bottom:15px;
border:2px solid #333;
border-radius:8px;
font-size:15px;
background:#fff;
color:#000;
transition:all 0.3s ease;
position:relative;
}

.booking-box input[type="time"]{
padding:14px 10px;
}

.booking-box input[type="date"]{
padding:14px 10px;
}

.booking-box input:focus,
.booking-box select:focus{
outline:none;
border-color:#fbbd23;
box-shadow:0 0 0 3px rgba(251,189,35,0.1);
transform:translateY(-2px);
}

.booking-box input::placeholder{
color:#999;
}

.input-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
}

.input-row input{
margin-bottom:15px;
width:100%;
}

.search-btn{
width:100%;
padding:16px;
background:linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
border:none;
font-weight:bold;
border-radius:8px;
cursor:pointer;
font-size:16px;
transition:all 0.3s ease;
color:#fff;
text-transform:uppercase;
letter-spacing:1px;
box-shadow:0 6px 20px rgba(37,211,102,0.4);
display:flex;
align-items:center;
justify-content:center;
gap:10px;
text-decoration:none;
}

.search-btn:hover{
background:linear-gradient(135deg, #20ba5a 0%, #1fa855 100%);
transform:translateY(-3px);
box-shadow:0 8px 25px rgba(37,211,102,0.6);
}

.search-btn:active{
transform:translateY(-1px);
}

.search-btn i{
font-size:20px;
}

/* WHATSAPP FLOATING BUTTON */

.whatsapp-float{
position:fixed;
bottom:85px;
right:30px;
background:#25d366;
color:#fff;
padding:15px 25px;
border-radius:50px;
box-shadow:0 4px 15px rgba(37,211,102,0.4);
z-index:1000;
font-weight:600;
font-size:16px;
display:flex;
align-items:center;
gap:10px;
transition:all 0.3s;
}

.whatsapp-float:hover{
background:#20ba5a;
transform:scale(1.05);
}

.whatsapp-float i{
font-size:24px;
}

/* PWA INSTALL BUTTON */

.pwa-install-btn{
position:fixed;
bottom:140px;
right:30px;
background:linear-gradient(135deg,#0a4cff,#0038d1);
color:#fff;
border:none;
padding:12px 22px;
border-radius:50px;
font-size:15px;
font-weight:700;
cursor:pointer;
z-index:1000;
display:flex;
align-items:center;
gap:8px;
box-shadow:0 4px 20px rgba(10,76,255,0.4);
transition:all 0.3s;
animation:pwaGlow 2s ease-in-out infinite;
}

.pwa-install-btn:hover{
transform:scale(1.05);
box-shadow:0 6px 25px rgba(10,76,255,0.6);
}

.pwa-install-btn i{
font-size:18px;
}

@keyframes pwaGlow{
0%,100%{box-shadow:0 4px 20px rgba(10,76,255,0.4)}
50%{box-shadow:0 4px 30px rgba(10,76,255,0.7)}
}

/* SCROLL TO TOP */

.scroll-top{
position:fixed;
bottom:30px;
right:30px;
width:45px;
height:45px;
background:#fbbd23;
color:#000;
border-radius:50%;
display:none;
align-items:center;
justify-content:center;
font-size:18px;
cursor:pointer;
box-shadow:0 4px 15px rgba(0,0,0,0.2);
z-index:999;
transition:all 0.3s;
border:none;
}

.scroll-top:hover{
background:#e6a800;
transform:scale(1.1);
}

.scroll-top.show{
display:flex;
}

/* ABOUT */

.about{
padding:80px 0;
background:#fff;
}

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
width:90%;
max-width:1200px;
margin:auto;
}

.about-img img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.about-tag{
display:inline-block;
background:#fff8e1;
color:#e6a800;
padding:6px 16px;
border-radius:20px;
font-size:13px;
font-weight:700;
letter-spacing:0.5px;
margin-bottom:12px;
}

.about-text h2{
font-size:28px;
margin-bottom:18px;
color:#000;
line-height:1.3;
}

.about-text p{
margin-bottom:15px;
color:#555;
font-size:15px;
line-height:1.8;
}

.about-features{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
margin:25px 0;
}

.about-feature{
display:flex;
align-items:flex-start;
gap:12px;
background:#f9f9f9;
padding:14px;
border-radius:10px;
transition:all 0.3s;
}

.about-feature:hover{
background:#fff8e1;
transform:translateY(-2px);
}

.about-feature i{
font-size:22px;
color:#fbbd23;
margin-top:2px;
}

.about-feature strong{
display:block;
font-size:14px;
color:#000;
margin-bottom:2px;
}

.about-feature span{
font-size:12px;
color:#777;
}

.btn{
display:inline-block;
background:#fbbd23;
padding:12px 28px;
border-radius:25px;
margin-top:10px;
font-weight:600;
font-size:15px;
color:#000;
transition:all 0.3s;
}

.btn:hover{
background:#e6a800;
transform:translateY(-2px);
}

/* CARS */

/* TEMPO TRAVELLER SECTION */

.tempo-section{
padding:80px 0;
background:#f7f7f7;
}

.tempo-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
width:90%;
max-width:1200px;
margin:auto;
}

.tempo-text h2{
font-size:28px;
margin-bottom:15px;
color:#000;
line-height:1.3;
}

.tempo-text p{
color:#555;
font-size:15px;
line-height:1.8;
margin-bottom:20px;
}

.tempo-highlights{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;
margin-bottom:25px;
}

.tempo-point{
display:flex;
align-items:center;
gap:10px;
font-size:14px;
font-weight:600;
color:#333;
}

.tempo-point i{
color:#fbbd23;
font-size:18px;
}

.tempo-book-btn{
display:inline-flex;
align-items:center;
gap:10px;
background:#25d366;
color:#fff;
padding:14px 30px;
border-radius:25px;
font-weight:700;
font-size:16px;
transition:all 0.3s;
}

.tempo-book-btn:hover{
background:#20ba5a;
transform:translateY(-2px);
box-shadow:0 6px 20px rgba(37,211,102,0.4);
}

.tempo-book-btn i{
font-size:20px;
}

.tempo-img img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* URBANIA SECTION */

.urbania-section{
padding:80px 0;
background:#fff;
}

.urbania-img img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* RENTAL CAR SECTION */

.rental-section{
padding:80px 0;
background:#f7f7f7;
}

.rental-img img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* CARS SECTION */

.cars{
padding:70px 0;
background:#f7f7f7;
text-align:center;
}

.cars h2{
font-size:32px;
margin-bottom:10px;
}

.car-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
width:90%;
max-width:1200px;
margin:auto;
margin-top:40px;
}

.car-card{
background:#fff;
padding:20px;
border-radius:10px;
box-shadow:0 3px 15px rgba(0,0,0,0.1);
transition:all 0.3s ease;
overflow:hidden;
}

.car-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.car-card img{
width:100%;
height:auto;
border-radius:8px;
margin-bottom:10px;
}

.car-card h3{
font-size:18px;
margin-bottom:5px;
color:#000;
}

.car-card p{
font-size:16px;
font-weight:700;
color:#fbbd23;
margin-bottom:10px;
}

.car-book-btn{
display:inline-flex;
align-items:center;
gap:8px;
background:#25d366;
color:#fff;
padding:10px 22px;
border-radius:25px;
font-weight:600;
font-size:14px;
transition:all 0.3s;
}

.car-book-btn:hover{
background:#20ba5a;
transform:scale(1.05);
}

.car-book-btn i{
font-size:18px;
}

/* SERVICES */

.services{
padding:70px 0;
text-align:center;
}

.services h2{
font-size:32px;
margin-bottom:10px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
width:90%;
max-width:1200px;
margin:auto;
margin-top:40px;
}

.service-card{
background:#fff;
border-radius:10px;
box-shadow:0 3px 15px rgba(0,0,0,0.1);
overflow:hidden;
transition:all 0.3s ease;
text-align:center;
}

.service-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.service-card img{
width:100%;
height:auto;
}

.service-card h3{
font-size:16px;
color:#000;
margin:12px 0 5px;
padding:0 10px;
}

.service-card p{
font-size:13px;
color:#666;
padding:0 10px;
margin-bottom:12px;
}

.ask-fare-btn{
display:inline-flex;
align-items:center;
gap:8px;
background:#25d366;
color:#fff;
padding:10px 20px;
border-radius:25px;
font-weight:600;
font-size:14px;
transition:all 0.3s;
margin-bottom:15px;
}

.ask-fare-btn:hover{
background:#20ba5a;
transform:scale(1.05);
}

.ask-fare-btn i{
font-size:18px;
}

.service{
background:#f7f7f7;
padding:30px;
border-radius:6px;
}

/* WHY CHOOSE US */

.why-choose{
padding:80px 0 40px;
background:#fff8e1;
text-align:center;
}

.why-choose h2{
font-size:32px;
color:#000;
margin-bottom:40px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
width:90%;
max-width:1200px;
margin:auto;
}

.why-card{
background:#fff;
padding:30px 20px;
border-radius:12px;
transition:all 0.3s;
border:1px solid #f0d060;
}

.why-card:hover{
transform:translateY(-5px);
border-color:#fbbd23;
box-shadow:0 8px 25px rgba(251,189,35,0.2);
}

.why-card i{
font-size:32px;
color:#e6a800;
margin-bottom:15px;
}

.why-card h3{
font-size:17px;
color:#000;
margin-bottom:8px;
}

.why-card p{
font-size:13px;
color:#555;
line-height:1.6;
}

/* FAQ */

.faq{
padding:40px 0 80px;
background:#fff8e1;
}

.faq h2{
font-size:32px;
text-align:center;
color:#000;
margin-bottom:40px;
}

.faq-grid{
width:90%;
max-width:900px;
margin:auto;
display:grid;
gap:15px;
}

.faq-item{
background:#fff;
border-radius:10px;
padding:18px 25px;
border-left:4px solid #fbbd23;
box-shadow:0 2px 10px rgba(0,0,0,0.06);
transition:all 0.3s;
cursor:pointer;
}

.faq-item:hover{
box-shadow:0 4px 15px rgba(251,189,35,0.2);
}

.faq-q{
font-size:16px;
font-weight:700;
color:#000;
display:flex;
align-items:center;
justify-content:space-between;
gap:10px;
}

.faq-q i{
color:#fbbd23;
font-size:18px;
transition:transform 0.3s;
}

.faq-item.active .faq-q i{
transform:rotate(45deg);
}

.faq-item p{
font-size:14px;
color:#555;
line-height:1.7;
margin:0;
max-height:0;
overflow:hidden;
transition:max-height 0.3s ease, padding 0.3s ease;
padding-top:0;
}

.faq-item.active p{
max-height:200px;
padding-top:12px;
}

/* TESTIMONIALS */

.testimonials{
padding:80px 0;
background:#fff;
text-align:center;
}

.testimonials h2{
font-size:32px;
color:#000;
margin-bottom:40px;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
width:90%;
max-width:1200px;
margin:auto;
}

.testimonial-slider{
width:90%;
max-width:1200px;
margin:auto;
overflow:hidden;
position:relative;
}

.testi-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
z-index:10;
background:#fbbd23;
color:#000;
border:none;
width:40px;
height:40px;
border-radius:50%;
cursor:pointer;
font-size:18px;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 3px 10px rgba(0,0,0,0.2);
transition:all 0.3s;
}

.testi-arrow:hover{
background:#e6a800;
transform:translateY(-50%) scale(1.1);
}

.testi-prev{
left:0;
}

.testi-next{
right:0;
}

.testimonial-track{
display:flex;
gap:25px;
}

.testimonial-card{
min-width:280px;
max-width:280px;
flex-shrink:0;
background:#f9f9f9;
padding:25px;
border-radius:12px;
text-align:left;
border-top:4px solid #fbbd23;
transition:all 0.3s;
}

.testimonial-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.testimonial-stars{
margin-bottom:12px;
}

.testimonial-stars svg{
color:#fbbd23 !important;
font-size:16px;
}

.testimonial-stars .fa-star.empty-star svg,
.testimonial-stars i.far{
color:#ddd !important;
}

.testimonial-stars i{
color:#fbbd23 !important;
font-size:16px;
}

.testimonial-stars svg path{
fill:#fbbd23 !important;
}

.testimonial-card p{
font-size:14px;
color:#555;
line-height:1.7;
margin-bottom:18px;
font-style:italic;
}

.testimonial-author{
display:flex;
align-items:center;
gap:12px;
}

.testimonial-author > i{
font-size:36px;
color:#fbbd23;
}

.testimonial-author strong{
display:block;
font-size:15px;
color:#000;
}

.testimonial-author span{
font-size:12px;
color:#888;
}

/* CONTACT INFO CARDS */

.ct-cards-section{
padding:60px 0;
background:#fff;
}

.ct-cards-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
width:90%;
max-width:1200px;
margin:auto;
}

.ct-card{
background:#fff;
padding:30px 20px;
border-radius:14px;
text-align:center;
border:1px solid #eee;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
transition:all 0.3s;
}

.ct-card:hover{
transform:translateY(-6px);
border-color:#fbbd23;
box-shadow:0 10px 30px rgba(251,189,35,0.15);
}

.ct-card-icon{
width:60px;
height:60px;
background:linear-gradient(135deg,#fff8e1,#fbbd23);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 15px;
}

.ct-card-icon i{
font-size:24px;
color:#000;
}

.ct-card h3{
font-size:17px;
color:#000;
margin-bottom:6px;
}

.ct-card p{
font-size:13px;
color:#888;
margin-bottom:10px;
}

.ct-card a{
font-size:14px;
color:#333;
font-weight:600;
word-break:break-word;
transition:color 0.3s;
}

.ct-card a:hover{
color:#fbbd23;
}

/* CONTACT FORM SECTION */

.ct-form-section{
padding:70px 0;
background:#f7f7f7;
}

.ct-form-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:start;
width:90%;
max-width:1200px;
margin:auto;
}

.ct-form-left h2{
font-size:28px;
color:#000;
margin:10px 0 15px;
line-height:1.3;
}

.ct-form-left p{
color:#555;
font-size:15px;
line-height:1.8;
margin-bottom:25px;
}

.ct-form-features{
display:grid;
gap:14px;
}

.ct-form-feat{
display:flex;
align-items:center;
gap:10px;
font-size:15px;
font-weight:600;
color:#333;
}

.ct-form-feat i{
color:#25d366;
font-size:18px;
}

.ct-form-right{
background:#fff;
padding:35px;
border-radius:16px;
box-shadow:0 8px 30px rgba(0,0,0,0.08);
border-top:4px solid #fbbd23;
}

.ct-input-group{
margin-bottom:20px;
}

.ct-input-group label{
display:block;
font-size:14px;
font-weight:700;
color:#333;
margin-bottom:8px;
}

.ct-input-group label i{
color:#fbbd23;
margin-right:6px;
}

.ct-char-count{
font-weight:400;
font-size:12px;
color:#999;
}

.ct-input-group input,
.ct-input-group textarea{
width:100%;
padding:14px 16px;
border:2px solid #eee;
border-radius:10px;
font-size:15px;
color:#333;
background:#fafafa;
transition:all 0.3s;
font-family:Arial,Helvetica,sans-serif;
resize:none;
}

.ct-input-group input:focus,
.ct-input-group textarea:focus{
outline:none;
border-color:#fbbd23;
background:#fff;
box-shadow:0 0 0 3px rgba(251,189,35,0.1);
}

.ct-input-group input::placeholder,
.ct-input-group textarea::placeholder{
color:#bbb;
}

.ct-submit-btn{
width:100%;
padding:16px;
background:linear-gradient(135deg,#25d366,#20ba5a);
color:#fff;
border:none;
border-radius:10px;
font-size:17px;
font-weight:700;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
transition:all 0.3s;
box-shadow:0 6px 20px rgba(37,211,102,0.3);
}

.ct-submit-btn:hover{
background:linear-gradient(135deg,#20ba5a,#1fa855);
transform:translateY(-3px);
box-shadow:0 8px 25px rgba(37,211,102,0.5);
}

.ct-submit-btn i{
font-size:22px;
}

/* DRIVER PAGE - WHY JOIN */

.drv-why-section{
padding:70px 0;
background:#fff;
text-align:center;
}

.drv-why-section h2{
font-size:32px;
color:#000;
margin-bottom:40px;
}

.drv-why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
width:90%;
max-width:1200px;
margin:auto;
}

.drv-why-card{
background:#fff;
padding:30px 20px;
border-radius:14px;
border:1px solid #eee;
box-shadow:0 4px 20px rgba(0,0,0,0.05);
transition:all 0.3s;
text-align:center;
}

.drv-why-card:hover{
transform:translateY(-6px);
border-color:#fbbd23;
box-shadow:0 10px 30px rgba(251,189,35,0.15);
}

.drv-why-icon{
width:60px;
height:60px;
background:linear-gradient(135deg,#fff8e1,#fbbd23);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 15px;
}

.drv-why-icon i{
font-size:24px;
color:#000;
}

.drv-why-card h3{
font-size:17px;
color:#000;
margin-bottom:8px;
}

.drv-why-card p{
font-size:13px;
color:#555;
line-height:1.6;
}

/* DRIVER PAGE - HOW IT WORKS */

.drv-steps-section{
padding:70px 0;
background:#fff8e1;
text-align:center;
}

.drv-steps-section h2{
font-size:32px;
color:#000;
margin-bottom:40px;
}

.drv-steps-grid{
display:flex;
align-items:center;
justify-content:center;
gap:30px;
width:90%;
max-width:900px;
margin:auto;
}

.drv-step{
background:#fff;
padding:30px 25px;
border-radius:14px;
text-align:center;
flex:1;
position:relative;
border:1px solid #f0d060;
box-shadow:0 4px 15px rgba(0,0,0,0.05);
transition:all 0.3s;
}

.drv-step:hover{
transform:translateY(-5px);
box-shadow:0 8px 25px rgba(251,189,35,0.2);
}

.drv-step-num{
position:absolute;
top:-15px;
left:50%;
transform:translateX(-50%);
width:32px;
height:32px;
background:#fbbd23;
color:#000;
border-radius:50%;
font-size:15px;
font-weight:800;
display:flex;
align-items:center;
justify-content:center;
}

.drv-step-icon{
width:55px;
height:55px;
background:linear-gradient(135deg,#fff8e1,#fbbd23);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:10px auto 15px;
}

.drv-step-icon i{
font-size:22px;
color:#000;
}

.drv-step h3{
font-size:16px;
color:#000;
margin-bottom:6px;
}

.drv-step p{
font-size:13px;
color:#555;
line-height:1.5;
}

.drv-step-arrow{
font-size:22px;
color:#fbbd23;
flex-shrink:0;
}

/* DRIVER FORM SELECT STYLING */

.ct-input-group select{
width:100%;
padding:14px 16px;
border:2px solid #eee;
border-radius:10px;
font-size:15px;
color:#333;
background:#fafafa;
transition:all 0.3s;
font-family:Arial,Helvetica,sans-serif;
cursor:pointer;
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
background-repeat:no-repeat;
background-position:right 16px center;
}

.ct-input-group select:focus{
outline:none;
border-color:#fbbd23;
background-color:#fff;
box-shadow:0 0 0 3px rgba(251,189,35,0.1);
}

/* ABOUT PAGE - MISSION VISION VALUES */

.abt-mv-section{
padding:70px 0;
background:#f7f7f7;
}

.abt-mv-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
width:90%;
max-width:1200px;
margin:auto;
}

.abt-mv-card{
background:#fff;
padding:35px 25px;
border-radius:14px;
text-align:center;
border-top:4px solid #fbbd23;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
transition:all 0.3s;
}

.abt-mv-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 30px rgba(251,189,35,0.15);
}

.abt-mv-icon{
width:60px;
height:60px;
background:linear-gradient(135deg,#fff8e1,#fbbd23);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 18px;
}

.abt-mv-icon i{
font-size:24px;
color:#000;
}

.abt-mv-card h3{
font-size:20px;
color:#000;
margin-bottom:10px;
}

.abt-mv-card p{
font-size:14px;
color:#555;
line-height:1.7;
}

/* ABOUT PAGE - STATS COUNTER */

.abt-stats-section{
padding:60px 0;
background:linear-gradient(135deg,#1a1a1a,#000);
text-align:center;
}

.abt-stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
width:90%;
max-width:1200px;
margin:auto;
}

.abt-stat{
padding:30px 15px;
}

.abt-stat-icon{
width:55px;
height:55px;
background:rgba(251,189,35,0.15);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 15px;
}

.abt-stat-icon i{
font-size:24px;
color:#fbbd23;
}

.abt-stat h3{
font-size:32px;
color:#fbbd23;
font-weight:800;
margin-bottom:5px;
}

.abt-stat p{
font-size:14px;
color:#ccc;
}

/* ABOUT PAGE - FLEET */

.abt-fleet-section{
padding:70px 0;
background:#fff;
text-align:center;
}

.abt-fleet-section h2{
font-size:32px;
color:#000;
margin-bottom:40px;
}

.abt-fleet-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
width:90%;
max-width:1200px;
margin:auto;
}

.abt-fleet-card{
background:#fff;
padding:20px;
border-radius:12px;
border:1px solid #eee;
box-shadow:0 3px 15px rgba(0,0,0,0.06);
transition:all 0.3s;
overflow:hidden;
}

.abt-fleet-card:hover{
transform:translateY(-5px);
border-color:#fbbd23;
box-shadow:0 8px 25px rgba(251,189,35,0.15);
}

.abt-fleet-card img{
width:100%;
height:auto;
border-radius:8px;
margin-bottom:12px;
}

.abt-fleet-card h3{
font-size:17px;
color:#000;
margin-bottom:4px;
}

.abt-fleet-card p{
font-size:13px;
color:#888;
}

/* ABOUT PAGE - CTA */

.abt-cta-section{
padding:60px 0;
background:linear-gradient(135deg,#fff8e1,#fbbd23);
text-align:center;
}

.abt-cta-content h2{
font-size:30px;
color:#000;
margin-bottom:10px;
}

.abt-cta-content p{
font-size:16px;
color:#333;
margin-bottom:25px;
}

.abt-cta-btns{
display:flex;
align-items:center;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.abt-cta-call{
display:inline-flex;
align-items:center;
gap:8px;
background:#000;
color:#fff;
padding:14px 30px;
border-radius:25px;
font-weight:700;
font-size:16px;
transition:all 0.3s;
}

.abt-cta-call:hover{
background:#222;
transform:translateY(-2px);
box-shadow:0 6px 20px rgba(0,0,0,0.3);
}

.abt-cta-wa{
display:inline-flex;
align-items:center;
gap:8px;
background:#25d366;
color:#fff;
padding:14px 30px;
border-radius:25px;
font-weight:700;
font-size:16px;
transition:all 0.3s;
}

.abt-cta-wa:hover{
background:#20ba5a;
transform:translateY(-2px);
box-shadow:0 6px 20px rgba(37,211,102,0.4);
}

/* FOOTER */

.footer{
background:#000;
color:#fff;
padding:0;
}

/* Popular Routes Section */
.popular-routes{
background:url('../images/with Family.webp') center center/cover no-repeat fixed;
padding:50px 0;
text-align:center;
border-bottom:1px solid #333;
position:relative;
background-size:100% 100%;
}

.popular-routes::before{
content:'';
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:rgba(0,0,0,0.65);
}

.popular-routes h2{
color:#fff;
font-size:32px;
margin-bottom:40px;
font-weight:700;
position:relative;
z-index:1;
}

.routes-container{
width:90%;
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:20px;
position:relative;
z-index:1;
}

.route-column{
display:flex;
flex-direction:column;
gap:15px;
}

.route-column a{
color:#ccc;
font-size:14px;
text-align:left;
transition:all 0.3s;
padding:8px 0;
border-bottom:1px solid #2a2a2a;
}

.route-column a:hover{
color:#fbbd23;
padding-left:10px;
}

.footer-info{
background:#0a0a0a;
padding:20px 0;
text-align:center;
border-top:1px solid #333;
}

.footer-info p{
color:#ccc;
font-size:14px;
margin:0;
}

.footer-bottom{
text-align:center;
padding:15px 0;
font-size:14px;
background:#050505;
}

.footer-bottom a{
animation:colorCycle 15s linear infinite;
}

/* PAGE HERO */

.page-hero{
background:#f7f7f7;
text-align:center;
padding:50px 0;
}

/* MAP */

.map iframe{
width:100%;
}

/* MOBILE RESPONSIVE */

@media (max-width:900px){

.routes-container{
grid-template-columns:repeat(2, 1fr);
}

.info-container h1{
font-size:28px;
}

.info-container p{
font-size:16px;
}



.about-container{
grid-template-columns:1fr;
}

.about-features{
grid-template-columns:1fr 1fr;
}

.tempo-container{
grid-template-columns:1fr;
}

.tempo-text{
order:2;
}

.tempo-img{
order:1;
}

.urbania-img{
order:1;
}

.rental-img{
order:1;
}

.car-grid{
grid-template-columns:1fr;
}

.service-grid{
grid-template-columns:1fr;
}

.why-grid{
grid-template-columns:1fr;
}

.testimonial-grid{
grid-template-columns:repeat(2,1fr);
}

.contact-container{
grid-template-columns:1fr;
}

.ct-cards-grid{
grid-template-columns:repeat(2,1fr);
}

.ct-form-container{
grid-template-columns:1fr;
}

.drv-why-grid{
grid-template-columns:1fr;
}

.drv-steps-grid{
flex-direction:column;
}

.drv-step-arrow{
transform:rotate(90deg);
}

.abt-mv-grid{
grid-template-columns:1fr;
}

.abt-stats-grid{
grid-template-columns:repeat(2,1fr);
}

.abt-fleet-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-container{
grid-template-columns:1fr;
}

}

/* MOBILE */

@media (max-width:768px){

.nav{
display:none;
position:absolute;
top:70px;
left:0;
background:#fff;
width:100%;
padding:20px;
box-shadow:0 5px 10px rgba(0,0,0,0.1);
}

.nav ul{
flex-direction:column;
gap:15px;
}

.hamburger{
display:block;
}

.routes-container{
grid-template-columns:1fr;
gap:0;
}

.route-column{
gap:0;
}

.route-column a{
font-size:13px;
padding:6px 0;
}

.popular-routes{
padding:30px 0;
}

.popular-routes h2{
font-size:24px;
margin-bottom:20px;
}

.info-bar{
padding:20px 0;
}

.info-container h1{
font-size:24px;
}

.info-container p{
font-size:14px;
}

.hero-wrapper{
height:auto;
}

.hero-image{
position:relative;
height:250px;
display:none;
}

.booking-box{
position:relative;
left:0;
top:0;
transform:none;
margin:20px auto;
max-width:95%;
}

.tabs{
flex-direction:column;
}

.sub-tabs{
flex-direction:column;
}

.input-row{
grid-template-columns:1fr;
}

.whatsapp-float{
padding:12px 20px;
font-size:14px;
bottom:70px;
right:20px;
}

.whatsapp-float i{
font-size:20px;
}

.scroll-top{
bottom:18px;
right:20px;
width:42px;
height:42px;
font-size:16px;
}

.pwa-install-btn{
bottom:120px;
right:20px;
padding:10px 18px;
font-size:13px;
}

.ct-cards-grid{
grid-template-columns:1fr;
}

.drv-why-grid{
grid-template-columns:1fr;
}

.abt-stats-grid{
grid-template-columns:1fr 1fr;
gap:10px;
}

.abt-stat h3{
font-size:26px;
}

.abt-fleet-grid{
grid-template-columns:1fr;
}

.abt-cta-content h2{
font-size:24px;
}

.abt-cta-btns{
flex-direction:column;
}

.footer-sep{
display:none;
}

.footer-dev{
display:block;
}

}