/* ================= RESET ================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:#f4f7fb;
color:#333;
line-height:1.6;
}

/* ================= CONTAINER ================= */
.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* ================= TOP BAR ================= */
.top-bar{
background:linear-gradient(135deg,#004f9e,#0066cc);
color:#fff;
padding: 30px 0;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.top-bar .container{
display:flex;
justify-content:space-between;
align-items:flex-start;
}

.social-wrapper{
align-self:flex-start;
padding-top:0;
}

.contact-wrapper{
align-self:flex-end;
padding-bottom:5px;
}

.social-links{
display:flex;
gap:10px;
}

.social-links a{
width:30px;
height:30px;
background:#fff;
color:#003d7a;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
transition:0.3s;
font-size:14px;
}

.social-links a:nth-child(1){
color:#1877f2;
}

.social-links a:nth-child(2){
color:#1da1f2;
}

.social-links a:nth-child(3){
color:#0077b5;
}

.social-links a:nth-child(4){
color:#ff0000;
}

.social-links a:hover{
background:#ff5722;
color:#fff;
transform:scale(1.1);
}

.top-contact{
display:flex;
gap:35px;
}

.contact-item{
display:flex;
align-items:center;
gap:8px;
font-size:14px;
font-weight:500;
padding:6px 15px;
background:linear-gradient(135deg,rgba(255,255,255,0.15),rgba(255,255,255,0.05));
border-radius:25px;
transition:0.3s;
text-decoration:none;
color:#fff;
border:1px solid rgba(255,255,255,0.2);
}

.contact-item:hover{
background:linear-gradient(135deg,rgba(255,255,255,0.25),rgba(255,255,255,0.15));
transform:translateY(-2px);
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.contact-item i{
width:30px;
height:30px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:13px;
}

.contact-item .fa-envelope{
color:#ff6b6b;
}

.contact-item .fa-phone{
color:#25D366;
}

.phone-icon{
animation:phoneRing 2s infinite;
}

@keyframes phoneRing{
0%,100%{transform:rotate(0deg);}
10%,30%{transform:rotate(-15deg);}
20%,40%{transform:rotate(15deg);}
50%{transform:rotate(0deg);}
}

/* ================= NAVBAR ================= */
header{
position:absolute;
top:60px;
left:0;
right:0;
z-index:999;
padding:20px 0;
transition:all 0.3s ease;
}

header.sticky{
position:fixed;
top:0;
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
padding:10px 0;
}

header.sticky .nav-wrapper{
max-width:100%;
width:100%;
border-radius:0;
padding:10px 5%;
}

.nav-wrapper{
max-width:1200px;
margin:0 auto;
width:90%;
background:#fff;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
padding:10px 40px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
display:flex;
align-items:center;
gap:12px;
margin-left:-20px;
}

.logo img{
height:60px;
width:auto;
object-fit:contain;
}

.logo-text h2{
color:#ff9800;
font-size:20px;
font-weight:700;
margin:0;
line-height:1;
}

.logo-text span{
color:#003d7a;
font-size:11px;
font-weight:500;
letter-spacing:1px;
}

nav ul{
list-style:none;
display:flex;
gap:30px;
margin:0;
padding:0;
}

nav ul li{
position:relative;
}

nav ul li a{
text-decoration:none;
color:#333;
font-weight:500;
font-size:15px;
transition:0.3s;
}

nav ul li a:hover{
color:#0099ff;
}

nav ul li a i{
font-size:10px;
margin-left:4px;
}

.dropdown{
position:absolute;
top:100%;
left:0;
background:#fff;
min-width:200px;
box-shadow:0 5px 20px rgba(0,0,0,0.15);
border-radius:8px;
padding:10px 0;
display:none;
z-index:1000;
margin-top:0;
}

nav ul li:hover .dropdown{
display:block;
}

.dropdown::before{
content:'';
position:absolute;
top:-10px;
left:0;
width:100%;
height:10px;
background:transparent;
}

.dropdown a{
display:block;
padding:10px 20px;
color:#333;
text-decoration:none;
transition:0.3s;
}

.dropdown a:hover{
background:#f0f8ff;
color:#0099ff;
padding-left:25px;
}

.contact-btn{
background:#0099ff;
color:#fff;
padding:12px 28px;
border-radius:30px;
text-decoration:none;
font-weight:600;
font-size:14px;
transition:0.3s;
display:flex;
align-items:center;
gap:8px;
}

.contact-btn:hover{
background:#0077cc;
transform:translateY(-2px);
box-shadow:0 5px 15px rgba(0,153,255,0.3);
}

/* ================= HERO ================= */
.hero{
height:85vh;
background:url('../images/hero.webp') center center/cover no-repeat;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
position:relative;
}

.hero::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.1);
}

.hero-content{
position:relative;
color:#fff;
max-width:650px;
padding-left:5%;
}

.hero h1{
font-size:42px;
margin-bottom:20px;
font-weight:700;
}

.hero p{
font-size:18px;
margin-bottom:15px;
}

.hero ul{
margin-bottom:20px;
}

.hero ul li{
margin-bottom:8px;
font-size:16px;
}

/* Mobile Hero Fix */
@media(max-width:768px){
.hero{
height:60vh;
background-size:contain;
background-position:center center;
background-repeat:no-repeat;
padding:60px 0 20px;
}

.hero-content{
padding:0 20px;
max-width:100%;
}

.hero h1{
font-size:24px;
}

.hero p{
font-size:14px;
}

.page-hero{
height:50vh;
background-size:contain;
background-position:center center;
background-repeat:no-repeat;
padding-top:100px;
}

.page-hero.tempo-hero{
background-size:contain;
background-position:center center;
}
}

/* ================= BUTTONS ================= */
.btn{
padding:12px 28px;
border-radius:30px;
font-weight:600;
text-decoration:none;
display:inline-block;
transition:0.3s;
}

.red-btn{
background:#e60023;
color:#fff;
box-shadow:0 4px 12px rgba(230,0,35,0.4);
}

.red-btn:hover{
background:#c4001e;
transform:translateY(-3px);
}

.green-btn{
background:#25D366;
color:#fff;
box-shadow:0 4px 12px rgba(37,211,102,0.4);
}

.green-btn:hover{
transform:translateY(-3px);
}

/* ================= SECTION COMMON ================= */
section{
padding:80px 0;
}

section h2{
text-align:center;
margin-bottom:50px;
font-size:36px;
color:#0b3d91;
font-weight:700;
position:relative;
padding-bottom:20px;
}

section h2::before{
content:'';
position:absolute;
bottom:0;
left:50%;
transform:translateX(-50%);
width:80px;
height:4px;
background:linear-gradient(90deg,#0099ff,#00d4ff,#0099ff);
background-size:200% 100%;
animation:gradientMove 3s ease infinite;
border-radius:2px;
}

section h2::after{
content:'';
position:absolute;
bottom:-8px;
left:50%;
transform:translateX(-50%);
width:40px;
height:4px;
background:linear-gradient(90deg,#ff9800,#ffc107);
border-radius:2px;
}

/* ================= ENQUIRY ================= */
.enquiry{
position:relative;
margin-top:-50px;
z-index:100;
padding:0 0 80px;
}

.enquiry .container{
max-width:1200px;
margin:0 auto;
width:90%;
background:rgba(255,255,255,0.15);
backdrop-filter:blur(10px);
-webkit-backdrop-filter:blur(10px);
border:2px solid rgba(255,255,255,0.3);
border-radius:25px;
box-shadow:0 8px 32px rgba(0,0,0,0.2);
padding:25px 40px;
text-align:center;
}

.enquiry h2{
background:linear-gradient(90deg,#1e4db7,#0099ff,#00d4ff,#1e4db7);
background-size:300% 100%;
color:#fff;
padding:8px 25px;
border-radius:15px;
display:inline-block;
margin:0 auto 25px;
font-size:22px;
text-shadow:none;
animation:gradientShift 3s ease infinite;
}

@keyframes gradientShift{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

.enquiry form{
display:flex;
flex-wrap:wrap;
gap:15px;
justify-content:center;
align-items:center;
}

.enquiry input,
.enquiry textarea{
padding:12px;
border:2px solid #d3d3d3;
border-radius:8px;
width:300px;
background:rgba(255,255,255,0.9);
backdrop-filter:blur(5px);
transition:all 0.3s ease;
}

.enquiry input:focus,
.enquiry textarea:focus{
border-color:#1e4db7;
outline:none;
box-shadow:0 0 10px rgba(30,77,183,0.3);
}

.enquiry button{
background:linear-gradient(135deg,#25D366,#1fb855);
color:#fff;
padding:20px 40px;
border:none;
border-radius:30px;
cursor:pointer;
font-weight:600;
font-size:16px;
transition:all 0.3s ease;
animation:buttonPulse 2s infinite;
}

@keyframes buttonPulse{
0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,0.7);}
50%{box-shadow:0 0 0 10px rgba(37,211,102,0);}
}

.enquiry button:hover{
background:linear-gradient(135deg,#1fb855,#25D366);
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(37,211,102,0.5);
animation:none;
}

/* ================= ABOUT SECTION ================= */
.about-section{
padding:80px 0;
background:#fff;
}

.about-content{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-image img{
width:100%;
height:auto;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.about-text h2{
color:#0b3d91;
font-size:32px;
margin-bottom:2px;
text-align:center;
}

.about-subtitle{
color:#ff9800 !important;
font-size:20px;
font-weight:600;
text-align:center;
margin-bottom:25px;
margin-top:0;
}

.about-text p{
color:#666;
line-height:1.8;
margin-bottom:15px;
}

.about-text ul{
list-style:none;
padding:0;
margin-top:20px;
}

.about-text ul li{
color:#333;
font-size:16px;
margin-bottom:10px;
font-weight:500;
}

/* ================= SERVICES SECTION ================= */
.services-section{
padding:80px 0;
background:linear-gradient(135deg,#f8f9fa 0%,#fff 100%);
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.service-card{
background:#fff;
padding:40px 30px;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
text-align:center;
position:relative;
overflow:hidden;
}

.service-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(90deg,#0099ff,#00d4ff);
transform:scaleX(0);
transition:0.4s;
}

.service-card:hover::before{
transform:scaleX(1);
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 60px rgba(0,153,255,0.2);
}

.service-icon{
width:80px;
height:80px;
margin:0 auto 20px;
background:linear-gradient(135deg,#0099ff,#00d4ff);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:35px;
color:#fff;
transition:0.4s;
box-shadow:0 10px 30px rgba(0,153,255,0.3);
}

.service-card:hover .service-icon{
transform:scale(1.1) rotate(10deg);
box-shadow:0 15px 40px rgba(0,153,255,0.4);
}

.service-card h3{
color:#0b3d91;
font-size:22px;
margin-bottom:15px;
font-weight:700;
}

.service-card p{
color:#666;
line-height:1.6;
margin-bottom:20px;
font-size:15px;
}

.service-link{
color:#0099ff;
font-weight:600;
text-decoration:none;
transition:0.3s;
display:inline-block;
}

.service-link:hover{
color:#00d4ff;
transform:translateX(5px);
}

/* ================= FEATURES GRID ================= */

.features-grid{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:20px;
}

.feature-box{
background:linear-gradient(135deg,#f8f9fa,#e9ecef);
border-left:4px solid #0099ff;
padding:10px 15px;
border-radius:8px;
font-weight:600;
font-size:15px;
color:#333;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
transition:all 0.3s ease;
}

.feature-box:hover{
transform:translateY(-3px);
box-shadow:0 4px 12px rgba(0,153,255,0.2);
border-left-color:#ff9800;
}

/* ================= FLEET ================= */
/* ================= FLEET ================= */
.page-header{
background:linear-gradient(135deg,#0b3d91,#0099ff);
color:#fff;
padding:120px 0 60px;
text-align:center;
margin-top:80px;
}

.page-header h1{
font-size:36px;
margin-bottom:10px;
}

.page-header p{
font-size:18px;
opacity:0.9;
}

.page-hero{
height:60vh;
background:url('../images/kanpur-tour-travel.webp') center center/cover no-repeat;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
position:relative;
margin-top:0;
padding-top:140px;
}

.page-hero.tempo-hero{
background:url('../images/tempo_traveller.webp') center center/cover no-repeat;
}

.page-hero::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(11,61,145,0.3);
}

.page-hero .container{
position:relative;
z-index:1;
text-align:center;
color:#fff;
}

.page-hero h1{
font-size:42px;
margin-bottom:15px;
font-weight:700;
text-shadow:2px 2px 4px rgba(0,0,0,0.3);
}

.page-hero p{
font-size:20px;
opacity:0.95;
text-shadow:1px 1px 2px rgba(0,0,0,0.3);
}

.fleet-grid,
.tour-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.fleet-card,
.tour-card{
background:#fff;
padding:0;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,0.1);
transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
text-align:center;
border:none;
overflow:hidden;
position:relative;
display:flex;
flex-direction:column;
}

.fleet-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(90deg,#0099ff,#00d4ff,#0099ff);
background-size:200% 100%;
animation:gradientMove 3s ease infinite;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

.fleet-card:hover{
transform:translateY(-15px) scale(1.02);
box-shadow:0 20px 60px rgba(0,153,255,0.25);
}

.fleet-image,
.tour-image{
width:100%;
height:180px;
overflow:hidden;
position:relative;
}

.fleet-image::after{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(180deg,transparent 0%,rgba(0,0,0,0.3) 100%);
opacity:0;
transition:0.4s;
}

.fleet-card:hover .fleet-image::after{
opacity:1;
}

.fleet-image img,
.tour-image img{
width:100%;
height:100%;
object-fit:cover;
transition:transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fleet-card:hover .fleet-image img,
.tour-card:hover .tour-image img{
transform:scale(1.1);
}

.fleet-card h3{
color:#0b3d91;
font-size:18px;
margin:12px 0 8px;
padding:0 20px;
position:relative;
font-weight:700;
}

.fleet-card h3::after{
content:'';
position:absolute;
bottom:-5px;
left:50%;
transform:translateX(-50%);
width:50px;
height:3px;
background:linear-gradient(90deg,#0099ff,#00d4ff);
border-radius:2px;
}

.fleet-details{
padding:0 15px 10px;
}

.detail-box-single{
background:linear-gradient(135deg,#f8f9fa 0%,#fff 100%);
border-radius:12px;
padding:12px;
margin:0 15px 12px;
border:1px solid #e9ecef;
transition:all 0.3s ease;
}

.detail-box-single:hover{
background:linear-gradient(135deg,#fff 0%,#f0f8ff 100%);
border-color:#0099ff;
box-shadow:0 5px 20px rgba(0,153,255,0.15);
transform:translateY(-3px);
}

.detail-row-item{
display:flex;
justify-content:space-between;
align-items:center;
padding:6px 0;
border-bottom:1px dashed #e9ecef;
transition:0.3s;
}

.detail-row-item:hover{
padding-left:5px;
background:rgba(0,153,255,0.03);
}

.detail-row-item:last-child{
border-bottom:none;
}

.detail-row-item span{
color:#666;
font-size:13px;
font-weight:500;
display:flex;
align-items:center;
}

.detail-row-item span::before{
content:'•';
color:#0099ff;
font-size:16px;
margin-right:6px;
font-weight:bold;
}

.detail-row-item strong{
color:#0b3d91;
font-size:15px;
font-weight:700;
background:linear-gradient(135deg,#0099ff,#00d4ff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;
}

.fleet-card p{
color:#666;
margin-bottom:15px;
font-size:15px;
}

.fleet-card ul{
list-style:none;
padding:0;
margin:20px 0;
text-align:left;
}

.fleet-card ul li{
padding:8px 0;
color:#333;
font-size:14px;
border-bottom:1px solid #f0f0f0;
}

.fleet-card ul li:last-child{
border-bottom:none;
}

.small-btn{
background:linear-gradient(135deg,#0099ff,#00d4ff);
color:#fff;
padding:8px 20px;
border-radius:50px;
text-decoration:none;
font-weight:600;
font-size:13px;
display:inline-block;
margin:5px auto 20px;
transition:all 0.3s ease;
box-shadow:0 3px 10px rgba(0,153,255,0.2);
position:relative;
overflow:hidden;
}

.small-btn::before{
content:'';
position:absolute;
top:50%;
left:50%;
width:0;
height:0;
border-radius:50%;
background:rgba(255,255,255,0.3);
transform:translate(-50%,-50%);
transition:width 0.6s,height 0.6s;
}

.small-btn:hover::before{
width:300px;
height:300px;
}

.small-btn:hover{
background:linear-gradient(135deg,#00d4ff,#0099ff);
transform:translateY(-2px);
box-shadow:0 5px 15px rgba(0,153,255,0.3);
}

/* ================= OUTSTATION ================= */
.outstation{
background:#0b3d91;
color:#fff;
}

.outstation h2{
color:#fff;
}

.outstation-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.city{
background:#e60023;
padding:15px;
border-radius:30px;
font-weight:600;
transition:0.3s;
}

.city:hover{
background:#fff;
color:#0b3d91;
}

/* ================= TOUR PACKAGES ================= */
.tour-packages{
background:#fff;
padding:80px 0;
}

.tour-packages h2{
color:#0b3d91;
}

.tour-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.tour-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:all 0.4s ease;
cursor:pointer;
}

.tour-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,153,255,0.3);
}

.tour-image{
width:100%;
height:200px;
overflow:hidden;
position:relative;
}

.tour-image img{
width:100%;
height:100%;
object-fit:cover;
transition:transform 0.5s ease;
}

.tour-card:hover .tour-image img{
transform:scale(1.1);
}

.tour-card h3{
color:#0b3d91;
font-size:20px;
font-weight:700;
text-align:center;
padding:15px;
margin:0;
}

.tour-info{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 15px;
gap:10px;
}

.tour-info h3{
padding:0;
margin:0;
flex:1;
text-align:left;
}

.tour-book-btn{
background:#25D366;
color:#fff;
padding:8px 15px;
border-radius:20px;
text-decoration:none;
font-size:13px;
font-weight:600;
display:flex;
align-items:center;
gap:5px;
transition:all 0.3s ease;
white-space:nowrap;
}

.tour-book-btn:hover{
background:#1fb855;
transform:scale(1.05);
box-shadow:0 5px 15px rgba(37,211,102,0.4);
}

.tour-book-btn i{
font-size:16px;
}

@media(max-width:768px){
.tour-grid{
grid-template-columns:repeat(2,1fr);
}
}

/* ================= FOOTER ================= */
footer{
background:#1a2332;
color:#fff;
padding:0;
position:relative;
margin-top:80px;
border-top:8px solid #ffd700;
}

footer::before{
content:'';
position:absolute;
top:-80px;
left:0;
width:100%;
height:80px;
background:#1a2332;
clip-path:ellipse(70% 100% at 50% 100%);
}

.footer-content{
display:grid;
grid-template-columns:1.5fr 1fr 1fr 1fr;
gap:40px;
padding:60px 0 30px;
}

.footer-about{
max-width:350px;
}

.footer-logo{
display:flex;
align-items:center;
gap:12px;
margin-bottom:15px;
}

.footer-logo img{
width:70px;
height:70px;
object-fit:contain;
}

.footer-logo h3{
color:#0099ff;
font-size:24px;
margin:0;
}

.footer-desc{
color:#fff;
margin-bottom:20px;
line-height:1.6;
}

.footer-cities{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-bottom:20px;
}

.footer-cities span{
color:#fff;
padding:0 8px 0 0;
font-size:14px;
}

.footer-cities span:hover{
color:#0099ff;
}

.footer-social{
display:flex;
gap:10px;
}

.footer-social a{
width:38px;
height:38px;
background:#fff;
color:#333;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
transition:0.3s;
font-size:16px;
}

.footer-social a:nth-child(1){
color:#1877f2;
}

.footer-social a:nth-child(2){
color:#1da1f2;
}

.footer-social a:nth-child(3){
color:#0077b5;
}

.footer-social a:nth-child(4){
color:#ff0000;
}

.footer-social a:nth-child(5){
color:#e4405f;
}

.footer-social a:hover{
background:#0099ff;
color:#fff;
transform:translateY(-3px);
}

.footer-col h3{
margin-bottom:20px;
font-size:20px;
color:#fff;
position:relative;
padding-bottom:8px;
display:inline-block;
}

.footer-col h3::after{
content:'';
position:absolute;
bottom:0;
left:0;
width:100%;
height:3px;
background:linear-gradient(90deg,transparent,#0099ff,transparent);
background-size:50% 100%;
animation:lineSlide 3s linear infinite;
border-radius:2px;
}

@keyframes lineSlide{
0%{background-position:-100% 0%;}
100%{background-position:200% 0%;}
}

.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:12px;
}

.footer-links a{
color:#fff;
text-decoration:none;
transition:0.3s;
}

.footer-links a:hover{
color:#0099ff;
padding-left:5px;
}

.footer-contact{
list-style:none;
padding:0;
margin:0;
}

.footer-contact li{
margin-bottom:15px;
display:flex;
align-items:flex-start;
gap:12px;
color:#fff;
}

.footer-contact i{
width:32px;
height:32px;
background:linear-gradient(135deg,#0099ff,#0066cc);
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:15px;
flex-shrink:0;
margin-top:2px;
box-shadow:0 4px 15px rgba(0,153,255,0.4);
transition:all 0.3s ease;
}

.footer-contact li:hover i{
transform:scale(1.15) rotate(10deg);
box-shadow:0 6px 20px rgba(0,153,255,0.6);
background:linear-gradient(135deg,#00d4ff,#0099ff);
}

.footer-contact .fa-phone{
animation:phoneShake 3s infinite;
}

@keyframes phoneShake{
0%,100%{transform:rotate(0deg);}
5%,15%{transform:rotate(-12deg);}
10%,20%{transform:rotate(12deg);}
25%{transform:rotate(0deg);}
}

.footer-contact a{
color:#fff;
text-decoration:none;
transition:0.3s;
}

.footer-contact a:hover{
color:#0099ff;
}

.footer-bottom{
background:#0f1621;
padding:20px;
margin-top:30px;
text-align:center;
}

.footer-bottom a{
color:#fff;
text-decoration:none;
background:linear-gradient(90deg,#0099ff,#00d4ff,#ffd700,#0099ff);
background-size:200% auto;
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;
font-weight:700;
animation:textShine 3s linear infinite;
}

.footer-bottom a:hover{
transform:scale(1.05);
display:inline-block;
}

@keyframes textShine{
0%{background-position:0% center;}
100%{background-position:200% center;}
}

/* ================= FLOATING BUTTONS ================= */
.floating-buttons{
position:fixed;
right:25px;
bottom:25px;
z-index:1000;
display:flex;
flex-direction:column;
gap:15px;
}

.float-btn{
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
box-shadow:0 5px 20px rgba(0,0,0,0.3);
transition:0.3s;
animation:pulse 2s infinite;
}

.float-btn i{
font-size:28px;
}

.call-btn{
background:#004f9e;
color:#fff;
}

.call-btn i{
animation:phoneRinging 1.5s infinite;
}

@keyframes phoneRinging{
0%,100%{transform:rotate(0deg);}
10%,30%{transform:rotate(-20deg);}
20%,40%{transform:rotate(20deg);}
50%{transform:rotate(0deg);}
}

.whatsapp-btn{
background:#25D366;
color:#fff;
}

.float-btn:hover{
transform:scale(1.1);
box-shadow:0 8px 30px rgba(0,0,0,0.4);
}

@keyframes pulse{
0%,100%{transform:scale(1);}
50%{transform:scale(1.05);}
}

/* ================= BOTTOM SOCIAL BAR (MOBILE) ================= */
.bottom-social-bar{
position:fixed;
bottom:0;
left:0;
width:100%;
background:linear-gradient(135deg,#1a2332 0%,#2c3e50 100%);
padding:15px 0;
box-shadow:0 -4px 20px rgba(0,0,0,0.3);
z-index:1000;
display:none;
border-radius:20px 20px 0 0;
}

.social-bar-container{
display:flex;
justify-content:space-around;
align-items:center;
max-width:500px;
margin:0 auto;
padding:0 20px;
}

.social-bar-btn{
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
box-shadow:0 4px 15px rgba(0,0,0,0.2);
}

.social-bar-btn i{
font-size:24px;
color:#fff;
}

.social-bar-btn.home-btn{
background:linear-gradient(135deg,#667eea,#764ba2);
}

.social-bar-btn.call-btn{
background:linear-gradient(135deg,#004f9e,#0066cc);
}

.social-bar-btn.whatsapp-btn{
background:linear-gradient(135deg,#25D366,#1fb855);
}

.social-bar-btn.email-btn{
background:linear-gradient(135deg,#ff6b6b,#ff5252);
}

.social-bar-btn.share-btn{
background:linear-gradient(135deg,#4facfe,#00f2fe);
}

.social-bar-btn:active{
transform:scale(0.9);
box-shadow:0 2px 8px rgba(0,0,0,0.3);
}

@media(max-width:768px){
.floating-buttons{
display:none;
}

.bottom-social-bar{
display:block;
}
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

.top-bar .container{
flex-direction:column;
gap:10px;
text-align:center;
}

.social-links{
justify-content:center;
}

.top-contact{
flex-direction:column;
gap:8px;
}

header{
position:relative;
top:0;
padding:10px 0;
}

.nav-wrapper{
flex-direction:column;
padding:20px;
gap:15px;
border-radius:25px;
}

.logo img{
width:50px;
height:50px;
}

.logo-text h2{
font-size:18px;
}

nav ul{
flex-direction:column;
width:100%;
text-align:center;
gap:12px;
}

nav ul li{
width:100%;
}

.dropdown{
position:static;
box-shadow:none;
margin-top:5px;
background:#f8f9fa;
}

nav ul li:hover .dropdown{
display:block;
}

.contact-btn{
width:100%;
justify-content:center;
}

.hero{
height:auto;
padding:100px 0;
}

.hero-content{
padding:0 20px;
}

}


/* ================= WHY CHOOSE US ================= */
.why-us{
background:linear-gradient(135deg,#f8f9fa 0%,#fff 100%);
padding:80px 0;
}

.why-us h2{
color:#0b3d91;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
margin-top:20px;
}

.why-card{
background:#fff;
padding:30px 20px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:all 0.4s ease;
position:relative;
overflow:hidden;
}

.why-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(90deg,#0099ff,#00d4ff);
transform:scaleX(0);
transition:0.4s;
}

.why-card:hover::before{
transform:scaleX(1);
}

.why-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,153,255,0.2);
}

.why-icon{
width:80px;
height:80px;
margin:0 auto 20px;
background:linear-gradient(135deg,#0099ff,#00d4ff);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:35px;
color:#fff;
transition:0.4s;
box-shadow:0 10px 30px rgba(0,153,255,0.3);
}

.why-card:hover .why-icon{
transform:scale(1.1) rotate(10deg);
box-shadow:0 15px 40px rgba(0,153,255,0.5);
}

.why-card h3{
color:#0b3d91;
font-size:20px;
font-weight:700;
margin-bottom:10px;
}

.why-card p{
color:#666;
font-size:14px;
line-height:1.6;
margin:0;
}


/* ================= FAQ MODERN ================= */
.faq{
background:#fff;
padding:80px 0;
}

.faq h2{
color:#0b3d91;
}

.faq-item{
background:linear-gradient(135deg,#f8f9fa 0%,#fff 100%);
padding:25px 30px;
margin-bottom:20px;
border-radius:15px;
border-left:5px solid #0099ff;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:all 0.3s ease;
}

.faq-item:hover{
transform:translateX(10px);
box-shadow:0 10px 30px rgba(0,153,255,0.15);
border-left-color:#ff9800;
}

.faq-item h4{
color:#0b3d91;
font-size:18px;
font-weight:700;
margin-bottom:12px;
display:flex;
align-items:center;
gap:10px;
}

.faq-item h4 i{
color:#0099ff;
font-size:20px;
}

.faq-item p{
color:#666;
line-height:1.8;
margin:0;
font-size:15px;
}


/* ================= OUTSTATION MODERN ================= */
.outstation{
background:linear-gradient(135deg,#0b3d91,#1e4db7);
color:#fff;
padding:80px 0;
}

.outstation h2{
color:#fff;
}

.outstation-subtitle{
text-align:center;
color:#fff;
font-size:18px;
margin-bottom:40px;
opacity:0.9;
}

.outstation-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.city-card{
background:rgba(255,255,255,0.1);
backdrop-filter:blur(10px);
padding:20px;
border-radius:15px;
font-weight:600;
transition:all 0.3s ease;
border:2px solid rgba(255,255,255,0.2);
text-decoration:none;
color:#fff;
display:flex;
align-items:center;
gap:12px;
cursor:pointer;
}

.city-card i{
font-size:24px;
color:#ffd700;
}

.city-card:hover{
background:#fff;
color:#0b3d91;
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.city-card:hover i{
color:#e60023;
}

.city-card.all-india{
background:linear-gradient(135deg,#e60023,#ff4757);
border-color:#fff;
}

.city-card.all-india:hover{
background:linear-gradient(135deg,#ff4757,#e60023);
color:#fff;
transform:translateY(-5px) scale(1.05);
}

.city-card.all-india i{
color:#ffd700;
font-size:28px;
}


/* ================= CONTACT PAGE ================= */
.contact-section{
background:#fff;
padding:80px 0;
}

.contact-section h2{
color:#0b3d91;
text-align:center;
margin-bottom:10px;
}

.contact-subtitle{
text-align:center;
color:#666;
font-size:18px;
margin-bottom:50px;
}

.contact-methods{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-bottom:60px;
}

.contact-method-card{
background:linear-gradient(135deg,#f8f9fa 0%,#fff 100%);
padding:40px 30px;
border-radius:20px;
text-align:center;
text-decoration:none;
color:#333;
box-shadow:0 10px 40px rgba(0,0,0,0.1);
transition:all 0.4s ease;
border:3px solid transparent;
}

.contact-method-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.call-card{
border-color:#004f9e;
}

.call-card:hover{
background:linear-gradient(135deg,#004f9e,#0066cc);
color:#fff;
}

.whatsapp-card{
border-color:#25D366;
}

.whatsapp-card:hover{
background:linear-gradient(135deg,#25D366,#1fb855);
color:#fff;
}

.email-card{
border-color:#ff6b6b;
}

.email-card:hover{
background:linear-gradient(135deg,#ff6b6b,#ff5252);
color:#fff;
}

.contact-icon{
width:100px;
height:100px;
margin:0 auto 20px;
background:linear-gradient(135deg,#0099ff,#00d4ff);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:45px;
color:#fff;
transition:0.4s;
box-shadow:0 10px 30px rgba(0,153,255,0.3);
}

.call-card .contact-icon{
background:linear-gradient(135deg,#004f9e,#0066cc);
}

.whatsapp-card .contact-icon{
background:linear-gradient(135deg,#25D366,#1fb855);
}

.email-card .contact-icon{
background:linear-gradient(135deg,#ff6b6b,#ff5252);
}

.contact-method-card:hover .contact-icon{
transform:scale(1.1) rotate(10deg);
background:#fff;
}

.call-card:hover .contact-icon{
color:#004f9e;
}

.whatsapp-card:hover .contact-icon{
color:#25D366;
}

.email-card:hover .contact-icon{
color:#ff6b6b;
}

.contact-method-card h3{
font-size:24px;
font-weight:700;
margin-bottom:10px;
color:#0b3d91;
}

.contact-method-card:hover h3{
color:#fff;
}

.contact-method-card p{
color:#666;
margin-bottom:15px;
font-size:15px;
}

.contact-method-card:hover p{
color:#fff;
opacity:0.9;
}

.contact-detail{
display:block;
font-weight:600;
font-size:16px;
color:#0099ff;
margin-top:5px;
}

.contact-method-card:hover .contact-detail{
color:#fff;
}

.contact-info-section{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-top:40px;
}

.info-card{
background:linear-gradient(135deg,#0b3d91,#1e4db7);
padding:30px;
border-radius:15px;
text-align:center;
color:#fff;
box-shadow:0 10px 30px rgba(11,61,145,0.3);
transition:all 0.3s ease;
}

.info-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 40px rgba(11,61,145,0.4);
}

.info-card i{
font-size:40px;
color:#ffd700;
margin-bottom:15px;
}

.info-card h4{
font-size:20px;
font-weight:700;
margin-bottom:10px;
}

.info-card p{
font-size:15px;
line-height:1.6;
opacity:0.9;
margin:0;
}


/* ================= CONTACT FORM ================= */
.contact-form-section{
background:linear-gradient(135deg,#f8f9fa 0%,#fff 100%);
padding:60px 40px;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,0.1);
margin-top:40px;
}

.contact-form-section h2{
color:#0b3d91;
text-align:center;
margin-bottom:10px;
font-size:32px;
}

.form-subtitle{
text-align:center;
color:#666;
font-size:16px;
margin-bottom:40px;
}

.contact-form{
max-width:900px;
margin:0 auto;
}

.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:20px;
}

.form-group{
display:flex;
flex-direction:column;
}

.form-group.full-width{
margin-bottom:20px;
}

.form-group label{
color:#0b3d91;
font-weight:600;
margin-bottom:8px;
font-size:15px;
display:flex;
align-items:center;
gap:8px;
}

.form-group label i{
color:#0099ff;
}

.form-group input,
.form-group textarea{
padding:12px 15px;
border:2px solid #e0e0e0;
border-radius:10px;
font-size:15px;
transition:all 0.3s ease;
font-family:'Segoe UI',sans-serif;
}

.form-group input:focus,
.form-group textarea:focus{
outline:none;
border-color:#0099ff;
box-shadow:0 0 10px rgba(0,153,255,0.2);
}

.form-group textarea{
resize:vertical;
min-height:120px;
}

.submit-btn{
background:linear-gradient(135deg,#0099ff,#00d4ff);
color:#fff;
padding:15px 40px;
border:none;
border-radius:30px;
font-size:18px;
font-weight:700;
cursor:pointer;
transition:all 0.4s ease;
box-shadow:0 5px 20px rgba(0,153,255,0.3);
display:flex;
align-items:center;
gap:10px;
margin:0 auto;
}

.submit-btn:hover{
background:linear-gradient(135deg,#00d4ff,#0099ff);
transform:translateY(-3px);
box-shadow:0 10px 30px rgba(0,153,255,0.4);
}

.submit-btn i{
font-size:20px;
}

@media(max-width:768px){
.form-row{
grid-template-columns:1fr;
}
}


.required{
color:#e60023;
font-weight:700;
margin-left:3px;
}

.char-count{
display:block;
text-align:right;
font-size:13px;
color:#666;
margin-top:5px;
font-weight:600;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown){
border-color:#e60023;
}

.form-group input:valid,
.form-group textarea:valid{
border-color:#25D366;
}


/* ================= HAMBURGER MENU ================= */
.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
padding:10px;
z-index:1001;
}

.hamburger span{
width:30px;
height:3px;
background:#0b3d91;
border-radius:3px;
transition:0.3s;
}

.hamburger.active span:nth-child(1){
transform:rotate(45deg) translate(8px,8px);
}

.hamburger.active span:nth-child(2){
opacity:0;
}

.hamburger.active span:nth-child(3){
transform:rotate(-45deg) translate(8px,-8px);
}

/* ================= RESPONSIVE IMAGES ================= */
img{
max-width:100%;
height:auto;
}

/* ================= MEDIA QUERIES ================= */

/* Tablet - 1024px */
@media(max-width:1024px){
.container{
width:95%;
}

.nav-wrapper{
padding:10px 30px;
}

nav ul{
gap:20px;
}

nav ul li a{
font-size:14px;
}

.hero h1{
font-size:36px;
}

.fleet-grid{
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
}

.tour-grid{
grid-template-columns:repeat(3,1fr);
}

.footer-content{
grid-template-columns:1fr 1fr;
gap:30px;
}

.about-content{
gap:30px;
}
}

/* Tablet - 768px */
@media(max-width:768px){
.top-bar{
padding:15px 0;
}

.top-bar .container{
flex-direction:column;
gap:15px;
}

.social-wrapper,
.contact-wrapper{
align-self:center;
padding:0;
}

.top-contact{
flex-direction:column;
gap:10px;
}

.contact-item{
font-size:13px;
padding:5px 12px;
}

header{
position:relative;
top:0;
padding:10px 0;
}

header.sticky{
padding:10px 0;
}

.nav-wrapper{
flex-direction:row;
justify-content:space-between;
padding:15px 20px;
}

.logo{
margin-left:0;
}

.logo img{
width:50px;
height:50px;
}

.logo-text h2{
font-size:16px;
}

.logo-text span{
font-size:10px;
}

.hamburger{
display:flex;
}

nav{
position:fixed;
top:0;
right:-100%;
width:280px;
height:100vh;
background:#fff;
box-shadow:-5px 0 20px rgba(0,0,0,0.2);
padding:80px 20px 20px;
transition:0.4s;
z-index:1000;
overflow-y:auto;
}

nav.active{
right:0;
}

nav ul{
flex-direction:column;
gap:0;
}

nav ul li{
width:100%;
border-bottom:1px solid #f0f0f0;
}

nav ul li a{
display:block;
padding:15px 10px;
}

.dropdown{
position:static;
box-shadow:none;
background:#f8f9fa;
margin-top:0;
border-radius:0;
}

.contact-btn{
display:none;
}

.hero{
height:60vh;
padding:80px 0 40px;
}

.hero h1{
font-size:28px;
}

.hero p{
font-size:16px;
}

.enquiry{
margin-top:-30px;
padding:0 0 60px;
}

.enquiry .container{
padding:20px;
}

.enquiry h2{
font-size:18px;
padding:6px 20px;
}

.enquiry form{
flex-direction:column;
}

.enquiry input,
.enquiry textarea{
width:100%;
}

.enquiry button{
width:100%;
padding:15px;
}

section{
padding:60px 0;
}

section h2{
font-size:28px;
margin-bottom:30px;
}

.about-content{
grid-template-columns:1fr;
gap:30px;
}

.about-text h2{
font-size:26px;
}

.about-subtitle{
font-size:18px;
}

.features-grid{
grid-template-columns:1fr;
}

.fleet-grid{
grid-template-columns:1fr;
gap:20px;
}

.fleet-card{
max-width:400px;
margin:0 auto;
}

.tour-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.tour-image{
height:150px;
}

.tour-card h3{
font-size:18px;
}

.tour-book-btn{
font-size:12px;
padding:6px 12px;
}

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

.city-card{
padding:15px;
}

.why-grid{
grid-template-columns:1fr;
gap:20px;
}

.why-card{
max-width:400px;
margin:0 auto;
}

.faq-item{
padding:20px;
}

.faq-item h4{
font-size:16px;
}

.faq-item p{
font-size:14px;
}

.footer-content{
grid-template-columns:1fr;
gap:40px;
}

.footer-about{
max-width:100%;
}

.floating-buttons{
right:15px;
bottom:15px;
gap:10px;
}

.float-btn{
width:50px;
height:50px;
}

.float-btn i{
font-size:24px;
}

.page-hero{
height:50vh;
padding-top:100px;
}

.page-hero h1{
font-size:32px;
}

.page-hero p{
font-size:18px;
}

.contact-methods{
grid-template-columns:1fr;
}

.contact-info-section{
grid-template-columns:1fr;
}

.contact-form-section{
padding:40px 20px;
}

.form-row{
grid-template-columns:1fr;
}
}

/* Mobile - 480px */
@media(max-width:480px){
.top-bar{
padding:10px 0;
}

.social-links a{
width:28px;
height:28px;
font-size:12px;
}

.contact-item{
font-size:12px;
padding:4px 10px;
}

.contact-item i{
width:26px;
height:26px;
font-size:12px;
}

.logo img{
width:40px;
height:40px;
}

.logo-text h2{
font-size:14px;
}

.logo-text span{
font-size:9px;
}

nav{
width:100%;
right:-100%;
}

.hero{
height:50vh;
}

.hero h1{
font-size:24px;
}

.hero p{
font-size:14px;
}

.enquiry h2{
font-size:16px;
}

.enquiry input,
.enquiry textarea{
padding:10px;
font-size:14px;
}

.enquiry button{
padding:12px;
font-size:14px;
}

section{
padding:40px 0;
}

section h2{
font-size:24px;
margin-bottom:25px;
}

.about-text h2{
font-size:22px;
}

.about-subtitle{
font-size:16px;
}

.about-text p{
font-size:14px;
}

.feature-box{
font-size:13px;
padding:8px 12px;
}

.fleet-image{
height:150px;
}

.fleet-card h3{
font-size:16px;
}

.detail-row-item span{
font-size:12px;
}

.detail-row-item strong{
font-size:13px;
}

.small-btn{
padding:8px 20px;
font-size:13px;
}

.tour-grid{
grid-template-columns:1fr;
}

.tour-image{
height:180px;
}

.tour-card h3{
font-size:16px;
}

.tour-book-btn{
font-size:11px;
padding:6px 10px;
}

.outstation-subtitle{
font-size:16px;
}

.city-card{
padding:12px;
font-size:14px;
}

.city-card i{
font-size:20px;
}

.why-icon{
width:60px;
height:60px;
font-size:28px;
}

.why-card h3{
font-size:18px;
}

.why-card p{
font-size:13px;
}

.faq-item{
padding:15px;
}

.faq-item h4{
font-size:15px;
}

.faq-item h4 i{
font-size:18px;
}

.faq-item p{
font-size:13px;
}

.footer-logo img{
width:50px;
height:50px;
}

.footer-logo h3{
font-size:18px;
}

.footer-desc{
font-size:14px;
}

.footer-col h3{
font-size:18px;
}

.footer-links a,
.footer-contact li{
font-size:14px;
}

.footer-social a{
width:32px;
height:32px;
font-size:14px;
}

.floating-buttons{
right:10px;
bottom:10px;
}

.float-btn{
width:45px;
height:45px;
}

.float-btn i{
font-size:20px;
}

.page-hero{
height:40vh;
padding-top:80px;
}

.page-hero h1{
font-size:26px;
}

.page-hero p{
font-size:16px;
}

.contact-method-card{
padding:30px 20px;
}

.contact-icon{
width:80px;
height:80px;
font-size:35px;
}

.contact-method-card h3{
font-size:20px;
}

.contact-detail{
font-size:14px;
}

.info-card{
padding:20px;
}

.info-card i{
font-size:32px;
}

.info-card h4{
font-size:18px;
}

.info-card p{
font-size:14px;
}

.contact-form-section h2{
font-size:26px;
}

.form-subtitle{
font-size:14px;
}

.form-group label{
font-size:14px;
}

.form-group input,
.form-group textarea{
padding:10px;
font-size:14px;
}

.submit-btn{
padding:12px 30px;
font-size:16px;
width:100%;
justify-content:center;
}
}


/* ================= MOBILE FIX FOR FLEET AND TOUR ================= */
@media(max-width:768px){
.fleet-grid,
.tour-grid{
grid-template-columns:1fr !important;
gap:20px !important;
}

.fleet-card,
.tour-card{
max-width:400px;
margin:0 auto;
}

.fleet-image,
.tour-image{
height:180px !important;
}
}

/* ================= MOBILE FOOTER CENTER ================= */
@media(max-width:1024px){
.footer-content{
text-align:center;
}

.footer-logo{
justify-content:center;
}

.footer-social{
justify-content:center;
}

.footer-links{
text-align:center;
}

.footer-contact{
text-align:center;
}

.footer-contact li{
justify-content:center;
}
}


/* ================= MOBILE FOOTER CONTACT LEFT ALIGN ================= */
@media(max-width:1024px){
.footer-contact{
text-align:left !important;
}

.footer-contact li{
justify-content:flex-start !important;
}
}


/* ================= FOOTER ANIMATED CAR ================= */
.footer-car{
position:absolute;
bottom:20px;
left:-100px;
font-size:40px;
color:#ffd700;
animation:carMove 15s linear infinite;
z-index:10;
}

@keyframes carMove{
0%{left:-100px;}
100%{left:calc(100% + 100px);}
}

@media(max-width:768px){
.footer-car{
font-size:30px;
bottom:15px;
animation:carMove 12s linear infinite;
}
}


/* ================= FOOTER ANIMATED LOGO FIX ================= */
.footer-car{
width:60px !important;
height:60px !important;
left:-80px !important;
}

.footer-car img{
width:100%;
height:100%;
object-fit:contain;
background:#fff;
border-radius:10px;
padding:5px;
box-shadow:0 4px 15px rgba(0,0,0,0.3);
}

@media(max-width:768px){
.footer-car{
width:50px !important;
height:50px !important;
left:-60px !important;
}
}


/* ================= MOBILE FOOTER BOTTOM FIX ================= */
@media(max-width:768px){
.footer-bottom{
padding:20px 10px !important;
margin-bottom:80px !important;
}

.footer-bottom p{
font-size:12px !important;
line-height:1.6 !important;
}
}


/* ================= MOBILE NAVBAR SPACE FIX ================= */
@media(max-width:768px){
header{
margin-bottom:0 !important;
}

.hero{
margin-top:0 !important;
padding-top:20px !important;
}
}
