/* ============================================================
   PAINTBALL WEBSITE — GLOBAL DESIGN SYSTEM
   Premium dark tactical theme with glassmorphism & neon accents
   ============================================================ */

/* —————————————————————————————————————————————
   0. GOOGLE FONTS
   ————————————————————————————————————————————— */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

/* —————————————————————————————————————————————
   1. DESIGN TOKENS (CSS Custom Properties)
   ————————————————————————————————————————————— */
:root {
  /* ── Colour palette ────────────────────────── */
  --bg-primary:     #0a0e17;
  --bg-secondary:   #111827;
  --bg-tertiary:    #1e293b;
  --bg-glass:       rgba(17, 24, 39, 0.7);
  --bg-glass-heavy: rgba(10, 14, 23, 0.85);

  --accent-primary:   #00ff88;
  --accent-secondary: #ff6b35;
  --accent-tertiary:  #6366f1;

  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #64748b;

  --danger:  #ef4444;
  --success: #22c55e;
  --warning: #f59e0b;

  --border-color:       rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(255, 255, 255, 0.16);

  /* ── Spacing scale (4‑px base) ─────────────── */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* ── Border radius ─────────────────────────── */
  --radius-sm:   8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* ── Transitions ───────────────────────────── */
  --transition-fast:    0.2s ease;
  --transition-base:    0.3s ease;
  --transition-smooth:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring:  0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Shadows ───────────────────────────────── */
  --shadow-sm:    0  2px  8px rgba(0, 0, 0, 0.25);
  --shadow-md:    0  4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg:    0  8px 32px rgba(0, 0, 0, 0.45);
  --shadow-xl:    0 16px 48px rgba(0, 0, 0, 0.55);
  --shadow-glow:  0  0  20px rgba(0, 255, 136, 0.15);
  --shadow-glow-strong: 0 0 30px rgba(0, 255, 136, 0.3);
  --shadow-accent-secondary: 0 0 20px rgba(255, 107, 53, 0.15);

  /* ── Z‑index layers ────────────────────────── */
  --z-base:     1;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;

  /* ── Typography ────────────────────────────── */
  --font-heading: 'Rajdhani', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  --fw-light:     300;
  --fw-regular:   400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;

  --lh-tight:   1.15;
  --lh-snug:    1.3;
  --lh-normal:  1.6;
  --lh-relaxed: 1.75;
}

/* —————————————————————————————————————————————
   2. CSS RESET
   ————————————————————————————————————————————— */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  overflow-x: hidden;
  min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* —————————————————————————————————————————————
   3. BASE TYPOGRAPHY
   ————————————————————————————————————————————— */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem);   }
h2 { font-size: clamp(2rem,   4vw, 3rem);    }
h3 { font-size: clamp(1.5rem, 3vw, 2rem);    }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  color: var(--text-secondary);
  line-height: var(--lh-normal);
  max-width: 72ch; /* comfortable reading width */
}

strong { font-weight: var(--fw-semibold); }

small { font-size: 0.875rem; }

/* —————————————————————————————————————————————
   4. LAYOUT UTILITIES
   ————————————————————————————————————————————— */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.section {
  position: relative;
  padding: 120px 0;
}

/* ── Section header block ─────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 18px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-tag i {
  font-size: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title .text-accent {
  -webkit-text-fill-color: var(--accent-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
}

/* —————————————————————————————————————————————
   5. TEXT UTILITIES
   ————————————————————————————————————————————— */
.text-accent  { color: var(--accent-primary) !important; }
.text-danger  { color: var(--danger) !important; }
.text-success { color: var(--success) !important; }
.text-muted   { color: var(--text-muted) !important; }
.text-center  { text-align: center; }

.hidden { display: none !important; }

/* —————————————————————————————————————————————
   6. BUTTONS
   ————————————————————————————————————————————— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition:
    background   var(--transition-base),
    color        var(--transition-base),
    transform    var(--transition-base),
    box-shadow   var(--transition-base),
    border-color var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

/* Shimmer sweep shared by primary & book‑now */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(100%);
}

/* ── Primary (neon green) ─────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background   var(--transition-base),
    color        var(--transition-base),
    transform    var(--transition-base),
    box-shadow   var(--transition-base),
    border-color var(--transition-base);
  background: var(--accent-primary);
  color: var(--bg-primary);
  border: 1px solid var(--accent-primary);
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.2);
}

.btn-primary:hover {
  background: #00e67a;
  box-shadow:
    0 0 24px rgba(0, 255, 136, 0.35),
    0 4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.15);
}

.btn-primary:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

/* ── Secondary (outlined) ─────────────────── */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background   var(--transition-base),
    color        var(--transition-base),
    transform    var(--transition-base),
    box-shadow   var(--transition-base),
    border-color var(--transition-base);
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color-hover);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.1);
  transform: translateY(-2px);
}

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

/* ── Large variant ────────────────────────── */
.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* ── Book Now — pulsing CTA ───────────────── */
.btn-book-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #00cc6e 100%);
  color: var(--bg-primary);
  border: none;
  padding: 16px 40px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 20px rgba(0, 255, 136, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.3);
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.nav-book-btn {
  padding: 10px 22px;
  font-size: 0.95rem;
}

.btn-book-now:hover {
  background: linear-gradient(135deg, #00e67a 0%, #00b35f 100%);
  box-shadow:
    0 0 36px rgba(0, 255, 136, 0.45),
    0 6px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px) scale(1.02);
}

.btn-book-now:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.2);
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.25), 0 4px 20px rgba(0, 0, 0, 0.3); }
  50%      { box-shadow: 0 0 34px rgba(0, 255, 136, 0.40), 0 4px 20px rgba(0, 0, 0, 0.3); }
}

/* ── Icon‑only button ─────────────────────── */
.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  transition:
    background   var(--transition-base),
    color        var(--transition-base),
    border-color var(--transition-base);
}

.btn-icon:hover {
  background: rgba(0, 255, 136, 0.1);
  color: var(--accent-primary);
  border-color: rgba(0, 255, 136, 0.3);
}

.btn-icon:active {
  transform: scale(0.92);
  background: rgba(0, 255, 136, 0.15);
}

/* —————————————————————————————————————————————
   7. FORM ELEMENTS
   ————————————————————————————————————————————— */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

/* ── Inputs & textareas ───────────────────── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="password"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition-base),
    box-shadow   var(--transition-base),
    background   var(--transition-base);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1), 0 0 16px rgba(0, 255, 136, 0.08);
  background: var(--bg-tertiary);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ── Checkbox / Radio row ─────────────────── */
.form-check {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-primary);
  cursor: pointer;
}

.form-check input[type="checkbox"]:checked {
  animation: checkPop 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes checkPop {
  0%   { transform: scale(0.75); }
  60%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.form-check label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}

/* ── Validation states ────────────────────── */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group .error-message {
  font-size: 0.8rem;
  color: var(--danger);
  margin-top: 2px;
}

/* —————————————————————————————————————————————
   8. GLASSMORPHISM CARD (reusable)
   ————————————————————————————————————————————— */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition:
    border-color var(--transition-base),
    box-shadow   var(--transition-smooth),
    transform    var(--transition-smooth);
}

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

/* —————————————————————————————————————————————
   9. SCROLL‑TRIGGERED ANIMATIONS
   ————————————————————————————————————————————— */

/* Start state — invisible & shifted down */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity   0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Revealed state */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional stagger delays (add data‑delay or classes) */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* —————————————————————————————————————————————
   10. KEYFRAME ANIMATIONS
   ————————————————————————————————————————————— */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* —————————————————————————————————————————————
   11. CUSTOM SCROLLBAR
   ————————————————————————————————————————————— */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-primary);
  transition: background var(--transition-base);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--bg-tertiary) var(--bg-primary);
}

/* —————————————————————————————————————————————
   12. SELECTION
   ————————————————————————————————————————————— */
::selection {
  background: rgba(0, 255, 136, 0.25);
  color: var(--text-primary);
}

::-moz-selection {
  background: rgba(0, 255, 136, 0.25);
  color: var(--text-primary);
}

/* —————————————————————————————————————————————
   13. TOAST NOTIFICATIONS
   ————————————————————————————————————————————— */
.toast-container {
  position: fixed;
  top: var(--space-lg);
  right: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  z-index: var(--z-toast);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 16px 24px;
  min-width: 320px;
  max-width: 440px;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
  font-size: 0.9rem;
  pointer-events: all;
  animation: toastIn 0.4s var(--transition-smooth) forwards;
  overflow: hidden;
  position: relative;
}

.toast::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}

.toast-success::before {
  background: var(--success);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.toast-error::before {
  background: var(--danger);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.toast-warning::before {
  background: var(--warning);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.toast-success .toast-icon { color: var(--success); }
.toast-error   .toast-icon { color: var(--danger);  }
.toast-warning .toast-icon { color: var(--warning); }

.toast-body {
  flex: 1;
}

.toast-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.toast-message {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: var(--lh-snug);
}

.toast-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

/* Toast progress bar (auto‑dismiss timer) */
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 0 0 0 var(--radius-md);
  animation: toastProgress 4s linear forwards;
}

.toast-error .toast-progress { background: var(--danger); }
.toast-warning .toast-progress { background: var(--warning); }

/* Toast dismiss animation */
.toast.toast-out {
  animation: toastOut 0.35s ease forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
  }
}

@keyframes toastProgress {
  from  { width: 100%; }
  to    { width: 0%; }
}

/* —————————————————————————————————————————————
   14. MISC UTILITIES
   ————————————————————————————————————————————— */

/* Gradient dividers */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-color-hover) 50%,
    transparent 100%
  );
  border: none;
}

/* Loading spinner */
.spinner {
  width: 24px;
  height: 24px;
  border: 2.5px solid var(--border-color);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* Skip to content (a11y) */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: 12px 24px;
  background: var(--accent-primary);
  color: var(--bg-primary);
  font-weight: var(--fw-semibold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* —————————————————————————————————————————————
   15. RESPONSIVE HELPERS
   ————————————————————————————————————————————— */
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .container {
    padding-inline: var(--space-md);
  }

  .section-header {
    margin-bottom: var(--space-2xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .toast-container {
    top: var(--space-md);
    right: var(--space-md);
    left: var(--space-md);
  }

  .toast {
    min-width: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .container {
    padding-inline: var(--space-sm);
  }

  .btn-book-now {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

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

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}
