:root{

--primary:#061a33;
--secondary:#164b78;
--accent:#c8212d;
--gold:#ffc44d;
--green:#20b85a;
--text:#172333;
--light:#f5f8fb;
--white:#ffffff;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:Arial,sans-serif;
background:var(--light);
color:var(--text);
line-height:1.7;

}

img{

max-width:100%;
display:block;

}

.w{

max-width:1150px;
margin:auto;
padding:0 20px;

}

header{

background:linear-gradient(135deg,var(--primary),var(--secondary));
color:#fff;
padding:60px 0;

}

.hero{

display:grid;
grid-template-columns:1fr 1fr;
gap:35px;
align-items:center;

}

.hero img{

width:100%;
max-height:520px;
object-fit:cover;
border-radius:22px;
border:8px solid #fff;
box-shadow:0 18px 40px rgba(0,0,0,.25);

}

.tag{

display:inline-block;
background:#ffffff20;
padding:8px 16px;
border-radius:40px;
font-weight:bold;
margin-bottom:18px;

}

h1{

font-size:56px;
line-height:1.1;
margin-bottom:20px;

}

.gold{

color:var(--gold);

}

.hero p{

font-size:18px;
margin-bottom:25px;

}

.btn{

display:inline-block;
padding:14px 22px;
border-radius:12px;
text-decoration:none;
font-weight:bold;
margin:8px 8px 0 0;
transition:.3s;

}

.btn:hover{

transform:translateY(-5px) scale(1.03);

}

.btn{

background:var(--accent);
color:#fff;

}

.wa{

background:var(--green);

}

section{

padding:70px 0;

}

h2{

font-size:40px;
text-align:center;
margin-bottom:12px;
color:var(--primary);

}

.sub{

text-align:center;
max-width:820px;
margin:auto;
margin-bottom:35px;
color:#666;

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

.card,
figure{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 8px 25px rgba(7,29,56,.08);
transition:.3s;
}

.card{
padding:24px;
}

.card:hover,
figure:hover{
transform:translateY(-5px) scale(1.02);
box-shadow:0 18px 35px rgba(7,29,56,.15);
}

.card h3{
margin-bottom:12px;
color:var(--primary);
}

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

.fleet img,
.gallery img{
width:100%;
height:380px;
object-fit:cover;
}

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

figcaption{
padding:16px;
font-weight:bold;
text-align:center;
}

.pills{
text-align:center;
}

.pill{
display:inline-block;
background:#fff;
padding:10px 16px;
border-radius:40px;
border:1px solid #d9e3ea;
margin:6px;
font-weight:bold;
}

.note{
background:#fff8df;
padding:18px;
border-left:5px solid var(--gold);
border-radius:8px;
margin-top:25px;
}

.cta{
background:var(--accent);
color:#fff;
text-align:center;
}

.cta h2{
color:#fff;
}

.foot{
background:var(--primary);
color:#d5dde6;
text-align:center;
padding:40px 20px 100px;
}

.foot a{
color:#fff;
text-decoration:none;
margin:0 8px;
}

.fixed-contact{
position:fixed;
right:20px;
bottom:20px;
display:flex;
gap:12px;
z-index:9999;
}

.fixed-call,
.fixed-wa{
display:flex;
align-items:center;
justify-content:center;
padding:15px 20px;
border-radius:50px;
font-weight:bold;
text-decoration:none;
color:#fff;
box-shadow:0 12px 25px rgba(0,0,0,.25);
transition:.3s;
}

.fixed-call{
background:linear-gradient(135deg,#d91e2d,#9e0b17);
}

.fixed-wa{
background:linear-gradient(135deg,#25d366,#0f8f43);
}

.fixed-call:hover,
.fixed-wa:hover{
transform:translateY(-
 /* ================= CONTACT ================= */

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:30px;
}

.contact-card{
background:#fff;
padding:30px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.contact-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.contact-card h3{
margin-bottom:15px;
color:var(--primary);
}

.contact-card a{
text-decoration:none;
font-weight:bold;
}

/* ================= FAQ ================= */

.faq-list{
margin-top:40px;
}

.faq-item{
background:#fff;
padding:22px;
margin-bottom:18px;
border-radius:14px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
transition:.3s;
}

.faq-item:hover{
transform:translateY(-4px);
}

.faq-item h3{
color:var(--primary);
margin-bottom:12px;
}

/* ================= ROUTES ================= */

.route-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:35px;
}

.route-card{
background:#fff;
padding:22px;
border-radius:16px;
text-align:center;
box-shadow:0 10px 22px rgba(0,0,0,.08);
transition:.3s;
}

.route-card:hover{
transform:translateY(-5px);
box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.route-card h3{
margin-bottom:10px;
color:var(--primary);
}

/* ================= SOCIAL ================= */

.social-links{
display:flex;
justify-content:center;
gap:20px;
margin-top:30px;
flex-wrap:wrap;
}

.social-links a{
padding:14px 22px;
background:var(--primary);
color:#fff;
text-decoration:none;
border-radius:10px;
font-weight:bold;
transition:.3s;
}

.social-links a:hover{
background:var(--accent);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

.contact-grid,
.route-grid{

grid-template-columns:1fr;

}

}
   /* ================= PREMIUM ANIMATIONS ================= */

html{
scroll-behavior:smooth;
}

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

.card,
figure,
.faq-item,
.contact-card,
.route-card{

animation:fadeUp .8s ease both;

}

/* ================= BUTTON EFFECT ================= */

.btn{

transition:all .3s ease;

}

.btn:hover{

transform:translateY(-4px) scale(1.03);
box-shadow:0 12px 25px rgba(0,0,0,.18);

}

/* ================= IMAGE EFFECT ================= */

img{

transition:.35s ease;

}

figure:hover img{

transform:scale(1.05);

}

/* ================= HERO IMAGE ================= */

.hero img{

animation:fadeUp 1s ease;

}

/* ================= SECTION ================= */

section{

scroll-margin-top:90px;

}

/* ================= FLOATING BUTTON ================= */

.fixed-contact a{

animation:pulse 2.5s infinite;

}

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(200,33,45,.45);

}

70%{

box-shadow:0 0 0 15px rgba(200,33,45,0);

}

100%{

box-shadow:0 0 0 0 rgba(200,33,45,0);

}

}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#eef3f8;

}

::-webkit-scrollbar-thumb{

background:#c8212d;
border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#97131c;

}

/* ================= SELECTION ================= */

::selection{

background:#c8212d;
color:#fff;

}

/* ================= PRINT ================= */

@media print{

.fixed-contact,
.btn{

display:none!important;

}

body{

background:#fff;

}

}
