/* ============================================================
   Sarah Travels — Main Stylesheet (Light Theme)
   File: css/style.css
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── ROOT ── */
:root {
  --orange:      #FF5C00;
  --orange2:     #FF8533;
  --orange-glow: rgba(255, 92, 0, 0.22);
  --black:       #ffffff;
  --dark:        #f5f5f5;
  --card:        #ffffff;
  --card2:       #f0f0f0;
  --border:      rgba(0, 0, 0, 0.1);
  --white:       #1a1a1a;
  --grey:        #666666;
  --lgrey:       #444444;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: #ffffff; color: #1a1a1a; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatAnim{ 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes marquee  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse    { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes spin     { to { transform: rotate(360deg); } }

/* ── UTILITY ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 64px; }
.section-pad { padding: 100px 0; }

.sec-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.sec-label::before { content: ''; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1; letter-spacing: 0.04em;
  color: #1a1a1a;
}
.sec-title .stroke { -webkit-text-stroke: 2px rgba(0,0,0,0.3); color: transparent; }
.sec-desc { color: var(--grey); line-height: 1.75; max-width: 420px; margin-top: 12px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 64px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,92,0,0.15);
  transition: padding 0.3s, background 0.3s;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
nav.scrolled { padding: 13px 64px; background: rgba(255,255,255,0.98); }
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 0.1em; display: flex; align-items: center; gap: 10px; }
.logo span { color: var(--orange); }
.nav-logo-img { height: 54px; width: auto; object-fit: contain; }
.nav-logo-text { display: none; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: #555555; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.13em; text-transform: uppercase; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.3s; border-radius: 2px; }
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--orange); color: #fff; padding: 10px 28px; border-radius: 6px; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.2s; box-shadow: 0 0 20px var(--orange-glow); }
.nav-cta:hover { background: var(--orange2); transform: translateY(-1px); box-shadow: 0 0 35px rgba(255,92,0,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: #1a1a1a; border-radius: 2px; transition: all 0.3s; display: block; }
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(255,255,255,0.98); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 0.1em; color: #1a1a1a; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-close { position: absolute; top: 24px; right: 32px; font-size: 2rem; cursor: pointer; color: #555; background: none; border: none; }

/* ── HERO ── */
#home { min-height: 100vh; display: flex; align-items: center; padding: 130px 64px 80px; position: relative; overflow: hidden; background: linear-gradient(150deg, #ffffff 0%, #fff5f0 60%, #ffffff 100%); }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(255,92,0,0.07) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,92,0,0.05) 0%, transparent 60%); }
.hero-bg-grid { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(255,92,0,0.06) 1px,transparent 1px), linear-gradient(90deg,rgba(255,92,0,0.06) 1px,transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%); }
.hero-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,92,0,0.08); border: 1px solid rgba(255,92,0,0.3); color: var(--orange); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 7px 18px; border-radius: 100px; margin-bottom: 22px; animation: fadeUp 0.6s ease both; }
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse 1.5s infinite; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.8rem, 7.5vw, 6.8rem); line-height: 0.93; letter-spacing: 0.03em; color: #1a1a1a; animation: fadeUp 0.7s 0.1s ease both; }
.hero-title .accent { color: var(--orange); }
.hero-title .stroke { -webkit-text-stroke: 2px rgba(0,0,0,0.25); color: transparent; }
.hero-sub { margin-top: 22px; font-size: 1.05rem; color: #666666; line-height: 1.75; max-width: 460px; animation: fadeUp 0.7s 0.2s ease both; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
.btn-primary { background: var(--orange); color: #fff; padding: 14px 38px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; border: none; cursor: pointer; transition: all 0.25s; box-shadow: 0 0 30px var(--orange-glow); display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255,92,0,0.45); }
.btn-outline { background: transparent; color: #1a1a1a; padding: 14px 38px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; border: 2px solid rgba(0,0,0,0.2); cursor: pointer; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.hero-stats { display: flex; gap: 40px; margin-top: 50px; padding-top: 40px; border-top: 1px solid rgba(0,0,0,0.1); animation: fadeUp 0.7s 0.4s ease both; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.78rem; color: #666; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; animation: fadeIn 0.9s 0.3s ease both; }
.hero-img-wrap { width: 100%; max-width: 580px; position: relative; }
.hero-img-wrap img { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; filter: drop-shadow(0 30px 60px rgba(255,92,0,0.15)); }
.hero-img-wrap::after { content: ''; position: absolute; bottom: -30px; left: 10%; right: 10%; height: 60px; background: radial-gradient(ellipse, rgba(255,92,0,0.2), transparent 70%); filter: blur(15px); }
.float-card { position: absolute; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border: 1px solid rgba(255,92,0,0.2); border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.float-card.fc1 { top: 8%; left: -8%; animation: floatAnim 3.5s ease-in-out infinite; }
.float-card.fc2 { bottom: 12%; right: -6%; animation: floatAnim 3.8s 0.5s ease-in-out infinite; }
.fc-icon { font-size: 1.5rem; }
.fc-text strong { display: block; font-size: 0.85rem; font-weight: 700; color: #1a1a1a; }
.fc-text span { font-size: 0.72rem; color: #666; }

/* ── TICKER ── */
.ticker { background: var(--orange); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; gap: 60px; animation: marquee 22s linear infinite; }
.ticker-inner span { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.85); flex-shrink: 0; }

/* ── SERVICES ── */
#services { background: #f8f8f8; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); border-radius: 20px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); }
.svc-card { background: #ffffff; padding: 36px 28px; position: relative; overflow: hidden; transition: all 0.3s; border-right: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08); }
.svc-card:nth-child(3n) { border-right: none; }
.svc-card:nth-last-child(-n+3) { border-bottom: none; }
.svc-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,92,0,0.05),transparent); opacity: 0; transition: opacity 0.3s; }
.svc-card:hover { background: #fff5f0; box-shadow: 0 10px 40px rgba(255,92,0,0.1); }
.svc-card:hover::before { opacity: 1; }
.svc-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(255,92,0,0.08); border: 1px solid rgba(255,92,0,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; transition: all 0.3s; }
.svc-card:hover .svc-icon { background: var(--orange); border-color: var(--orange); transform: scale(1.05); }
.svc-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.06em; margin-bottom: 8px; color: #1a1a1a; }
.svc-desc { color: #666; font-size: 0.88rem; line-height: 1.65; }
.svc-num { position: absolute; top: 22px; right: 24px; font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: rgba(0,0,0,0.04); line-height: 1; }

/* ── WHY CHOOSE US ── */
#why { background: #ffffff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-stack { position: relative; height: 520px; }
.why-img-main { position: absolute; right: 0; top: 0; width: 75%; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.15); border: 1px solid rgba(0,0,0,0.08); }
.why-img-main img { width: 100%; height: 340px; object-fit: cover; }
.why-img-sec { position: absolute; left: 0; bottom: 0; width: 55%; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); border: 2px solid var(--orange); }
.why-img-sec img { width: 100%; height: 220px; object-fit: cover; }
.why-badge-stat { position: absolute; right: -10px; bottom: 120px; background: var(--orange); border-radius: 12px; padding: 14px 20px; text-align: center; box-shadow: 0 10px 40px rgba(255,92,0,0.4); }
.why-badge-stat strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: #fff; line-height: 1; }
.why-badge-stat span { font-size: 0.68rem; color: rgba(255,255,255,0.8); letter-spacing: 0.1em; text-transform: uppercase; }
.why-list { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; border-radius: 12px; background: #f8f8f8; border: 1px solid rgba(0,0,0,0.08); transition: all 0.3s; }
.why-item:hover { border-color: rgba(255,92,0,0.3); background: #fff5f0; transform: translateX(4px); box-shadow: 0 4px 20px rgba(255,92,0,0.1); }
.why-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; background: rgba(255,92,0,0.08); border: 1px solid rgba(255,92,0,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all 0.3s; }
.why-item:hover .why-icon { background: var(--orange); border-color: var(--orange); }
.why-text strong { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; color: #1a1a1a; }
.why-text span { color: #666; font-size: 0.84rem; line-height: 1.5; }

/* ── FLEET ── */
#fleet { background: #f8f8f8; }
.fleet-header { margin-bottom: 40px; }
.fleet-tabs { display: flex; gap: 8px; margin-top: 28px; flex-wrap: wrap; }
.fleet-tab { padding: 9px 22px; border-radius: 100px; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(0,0,0,0.15); color: #666; background: #ffffff; cursor: pointer; transition: all 0.2s; }
.fleet-tab.active, .fleet-tab:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.fleet-panel { display: none; }
.fleet-panel.active { display: grid; }
.fleet-grid-3 { grid-template-columns: repeat(3,1fr); gap: 24px; }
.fleet-grid-4 { grid-template-columns: repeat(4,1fr); gap: 20px; }
.fleet-card { background: #ffffff; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; overflow: hidden; transition: all 0.3s; position: relative; }
.fleet-card:hover { transform: translateY(-5px); border-color: rgba(255,92,0,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.fleet-img-wrap { overflow: hidden; position: relative; }
.fleet-img { width: 100%; height: 190px; object-fit: cover; transition: transform 0.4s; background: #f0f0f0; }
.fleet-card:hover .fleet-img { transform: scale(1.05); }
.fleet-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,transparent 50%,rgba(0,0,0,0.2)); }
.fleet-badge { position: absolute; top: 12px; left: 12px; background: var(--orange); color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.fleet-info { padding: 18px 20px; }
.fleet-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.06em; margin-bottom: 4px; color: #1a1a1a; }
.fleet-cap { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: #666; }
.fleet-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.fleet-tag { background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.1); font-size: 0.68rem; color: #666; padding: 3px 10px; border-radius: 100px; }

/* ── BOOKING ── */
#booking { background: #ffffff; position: relative; overflow: hidden; }
#booking::before { content: ''; position: absolute; top: -300px; right: -300px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle,rgba(255,92,0,0.06),transparent 65%); pointer-events: none; }
.booking-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.booking-info .sec-title em { color: var(--orange); font-style: italic; }
.booking-info p { color: #666; line-height: 1.8; margin: 16px 0 28px; }
.booking-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.booking-perks li { display: flex; align-items: center; gap: 14px; font-size: 0.92rem; color: #444; }
.perk-dot { width: 32px; height: 32px; flex-shrink: 0; border-radius: 8px; background: rgba(255,92,0,0.08); border: 1px solid rgba(255,92,0,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.booking-form-wrap { background: #f8f8f8; border: 1px solid rgba(0,0,0,0.08); border-radius: 24px; padding: 40px 36px; position: relative; }
.booking-form-wrap::before { content: ''; position: absolute; inset: 0; border-radius: 24px; background: linear-gradient(135deg,rgba(255,92,0,0.03),transparent); pointer-events: none; }
.bform-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 0.06em; margin-bottom: 26px; display: flex; align-items: center; gap: 10px; color: #1a1a1a; }
.bform-title span { color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: #666; }
.form-group input, .form-group select, .form-group textarea { background: #ffffff; border: 1px solid rgba(0,0,0,0.15); border-radius: 8px; padding: 11px 14px; color: #1a1a1a; font-family: 'Barlow', sans-serif; font-size: 0.92rem; outline: none; transition: all 0.2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); background: #fff8f5; box-shadow: 0 0 0 3px rgba(255,92,0,0.1); }
.form-group select option { background: #ffffff; color: #1a1a1a; }
.form-group textarea { resize: none; height: 85px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(0,0,0,0.3); }
.form-submit { width: 100%; padding: 15px; margin-top: 6px; background: var(--orange); color: #fff; border: none; border-radius: 10px; font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: 0.12em; cursor: pointer; transition: all 0.25s; box-shadow: 0 0 30px var(--orange-glow); display: flex; align-items: center; justify-content: center; gap: 10px; }
.form-submit:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255,92,0,0.45); }
.form-msg { display: none; padding: 12px 16px; border-radius: 8px; font-size: 0.88rem; font-weight: 600; margin-top: 12px; }
.form-msg.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #16a34a; }
.form-msg.error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #dc2626; }

/* ── CONTACT ── */
#contact { background: #f8f8f8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px; border-radius: 14px; background: #ffffff; border: 1px solid rgba(0,0,0,0.08); transition: all 0.3s; }
.contact-card:hover { border-color: rgba(255,92,0,0.3); transform: translateX(4px); box-shadow: 0 4px 20px rgba(255,92,0,0.08); }
.cc-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; background: rgba(255,92,0,0.08); border: 1px solid rgba(255,92,0,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.cc-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #666; margin-bottom: 4px; }
.cc-value { font-size: 0.95rem; color: #1a1a1a; font-weight: 600; }
.cc-value a { color: #1a1a1a; transition: color 0.2s; }
.cc-value a:hover { color: var(--orange); }

/* ── FOOTER ── */
footer { background: #1a1a1a; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 60px; padding: 70px 0 50px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-img { height: 60px; width: auto; object-fit: contain; background: white; border-radius: 8px; padding: 6px 12px; }
.footer-tagline { color: #aaaaaa; font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.2s; }
.social-btn:hover { background: var(--orange); border-color: var(--orange); }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.12em; margin-bottom: 20px; color: #ffffff; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #aaaaaa; font-size: 0.88rem; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '→'; color: var(--orange); font-size: 0.7rem; opacity: 0; transition: opacity 0.2s; }
.footer-links a:hover { color: #ffffff; }
.footer-links a:hover::before { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { color: #aaaaaa; font-size: 0.82rem; }
.footer-copy span { color: var(--orange); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #aaaaaa; font-size: 0.82rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #ffffff; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 30px; right: 30px; z-index: 10000; padding: 16px 24px; border-radius: 12px; font-weight: 600; font-size: 0.9rem; opacity: 0; transform: translateY(20px); transition: all 0.4s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: #f0fdf4; border: 1px solid #22c55e; color: #16a34a; }
.toast.error   { background: #fef2f2; border: 1px solid #ef4444; color: #dc2626; }

/* ── BACK TO TOP ── */
.back-top { position: fixed; bottom: 30px; left: 30px; z-index: 999; width: 42px; height: 42px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; opacity: 0; transform: translateY(20px); transition: all 0.3s; border: none; box-shadow: 0 4px 20px var(--orange-glow); }
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--orange2); transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  nav { padding: 16px 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { display: none; }
  .why-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-img-stack { height: 360px; display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .fleet-grid-3 { grid-template-columns: repeat(2,1fr); }
  .fleet-grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #home { padding: 100px 24px 60px; }
  .section-pad { padding: 70px 0; }
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid-3, .fleet-grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}