/* ================================
GLOBAL RESET
================================ */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
background:#f7f9fc;
color:#333;
line-height:1.6;
}

/* ================================
HEADINGS
================================ */

h1,h2,h3,h4{
color:#0A3D62;
font-weight:600;
}

/* ================================
HERO SECTION
================================ */

.hero{
padding:80px 20px;
text-align:center;
color:white;
background:
linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
url("assets/images/hero.jpg") center/cover no-repeat;
}

.hero h1{
font-size:2.4rem;
margin-bottom:10px;
}

.hero .subheading{
font-size:1.2rem;
margin-bottom:20px;
opacity:0.95;
}

.hero .hero-btn{
display:inline-block;
background:#F76C2F;
color:white;
padding:14px 26px;
border-radius:8px;
font-weight:600;
text-decoration:none;
margin-top:10px;
transition:0.3s;
}

.hero .hero-btn:hover{
background:#e65b1e;
}

/* ================================
SECTION SPACING
================================ */

section{
padding:50px 18px;
max-width:1200px;
margin:auto;
}

section h2{
text-align:center;
margin-bottom:30px;
font-size:1.8rem;
}

/* ================================
VEHICLES
================================ */

.car-cards{
display:grid;
grid-template-columns:1fr;
gap:20px;
}

.car-card{
background:white;
border-radius:14px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.25s;
}

.car-card:hover{
transform:translateY(-5px);
}

.car-card img{
width:100%;
height:200px;
object-fit:cover;
}

.car-card h3{
padding:15px 15px 5px;
font-size:1.2rem;
}

.car-card p{
padding:0 15px;
font-size:0.95rem;
color:#555;
}

.car-card p:last-child{
padding-bottom:15px;
}

/* ================================
AIRPORT SECTIONS
================================ */

.airport-card{
background:white;
border-radius:14px;
padding:20px;
margin-bottom:30px;
box-shadow:0 6px 20px rgba(0,0,0,0.06);
}

.airport-card h3{
text-align:center;
margin-bottom:20px;
font-size:1.3rem;
}

/* ================================
PRICE CARDS
================================ */

.price-cards{
display:grid;
grid-template-columns:1fr;
gap:16px;
}

.price-card{
background:#fafafa;
border-radius:10px;
padding:18px;
text-align:center;
border:1px solid #eee;
transition:0.25s;
}

.price-card:hover{
transform:translateY(-4px);
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.price-card h4{
margin-bottom:8px;
font-size:1.05rem;
}

.price-card p{
font-size:1.4rem;
font-weight:600;
color:#F76C2F;
margin-bottom:12px;
}

/* ================================
BOOK BUTTON
================================ */

.book-btn{
background:#F76C2F;
color:white;
border:none;
width:100%;
padding:13px;
font-size:1rem;
border-radius:8px;
cursor:pointer;
font-weight:600;
transition:0.25s;
}

.book-btn:hover{
background:#e65b1e;
}

/* ================================
FOOTER
================================ */

footer{
background:#0A3D62;
color:white;
text-align:center;
padding:25px 10px;
margin-top:40px;
}

/* ================================
TABLET
================================ */

@media (min-width:768px){

.hero{
padding:110px 20px;
}

.hero h1{
font-size:3rem;
}

.car-cards{
grid-template-columns:repeat(2,1fr);
}

.price-cards{
grid-template-columns:repeat(2,1fr);
}

}

/* ================================
DESKTOP
================================ */

@media (min-width:1024px){

.car-cards{
grid-template-columns:repeat(4,1fr);
}

.price-cards{
grid-template-columns:repeat(4,1fr);
}

.hero h1{
font-size:3.4rem;
}

section h2{
font-size:2rem;
}

}