/* Palette: Sky Blue, Sunset Orange, Asphalt, White */
:root {
    --sky: #4CA1AF;
    --sunset: #F4D03F;
    --grad-bg: linear-gradient(135deg, #4CA1AF, #2C3E50);
    --grad-text: linear-gradient(to right, #4CA1AF, #F4D03F);
    --asphalt: #2C3E50;
    --white: #FFFFFF;
    --light-grey: #F0F2F5;
    
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--light-grey);
    color: var(--asphalt);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

/* Header */
.header { background: var(--white); padding: 20px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--asphalt); letter-spacing: 1px; }
.gradient-text { background: var(--grad-text); -webkit-background-clip: text; color: transparent; }

.nav a { margin-left: 25px; font-weight: 700; color: var(--asphalt); text-transform: uppercase; font-size: 0.9rem; }
.nav a:hover, .nav a.active { color: var(--sky); border-bottom: 2px solid var(--sky); }

.weather-widget { background: var(--light-grey); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; color: var(--asphalt); }

.mobile-toggle { display: none; background: transparent; border: none; font-weight: 700; cursor: pointer; color: var(--asphalt); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100%; background: var(--white); z-index: 2000; padding: 50px; transition: 0.3s; box-shadow: -5px 0 20px rgba(0,0,0,0.1); }
.mobile-menu.active { right: 0; }
.close-btn { background: none; border: none; font-size: 1.5rem; color: var(--asphalt); margin-bottom: 30px; cursor: pointer; }
.mobile-menu a { display: block; font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 20px; font-weight: 700; color: var(--asphalt); }

@media (max-width: 900px) {
    .nav, .weather-widget { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero { height: 80vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(44, 62, 80, 0.3), rgba(44, 62, 80, 0.8)); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; }

.badge-sky { background: var(--sky); color: var(--white); padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.8rem; margin-bottom: 20px; display: inline-block; }
.hero h1 { font-family: var(--font-head); font-size: 4rem; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.hero p { font-size: 1.3rem; margin-bottom: 40px; font-weight: 600; }

.trip-planner { background: var(--white); padding: 20px; border-radius: 12px; display: flex; gap: 15px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); flex-wrap: wrap; }
.input-group { flex: 1; text-align: left; min-width: 150px; }
.input-group label { display: block; font-size: 0.7rem; font-weight: 700; color: var(--asphalt); margin-bottom: 5px; text-transform: uppercase; }
.input-group input, .input-group select { width: 100%; border: none; border-bottom: 2px solid #eee; padding: 10px 0; font-family: var(--font-body); font-weight: 600; outline: none; }
.btn-gradient { background: var(--grad-text); color: var(--white); border: none; padding: 10px 30px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.3s; box-shadow: 0 5px 15px rgba(244, 208, 63, 0.4); }
.btn-gradient:hover { transform: translateY(-2px); }

/* Adventure Types */
.section-head h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--asphalt); margin-bottom: 10px; }
.sunset-line { width: 80px; height: 6px; background: var(--grad-text); margin-bottom: 40px; border-radius: 3px; }
.center { text-align: center; }
.center .sunset-line { margin: 0 auto 40px; }
.left { margin-right: auto; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.adv-card { display: block; position: relative; border-radius: 12px; overflow: hidden; height: 300px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.adv-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.adv-card:hover img { transform: scale(1.1); }
.adv-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: var(--white); }
.adv-info h3 { font-family: var(--font-head); margin-bottom: 5px; font-size: 1.4rem; }

/* Routes Teaser */
.routes-teaser { background: var(--asphalt); color: var(--white); padding: 80px 0; margin-top: 50px; }
.route-flex { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.route-text h3 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 20px; color: var(--sunset); }
.route-text p { margin-bottom: 30px; font-size: 1.1rem; opacity: 0.9; }
.btn-outline-white { border: 2px solid var(--white); color: var(--white); padding: 12px 30px; border-radius: 8px; font-weight: 700; display: inline-block; }
.btn-outline-white:hover { background: var(--white); color: var(--asphalt); }

.route-visual { width: 100%; max-width: 400px; height: 10px; background: #555; position: relative; border-radius: 5px; }
.route-line { width: 60%; height: 100%; background: var(--sunset); border-radius: 5px; }
.map-point { position: absolute; top: -30px; font-weight: 700; font-size: 0.9rem; }
.start { left: 0; }
.end { right: 0; }

/* Fleet Page */
.fleet-grid { display: flex; flex-direction: column; gap: 40px; }
.vehicle-card { display: grid; grid-template-columns: 1.2fr 1fr; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.v-img { position: relative; }
.v-img img { height: 100%; object-fit: cover; }
.v-tag { position: absolute; top: 20px; left: 20px; background: var(--sunset); color: var(--asphalt); padding: 5px 15px; border-radius: 20px; font-weight: 800; font-size: 0.8rem; }
.v-content { padding: 40px; }
.v-content h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 10px; color: var(--asphalt); }
.specs { list-style: none; display: flex; gap: 20px; margin: 20px 0; font-weight: 600; color: #666; }
.v-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; }
.price { font-size: 1.3rem; font-weight: 800; color: var(--sky); }
.btn-book { background: var(--asphalt); color: var(--white); padding: 10px 25px; border-radius: 8px; font-weight: 700; }

/* Routes Page */
.route-list { display: flex; flex-direction: column; gap: 50px; }
.route-item { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.route-item.reverse { direction: rtl; }
.route-item.reverse .r-text { direction: ltr; }
.r-text h3 { font-family: var(--font-head); font-size: 1.8rem; color: var(--asphalt); margin-bottom: 10px; }
.meta { display: block; color: var(--sky); font-weight: 700; margin-bottom: 20px; text-transform: uppercase; font-size: 0.9rem; }
.link-arrow { color: var(--asphalt); font-weight: 700; border-bottom: 2px solid var(--sunset); display: inline-block; margin-top: 20px; }

/* Booking Page */
.booking-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--white); padding: 60px; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.05); }
.booking-intro h2 { font-family: var(--font-head); font-size: 2.2rem; margin-bottom: 10px; color: var(--asphalt); }
.perks { list-style: none; margin-top: 30px; font-weight: 600; }
.perks li { margin-bottom: 10px; }

.adventure-form { background: var(--light-grey); padding: 40px; border-radius: 12px; }
.adventure-form h3 { margin-bottom: 30px; font-family: var(--font-head); color: var(--asphalt); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.f-group { margin-bottom: 20px; }
.f-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.9rem; }
.f-group input, .f-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-family: var(--font-body); }
.checkboxes { display: flex; gap: 20px; flex-wrap: wrap; }
.full { width: 100%; }

/* Legal */
.legal-box { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 12px; }
.legal-box h1 { font-family: var(--font-head); color: var(--asphalt); }

/* Footer */
.footer { background: var(--asphalt); color: #ccc; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { font-family: var(--font-head); color: var(--white); font-size: 1.5rem; margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: #ccc; }
.f-links a:hover { color: var(--sunset); }
.copyright { text-align: center; font-size: 0.8rem; padding-top: 20px; border-top: 1px solid #444; }

@media (max-width: 900px) {
    .hero h1 { font-size: 2.5rem; }
    .trip-planner { flex-direction: column; }
    .grid-3, .vehicle-card, .route-item, .booking-layout, .form-grid { grid-template-columns: 1fr; }
    .route-flex { flex-direction: column; text-align: center; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}