/* ============================================================
   ExploringLanka — Components
   All UI components: buttons, cards, nav, modals, forms…
   ============================================================ */

/* ─── Page Loader ────────────────────────────────────────── */

#el-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0D1B2A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

#el-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  animation: loaderFadeIn 0.5s ease both;
}

@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Compass SVG wrapper */
.loader__compass-wrap {
  position: relative;
  width: 96px;
  height: 96px;
}

/* Outer ring spins slowly */
.loader__ring {
  transform-origin: 48px 48px;
  animation: loaderRingSpin 6s linear infinite;
}

/* Needle oscillates */
.loader__needle {
  transform-origin: 48px 48px;
  animation: loaderNeedle 1.8s ease-in-out infinite;
}

/* Inner glow pulse */
.loader__glow {
  animation: loaderGlow 2s ease-in-out infinite alternate;
}

@keyframes loaderRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes loaderNeedle {
  0%   { transform: rotate(-18deg); }
  50%  { transform: rotate(18deg); }
  100% { transform: rotate(-18deg); }
}

@keyframes loaderGlow {
  from { opacity: 0.3; }
  to   { opacity: 0.8; }
}

/* Brand text */
.loader__brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 700;
  color: #F5EDD6;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: -0.2rem;
}

.loader__brand span {
  color: #C9963A;
}

/* Tagline */
.loader__tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  color: rgba(201, 150, 58, 0.85);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Progress bar */
.loader__bar-wrap {
  width: 180px;
  height: 2px;
  background: rgba(201, 150, 58, 0.15);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 0.4rem;
}

.loader__bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #C9963A, #E8B566, #C9963A);
  background-size: 200% 100%;
  border-radius: 99px;
  animation: loaderBarFill 2s cubic-bezier(0.4, 0, 0.2, 1) forwards,
             loaderBarShimmer 1.5s linear infinite;
}

@keyframes loaderBarFill {
  0%   { width: 0%; }
  40%  { width: 55%; }
  70%  { width: 78%; }
  90%  { width: 90%; }
  100% { width: 100%; }
}

@keyframes loaderBarShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Decorative particles */
.loader__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.loader__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #C9963A;
  opacity: 0;
  animation: loaderParticle var(--dur, 3s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes loaderParticle {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: 0.6; transform: translateY(-20px) scale(1); }
  100% { opacity: 0; transform: translateY(-80px) scale(0.3); }
}



/* ─── Buttons ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--transition-normal),
    border-color     var(--transition-normal),
    color            var(--transition-normal),
    transform        var(--transition-fast),
    box-shadow       var(--transition-normal);
  white-space: nowrap;
  min-height: 48px;
  min-width: 48px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.btn:active { transform: scale(0.97); }

/* Ripple effect */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:active::after { opacity: 1; }

/* Primary — Gold */
.btn--primary {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Secondary — Outline Gold */
.btn--secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--gold-10);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Ghost — Cream outline */
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 237, 214, 0.3);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--cream-10);
  border-color: var(--cream);
}

/* Dark */
.btn--dark {
  background: var(--deep);
  color: var(--cream);
  border-color: var(--deep);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  background: var(--deep-3);
}

/* Sizes */
.btn--sm {
  padding: 10px var(--space-4);
  font-size: var(--text-xs);
  min-height: 40px;
}

.btn--lg {
  padding: 18px var(--space-8);
  font-size: var(--text-base);
  min-height: 56px;
}

.btn--pill {
  border-radius: var(--radius-full);
}

.btn--full { width: 100%; }

/* Icon button */
.btn--icon {
  padding: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* WhatsApp button */
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  gap: var(--space-3);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}

/* ─── Navigation ─────────────────────────────────────────── */

/* Desktop top nav */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: var(--nav-height);
  display: none;
  align-items: center;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  padding-inline: var(--space-8);
  padding-top: var(--safe-top);
}

.navbar.is-scrolled {
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,150,58,0.2);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--cream);
  letter-spacing: -0.01em;
}

.navbar__logo-text span {
  color: var(--gold);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.navbar__link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: rgba(245, 237, 214, 0.8);
  text-decoration: none;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  position: relative;
  padding-block: var(--space-1);
  transition: color var(--transition-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition-normal);
}

.navbar__link:hover,
.navbar__link.is-active {
  color: var(--cream);
}

.navbar__link:hover::after,
.navbar__link.is-active::after {
  right: 0;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .navbar { display: flex; }
}

/* Mobile bottom navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: calc(var(--bottom-nav-height) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: stretch;
}

.bottom-nav__inner {
  display: flex;
  width: 100%;
  padding-inline: var(--space-2);
}

.bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: var(--space-2) var(--space-1);
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.bottom-nav__item:active {
  transform: scale(0.9);
}

.bottom-nav__item.is-active {
  color: var(--gold);
}

.bottom-nav__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bottom-nav__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
  transition: transform var(--transition-fast);
}

.bottom-nav__item.is-active .bottom-nav__icon svg {
  transform: scale(1.15);
}

.bottom-nav__item.is-active .bottom-nav__icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  background: var(--gold-10);
  border-radius: var(--radius-full);
}

.bottom-nav__label {
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .bottom-nav { display: none; }
}

/* ─── Floating CTA (mobile) ──────────────────────────────── */

.floating-cta {
  display: flex;
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + var(--space-4));
  right: var(--space-4);
  z-index: calc(var(--z-nav) - 1);
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-2);
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px var(--space-5);
  background: var(--gold);
  color: var(--deep);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 150, 58, 0.5);
  transition: transform var(--transition-fast), box-shadow var(--transition-normal);
  -webkit-tap-highlight-color: transparent;
  animation: goldGlow 3s ease-in-out infinite;
  min-height: 48px;
}

.floating-cta__btn:active {
  transform: scale(0.95);
}

.floating-cta__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.floating-cta__wa:active { transform: scale(0.92); }

@media (min-width: 768px) {
  .floating-cta { display: none; }
}

/* ─── Tour Card ──────────────────────────────────────────── */

.tour-card {
  background: var(--deep-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal),
    border-color var(--transition-normal);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
  display: flex;
  flex-direction: column;
}

.tour-card:hover,
.tour-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-40);
}

.tour-card:active {
  transform: translateY(-2px);
}

.tour-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  will-change: transform;
}

.tour-card:hover .tour-card__image img {
  transform: scale(1.05);
}

.tour-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--gold);
  color: var(--deep);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  padding: 4px var(--space-3);
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tour-card__price {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  background: rgba(13, 27, 42, 0.88);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  padding: 6px var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-20);
}

.tour-card__wishlist {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 36px;
  height: 36px;
  background: rgba(13, 27, 42, 0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition-fast), transform var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.tour-card__wishlist:active {
  transform: scale(0.85);
}

.tour-card__wishlist.is-active svg {
  fill: #E8536A;
  stroke: #E8536A;
  animation: heartBeat 0.4s ease;
}

.tour-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.tour-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--cream);
  line-height: var(--leading-snug);
}

.tour-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px var(--space-3);
  background: var(--deep-light);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid var(--color-border);
}

.chip--gold {
  background: var(--gold-10);
  border-color: var(--gold-20);
  color: var(--gold);
}

.chip--jungle {
  background: rgba(45, 90, 61, 0.25);
  border-color: rgba(45, 90, 61, 0.4);
  color: var(--jungle-light);
}

.tour-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}

/* Horizontal card (swipe shelf) */
.tour-card--horizontal {
  flex-direction: row;
  width: 300px;
}

.tour-card--horizontal .tour-card__image {
  width: 120px;
  min-width: 120px;
  aspect-ratio: auto;
}

.tour-card--horizontal .tour-card__body {
  padding: var(--space-4);
}

/* ─── Destination Card ───────────────────────────────────── */

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.destination-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  will-change: transform;
}

.destination-card:hover .destination-card__image,
.destination-card:focus-visible .destination-card__image {
  transform: scale(1.06);
}

.destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.9) 0%,
    rgba(13,27,42,0.3) 60%,
    transparent 100%
  );
  transition: background 0.4s ease;
}

.destination-card:hover .destination-card__overlay,
.destination-card.is-expanded .destination-card__overlay {
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.97) 0%,
    rgba(13,27,42,0.7) 50%,
    rgba(13,27,42,0.3) 100%
  );
}

.destination-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  transition: transform 0.4s ease;
}

.destination-card__flag {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.destination-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--cream);
  line-height: var(--leading-snug);
}

.destination-card__desc {
  font-size: var(--text-xs);
  color: rgba(245,237,214,0.75);
  line-height: var(--leading-normal);
  margin-top: var(--space-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.3s ease;
  opacity: 0;
}

.destination-card:hover .destination-card__desc,
.destination-card.is-expanded .destination-card__desc {
  max-height: 80px;
  opacity: 1;
  margin-top: var(--space-2);
}

.destination-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: var(--weight-semibold);
  margin-top: var(--space-2);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease 0.05s, opacity 0.3s ease 0.1s;
}

.destination-card:hover .destination-card__cta,
.destination-card.is-expanded .destination-card__cta {
  max-height: 40px;
  opacity: 1;
}

/* ─── Hero ───────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 20s ease-in-out infinite;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,27,42,0.15) 0%,
    rgba(13,27,42,0.1) 25%,
    rgba(13,27,42,0.5) 65%,
    rgba(13,27,42,0.95) 100%
  );
  z-index: 1;
}

/* Grain texture overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-inline: var(--space-5);
  max-width: 900px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
  opacity: 0;
  animation: fadeInDown 0.8s ease 0.3s both;
}

.hero__eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--white);
  margin-bottom: var(--space-5);
  overflow: hidden;
}

.hero__title-word {
  display: inline-block;
  opacity: 0;
  animation: textReveal 0.7s ease both;
}

.hero__title-word:nth-child(1) { animation-delay: 0.5s; }
.hero__title-word:nth-child(2) { animation-delay: 0.65s; }
.hero__title-word:nth-child(3) { animation-delay: 0.8s; }
.hero__title-word:nth-child(4) { animation-delay: 0.95s; }
.hero__title-word:nth-child(5) { animation-delay: 1.1s; }
.hero__title-word:nth-child(6) { animation-delay: 1.25s; }

.hero__title-accent {
  color: var(--gold);
  font-style: italic;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: rgba(245, 237, 214, 0.85);
  margin-bottom: var(--space-8);
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.4s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.6s both;
}

/* Hero search bar */
.hero__search {
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.8s both;
  width: 100%;
  max-width: 580px;
  margin-inline: auto;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 150, 58, 0.35);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-3) var(--space-3) var(--space-5);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.search-bar:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-10), var(--shadow-gold);
}

.search-bar__icon {
  color: var(--gold);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.search-bar__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-size: var(--text-base);
  font-family: var(--font-body);
  min-width: 0;
}

.search-bar__input::placeholder {
  color: rgba(245, 237, 214, 0.45);
}

.search-bar__btn {
  background: var(--gold);
  color: var(--deep);
  border: none;
  border-radius: var(--radius-full);
  padding: 10px var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  min-height: 44px;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}

.search-bar__btn:active {
  transform: scale(0.96);
}

/* Autocomplete dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 0;
  right: 0;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: var(--z-above);
  display: none;
  box-shadow: var(--shadow-lg);
}

.search-dropdown.is-open {
  display: block;
  animation: fadeInDown 0.25s ease both;
}

.search-dropdown__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  transition: background var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.search-dropdown__item:hover,
.search-dropdown__item:focus {
  background: var(--gold-10);
}

.search-dropdown__icon {
  color: var(--gold);
  font-size: 1.2em;
}

.search-dropdown__label {
  font-size: var(--text-sm);
  color: var(--cream);
}

.search-dropdown__type {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-left: auto;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: calc(var(--space-8) + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0;
  animation: fadeIn 1s ease 2.2s both;
}

.hero__scroll-text {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(245,237,214,0.5);
}

.hero__scroll-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  animation: bounce 2s ease-in-out infinite;
}

/* Hero dots */
.hero__dots {
  position: absolute;
  bottom: calc(var(--space-20) + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 3;
}

.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(245,237,214,0.35);
  border: none;
  cursor: pointer;
  transition: width var(--transition-normal), background var(--transition-normal);
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}

.hero__dot.is-active {
  width: 24px;
  background: var(--gold);
}

/* ─── Stats / Why Us ─────────────────────────────────────── */

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-6);
  background: var(--deep-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-normal), transform var(--transition-normal);
}

.stat-card:hover {
  border-color: var(--gold-40);
  transform: translateY(-2px);
}

.stat-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-10);
  border-radius: var(--radius-md);
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.stat-card__icon svg {
  width: 24px;
  height: 24px;
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-card__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--cream);
}

.stat-card__desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

/* ─── Testimonial Card ───────────────────────────────────── */

.testimonial-card {
  position: relative;
  background: var(--deep-3);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  min-height: 360px;
  height: 100%;
}

.testimonial-card__quote-icon {
  color: var(--gold);
  opacity: 0.3;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  height: 40px;
  display: block;
  user-select: none;
}

.testimonial-card__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: var(--leading-loose);
  color: var(--cream);
  flex: 1;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: auto;
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--gold-40);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: var(--weight-semibold);
  color: var(--cream);
  font-size: var(--text-base);
}

.testimonial-card__origin {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ─── Testimonials Carousel ──────────────────────────────── */

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonials-track .testimonial-card {
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 calc(50% - var(--space-3));
    margin-right: var(--space-6);
  }
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
  justify-content: center;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--deep-3);
  border: 1px solid var(--color-border);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.carousel-btn:hover {
  background: var(--gold-10);
  border-color: var(--gold);
  color: var(--gold);
}

.carousel-btn:active {
  transform: scale(0.9);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  gap: var(--space-2);
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-text-faint);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  padding: 0;
}

.carousel-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ─── Modal (Bottom Sheet) ───────────────────────────────── */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: var(--z-modal);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

@media (min-width: 768px) {
  .modal-backdrop {
    align-items: center;
  }
}

.modal {
  width: 100%;
  max-width: 560px;
  max-height: 92dvh;
  background: var(--deep);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
  border-top: 1px solid var(--color-border);
}

.modal-backdrop.is-open .modal {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .modal {
    border-radius: var(--radius-xl);
    max-height: 85dvh;
    transform: translateY(20px) scale(0.97);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  }
  .modal-backdrop.is-open .modal {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal__handle {
  width: 40px;
  height: 4px;
  background: var(--color-text-faint);
  border-radius: var(--radius-full);
  margin: var(--space-3) auto 0;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .modal__handle { display: none; }
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.modal__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--cream);
}

.modal__close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-3);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.modal__close:hover { background: var(--deep-light); color: var(--cream); }

.modal__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6) 0;
  flex-shrink: 0;
}

.modal__progress-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-text-faint);
  transition: background var(--transition-normal), transform var(--transition-normal);
}

.modal__progress-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

.modal__progress-dot.is-done {
  background: var(--jungle-light);
}

.modal__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-6);
  -webkit-overflow-scrolling: touch;
}

.modal__footer {
  padding: var(--space-4) var(--space-6);
  padding-bottom: calc(var(--space-4) + var(--safe-bottom));
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex-shrink: 0;
  background: var(--deep);
}

/* ─── Form Elements ──────────────────────────────────────── */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--cream);
  letter-spacing: 0.01em;
}

.form-input,
.form-textarea,
.form-select {
  background: var(--deep-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: 14px var(--space-4);
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  min-height: 48px;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-faint);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-10);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: var(--leading-normal);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9963A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
  cursor: pointer;
}

.form-select option {
  background: var(--deep);
  color: var(--cream);
}

.form-hint {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.form-error {
  font-size: var(--text-xs);
  color: #E8536A;
}

/* Date picker input */
.form-input[type="date"] {
  color-scheme: dark;
}

/* ─── Filter Tags ────────────────────────────────────────── */

.filter-tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  background: var(--deep-3);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  min-height: 40px;
}

.filter-tag:hover {
  border-color: var(--gold-40);
  color: var(--cream);
}

.filter-tag:active { transform: scale(0.95); }

.filter-tag.is-active {
  background: var(--gold-10);
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── Fleet / Vehicle Card ───────────────────────────────── */

.vehicle-card {
  background: var(--deep-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vehicle-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-card__image img {
  transform: scale(1.05);
}

.vehicle-card__body {
  padding: var(--space-5);
}

.vehicle-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--cream);
  margin-bottom: var(--space-2);
}

.vehicle-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.vehicle-spec {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.vehicle-spec svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── Accordion ──────────────────────────────────────────── */

.accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__item:last-child { border-bottom: none; }

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: var(--deep-3);
  color: var(--cream);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  text-align: left;
  border: none;
  font-family: inherit;
  transition: background var(--transition-fast);
  min-height: 56px;
  -webkit-tap-highlight-color: transparent;
  gap: var(--space-4);
}

.accordion__trigger:hover {
  background: var(--deep-light);
}

.accordion__icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(180deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__item.is-open .accordion__body {
  max-height: 600px;
}

.accordion__content {
  padding: var(--space-5) var(--space-6);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  font-size: var(--text-sm);
  background: var(--deep);
}

/* ─── Toast ──────────────────────────────────────────────── */

.toast-container {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + var(--space-4));
  right: var(--space-4);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  pointer-events: none;
}

@media (min-width: 768px) {
  .toast-container {
    bottom: var(--space-6);
    right: var(--space-6);
  }
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--deep-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  max-width: 340px;
  pointer-events: all;
  animation: toastSlideIn 0.4s ease both;
}

.toast--success { border-color: rgba(45, 90, 61, 0.6); }
.toast--error   { border-color: rgba(196, 94, 53, 0.6); }

.toast__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.toast__message {
  font-size: var(--text-sm);
  color: var(--cream);
  line-height: var(--leading-snug);
}

/* ─── Page Header ────────────────────────────────────────── */

.page-header {
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-16);
  position: relative;
  overflow: hidden;
  background: var(--deep-2);
}

.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.6) 0%,
    rgba(13,27,42,0.8) 100%
  );
  z-index: 1;
}

.page-header__content {
  position: relative;
  z-index: 2;
}

/* ─── Breadcrumb ─────────────────────────────────────────── */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.breadcrumb__item {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumb__item a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb__item a:hover { color: var(--gold); }

.breadcrumb__separator {
  color: var(--color-text-faint);
  font-size: var(--text-xs);
}

/* ─── Gallery Grid ───────────────────────────────────────── */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 160px);
  gap: var(--space-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery__item:first-child {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img { transform: scale(1.05); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  transition: background var(--transition-normal);
}

.gallery__item:hover .gallery__overlay {
  background: rgba(13,27,42,0.5);
}

/* ─── Pricing Card ───────────────────────────────────────── */

.pricing-card {
  background: var(--deep-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(
    145deg,
    rgba(201,150,58,0.08) 0%,
    var(--deep-3) 100%
  );
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: var(--space-4);
  right: -var(--space-8);
  background: var(--gold);
  color: var(--deep);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  padding: 4px var(--space-8);
  transform: rotate(45deg) translate(24px, -16px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.pricing-card__price sup {
  font-size: var(--text-xl);
  vertical-align: top;
  margin-top: var(--space-2);
}

.pricing-card__per {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pricing-card__feature::before {
  content: '✓';
  color: var(--jungle-light);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

/* ─── Team Card ──────────────────────────────────────────── */

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--deep-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-40);
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--gold-40);
  transition: border-color var(--transition-normal);
}

.team-card:hover .team-card__avatar {
  border-color: var(--gold);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--cream);
}

.team-card__role {
  font-size: var(--text-sm);
  color: var(--gold);
  font-weight: var(--weight-medium);
}

.team-card__bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

/* ─── Contact Card ───────────────────────────────────────── */

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--deep-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-normal), transform var(--transition-normal);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.contact-method:hover {
  border-color: var(--gold-40);
  transform: translateY(-2px);
}

.contact-method__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-method__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}

.contact-method__value {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--cream);
}

/* ─── Badge ──────────────────────────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--gold   { background: var(--gold-10);  color: var(--gold); border: 1px solid var(--gold-20); }
.badge--jungle { background: rgba(45,90,61,0.25); color: #5EA876; border: 1px solid rgba(45,90,61,0.4); }
.badge--terra  { background: rgba(196,94,53,0.15); color: var(--terracotta-light); border: 1px solid rgba(196,94,53,0.3); }
.badge--cream  { background: rgba(245,237,214,0.1); color: var(--cream); border: 1px solid rgba(245,237,214,0.2); }

/* ─── Social Links ───────────────────────────────────────── */

.social-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--deep-3);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  text-decoration: none;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.social-link:hover, .social-link:active {
  background: var(--gold-10);
  border-color: var(--gold-40);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── Gold Line Divider ──────────────────────────────────── */

.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
  margin-top: var(--space-4);
}

/* ─── Step Indicator ─────────────────────────────────────── */

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-6);
}

.step {
  display: flex;
  align-items: center;
  flex: 1;
}

.step__number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  background: var(--deep-3);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.step.is-active .step__number {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--deep);
}

.step.is-done .step__number {
  border-color: var(--jungle-light);
  background: var(--jungle-light);
  color: var(--white);
}

.step__line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.step.is-done .step__line {
  background: var(--jungle-light);
}

/* ─── Skeleton Loading ───────────────────────────────────── */

.skeleton-card {
  background: var(--deep-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.skeleton-img {
  aspect-ratio: 4/3;
  background: linear-gradient(
    90deg,
    var(--deep-3) 25%,
    var(--deep-light) 50%,
    var(--deep-3) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-text {
  height: 1em;
  background: linear-gradient(
    90deg,
    var(--deep-3) 25%,
    var(--deep-light) 50%,
    var(--deep-3) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
}

/* ─── No Results State ───────────────────────────────────── */

.empty-state {
  text-align: center;
  padding: var(--space-16) var(--space-8);
}

.empty-state__icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.empty-state__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--cream);
  margin-bottom: var(--space-2);
}

.empty-state__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ─── Focus Styles ───────────────────────────────────────── */

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
