/* Sanvi Travels — premium taxi & tour UI */
:root {
  --navy-950: #0a0f1a;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --sky-300: #7dd3fc;
  --white: #ffffff;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --shadow-soft: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 12px 40px rgba(15, 23, 42, 0.12);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --header-h: 4.25rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  /* Page backdrop — light, layered mesh (pearl + mist + warmth) */
  --bg-page: #faf8f5;
  --bg-mesh-a: rgba(214, 226, 252, 0.5);
  --bg-mesh-b: rgba(255, 243, 232, 0.72);
  --bg-mesh-c: rgba(228, 236, 246, 0.55);
  --bg-mesh-d: rgba(241, 249, 255, 0.35);
  --bg-gradient: linear-gradient(
    165deg,
    #fffefb 0%,
    #f5f7fc 28%,
    #eef2f9 58%,
    #faf8f6 100%
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-page);
  min-height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy-900);
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--bg-page);
  background-image:
    radial-gradient(ellipse 120% 85% at 100% -8%, var(--bg-mesh-a), transparent 55%),
    radial-gradient(ellipse 95% 80% at -5% 35%, var(--bg-mesh-b), transparent 50%),
    radial-gradient(ellipse 80% 65% at 92% 72%, var(--bg-mesh-d), transparent 52%),
    radial-gradient(ellipse 70% 55% at 18% 88%, var(--bg-mesh-c), transparent 48%),
    var(--bg-gradient);
  background-attachment: fixed;
  background-size: 100% 100%;
  padding-bottom: env(safe-area-inset-bottom);
}

/* Soft paper grain — sits above bg, below content (no layout side effects) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

@media (prefers-reduced-transparency: reduce) {
  body::after {
    opacity: 0;
  }
}

/* Keep page content above the grain layer (header already z-index: 100) */
main,
.site-footer {
  position: relative;
  z-index: 2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-600);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-xl);
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  transition: box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy-900);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.9;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.12);
}

.logo-img--footer {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 0.35rem;
}

.logo--footer {
  align-items: center;
}

.logo-text strong {
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
}

.nav-list a {
  color: var(--navy-800);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.35rem 0;
  position: relative;
}

.nav-list a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue-500);
  transition: width 0.3s var(--ease-out);
}

.nav-list a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-list a:hover {
  text-decoration: none;
  color: var(--blue-600);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue-600), #1d4ed8);
  color: var(--white) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.nav-cta:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--slate-200);
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), opacity 0.25s, visibility 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .nav-list a {
    padding: 0.75rem;
    border-radius: var(--radius-xl);
  }

  .nav-list a:not(.nav-cta):hover {
    background: #f1f5f9;
  }

  .nav-list a:not(.nav-cta)::after {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 900px);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

@media (max-width: 959px) {
  .hero {
    min-height: 0;
    align-items: flex-start;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(15, 23, 42, 0.55) 0%, rgba(30, 58, 138, 0.35) 50%, rgba(15, 23, 42, 0.5) 100%),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=85");
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.02);
  animation: hero-ken 22s ease-in-out infinite alternate;
}

@keyframes hero-ken {
  from {
    transform: scale(1.02) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-1%, 1%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 15, 26, 0.75) 100%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.75rem;
  align-items: start;
  padding-block: 2.5rem 4rem;
  animation: fade-up 0.9s var(--ease-out) both;
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 2rem 2.5rem;
    align-items: center;
  }
}

.hero-content {
  position: relative;
  max-width: 38rem;
}

.hero-actions--compact .btn {
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sky-300);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 2rem;
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

/* Hero booking card */
.hero-booking-wrap {
  width: 100%;
  max-width: 420px;
  justify-self: stretch;
}

@media (min-width: 960px) {
  .hero-booking-wrap {
    justify-self: end;
  }
}

.hero-booking {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-2xl);
  padding: 1.1rem 1.15rem 1.25rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-tabs {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  background: #f1f5f9;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-tab {
  flex: 1;
  border: 0;
  padding: 0.55rem 0.4rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-900);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

@media (min-width: 400px) {
  .hero-tab {
    font-size: 0.8125rem;
    padding: 0.6rem 0.5rem;
  }
}

.hero-tab:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-tab.is-active {
  background: #3b82f6;
  color: var(--white);
}

.hero-tab.is-active:hover {
  background: #2563eb;
  color: var(--white);
}

.hero-panel {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-panel.is-active {
  display: flex;
}

/* Outstation: [hidden] must win over .hero-os-* display:flex/grid or sections stay visible */
#hero-panel-outstation [hidden] {
  display: none !important;
}

.hero-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  border: 0;
  padding: 0;
  margin: 0 0 0.25rem;
}

.hero-radios--3 {
  gap: 0.5rem 1rem;
}

.hero-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy-800);
  cursor: pointer;
}

.hero-radio-input {
  width: 1rem;
  height: 1rem;
  accent-color: #3b82f6;
  cursor: pointer;
}

.hero-field {
  display: block;
  margin: 0;
}

.hero-field--line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 0.5rem 0.65rem 0.55rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-field--line:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.hero-field-inner {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

/* AJAX city / airport suggestions (hero form) */
.local-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 2px);
  z-index: 60;
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
}

.local-suggest__item {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-900);
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
}

.local-suggest__item:hover,
.local-suggest__item:focus-visible {
  background: rgba(37, 99, 235, 0.08);
  outline: none;
}

.hero-field-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-field-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  align-self: center;
  border-radius: 50%;
}

.hero-field-icon--pick {
  background: radial-gradient(circle at 35% 35%, #22c55e, #16a34a);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.hero-field-icon--drop {
  background: radial-gradient(circle at 35% 35%, #f97316, #ea580c);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.hero-input {
  width: 100%;
  border: 0;
  padding: 0.1rem 0;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy-900);
  background: transparent;
}

.hero-input::placeholder {
  color: var(--slate-400);
  font-weight: 400;
}

.hero-input:focus {
  outline: none;
}

.hero-datetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.hero-field--small {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 0.45rem 0.65rem 0.5rem;
}

.hero-field--small:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.hero-field--small .hero-field-label {
  display: block;
  margin-bottom: 0.15rem;
}

.hero-field--small .hero-input {
  padding: 0;
}

.hero-os-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.5rem;
}

.hero-os-fields {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-os-multi-fields {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-os-round-return {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-swap {
  flex-shrink: 0;
  align-self: center;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-xl);
  background: #eff6ff;
  color: #2563eb;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.hero-swap:hover {
  background: #dbeafe;
}

.hero-swap:active {
  transform: scale(0.96);
}

.hero-duration {
  margin-top: 0.15rem;
}

.hero-duration-hint {
  font-size: 0.75rem;
  color: var(--slate-500);
  text-align: center;
  margin: 0 0 0.65rem;
  line-height: 1.4;
}

.hero-duration-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 0.65rem 0.5rem;
}

.hero-duration-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--slate-200);
  background: #f8fafc;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy-900);
  transition: background 0.2s;
}

.hero-duration-btn:hover {
  background: #e2e8f0;
}

.hero-duration-display {
  text-align: center;
  min-width: 7rem;
}

.hero-duration-display strong {
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
  color: var(--navy-900);
}

.hero-duration-unit {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-800);
}

.hero-duration-km {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 0.15rem;
}

.hero-os-return-loc {
  margin-top: 0.15rem;
}

.hero-booking-next {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: #ff6622;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 102, 34, 0.35);
  transition: filter 0.2s, transform 0.15s;
}

.hero-booking-next:hover {
  filter: brightness(1.05);
}

.hero-booking-next:active {
  transform: scale(0.99);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.hero-scroll::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.4;
    transform: translateY(10px);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s, background 0.2s, border-color 0.2s, color 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--slate-200);
  color: var(--navy-900);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border-color: rgba(37, 99, 235, 0.35);
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(241, 245, 249, 0.95) 100%);
}

/* Our fleet vs Taxi service — distinct bands */
.section.fleet {
  background: #ffffff;
  border-bottom: 1px solid rgba(148, 163, 184, 0.32);
}

.section.services {
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(180deg, #eef2f7 0%, #f4f7fb 38%, #f8fafc 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

/* Ready-made tour packages — separate band from Taxi service */
.section.packages {
  border-top: 1px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 42%, #eef2f6 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
  padding-block: clamp(3rem, 6.5vw, 4.75rem);
}

.section.packages .section-head {
  max-width: 38rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.section.packages .card-grid {
  gap: clamp(1.15rem, 2.2vw, 1.65rem);
}

.section.packages .package-card:not(.package-card--wide) {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.section.packages .package-card:not(.package-card--wide) .package-card-media {
  flex-shrink: 0;
}

.section.packages .package-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.35rem 1.35rem;
  gap: 0.45rem;
}

.section.packages .package-card h3 {
  margin: 0;
}

.section.packages .package-meta {
  margin: 0;
}

.section.packages .package-highlights {
  margin: 0;
  flex: 1 1 auto;
}

.section.packages .package-route {
  margin: 0;
  padding-top: 0.25rem;
}

.section.packages .package-card .btn {
  margin-top: 0.35rem;
  align-self: flex-start;
}

#fleet,
#services,
#packages,
#about,
#why,
#destinations,
#faq,
#contact {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

/* Destinations vs quick enquiry — clear section separation */
.section--destinations {
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.section--quick-enquiry {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

/* Company strip — banner + authentic contact / tours */
.section.company {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #f1f5f9 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.company-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .company-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
  }
}

.company-banner {
  margin: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: var(--white);
}

.company-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.company-head {
  margin-bottom: 1.25rem;
}

.company-head p {
  font-size: 1rem;
  line-height: 1.65;
}

.company-subheading {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 0.65rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.company-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.company-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9375rem;
  color: var(--navy-800);
  line-height: 1.55;
}

.company-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), #1d4ed8);
}

.company-contact-card {
  background: var(--white);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-soft);
}

.company-contact-card p {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
}

.company-contact-card p:last-child {
  margin-bottom: 0;
}

.company-contact-name {
  font-size: 1.05rem;
}

.company-contact-lines {
  font-variant-numeric: tabular-nums;
}

.company-address {
  color: var(--slate-500);
  font-size: 0.875rem !important;
  line-height: 1.5;
}

.company-social-id {
  font-size: 0.8125rem !important;
  color: var(--slate-500);
  margin-top: 0.65rem !important;
  padding-top: 0.65rem;
  border-top: 1px solid var(--slate-200);
}

.footer-contact-name {
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.35rem;
}

.footer-address {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0.5rem 0 0;
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.75rem;
}

.section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
  color: var(--slate-500);
  font-size: 1.05rem;
}

/* Package cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.15);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.package-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .package-card--wide {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }

  .package-card--wide .package-card-media {
    min-height: 280px;
  }
}

.package-card-media {
  min-height: 180px;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-600));
  background-image: var(--img), linear-gradient(135deg, var(--navy-800), var(--blue-600));
  background-size: cover;
  background-position: center;
}

.package-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  color: var(--navy-900);
}

.package-meta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-600);
  margin: 0 0 0.75rem;
}

.package-highlights {
  font-size: 0.9375rem;
  color: var(--slate-500);
  margin: 0 0 0.75rem;
}

.package-route {
  font-size: 0.875rem;
  color: var(--navy-800);
  margin: 0 0 1.25rem;
}

.package-route strong {
  color: var(--navy-900);
}

/* Fleet */
.fleet .section-head {
  margin-bottom: 1.75rem;
}

.fleet-toolbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  text-align: center;
}

@media (min-width: 720px) {
  .fleet-toolbar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.5rem;
  }
}

.fleet-toolbar-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  width: 100%;
}

@media (min-width: 720px) {
  .fleet-toolbar-label {
    width: auto;
  }
}

.fleet-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.fleet-filter {
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--navy-800);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.fleet-filter:hover {
  border-color: rgba(59, 130, 246, 0.45);
  color: var(--blue-600);
}

.fleet-filter.is-active {
  background: linear-gradient(135deg, var(--blue-600), #1d4ed8);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.fleet-filter:active {
  transform: scale(0.98);
}

.fleet-filter:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

.fleet-count {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--slate-500);
  width: 100%;
}

@media (min-width: 720px) {
  .fleet-count {
    width: auto;
    margin-left: auto;
  }
}

.fleet-count span {
  font-weight: 700;
  color: var(--navy-800);
}

.fleet-groups {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.fleet-block--empty {
  display: none;
}

.fleet-block-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 0.35rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.fleet-block-intro {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--slate-500);
  max-width: 40rem;
}

.fleet-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  contain: layout style;
}

.fleet-grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .fleet-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .fleet-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fleet-grid--rest {
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .fleet-grid--rest {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .fleet-grid--rest {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fleet-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}

.fleet-card:hover,
.fleet-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.28);
}

.fleet-card--hidden {
  display: none !important;
}

.fleet-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
  overflow: hidden;
  isolation: isolate;
}

.fleet-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.55) 100%);
  opacity: 0.35;
  transition: opacity 0.4s var(--ease-out);
  z-index: 1;
  pointer-events: none;
}

.fleet-card:hover .fleet-card-media::after {
  opacity: 0.55;
}

.fleet-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease-out);
}

.fleet-card:hover .fleet-card-media img,
.fleet-card:focus-within .fleet-card-media img {
  transform: scale(1.07);
}

.fleet-card-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(15, 23, 42, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: calc(100% - 1.3rem);
  text-align: right;
  line-height: 1.2;
}

.fleet-card-media--pos-tr img {
  object-position: 70% 40%;
}

.fleet-card-media--pos-tl img {
  object-position: 20% 45%;
}

.fleet-card-media--pos-br img {
  object-position: 55% 70%;
}

.fleet-card-media--pos-c img {
  object-position: center 55%;
}

.fleet-card-body {
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.fleet-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--navy-900);
  transition: color 0.25s;
}

.fleet-card:hover h3 {
  color: var(--blue-600);
}

.fleet-card-body p {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.55;
}

.fleet-card .btn-outline {
  transition: transform 0.25s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s;
}

.fleet-card:hover .btn-outline {
  border-color: rgba(37, 99, 235, 0.5);
  color: #1d4ed8;
}

.fleet-card .btn-outline:hover {
  transform: translateY(-1px);
}

.fleet-note {
  margin: 2rem auto 0;
  max-width: 52rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--slate-500);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .fleet-card,
  .fleet-card-media img,
  .fleet-card-media::after {
    transition-duration: 0.01ms !important;
  }

  .fleet-card:hover,
  .fleet-card:focus-within {
    transform: none;
  }

  .fleet-card:hover .fleet-card-media img,
  .fleet-card:focus-within .fleet-card-media img {
    transform: none;
  }
}

/* Services */
.services-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.25);
}

.service-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(125, 211, 252, 0.2));
  color: var(--blue-600);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--slate-500);
}

/* Why Choose — premium grid */
.why-head {
  max-width: 40rem;
}

.why-head .why-intro {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate-500);
}

.why-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin: 0 0 0.65rem;
}

.why-intro strong {
  color: var(--navy-800);
}

.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

.why-card {
  background: var(--white);
  padding: 1.5rem 1.4rem 1.45rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(37, 99, 235, 0.2);
}

.why-card-icon {
  display: inline-flex;
  padding: 0.65rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(125, 211, 252, 0.18));
  color: var(--blue-600);
  width: fit-content;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0;
  color: var(--navy-900);
  line-height: 1.3;
}

.why-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--slate-500);
  flex: 1;
}

.why-card p strong {
  color: var(--navy-800);
}

@media (prefers-reduced-motion: reduce) {
  .why-card:hover {
    transform: none;
  }
}

/* FAQ accordions (Quick inquiry column) */
.inquiry-faq {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.35rem 1.2rem 1.45rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-soft);
  align-self: start;
}

@media (min-width: 900px) {
  .inquiry-faq {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    max-height: min(75vh, 40rem);
    overflow-y: auto;
  }
}

.inquiry-faq .faq-list-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--navy-900);
}

.inquiry-faq-lead {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius-xl);
  margin-bottom: 0.65rem;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem 1rem 2.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy-900);
  position: relative;
  transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1;
}

.faq-item[open] summary::before {
  content: "−";
}

.faq-item summary:hover {
  background: rgba(37, 99, 235, 0.04);
}

.faq-item-body {
  padding: 0 1.15rem 1.1rem 2.75rem;
}

.faq-item-body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate-500);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary {
    transition: none;
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 15, 26, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.lightbox:not([hidden]) {
  opacity: 1;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 78vh;
  border-radius: var(--radius-2xl);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--slate-200);
  margin: 0;
  font-size: 0.95rem;
}

/* Inquiry + FAQ */
.inquiry-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .inquiry-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-soft);
}

.inquiry-form label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-top: 0.35rem;
}

.inquiry-form label:first-of-type {
  margin-top: 0;
}

.inquiry-form input,
.inquiry-form select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.inquiry-form input:focus,
.inquiry-form select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  background: var(--white);
}

.inquiry-form .btn {
  margin-top: 0.75rem;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--slate-500);
  margin: 0.5rem 0 0;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--slate-400);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  margin: 0.75rem 0 0;
  max-width: 32ch;
  font-size: 0.9375rem;
}

.logo--footer {
  color: var(--white);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  margin: 0 0 1rem;
}

.site-footer a {
  color: var(--slate-200);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.75rem;
}

.social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}

.social a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.875rem;
}

.footer-bottom p {
  margin: 0;
}

/* Callback modal */
.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  box-sizing: border-box;
}

.callback-modal[hidden] {
  display: none;
}

.callback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.callback-modal__dialog {
  position: relative;
  width: min(100%, 26rem);
  max-height: min(90vh, 36rem);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.callback-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--navy-900);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.callback-modal__close:hover {
  background: #e2e8f0;
}

.callback-modal__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  padding-right: 2rem;
}

.callback-modal__logo {
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.callback-modal__brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-900);
}

.callback-modal__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--navy-900);
}

.callback-modal__lead {
  font-size: 0.9rem;
  color: var(--slate-500);
  margin: 0 0 1rem;
  line-height: 1.45;
}

.callback-modal__summary-wrap {
  margin-bottom: 1rem;
}

.callback-modal__summary-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-400);
  margin: 0 0 0.35rem;
}

.callback-modal__summary {
  margin: 0;
  padding: 0.75rem 0.85rem;
  font-family: inherit;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--navy-800);
  background: #f8fafc;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 10rem;
  overflow-y: auto;
}

.callback-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.callback-modal__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-top: 0.25rem;
}

.callback-modal__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  margin-bottom: 0.15rem;
}

.callback-modal__input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.callback-modal__select {
  cursor: pointer;
  background: var(--white);
}

.callback-modal__error {
  font-size: 0.8125rem;
  color: #b91c1c;
  margin: 0.35rem 0 0;
}

.callback-modal__success {
  font-size: 0.875rem;
  color: #15803d;
  margin: 0.35rem 0 0;
  font-weight: 600;
}

.callback-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.callback-modal__actions .btn-block {
  width: 100%;
}

.callback-modal__form .btn-primary.is-loading {
  cursor: wait;
  opacity: 0.92;
  pointer-events: none;
}

/* Floating FABs — callback + WhatsApp (matched circular style) */
.float-fab {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right));
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.22);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.float-fab__icon {
  display: block;
  flex-shrink: 0;
}

.float-fab--callback {
  bottom: calc(5.5rem + 58px + 0.65rem + env(safe-area-inset-bottom));
  background: linear-gradient(145deg, #ff8c42 0%, #ea580c 48%, #c2410c 100%);
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.48), 0 2px 8px rgba(15, 23, 42, 0.12);
}

.float-fab--callback:hover {
  color: var(--white);
  transform: scale(1.06);
  box-shadow: 0 12px 36px rgba(234, 88, 12, 0.55), 0 4px 12px rgba(15, 23, 42, 0.15);
}

.float-fab--whatsapp {
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
  background: linear-gradient(145deg, #34d399 0%, #25d366 45%, #128c7e 100%);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.48), 0 2px 8px rgba(15, 23, 42, 0.12);
}

.float-fab--whatsapp:hover {
  color: var(--white);
  transform: scale(1.06);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.58), 0 4px 12px rgba(15, 23, 42, 0.15);
}

.float-fab:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.65);
  outline-offset: 3px;
}

@media (min-width: 769px) {
  .float-fab--callback {
    bottom: calc(1.5rem + 58px + 0.65rem + env(safe-area-inset-bottom));
  }

  .float-fab--whatsapp {
    bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
}

/* Sticky call — mobile */
.sticky-call {
  position: fixed;
  left: 1.25rem;
  bottom: calc(1.25rem + env(safe-area-inset-bottom));
  z-index: 90;
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-600), #1d4ed8);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  transition: transform 0.2s;
}

.sticky-call:hover {
  text-decoration: none;
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sticky-call {
    display: inline-flex;
  }
}
