/*
Theme Name: Auto Bartje Klajdi
Theme URI: https://autobartjeklajdi.com
Description: Landing page për Auto Bartje Klajdi — bartje profesionale 24/7
Author: Auto Bartje Klajdi
Version: 1.0.0
Text Domain: autobartje
*/

:root {
  --brand-orange: #ff5722;
  --brand-orange-dark: #e64a19;
  --brand-orange-light: #fff3ee;
  --brand-black: #0a0a0a;
  --brand-dark: #141414;
  --brand-dark-2: #1e1e1e;
  --brand-dark-3: #2a2a2a;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.25);
  --shadow-orange: 0 4px 20px rgba(255, 87, 34, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-display: 'Roboto Slab', Georgia, serif;
  --transition: 0.25s ease;
  --layout-max: 1280px;
  --layout-gutter: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 var(--layout-gutter);
}

/* ─── BADGES ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-orange {
  background: rgba(255, 87, 34, 0.15);
  color: var(--brand-orange);
}
.badge-accent {
  color: var(--brand-orange);
  background: transparent;
  padding-left: 0;
}

/* ─── TYPOGRAPHY ─── */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head .badge { margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--brand-black);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-head h2 .accent { color: var(--brand-orange); }
.section-head p { color: var(--gray-500); font-size: 1rem; line-height: 1.7; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-orange {
  background: var(--brand-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-orange:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.btn-outline-orange {
  background: transparent;
  color: var(--brand-orange);
  border-color: var(--brand-orange);
}
.btn-outline-orange:hover {
  background: var(--brand-orange);
  color: var(--white);
}
.btn-lg { padding: 14px 28px; font-size: 0.9375rem; }
.btn-block { width: 100%; }
.btn-header { padding: 10px 20px; font-size: 0.8125rem; }

/* ─── ICON BOX ─── */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.ib-orange {
  background: rgba(255, 87, 34, 0.12);
  color: var(--brand-orange);
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: var(--brand-black);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}
.site-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.header-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 var(--layout-gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.logo-wrap {
  flex-shrink: 0;
  justify-self: start;
}
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  justify-self: center;
}
.nav-desktop a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-desktop a:hover { opacity: 1; color: var(--brand-orange); }
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  justify-self: end;
}
.menu-toggle {
  display: none;
  color: var(--white);
  padding: 4px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--brand-black);
  padding: 0 var(--layout-gutter) 20px;
  max-width: var(--layout-max);
  margin: 0 auto;
}
.nav-mobile a {
  padding: 14px 0;
  border-bottom: 1px solid var(--brand-dark-3);
  font-weight: 600;
  color: var(--white);
  font-size: 0.9375rem;
}
.nav-mobile.open { display: flex; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.55) 55%, rgba(10, 10, 10, 0.35) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 640px; }
.hero-content .badge { margin-bottom: 20px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--brand-orange); }
.hero-lead {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ─── FEATURES BAR ─── */
.features-bar {
  background: var(--brand-dark);
  padding: 40px 0;
  border-bottom: 1px solid var(--brand-dark-3);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-item strong {
  display: block;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ─── DESTINATIONS ─── */
.section-destinations {
  padding: 80px 0;
  background: var(--white);
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.dest-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #edf0ea;
  position: relative;
}
.dest-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.35) 0%, transparent 45%),
    radial-gradient(ellipse at center, transparent 55%, rgba(10, 10, 10, 0.12) 100%);
  pointer-events: none;
  z-index: 1;
}
.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 0.45s ease;
}
.dest-card:hover .dest-card-img img { transform: scale(1.06); }
.dest-card-pin {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.45);
}
.dest-card-body {
  padding: 22px 18px 24px;
  text-align: center;
}
.dest-card-body h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--brand-black);
}
.dest-card-body p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ─── SERVICES ─── */
.section-services {
  padding: 80px 0;
  background: var(--brand-dark);
}
.section-services .section-head h2,
.section-services h2 { color: var(--white); }
.services-split {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) 1.6fr;
  gap: 32px;
  align-items: stretch;
}
.services-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
}
.services-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
  margin: 14px 0 16px;
}
.services-copy h2 .accent { color: var(--brand-orange); }
.services-copy p {
  color: var(--gray-400);
  margin-bottom: 24px;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 200px;
}
.service-card-bg {
  position: absolute;
  inset: 0;
}
.service-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.4) 100%);
}
.service-card-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-card-content h3 {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 12px 0 6px;
}
.service-card-content p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.service-card-content .icon-box {
  width: 40px;
  height: 40px;
  background: var(--brand-orange);
  color: var(--white);
}

/* ─── ABOUT ─── */
.section-about {
  padding: 80px 0;
  background: var(--gray-100);
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-stat-card {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--brand-orange);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-orange);
}
.about-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.about-stat-card span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-copy .badge { margin-bottom: 14px; }
.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-copy h2 .accent { color: var(--brand-orange); }
.about-copy > p {
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.7;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}
.about-list li svg { color: var(--brand-orange); flex-shrink: 0; }

/* ─── PROCESS ─── */
.section-process {
  padding: 80px 0;
  background: var(--gray-100);
}
.process-head {
  text-align: center;
  margin-bottom: 56px;
}
.process-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 12px;
}
.process-head h2 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--brand-black);
  text-transform: none;
  margin-bottom: 16px;
}
.process-head-line {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--brand-orange);
  border-radius: var(--radius-pill);
  margin: 0 auto;
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 72px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  border-top: 2px dashed var(--gray-200);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}
.process-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  color: var(--brand-orange);
  margin: 0 auto;
}
.process-step h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* ─── FLEET ─── */
.section-fleet {
  padding: 80px 0;
  background: var(--brand-dark);
}
.section-fleet .section-head h2 { color: var(--white); }
.fleet-slider {
  position: relative;
  padding: 0 48px;
}
.fleet-viewport {
  overflow: hidden;
}
.fleet-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
}
.fleet-card {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--brand-dark-2);
}
.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.fleet-card:hover img { transform: scale(1.05); }
.fleet-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
}
.fleet-nav:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-50%) scale(1.05);
}
.fleet-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: translateY(-50%);
}
.fleet-prev { left: 0; }
.fleet-next { right: 0; }
.fleet-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.fleet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: var(--transition);
  padding: 0;
}
.fleet-dot.is-active,
.fleet-dot:hover {
  background: var(--brand-orange);
  transform: scale(1.15);
}

/* ─── TESTIMONIALS ─── */
.section-testimonials {
  padding: 80px 0;
  background: var(--gray-100);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--brand-orange);
  margin-bottom: 14px;
}
.testimonial-card p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card footer strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}
.testimonial-card footer span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ─── LOCATIONS ─── */
.section-locations {
  padding: 80px 0;
  background: var(--white);
}
.locations-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.locations-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-height: 360px;
}
.location-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  transition: var(--transition);
}
.location-card:hover {
  background: var(--brand-orange-light);
}
.location-card h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.location-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.location-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 0 4px;
}
.location-phones a {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--brand-orange);
  font-size: 0.875rem;
}
.location-card small {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--gray-400);
}
.locations-map {
  min-height: 360px;
  height: 100%;
}
.map-frame {
  position: relative;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  user-select: none;
  touch-action: none;
}
.map-embed {
  position: absolute;
  top: -12px;
  right: -58px;
  width: calc(100% + 58px);
  height: calc(100% + 24px);
  border: 0;
  display: block;
  filter: grayscale(0.1) contrast(1.05);
  pointer-events: none;
}
.map-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: default;
}
.map-pins {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.map-pin-labeled {
  position: absolute;
  top: var(--pin-top);
  left: var(--pin-left);
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.map-pin-dot {
  width: 14px;
  height: 14px;
  background: var(--brand-orange);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.35);
}
.map-pin-label {
  padding: 6px 12px;
  background: var(--brand-black);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--brand-black);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
}
.footer-logo-img { height: 64px; margin-bottom: 16px; }
.footer-col p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--brand-orange); }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.footer-contact-list svg { color: var(--brand-orange); flex-shrink: 0; }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-dark-3);
  color: var(--white);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--brand-orange);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid var(--brand-dark-3);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--gray-500);
}
.footer-powered {
  color: var(--gray-400);
  font-weight: 600;
  transition: var(--transition);
}
.footer-powered:hover {
  color: var(--brand-orange);
}

/* ─── ANIMATIONS ─── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-stagger-scroll > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim-stagger-scroll.visible > *:nth-child(1) { transition-delay: 0.05s; }
.anim-stagger-scroll.visible > *:nth-child(2) { transition-delay: 0.12s; }
.anim-stagger-scroll.visible > *:nth-child(3) { transition-delay: 0.19s; }
.anim-stagger-scroll.visible > *:nth-child(4) { transition-delay: 0.26s; }
.anim-stagger-scroll.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-desktop { gap: 14px; }
  .nav-desktop a { font-size: 0.6875rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .services-split { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-stat-card { right: 20px; }
  .fleet-card { flex: 0 0 calc((100% - 20px) / 2); }
  .fleet-slider { padding: 0 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .locations-split { grid-template-columns: 1fr; }
  .locations-cards { min-height: 0; }
  .location-card { flex: none; }
  .footer-main { gap: 40px; }
  .footer-col:first-child { max-width: 240px; flex-basis: 240px; }
}

@media (max-width: 768px) {
  :root { --layout-gutter: 16px; }

  html { scroll-padding-top: 72px; }

  .site-header { padding: 8px 0; }
  .nav-desktop { display: none; }
  .header-inner { grid-template-columns: 1fr auto; gap: 10px; }
  .btn-header { display: none; }
  .menu-toggle { display: block; }
  .logo-img { height: 40px; }
  .footer-logo-img { height: 48px; }
  .nav-mobile a {
    font-size: 0.875rem;
    padding: 12px 0;
  }
  .nav-mobile .btn {
    margin-top: 8px;
    padding: 11px 18px;
    font-size: 0.75rem;
  }

  .badge {
    font-size: 0.625rem;
    padding: 5px 10px;
  }

  .section-head { margin-bottom: 28px; }
  .section-head h2 {
    font-size: 1.375rem;
    margin-bottom: 10px;
  }
  .section-head p { font-size: 0.875rem; }

  .btn {
    padding: 10px 16px;
    font-size: 0.75rem;
    gap: 6px;
  }
  .btn-lg {
    padding: 11px 18px;
    font-size: 0.8125rem;
  }

  .hero {
    padding: 88px 0 48px;
    min-height: 72vh;
    min-height: 72dvh;
    align-items: flex-end;
  }
  .hero-bg-img {
    object-fit: cover;
    object-position: 78% 42%;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.35) 35%,
      rgba(10, 10, 10, 0.78) 70%,
      rgba(10, 10, 10, 0.92) 100%
    );
  }
  .hero .container {
    width: 100%;
    padding-bottom: 8px;
  }
  .hero-content .badge { margin-bottom: 12px; }
  .hero h1 {
    font-size: 1.625rem;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .hero-lead {
    font-size: 0.875rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .hero-ctas {
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn { width: 100%; }

  .features-bar { padding: 28px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-item { gap: 12px; }
  .feature-item .icon-box { width: 40px; height: 40px; }
  .feature-item strong { font-size: 0.8125rem; }
  .feature-item p { font-size: 0.75rem; }

  .section-destinations,
  .section-services,
  .section-about,
  .section-process,
  .section-fleet,
  .section-testimonials,
  .section-locations {
    padding: 52px 0;
  }

  .dest-grid { grid-template-columns: 1fr; gap: 14px; }
  .dest-card-body { padding: 16px 14px 18px; }
  .dest-card-body h3 { font-size: 0.9375rem; }
  .dest-card-body p { font-size: 0.75rem; }
  .dest-card-pin { width: 32px; height: 32px; top: 10px; right: 10px; }

  .services-split { gap: 24px; }
  .services-copy h2 { font-size: 1.375rem; margin: 10px 0 12px; }
  .services-copy p { font-size: 0.875rem; margin-bottom: 16px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { min-height: 170px; }
  .service-card-content { padding: 18px; }
  .service-card-content h3 { font-size: 0.8125rem; margin: 10px 0 4px; }
  .service-card-content p { font-size: 0.6875rem; }
  .service-card-content .icon-box { width: 34px; height: 34px; }

  .about-copy h2 { font-size: 1.375rem; }
  .about-copy > p { font-size: 0.875rem; margin-bottom: 16px; }
  .about-list li { font-size: 0.8125rem; padding: 8px 0; }
  .about-stat-card { padding: 14px 18px; bottom: -12px; right: 12px; }
  .about-stat-card strong { font-size: 1.5rem; }
  .about-stat-card span { font-size: 0.625rem; }

  .process-head { margin-bottom: 36px; }
  .process-label { font-size: 0.6875rem; }
  .process-head h2 { font-size: 1.375rem; }
  .process-timeline { grid-template-columns: 1fr; gap: 36px; max-width: 300px; }
  .process-timeline::before { display: none; }
  .process-icon-circle { width: 110px; height: 110px; }
  .process-step h3 { font-size: 0.9375rem; }
  .process-step p { font-size: 0.8125rem; }

  .fleet-card { flex: 0 0 100%; }
  .fleet-slider { padding: 0 32px; }
  .fleet-nav { width: 34px; height: 34px; }
  .fleet-dots { margin-top: 18px; }
  .fleet-dot { width: 8px; height: 8px; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .testimonial-card { padding: 20px; }
  .testimonial-card p { font-size: 0.8125rem; }
  .testimonial-card footer strong { font-size: 0.8125rem; }

  .location-card { padding: 18px; gap: 12px; }
  .location-card h3 { font-size: 0.875rem; }
  .location-phones a { font-size: 0.8125rem; }
  .location-card small { font-size: 0.6875rem; }
  .map-frame,
  .map-embed,
  .locations-map { min-height: 260px; }

  .site-footer { padding: 40px 0 0; }
  .footer-main {
    flex-direction: column;
    gap: 28px;
  }
  .footer-col:first-child {
    max-width: 100%;
    flex-basis: auto;
  }
  .footer-col p {
    max-width: 100%;
    font-size: 0.8125rem;
  }
  .footer-col h4 { font-size: 0.75rem; margin-bottom: 12px; }
  .footer-contact-list li,
  .footer-col ul a { font-size: 0.8125rem; }
  .footer-social a { width: 36px; height: 36px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 16px 0;
    font-size: 0.75rem;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 68vh;
    min-height: 68dvh;
  }
  .hero-bg-img {
    object-position: 82% 40%;
  }
  .hero h1 { font-size: 1.375rem; }
  .hero-lead { font-size: 0.8125rem; }
  .section-head h2,
  .services-copy h2,
  .about-copy h2,
  .process-head h2 { font-size: 1.25rem; }
  .btn, .btn-lg {
    padding: 10px 14px;
    font-size: 0.6875rem;
    letter-spacing: 0.03em;
  }
  .process-icon-circle { width: 96px; height: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .anim-fade-up, .anim-stagger-scroll > *, .fade-in {
    opacity: 1;
    transform: none;
  }
}
