/* =========================
GLOBAL VARIABLES
========================= */

:root{
--primary:#2D8FE3;
--secondary:#0F4C5C;
--accent:#2BB673;
--bg-light:#F5F8FC;
--text-dark:#2A2A2A;
}

/* =========================
GLOBAL RESET
========================= */

*{
box-sizing:border-box;
margin:0;
padding:0;
transition:all .25s ease;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial, sans-serif;
background:var(--bg-light);
color:var(--text-dark);
line-height:1.6;
}

/* =========================
GLOBAL SECTION SYSTEM
========================= */

.section{
padding:80px 20px;
}

.container{
max-width:1100px;
margin:0 auto;
padding:0 20px;
}

.section h1,
.section h2{
margin-bottom:20px;
color:var(--secondary);
}

.section p{
margin-bottom:15px;
}

/* =========================
TOP BAR
========================= */

.top-bar{
background:var(--secondary);
color:white;
text-align:center;
padding:6px;
font-size:14px;
}

/* =========================
HEADER
========================= */

.main-header{
background:var(--secondary);
position:sticky;
top:0;
z-index:1000;
box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:12px 20px;
}

/* =========================
LOGO
========================= */

.logo{
display:flex;
align-items:center;
}

.logo img{
height:70px;
width:auto;
}

/* =========================
NAVIGATION
========================= */

.main-nav{
display:flex;
gap:28px;
align-items:center;
}

.main-nav a{
color:white;
text-decoration:none;
font-weight:500;
position:relative;
}

/* NAV HOVER */

.main-nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:var(--primary);
transition:.3s;
}

.main-nav a:hover::after{
width:100%;
}

/* =========================
CTA BUTTONS
========================= */

.nav-cta{
display:flex;
gap:18px;
align-items:center;
}

.nav-phone{
color:white;
text-decoration:none;
font-weight:500;
}

.nav-book{
background:var(--primary);
color:white;
padding:10px 18px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

.nav-book:hover{
transform:translateY(-3px);
box-shadow:0 6px 14px rgba(0,0,0,.25);
}

/* =========================
HAMBURGER MENU
========================= */

.menu-toggle{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

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

.hero{
min-height:420px;

background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("https://images.unsplash.com/photo-1588776814546-ec7eac7e1c2b?auto=format&fit=crop&w=1600&q=80");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;

padding:60px 20px;
text-align:center;
}

.hero-overlay{
background:rgba(0,0,0,.65);
padding:40px;
border-radius:12px;
color:white;
max-width:650px;
}

.hero-btn{
background:var(--primary);
padding:14px 30px;
color:white;
text-decoration:none;
border-radius:8px;
display:inline-block;
margin-top:20px;
font-weight:600;
}

.hero-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,.3);
}

/* =========================
SERVICE GRID
========================= */

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
margin-top:40px;
}

/* =========================
CARDS
========================= */

.card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
border-top:4px solid var(--primary);
}

.card:hover{
transform:translateY(-8px) scale(1.02);
box-shadow:0 16px 40px rgba(0,0,0,.18);
}

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

.section-gray{
background:#f3f6fb;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:25px;
flex-wrap:wrap;
}

.call-btn{
background:var(--accent);
color:white;
padding:14px 30px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

.call-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,.3);
}

/* =========================
MAP
========================= */

.map-container{
max-width:1100px;
margin:40px auto;
border-radius:12px;
overflow:hidden;
}

.map-container iframe{
width:100%;
height:420px;
border:0;
}

/* =========================
FOOTER
========================= */

.site-footer{
background:#145a63;
color:white;
padding:60px 20px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

.footer-container h4{
margin-bottom:10px;
}

.footer-container ul{
list-style:none;
padding:0;
}

.footer-container li{
margin-bottom:6px;
}

.footer-bottom{
text-align:center;
margin-top:20px;
}

/* =========================
FLOATING BUTTONS
========================= */

.floating-call{
position:fixed;
bottom:20px;
left:20px;
background:var(--accent);
color:white;
padding:14px 20px;
border-radius:30px;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,.3);
}

.floating-book{
position:fixed;
bottom:20px;
right:20px;
background:var(--primary);
color:white;
padding:14px 22px;
border-radius:30px;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,.3);
}

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

@media(max-width:900px){

.logo img{
height:55px;
}

.menu-toggle{
display:block;
}

/* slide menu */

.main-nav{
position:fixed;
top:0;
right:-260px;
width:260px;
height:100%;
background:var(--secondary);
flex-direction:column;
padding-top:80px;
transition:.3s;
}

.main-nav.show{
right:0;
}

.main-nav a{
padding:18px 25px;
border-bottom:1px solid rgba(255,255,255,.1);
}

.nav-cta{
display:none;
}

.footer-container{
grid-template-columns:1fr 1fr;
}

}

/* SMALL MOBILE */

@media(max-width:600px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.hero-overlay{
padding:25px;
}

}
/* GLOBAL PAGE LAYOUT */

main{
max-width:1100px;
margin:0 auto;
padding:60px 20px;
}
}
/* FLEET SECTION */

.fleet-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}
/* FLEET GRID */

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

/* CARD */

.fleet-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
display:flex;
flex-direction:column;
}

/* IMAGE FIX */

.fleet-card img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

/* TEXT */

.fleet-card h3{
padding:15px 20px 5px;
color:#0F4C5C;
font-size:18px;
}

.fleet-card p{
padding:0 20px 20px;
font-size:14px;
}

/* HOVER */

.fleet-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,.15);
}
.fleet-card img{
transition:transform .4s ease;
}

.fleet-card:hover img{
transform:scale(1.05);
}
/* FLEET SECTION */

.fleet-section{
padding:80px 20px;
background:#f5f8fc;
}

.fleet-intro{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:50px;
}

.fleet-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
margin-bottom:60px;
}

.fleet-row.reverse{
direction:rtl;
}

.fleet-row.reverse .fleet-text{
direction:ltr;
}

.fleet-image img{
width:100%;
border-radius:12px;
height:320px;
object-fit:cover;
}

.fleet-text h3{
color:#0F4C5C;
margin-bottom:15px;
}

.fleet-text ul{
margin-top:15px;
padding-left:20px;
line-height:1.8;
}

@media(max-width:900px){

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

.fleet-row.reverse{
direction:ltr;
}

}
.logo{
font-size:22px;
font-weight:700;
color:white;
}

.logo span{
color:#2BB673;
}
.logo{
color:#ffffff;
font-weight:700;
font-size:22px;
text-shadow:0 2px 8px rgba(0,0,0,.4);
}
