/* Cancun Travel Services — Premium dark + gold theme */

:root {
  --bg-dark: #000000;
  --bg-card: #111111;
  --brand-gold: #c5a059;
  --brand-gold-light: #e8c872;
  --brand-gold-dark: #8b7340;
  --brand-charcoal: #1a1a1a;
  --brand-muted: #888888;
  --brand-blue: #c5a059;
  --brand-red: #8b7340;
  --accent-blue: #c5a059;
  --accent-deep: #0d0d0d;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(197, 160, 89, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #000;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-red));
  border-radius: 3px;
}

/* Navbar blur */
.nav-blur {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* Glass card */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--brand-gold-light) 45%, var(--brand-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-brand-gold {
  color: var(--brand-gold);
}

.text-brand-gold-muted {
  color: rgba(197, 160, 89, 0.85);
}

.brand-logo {
  height: 3.5rem;
  width: auto;
  max-width: min(360px, 78vw);
  object-fit: contain;
  background: transparent;
}

.brand-logo-lg {
  width: min(100%, 520px);
  height: auto;
  max-height: 220px;
  object-fit: contain;
  background: transparent;
}

.brand-logo-footer {
  height: auto;
  width: min(100%, 300px);
  max-height: 5.5rem;
  object-fit: contain;
  background: transparent;
}

@media (min-width: 1024px) {
  .brand-logo {
    height: 4.25rem;
    max-width: 400px;
  }

  .brand-logo-lg {
    width: min(100%, 560px);
    max-height: 240px;
  }

  .brand-logo-footer {
    max-width: 340px;
    max-height: 6.5rem;
  }
}

.brand-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand-muted);
}

/* Hero overlay — legible text over fleet photo */
.hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.78) 42%,
    rgba(26, 26, 26, 0.55) 68%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.hero-bg-image {
  object-position: center 35%;
}

/* Animated gradient border */
.gradient-border {
  position: relative;
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.65), rgba(255, 255, 255, 0.08), rgba(139, 115, 64, 0.45));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Fleet card hover */
.fleet-card {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
}
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(197, 160, 89, 0.12);
}
.fleet-card .fleet-img {
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.fleet-card:hover .fleet-img {
  transform: scale(1.06);
}

/* Gallery grid hover */
.gallery-item {
  overflow: hidden;
}
.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Professional motion system ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
  box-shadow: 0 0 12px rgba(197, 160, 89, 0.5);
  pointer-events: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.85s cubic-bezier(0.23, 1, 0.32, 1), transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.85s cubic-bezier(0.23, 1, 0.32, 1), transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.85s cubic-bezier(0.23, 1, 0.32, 1), transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.stagger-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1), transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.pro-card {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, background 0.3s ease;
}
.pro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.pro-img-wrap img {
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.pro-img-wrap:hover img {
  transform: scale(1.04);
}

.hero-float {
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-hint {
  opacity: 0;
  animation: scrollHintIn 1.2s ease 1.4s forwards;
}
.scroll-hint-line {
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollHintIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
  transition: width 0.35s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: #fff;
}

body:not(.is-ready) .reveal,
body:not(.is-ready) .reveal-left,
body:not(.is-ready) .reveal-right,
body:not(.is-ready) .reveal-scale {
  opacity: 0;
}

.hero-bg-image {
  will-change: transform;
  transition: transform 0.1s linear;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .stagger-item,
  .hero-float, .scroll-hint, .scroll-hint-line {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  #scroll-progress { display: none; }
}

/* Premium button */
.btn-primary {
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold) 48%, var(--brand-gold-dark) 100%);
  color: #0a0a0a;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(197, 160, 89, 0.35);
}

.btn-outline {
  border: 1px solid rgba(197, 160, 89, 0.35);
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--brand-gold);
  background: rgba(197, 160, 89, 0.1);
  transform: translateY(-2px);
}

/* Stats counter line */
.stat-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
}

/* Experience icon pulse */
.experience-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.experience-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 79, 216, 0.2);
}

/* Modal */
.gallery-modal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}
.gallery-modal .modal-content {
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-modal.active .modal-content {
  transform: scale(1) translateY(0);
}

/* Swiper custom */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  background: rgba(26, 79, 216, 0.3);
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(26, 79, 216, 0.6);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: bold;
}
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.4) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: #1a4fd8 !important;
  width: 24px !important;
  border-radius: 4px !important;
  transition: width 0.3s ease;
}

/* Floating WhatsApp */
.whatsapp-float {
  animation: pulse-wa 2.5s infinite;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7); }
}

/* Section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.4), rgba(139, 115, 64, 0.35), transparent);
}

/* Language switcher */
.lang-btn {
  transition: all 0.2s ease;
}
.lang-btn.active {
  background: rgba(197, 160, 89, 0.3);
  color: #fff;
  border-color: rgba(139, 115, 64, 0.5);
}

/* Mobile menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}

/* Testimonial card shine */
.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(26, 79, 216, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Hero image float */
.hero-float {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* DMC section bg */
.dmc-bg {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d1b3e 50%, #0a0a0a 100%);
}

/* Form inputs */
.form-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus {
  outline: none;
  border-color: rgba(197, 160, 89, 0.6);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

/* ─── Fleet Showcase & 360° Viewer ─── */
.fleet-showcase-card {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .fleet-showcase-card {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .fleet-showcase-card.reverse .viewer360-wrap {
    order: 2;
  }
  .fleet-showcase-card.reverse .fleet-showcase-info {
    order: 1;
  }
}

.fleet-showcase-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .fleet-showcase-info {
    padding: 3rem;
  }
}

.viewer360-wrap {
  background: radial-gradient(ellipse at 50% 80%, rgba(197, 160, 89, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.4) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 1024px) {
  .viewer360-wrap {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .fleet-showcase-card.reverse .viewer360-wrap {
    border-right: none;
    border-left: 1px solid rgba(255,255,255,0.06);
  }
}

.viewer360 {
  position: relative;
  height: 320px;
  cursor: grab;
  user-select: none;
  touch-action: none;
  overflow: hidden;
}
@media (min-width: 768px) {
  .viewer360 { height: 380px; }
}
.viewer360.viewer360-lg {
  height: 420px;
}
.viewer360.is-dragging {
  cursor: grabbing;
}

.viewer360-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.viewer360-hint {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.viewer360.is-dragging .viewer360-hint {
  opacity: 0;
}

.viewer360-stage {
  position: absolute;
  inset: 0;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.viewer360-spotlight {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.viewer360-car {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform 0.08s linear;
  will-change: transform;
}
.viewer360.is-dragging .viewer360-car {
  transition: none;
}

.viewer360-car img {
  max-height: 220px;
  width: auto;
  max-width: 95%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.55));
  pointer-events: none;
}
.viewer360-lg .viewer360-car img {
  max-height: 280px;
}

.viewer360-reflection {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);
  opacity: 0.2;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 65%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.viewer360-reflection img {
  max-height: 120px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
}

.viewer360-floor {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.6) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.viewer360-progress {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.viewer360-progress::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
  border-radius: 3px;
  transform: translateX(calc(var(--viewer-angle, 0deg) / 360 * 90px));
  transition: transform 0.08s linear;
}

.viewer360-controls {
  position: absolute;
  bottom: 1.5rem;
  right: 1rem;
  z-index: 10;
}
.viewer360-angle {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  font-variant-numeric: tabular-nums;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.fleet-spec {
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.fleet-spec-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.fleet-spec-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}

.modal-viewer-wrap {
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ─── AI / Futuristic Effects ─── */
.ai-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.45;
}

.ai-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(197, 160, 89, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 160, 89, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 75%);
  animation: ai-grid-shift 20s linear infinite;
}
.ai-grid-hero {
  opacity: 0.6;
}

@keyframes ai-grid-shift {
  0% { background-position: 0 0; }
  100% { background-position: 48px 48px; }
}

.ai-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.015) 2px,
    rgba(255, 255, 255, 0.015) 4px
  );
  animation: scanline-move 8s linear infinite;
}
@keyframes scanline-move {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

.ai-mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(197, 160, 89, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 115, 64, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(13, 27, 62, 0.6) 0%, transparent 70%);
  animation: ai-mesh-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ai-mesh-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, -2%) scale(1.05); }
}

.ai-orb {
  border-radius: 50%;
  filter: blur(80px);
  animation: ai-orb-float 8s ease-in-out infinite;
}
.ai-orb-blue {
  background: rgba(197, 160, 89, 0.35);
}
.ai-orb-red {
  background: rgba(139, 115, 64, 0.25);
  animation-delay: -3s;
}
.ai-orb-lg {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
}
.ai-orb-md {
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 350px;
  height: 350px;
}
@keyframes ai-orb-float {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  50% { transform: translate(20px, -15px); opacity: 1; }
}

.ai-bg-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ai-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: ai-chip-glow 5s ease-in-out infinite;
}
.ai-chip-alt {
  border-color: rgba(139, 115, 64, 0.35);
  box-shadow: 0 0 24px rgba(139, 115, 64, 0.12);
}
.ai-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold-dark));
  box-shadow: 0 0 10px rgba(232, 200, 114, 0.8);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes ai-chip-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(197, 160, 89, 0.15); }
  50% { box-shadow: 0 0 30px rgba(197, 160, 89, 0.35), 0 0 60px rgba(139, 115, 64, 0.1); }
}

.ai-title-glow {
  text-shadow: 0 0 40px rgba(197, 160, 89, 0.3), 0 0 80px rgba(139, 115, 64, 0.15);
}

.btn-ai {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.9) 0%, rgba(232, 200, 114, 0.4) 50%, rgba(139, 115, 64, 0.7) 100%);
  background-size: 200% 200%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.4s ease;
  animation: btn-ai-shift 8s ease infinite;
  position: relative;
  overflow: hidden;
}
.btn-ai::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: btn-ai-shine 3s ease-in-out infinite;
}
.btn-ai:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(197, 160, 89, 0.5), 0 0 40px rgba(139, 115, 64, 0.2);
}
@keyframes btn-ai-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes btn-ai-shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.font-outfit {
  font-family: 'Outfit', 'Poppins', sans-serif;
}

/* ─── Gallery Section ─── */
.gallery-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d1b3e 40%, #0a0a0a 100%);
}

.gallery-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.gallery-stat-num {
  font-weight: 700;
  color: #fff;
  font-size: 0.85rem;
}
.gallery-stat-pill-glow {
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
  color: rgba(255, 255, 255, 0.75);
}

.gallery-featured-slide {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(197, 160, 89, 0.15);
}
.gallery-featured-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-featured-slide:hover img {
  transform: scale(1.04);
}
.gallery-featured-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}
.gallery-featured-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.gallery-featured-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3) !important;
}
.gallery-featured-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red)) !important;
  width: 28px !important;
}

.gallery-filters {
  position: relative;
  z-index: 5;
}
.gallery-filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.gallery-filter-btn:hover {
  color: #fff;
  border-color: rgba(197, 160, 89, 0.5);
  background: rgba(197, 160, 89, 0.1);
}
.gallery-filter-btn.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.5), rgba(139, 115, 64, 0.3));
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 24px rgba(197, 160, 89, 0.35);
}

.gallery-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 160px;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gallery-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 1rem;
  }
}

.gallery-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}
.gallery-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.gallery-card:hover {
  box-shadow: 0 16px 48px rgba(197, 160, 89, 0.25), 0 0 0 1px rgba(197, 160, 89, 0.3);
  z-index: 2;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card.size-hero {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-card.size-lg {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-card.size-wide {
  grid-column: span 2;
}
.gallery-card.size-tall {
  grid-row: span 2;
}
@media (max-width: 767px) {
  .gallery-card.size-hero,
  .gallery-card.size-lg,
  .gallery-card.size-wide {
    grid-column: span 2;
  }
}

.gallery-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 2;
}
.gallery-card:hover .gallery-card-shine {
  transform: translateX(100%);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}
.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  color: #fff;
  width: fit-content;
  margin-bottom: 0.35rem;
}
.gallery-card-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gallery-card-zoom {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}
.gallery-lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(197, 160, 89, 0.2);
}
.gallery-lightbox-meta {
  margin-top: 1rem;
}
.gallery-lightbox-caption {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}
.gallery-lightbox-counter {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
}
.gallery-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
}
.gallery-lightbox-close:hover {
  background: rgba(139, 115, 64, 0.4);
}
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
}
.gallery-lightbox-nav:hover {
  background: rgba(197, 160, 89, 0.6);
}
.gallery-lightbox-prev { left: 1.5rem; }
.gallery-lightbox-next { right: 1.5rem; }

/* Skip link & FAQ (SEO / a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 99999;
  padding: 0.75rem 1.25rem;
  background: var(--brand-gold);
  color: #fff;
  font-size: 0.875rem;
  border-radius: 0 0 0.5rem 0;
}
.skip-link:focus {
  left: 0;
}

.faq-item summary {
  list-style: none;
}
.faq-item summary h3 {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  float: right;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item[open] summary {
  color: #fff;
}

/* ── TikTok section ── */
.tiktok-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tiktok-profile-card:hover .tiktok-follow-btn {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(254, 44, 85, 0.25);
}

.tiktok-card {
  display: block;
  height: 100%;
}

.tiktok-preview {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 420px;
  overflow: hidden;
  background: #111;
}

.tiktok-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.tiktok-card--demo:hover .tiktok-preview img {
  transform: scale(1.06);
}

.tiktok-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.75));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.tiktok-play {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(254, 44, 85, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(254, 44, 85, 0.45);
  transition: transform 0.3s ease;
}

.tiktok-card--demo:hover .tiktok-play {
  transform: scale(1.08);
}

.tiktok-play svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 2px;
}

.tiktok-demo-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #25f4ee;
}

.tiktok-embed-wrap {
  aspect-ratio: 9 / 16;
  max-height: 480px;
  background: #000;
}

.tiktok-embed-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.tiktok-card-footer {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tiktok-card-caption {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.85rem 1rem;
  text-align: center;
  transition: color 0.2s ease;
}

.tiktok-card-caption:hover {
  color: #25f4ee;
}

.tiktok-card-cta {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fe2c55;
}

.tiktok-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.tiktok-swiper .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  width: 1.25rem;
  border-radius: 4px;
}

@media (min-width: 1024px) {
  .tiktok-swiper-wrap .swiper {
    overflow: visible;
  }
}

/* MAYA AI CONCIERGE */
body.concierge-open { overflow: hidden; }

.concierge-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

@media (min-width: 768px) {
  .concierge-overlay { align-items: center; padding: 2rem; }
}

.concierge-overlay--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.concierge-panel-wrap {
  width: min(100%, 520px);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.concierge-overlay--open .concierge-panel-wrap {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.concierge-panel {
  border-radius: 1.75rem;
  padding: 1px;
  max-height: min(88vh, 720px);
  display: flex;
  flex-direction: column;
}

.concierge-panel-inner {
  border-radius: calc(1.75rem - 1px);
  display: flex;
  flex-direction: column;
  max-height: min(88vh, 720px);
  overflow: hidden;
}

.concierge-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.concierge-avatar {
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
}

.concierge-avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.35);
}

.concierge-avatar-ring--1 { animation: concierge-ring 3s ease-in-out infinite; }

.concierge-avatar-ring--2 {
  inset: -6px;
  border-color: rgba(197, 160, 89, 0.15);
  animation: concierge-ring 3s ease-in-out infinite reverse;
}

.concierge-avatar-core {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.25), rgba(197, 160, 89, 0.08));
  border: 1px solid rgba(197, 160, 89, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold, #c5a059);
}

.concierge-avatar-core svg { width: 1.35rem; height: 1.35rem; }
.concierge-header-text { flex: 1; min-width: 0; }

.concierge-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.15rem;
}

.concierge-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
  animation: concierge-pulse-dot 2s ease infinite;
}

.concierge-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 30%, var(--brand-gold, #c5a059));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.concierge-subtitle {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.15rem;
}

.concierge-close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s, background 0.2s;
}

.concierge-close:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.concierge-close svg { width: 1.1rem; height: 1.1rem; }

.concierge-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 140px;
  max-height: 280px;
  scroll-behavior: smooth;
}

.concierge-msg { display: flex; max-width: 92%; }
.concierge-msg--ai { align-self: flex-start; }
.concierge-msg--user { align-self: flex-end; }

.concierge-msg-bubble {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
}

.concierge-msg--ai .concierge-msg-bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border-bottom-left-radius: 0.25rem;
}

.concierge-msg--user .concierge-msg-bubble {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.22), rgba(197, 160, 89, 0.1));
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: #fff;
  border-bottom-right-radius: 0.25rem;
}

.concierge-cursor::after {
  content: '|';
  color: var(--brand-gold, #c5a059);
  animation: concierge-blink 0.9s step-end infinite;
  margin-left: 1px;
}

.concierge-typing-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  height: 1rem;
}

.concierge-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-gold, #c5a059);
  animation: concierge-typing 1.2s ease infinite;
}

.concierge-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.concierge-typing-dots span:nth-child(3) { animation-delay: 0.3s; }

.concierge-options {
  padding: 0 1.25rem 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.concierge-options--visible { opacity: 1; transform: translateY(0); }

.concierge-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.concierge-options-grid--main { grid-template-columns: 1fr; }

@media (min-width: 480px) {
  .concierge-options-grid--main { grid-template-columns: repeat(2, 1fr); }
}

.concierge-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  animation: concierge-option-in 0.45s ease backwards;
}

.concierge-option:hover {
  border-color: rgba(197, 160, 89, 0.45);
  background: rgba(197, 160, 89, 0.08);
  transform: translateY(-2px);
}

.concierge-option-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-gold, #c5a059);
  margin-bottom: 0.15rem;
}

.concierge-option-icon svg { width: 100%; height: 100%; }

.concierge-option-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.concierge-option-desc {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.35;
}

.concierge-actions {
  display: none;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem 0.75rem;
}

.concierge-actions--visible { display: flex; }

.concierge-action {
  flex: 1 1 auto;
  min-width: calc(50% - 0.25rem);
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.concierge-action:hover { transform: translateY(-1px); }

.concierge-action--primary {
  background: linear-gradient(135deg, var(--brand-gold, #c5a059), #a8863f);
  color: #000;
}

.concierge-action--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
}

.concierge-action--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  min-width: 100%;
}

.concierge-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.25rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.concierge-skip {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.concierge-skip:hover { color: rgba(255, 255, 255, 0.75); }

.concierge-powered {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(197, 160, 89, 0.45);
}

.concierge-launcher {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--brand-gold, #c5a059);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 24px rgba(197, 160, 89, 0.12);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.concierge-launcher:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 160, 89, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 32px rgba(197, 160, 89, 0.2);
}

.concierge-launcher svg { width: 1.25rem; height: 1.25rem; }

.concierge-launcher-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.concierge-launcher-ring {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  pointer-events: none;
}

.concierge-launcher--pulse .concierge-launcher-ring {
  animation: concierge-launcher-pulse 2.5s ease-out infinite;
}

@keyframes concierge-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.6; }
}

@keyframes concierge-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@keyframes concierge-blink { 50% { opacity: 0; } }

@keyframes concierge-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-4px); opacity: 1; }
}

@keyframes concierge-option-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes concierge-launcher-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .concierge-overlay, .concierge-panel-wrap, .concierge-option,
  .concierge-avatar-ring, .concierge-launcher-ring, .concierge-status-dot {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 480px) {
  .concierge-launcher-label { display: none; }
  .concierge-launcher {
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    justify-content: center;
  }
}

.smart-match-ai-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(197, 160, 89, 0.05));
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--brand-gold, #c5a059);
  flex-shrink: 0;
}

.smart-match-ai-icon svg { width: 1.2rem; height: 1.2rem; }

.smart-match-steps { display: flex; align-items: center; gap: 0.35rem; }

.smart-match-step {
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.smart-match-step--active, .smart-match-step--done {
  border-color: rgba(197, 160, 89, 0.6);
  color: var(--brand-gold, #c5a059);
  background: rgba(197, 160, 89, 0.12);
}

.smart-match-step-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.35), rgba(255, 255, 255, 0.08));
}

.smart-match-chip {
  padding: 0.45rem 0.75rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.smart-match-chip:hover { border-color: rgba(197, 160, 89, 0.4); color: #fff; }

.smart-match-chip--active {
  border-color: rgba(197, 160, 89, 0.65);
  background: rgba(197, 160, 89, 0.15);
  color: #fff;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.15);
}

.smart-match-result {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
  margin-top: 0;
}

.smart-match-result--visible { max-height: 320px; opacity: 1; margin-top: 0.5rem; }

.smart-match-result-inner {
  padding: 0.85rem; border-radius: 1rem;
  background: rgba(197, 160, 89, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.smart-match-result-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-gold, #c5a059); margin-bottom: 0.65rem;
}

.smart-match-result-body {
  display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.75rem;
}

.smart-match-result-img {
  width: 4.5rem; height: 3rem; object-fit: cover;
  border-radius: 0.5rem; border: 1px solid rgba(255, 255, 255, 0.1);
}

.smart-match-result-name { font-size: 0.8rem; font-weight: 700; color: #fff; }
.smart-match-result-cap { font-size: 0.65rem; color: rgba(197, 160, 89, 0.85); margin-top: 0.1rem; }
.smart-match-result-desc { font-size: 0.68rem; color: rgba(255, 255, 255, 0.55); line-height: 1.45; margin-top: 0.25rem; }
.smart-match-result-actions { display: flex; gap: 0.5rem; }

.smart-match-cta {
  flex: 1; padding: 0.5rem 0.65rem; border-radius: 0.6rem;
  font-size: 0.68rem; font-weight: 600;
}

.smart-match-cta--primary {
  background: linear-gradient(135deg, var(--brand-gold, #c5a059), #a8863f);
  color: #000;
}

.smart-match-cta--wa {
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80; background: rgba(34, 197, 94, 0.1);
}

.ai-navigator {
  position: fixed; bottom: 1.35rem; left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 54; width: min(calc(100% - 7rem), 420px);
  opacity: 0; pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.ai-navigator--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1; pointer-events: auto;
}

.ai-navigator-inner { border-radius: 1.25rem; padding: 1px; }
.ai-navigator-panel { border-radius: calc(1.25rem - 1px); padding: 0.75rem 0.85rem; }
.ai-navigator-top { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.5rem; }

.ai-navigator-maya-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.25rem 0.55rem; border-radius: 999px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-gold, #c5a059);
  border: 1px solid rgba(197, 160, 89, 0.35);
  background: rgba(197, 160, 89, 0.08); flex-shrink: 0;
}

.ai-navigator-maya-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #4ade80; animation: concierge-pulse-dot 2s ease infinite;
}

.ai-navigator-copy { flex: 1; min-width: 0; }
.ai-navigator-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); }
.ai-navigator-tip { font-size: 0.75rem; line-height: 1.4; color: rgba(255, 255, 255, 0.85); margin-top: 0.1rem; }
.ai-navigator-close { font-size: 1.1rem; line-height: 1; color: rgba(255, 255, 255, 0.35); padding: 0 0.15rem; }
.ai-navigator-close:hover { color: #fff; }
.ai-navigator-progress { display: flex; gap: 0.3rem; margin-bottom: 0.55rem; }
.ai-nav-dot { flex: 1; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, 0.1); transition: background 0.3s ease; }
.ai-nav-dot--past { background: rgba(197, 160, 89, 0.35); }
.ai-nav-dot--active { background: linear-gradient(90deg, var(--brand-gold, #c5a059), #e8c878); box-shadow: 0 0 8px rgba(197, 160, 89, 0.4); }
.ai-navigator-actions { display: flex; gap: 0.4rem; }

.ai-nav-action {
  flex: 1; padding: 0.45rem 0.5rem; border-radius: 0.55rem;
  font-size: 0.65rem; font-weight: 600;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s, background 0.2s;
}

.ai-nav-action:hover { border-color: rgba(197, 160, 89, 0.45); background: rgba(197, 160, 89, 0.1); }

[data-ai-section].ai-section-active { position: relative; }

[data-ai-section].ai-section-active::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border: 1px solid rgba(197, 160, 89, 0.12);
  box-shadow: inset 0 0 60px rgba(197, 160, 89, 0.04);
  animation: ai-section-glow 2.5s ease-in-out infinite;
}

@keyframes ai-section-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.concierge-nlp {
  display: flex; gap: 0.4rem;
  padding: 0.65rem 1.25rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.25rem;
}

.concierge-nlp-input {
  flex: 1; padding: 0.55rem 0.85rem; border-radius: 999px;
  font-size: 0.75rem; background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1); color: #fff;
}

.concierge-nlp-input::placeholder { color: rgba(255, 255, 255, 0.35); }
.concierge-nlp-input:focus { outline: none; border-color: rgba(197, 160, 89, 0.45); }

.concierge-nlp-send {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand-gold, #c5a059), #a8863f);
  color: #000; flex-shrink: 0;
}

.concierge-nlp-send svg { width: 1rem; height: 1rem; }
.nav-ask-maya { cursor: pointer; }

@media (max-width: 640px) {
  .ai-navigator { width: calc(100% - 1.5rem); bottom: 5.5rem; }
}

.referral-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.referral-benefit::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--brand-gold, #c5a059);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(197, 160, 89, 0.5);
}

.referral-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-gold, #c5a059), #e8c878);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
  min-width: 2.5rem;
  text-align: center;
}

.referral-program .ai-chip { margin-bottom: 0; }

/* Guides & routes (home SEO block) */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.guides-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.guides-card:hover {
  border-color: rgba(197, 160, 89, 0.45);
  background: rgba(197, 160, 89, 0.06);
  transform: translateY(-2px);
}

.guides-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(197, 160, 89, 0.85);
}

.guides-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

.guides-card-service .guides-card-tag {
  color: rgba(255, 255, 255, 0.45);
}
