/* =============================================
   VTS CAB SERVICE — DARK/WHITE MIXED THEME
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #FFD700;
  --yellow-light: #FFE555;
  --yellow-dim: rgba(255, 215, 0, 0.15);
  --dark: #0D0D10;
  --dark-2: #161619;
  --dark-3: #1E1E22;
  --white: #FFFFFF;
  --white-off: #F8F8FA;
  --gray-100: #F2F2F5;
  --gray-200: #E5E5EA;
  --gray-400: #AAAAB4;
  --gray-600: #6B6B78;
  --gray-800: #2A2A32;
  --text-dark: #111118;
  --text-mid: #555560;
  --text-light: #DDDDE8;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.08);
  --border-yellow: rgba(255,215,0,0.35);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-yellow: 0 8px 30px rgba(255,215,0,0.25);
  --radius: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.4,0,0.2,1);
  --transition: all 0.3s var(--ease);
  --font: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); line-height: 1.6; overflow-x: hidden; background: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: #0068d1; border-radius: 3px; }

/* ---------- SHARED UTILITIES ---------- */
.accent { color: #0068d1; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: block; font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #0068d1; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 14px; color: var(--white); }
.dark-text { color: var(--text-dark) !important; }
.section-desc { font-size: 1rem; color: var(--text-light); max-width: 540px; line-height: 1.75; }
.muted { color: var(--text-mid) !important; }
.section-header { margin-bottom: 56px; }
.center-header { text-align: center; }
.center-desc { margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: #0068d1; color: #0D0D10;
  padding: 13px 26px; border-radius: 50px;
  font-weight: 700; font-size: 0.92rem; font-family: var(--font);
  border: none; cursor: pointer; transition: var(--transition);
}
.btn-primary:hover { background: var(--yellow-light); transform: translateY(-2px); box-shadow: var(--shadow-yellow); }
.btn-primary.large { padding: 15px 32px; font-size: 0.98rem; }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.1); color: var(--white);
  padding: 13px 26px; border-radius: 50px;
  font-weight: 600; font-size: 0.92rem;
  border: 1.5px solid rgba(255,255,255,0.25); transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: #0068d1;
  padding: 13px 26px; border-radius: 50px;
  font-weight: 600; font-size: 0.92rem;
  border: 1.5px solid #0068d1; transition: var(--transition);
}
.btn-outline:hover { background: var(--yellow-dim); transform: translateY(-2px); }
.btn-outline.large { padding: 15px 32px; font-size: 0.98rem; }

/* ---------- AOS ---------- */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,16,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  padding: 12px 0;
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: #0068d1; color: #0D0D10;
  font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.logo-text { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 8px 14px; font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.7); border-radius: 8px; transition: var(--transition); }
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-cta { padding: 9px 20px; background: #0068d1; color: #0D0D10; border-radius: 50px; font-weight: 700; font-size: 0.85rem; margin-left: 6px; transition: var(--transition); }
.nav-cta:hover { background: var(--yellow-light); transform: translateY(-1px); box-shadow: var(--shadow-yellow); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO — dark full image
   ============================================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 120px 24px 80px; background: var(--dark); }

.hero-img-wrap { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,16,0.88) 0%, rgba(13,13,16,0.65) 50%, rgba(13,13,16,0.45) 100%);
}

.floating-badge {
  position: absolute; top: 100px; right: 36px;
  background: rgba(255,215,0,0.12); border: 1px solid var(--border-yellow);
  backdrop-filter: blur(12px); border-radius: 50px;
  padding: 8px 16px; font-size: 0.78rem; font-weight: 600;
  color: #0068d1; display: flex; align-items: center; gap: 8px;
  animation: floatBadge 3s ease-in-out infinite; z-index: 2;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #0068d1; animation: blink 1.5s ease infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.hero-content { max-width: 680px; position: relative; z-index: 2; animation: heroIn 0.9s ease forwards; color: var(--white); }
@keyframes heroIn { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }

.hero-tagline {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: #0068d1; margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.hero-tagline::before { content: ''; width: 28px; height: 2px; background: #0068d1; }

.hero-title { font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.text-highlight { color: #0068d1; }

.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 34px; max-width: 500px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero-stats {
  display: flex; align-items: center; gap: 0;
  padding: 18px 26px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); backdrop-filter: blur(12px);
  width: fit-content;
}
.stat { text-align: center; padding: 0 22px; }
.stat-num { font-size: 1.7rem; font-weight: 800; color: #0068d1; display: inline; }
.stat p { font-size: 0.74rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.stat-divider { width: 1px; height: 38px; background: rgba(255,255,255,0.12); }

.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; z-index: 2;
}
.scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, #0068d1, transparent); animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }

/* =============================================
   SERVICES — white bg
   ============================================= */
.services { padding: 100px 0; background: var(--white); }

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

.service-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: #0068d1; }
.service-card.featured { border-color: #0068d1; box-shadow: 0 4px 24px rgba(255,215,0,0.15); }

.service-img-wrap { position: relative; height: 200px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.07); }

.service-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--dark); color: var(--white);
  font-size: 0.68rem; font-weight: 700; padding: 4px 12px;
  border-radius: 50px; letter-spacing: 0.06em; text-transform: uppercase;
}
.service-tag.pop { background: #0068d1; color: var(--dark); }

.service-body { padding: 22px 24px 26px; }
.service-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.service-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }

.card-link { font-size: 0.83rem; font-weight: 700; color: #0068d1; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s ease; }
.card-link:hover { gap: 8px; }

/* =============================================
   FLEET — dark bg
   ============================================= */
.fleet { padding: 100px 0; background: var(--dark); }
.fleet .section-title { color: var(--white); }
.fleet .section-desc { color: var(--text-light); }

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

.fleet-card {
  background: var(--dark-2); border: 1px solid var(--border-dark);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: var(--transition);
}
.fleet-card:hover { border-color: var(--border-yellow); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px var(--border-yellow); }
.fleet-card.premium-card { border-color: var(--border-yellow); }

.fleet-img-wrap { position: relative; height: 220px; overflow: hidden; }
.fleet-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.9); }
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.05); filter: brightness(1); }

.fleet-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.68rem; font-weight: 700; padding: 5px 12px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 0.07em;
}
.fleet-badge.eco { background: rgba(76,175,80,0.15); color: #81C784; border: 1px solid rgba(76,175,80,0.3); }
.fleet-badge.family { background: rgba(33,150,243,0.15); color: #64B5F6; border: 1px solid rgba(33,150,243,0.3); }
.fleet-badge.premium { background: rgba(255,215,0,0.12); color: #0068d1; border: 1px solid var(--border-yellow); }

.fleet-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.fleet-info h3 { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.fleet-tagline { font-size: 0.8rem; color: #0068d1; font-weight: 600; margin-bottom: 14px; }

.fleet-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.fleet-specs span {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark);
  border-radius: 50px; padding: 4px 12px; font-size: 0.76rem; font-weight: 500; color: var(--text-light);
}

.fleet-desc { font-size: 0.85rem; color: var(--gray-400); line-height: 1.7; flex: 1; margin-bottom: 20px; }

.fleet-btn {
  display: block; text-align: center; background: #0068d1; color: var(--dark);
  padding: 12px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.87rem; transition: var(--transition);
}
.fleet-btn:hover { background: var(--yellow-light); box-shadow: var(--shadow-yellow); }

/* =============================================
   WHY US — white bg
   ============================================= */
.why-us { padding: 100px 0; background: var(--white-off); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.why-content .section-title { margin-bottom: 18px; }
.why-para { font-size: 0.95rem; line-height: 1.8; margin-bottom: 28px; }

.why-list { display: flex; flex-direction: column; gap: 12px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; font-weight: 500; color: var(--text-dark); }
.check { width: 22px; height: 22px; border-radius: 50%; background: #0068d1; color: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 900; flex-shrink: 0; }

.why-visual { display: flex; flex-direction: column; gap: 16px; }
.why-main-img { position: relative; border-radius: var(--radius); overflow: hidden; }
.why-main-img img { width: 100%; height: 320px; object-fit: cover; }
.why-img-tag {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(13,13,16,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border-yellow); border-radius: 10px;
  padding: 10px 16px; display: flex; align-items: center; gap: 8px; color: var(--white);
}
.why-img-tag strong { font-size: 1.2rem; color: #0068d1; }
.why-img-tag span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

.why-mini-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.why-mini-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 18px 14px; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.why-mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-mini-card.yellow { background: #0068d1; }
.why-mini-card.yellow .mini-num, .why-mini-card.yellow p { color: var(--dark) !important; }
.mini-num { font-size: 1.5rem; font-weight: 900; color: var(--text-dark); line-height: 1; }
.mini-num span { font-size: 0.9rem; font-weight: 700; }
.why-mini-card p { font-size: 0.73rem; color: var(--text-mid); margin-top: 4px; line-height: 1.3; }

/* =============================================
   DESTINATIONS — dark
   ============================================= */
.destinations { padding: 100px 0; background: var(--dark-2); }
.destinations .section-title { color: var(--white); }
.destinations .section-desc { color: var(--text-light); }

.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: default; }
.dest-card img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover img { transform: scale(1.08); }

.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,13,16,0.9) 0%, transparent 100%);
  padding: 32px 18px 18px;
}
.dest-info h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.dest-info p { font-size: 0.75rem; color: #0068d1; font-weight: 600; }

/* =============================================
   CTA — full image
   ============================================= */
.cta-section { position: relative; padding: 110px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,16,0.85) 0%, rgba(13,13,16,0.7) 100%);
}
.cta-content { position: relative; z-index: 1; text-align: center; color: var(--white); }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 460px; margin: 0 auto 38px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* =============================================
   CONTACT — white bg
   ============================================= */
.contact { padding: 100px 0; background: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; background: var(--white-off);
  border: 1px solid var(--border-light); border-radius: var(--radius-sm); transition: var(--transition);
}
.contact-item:hover { border-color: #0068d1; }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: #0068d1; color: var(--dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mid); margin-bottom: 5px; }
.contact-item a, .contact-item p { font-size: 0.9rem; color: var(--text-dark); display: block; line-height: 1.65; }
.contact-item a:hover { color: #0068d1; }

.contact-map-img { position: relative; border-radius: var(--radius-sm); overflow: hidden; height: 140px; }
.contact-map-img img { width: 100%; height: 100%; object-fit: cover; }
.map-label {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(13,13,16,0.85); color: var(--white);
  font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 50px;
  backdrop-filter: blur(8px); white-space: nowrap;
}

.contact-form {
  background: var(--dark); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 36px; color: var(--white);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.form-sub { font-size: 0.84rem; color: var(--gray-400); margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-light); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark); border-radius: var(--radius-sm);
  padding: 13px 16px; font-size: 0.9rem; font-family: var(--font);
  color: var(--white); outline: none; transition: var(--transition); resize: vertical; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #0068d1; box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-600); }
.form-group select option { background: var(--dark-2); color: var(--white); }

/* =============================================
   FOOTER — dark
   ============================================= */
.footer { background: var(--dark); border-top: 1px solid var(--border-dark); padding: 70px 0 0; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; padding-bottom: 50px; }

.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand > p { font-size: 0.85rem; color: var(--gray-400); line-height: 1.7; margin-bottom: 20px; max-width: 250px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; background: var(--dark-3);
  border: 1px solid var(--border-dark); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); transition: var(--transition);
}
.footer-social a:hover { border-color: var(--border-yellow); color: #0068d1; transform: translateY(-3px); }

.footer-links h4, .footer-contact h4 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.86rem; color: var(--gray-400); transition: var(--transition); }
.footer-links a:hover { color: #0068d1; padding-left: 4px; }

.footer-contact p, .footer-contact a { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 7px; display: block; transition: var(--transition); }
.footer-contact a:hover { color: #0068d1; }

.footer-bottom {
  border-top: 1px solid var(--border-dark); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray-600); }

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.float-call, .float-wa {
  position: fixed; border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  z-index: 999; transition: var(--transition); right: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.float-call { background: #0068d1; color: var(--dark); bottom: 92px; animation: fab 3s ease-in-out infinite; }
.float-wa { background: #25D366; color: var(--white); bottom: 26px; animation: fab 3s ease-in-out 0.5s infinite; }
.float-call:hover, .float-wa:hover { transform: scale(1.12); }
@keyframes fab { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* Toast */
.toast {
  position: fixed; bottom: 160px; right: 22px;
  background: var(--dark-2); border: 1px solid var(--border-yellow);
  border-radius: var(--radius-sm); padding: 14px 18px;
  font-size: 0.86rem; color: var(--white);
  backdrop-filter: blur(16px); z-index: 9999; max-width: 280px;
  box-shadow: var(--shadow-yellow);
  animation: toastIn 0.4s ease, toastOut 0.4s 2.6s ease forwards;
}
@keyframes toastIn { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(60px); } }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-mini-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(13,13,16,0.97); flex-direction: column;
    justify-content: center; align-items: center; gap: 20px;
    z-index: 999; backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.15rem; }
  .nav-cta { font-size: 1rem; padding: 14px 30px; }
  .hamburger { display: flex; z-index: 1000; position: relative; }

  .hero { padding: 100px 24px 60px; text-align: center; }
  .hero-tagline { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { width: 100%; justify-content: center; }
  .floating-badge { top: 78px; right: 14px; }

  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services, .fleet, .why-us, .destinations, .contact { padding: 70px 0; }
  .cta-section { padding: 80px 0; }
  .section-header { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }
  .dest-grid { grid-template-columns: 1fr; }
  .why-mini-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
}
