/* ============================================================
   FONEPRO REPAIRS PLATFORM — MAIN STYLESHEET
   Version: 1.0 | Phase: 1 — UI Design Foundation
   Design system: /docs/16-ui-design-system.md
   ============================================================ */

/* ============================================================
   TABLE OF CONTENTS
   01. Google Fonts Import
   02. Design Tokens (CSS Custom Properties)
   03. Bootstrap 5 Variable Overrides
   04. Base & Reset
   05. Typography
   06. Buttons
   07. Form Elements
   08. Cards
   09. Status Badges & Pills
   10. Alert / Banner Cards
   11. Header & Navigation
   12. Mega Dropdown
   13. Mobile Drawer Menu
   14. Breadcrumb
   15. Footer
   16. Trust Badges
   17. Warranty Badge
   18. Price Display
   19. Booking Reference
   20. Step Indicator
   21. Toast Notifications
   22. Modals
   23. Empty States
   24. Loading & Skeleton States
   25. Utility Classes
   26. Responsive Overrides
   ============================================================ */

/* ============================================================
   01. GOOGLE FONTS IMPORT
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap");

/* ============================================================
   02. DESIGN TOKENS — CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* — Primary Palette — */
  --fp-primary-50: #eff6ff;
  --fp-primary-100: #d1fae5;
  --fp-primary-200: #bbf7d0;
  --fp-primary-300: #93c5fd;
  --fp-primary-400: #34d399;
  --fp-primary-500: #3b82f6;
  --fp-primary-600: #2563eb;
  --fp-primary-700: #1e4db7;
  --fp-primary-800: #1a3a7a;
  --fp-primary-900: #0f2463;

  /* — Accent Palette (CTA Green) — */
  --fp-accent-50: #ecfdf5;
  --fp-accent-100: #d1fae5;
  --fp-accent-200: #bbf7d0;
  --fp-accent-400: #34d399;
  --fp-accent-500: #10b981;
  --fp-accent-600: #059669;
  --fp-accent-700: #047857;

  /* — Neutral Palette — */
  --fp-neutral-50: #f8fafc;
  --fp-neutral-100: #f1f5f9;
  --fp-neutral-200: #e2e8f0;
  --fp-neutral-300: #cbd5e1;
  --fp-neutral-400: #94a3b8;
  --fp-neutral-500: #64748b;
  --fp-neutral-600: #475569;
  --fp-neutral-700: #334155;
  --fp-neutral-800: #1a1a1a;
  --fp-neutral-900: #111111;
  --fp-neutral-950: #0a0a0a;
  --fp-white: #ffffff;

  /* — Semantic Colours — */
  --fp-success-50: #ecfdf5;
  --fp-success-100: #dcfce7;
  --fp-success-500: #22c55e;
  --fp-success-600: #16a34a;

  --fp-warning-50: #fffbeb;
  --fp-warning-100: #fef3c7;
  --fp-warning-500: #f59e0b;
  --fp-warning-600: #d97706;

  --fp-danger-50: #fff1f2;
  --fp-danger-100: #fee2e2;
  --fp-danger-500: #ef4444;
  --fp-danger-600: #dc2626;

  --fp-info-50: #f0f9ff;
  --fp-info-100: #e0f2fe;
  --fp-info-500: #0ea5e9;
  --fp-info-600: #0284c7;

  /* — Typography — */
  --fp-font-sans:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --fp-font-mono: "JetBrains Mono", Consolas, "Courier New", monospace;

  --fp-text-xs: 0.6875rem; /* 11px */
  --fp-text-sm: 0.8125rem; /* 13px */
  --fp-text-base: 1rem; /* 16px */
  --fp-text-lg: 1.125rem; /* 18px */
  --fp-text-xl: 1.25rem; /* 20px */
  --fp-text-2xl: 1.5rem; /* 24px */
  --fp-text-3xl: 1.875rem; /* 30px */
  --fp-text-4xl: 2.25rem; /* 36px */
  --fp-text-5xl: 3rem; /* 48px */
  --fp-text-6xl: 3.75rem; /* 60px */

  --fp-font-normal: 400;
  --fp-font-medium: 500;
  --fp-font-semibold: 600;
  --fp-font-bold: 700;
  --fp-font-extrabold: 800;

  /* — Spacing — */
  --fp-space-1: 0.25rem; /*  4px */
  --fp-space-2: 0.5rem; /*  8px */
  --fp-space-3: 0.75rem; /* 12px */
  --fp-space-4: 1rem; /* 16px */
  --fp-space-5: 1.25rem; /* 20px */
  --fp-space-6: 1.5rem; /* 24px */
  --fp-space-8: 2rem; /* 32px */
  --fp-space-10: 2.5rem; /* 40px */
  --fp-space-12: 3rem; /* 48px */
  --fp-space-16: 4rem; /* 64px */
  --fp-space-20: 5rem; /* 80px */
  --fp-space-24: 6rem; /* 96px */

  /* — Border Radius — */
  --fp-radius-none: 0;
  --fp-radius-xs: 2px;
  --fp-radius-sm: 4px;
  --fp-radius-md: 6px;
  --fp-radius-lg: 8px;
  --fp-radius-xl: 10px;
  --fp-radius-2xl: 12px;
  --fp-radius-3xl: 16px;
  --fp-radius-4xl: 20px;
  --fp-radius-full: 9999px;

  /* — Shadows — */
  --fp-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --fp-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --fp-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
  --fp-shadow-lg:
    0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.05);
  --fp-shadow-xl:
    0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.04);
  --fp-shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
  --fp-shadow-blue: 0 4px 14px rgba(37, 99, 235, 0.3);
  --fp-shadow-accent: 0 4px 14px rgba(16, 185, 129, 0.35);
  --fp-shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);

  /* — Icon Sizes — */
  --fp-icon-xs: 14px;
  --fp-icon-sm: 16px;
  --fp-icon-md: 20px;
  --fp-icon-lg: 24px;
  --fp-icon-xl: 32px;
  --fp-icon-2xl: 48px;
  --fp-icon-3xl: 64px;

  /* — Component Tokens — */
  --fp-input-height: 48px;
  --fp-input-height-mob: 52px;
  --fp-btn-height-lg: 56px;
  --fp-btn-height-md: 48px;
  --fp-btn-height-sm: 38px;
  --fp-btn-height-xs: 30px;
  --fp-nav-height: 72px;
  --fp-nav-height-mob: 60px;
  --fp-sidebar-width: 260px;
  --fp-sidebar-collapsed: 64px;
  --fp-container-max: 1280px;

  /* — Transitions — */
  --fp-transition-fast: 150ms ease-out;
  --fp-transition-base: 200ms ease-out;
  --fp-transition-slow: 300ms ease-out;
}

/* ============================================================
   03. BOOTSTRAP 5 VARIABLE OVERRIDES
   Overrides applied via CSS custom properties that Bootstrap 5
   exposes natively on :root.
   ============================================================ */

:root {
  --bs-primary: #2563eb;
  --bs-primary-rgb: 37, 99, 235;
  --bs-success: #10b981;
  --bs-success-rgb: 16, 185, 129;
  --bs-danger: #ef4444;
  --bs-danger-rgb: 239, 68, 68;
  --bs-warning: #f59e0b;
  --bs-warning-rgb: 245, 158, 11;
  --bs-info: #0ea5e9;
  --bs-info-rgb: 14, 165, 233;
  --bs-body-font-family: var(--fp-font-sans);
  --bs-body-font-size: var(--fp-text-base);
  --bs-body-color: var(--fp-neutral-700);
  --bs-body-bg: var(--fp-neutral-50);
  --bs-border-color: var(--fp-neutral-200);
  --bs-border-radius: var(--fp-radius-lg);
  --bs-border-radius-sm: var(--fp-radius-md);
  --bs-border-radius-lg: var(--fp-radius-2xl);
  --bs-border-radius-xl: var(--fp-radius-3xl);
  --bs-border-radius-pill: var(--fp-radius-full);
  --bs-link-color: var(--fp-primary-600);
  --bs-link-hover-color: var(--fp-primary-700);
  --bs-focus-ring-color: rgba(37, 99, 235, 0.25);
}

/* ============================================================
   04. BASE & RESET
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--fp-font-sans);
  font-size: var(--fp-text-base);
  font-weight: var(--fp-font-normal);
  line-height: 1.625;
  color: var(--fp-neutral-700);
  background: var(--fp-neutral-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Skip to main content — accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--fp-space-4);
  z-index: 9999;
  padding: var(--fp-space-2) var(--fp-space-4);
  background: var(--fp-primary-600);
  color: var(--fp-white);
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-semibold);
  border-radius: var(--fp-radius-lg);
  text-decoration: none;
  transition: top var(--fp-transition-fast);
}
.skip-link:focus {
  top: var(--fp-space-4);
}

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

a {
  color: var(--fp-primary-600);
  text-decoration: none;
  transition: color var(--fp-transition-fast);
}
a:hover {
  color: var(--fp-primary-700);
}

/* Container override — max 1280px */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: var(--fp-container-max);
  padding-left: var(--fp-space-4);
  padding-right: var(--fp-space-4);
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: var(--fp-container-max);
  }
}

/* ============================================================
   05. TYPOGRAPHY
   ============================================================ */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--fp-font-sans);
  color: var(--fp-neutral-900);
  line-height: 1.2;
  font-weight: var(--fp-font-bold);
  margin-bottom: var(--fp-space-4);
}

h1,
.h1 {
  font-size: var(--fp-text-5xl);
  font-weight: var(--fp-font-extrabold);
  letter-spacing: -0.04em;
  line-height: 1.15;
}
h2,
.h2 {
  font-size: var(--fp-text-4xl);
  font-weight: var(--fp-font-bold);
  letter-spacing: -0.03em;
  line-height: 1.25;
}
h3,
.h3 {
  font-size: var(--fp-text-3xl);
  font-weight: var(--fp-font-semibold);
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--fp-neutral-800);
}
h4,
.h4 {
  font-size: var(--fp-text-2xl);
  font-weight: var(--fp-font-semibold);
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--fp-neutral-700);
}
h5,
.h5 {
  font-size: var(--fp-text-base);
  font-weight: var(--fp-font-semibold);
  letter-spacing: 0;
  color: var(--fp-neutral-600);
}
h6,
.h6 {
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-semibold);
  color: var(--fp-neutral-600);
}

/* Section eyebrow label */
.fp-overline {
  font-size: var(--fp-text-xs);
  font-weight: var(--fp-font-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fp-primary-600);
  display: block;
  margin-bottom: var(--fp-space-2);
}

/* Lead paragraph */
.fp-lead {
  font-size: var(--fp-text-lg);
  font-weight: var(--fp-font-normal);
  color: var(--fp-neutral-600);
  line-height: 1.6;
}

/* Caption */
.fp-caption {
  font-size: var(--fp-text-sm);
  color: var(--fp-neutral-500);
  line-height: 1.5;
}

/* Monospace — booking refs, order numbers */
.fp-mono {
  font-family: var(--fp-font-mono);
  font-size: var(--fp-text-sm);
  background: var(--fp-neutral-100);
  color: var(--fp-neutral-700);
  padding: 2px var(--fp-space-2);
  border-radius: var(--fp-radius-sm);
  letter-spacing: 0.03em;
}

/* Section title pattern */
.fp-section-title {
  font-size: var(--fp-text-4xl);
  font-weight: var(--fp-font-bold);
  letter-spacing: -0.03em;
  color: var(--fp-neutral-900);
  margin-bottom: var(--fp-space-3);
}
.fp-section-subtitle {
  font-size: var(--fp-text-lg);
  color: var(--fp-neutral-500);
  margin-bottom: var(--fp-space-12);
}

/* Mobile heading scale */
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 2rem;
  } /* 32px */
  h2,
  .h2 {
    font-size: 1.625rem;
  } /* 26px */
  h3,
  .h3 {
    font-size: 1.25rem;
  } /* 20px */
  h4,
  .h4 {
    font-size: 1rem;
  } /* 16px */
  .fp-section-title {
    font-size: 1.625rem;
  }
  .fp-section-subtitle {
    margin-bottom: var(--fp-space-8);
  }
}

/* ============================================================
   06. BUTTONS
   ============================================================ */

/* --- Base reset for all FonePro buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--fp-space-2);
  font-family: var(--fp-font-sans);
  font-weight: var(--fp-font-bold);
  font-size: var(--fp-text-base);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--fp-radius-lg);
  border: none;
  cursor: pointer;
  transition:
    background-color var(--fp-transition-base),
    color var(--fp-transition-base),
    border-color var(--fp-transition-base),
    box-shadow var(--fp-transition-base),
    transform var(--fp-transition-fast);
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
}

/* --- Sizes --- */
.btn-lg {
  height: var(--fp-btn-height-lg);
  padding: 14px 36px;
  font-size: var(--fp-text-lg);
  border-radius: var(--fp-radius-lg);
}
.btn-md,
.btn:not(.btn-lg):not(.btn-sm):not(.btn-xs) {
  height: var(--fp-btn-height-md);
  padding: 12px 28px;
  font-size: var(--fp-text-base);
}
.btn-sm {
  height: var(--fp-btn-height-sm);
  padding: 8px 16px;
  font-size: var(--fp-text-sm);
}
.btn-xs {
  height: var(--fp-btn-height-xs);
  padding: 6px 12px;
  font-size: var(--fp-text-xs);
}

/* Bootstrap .btn-sm override */
.btn.btn-sm {
  height: var(--fp-btn-height-sm);
  padding: 8px 16px;
  font-size: var(--fp-text-sm);
}

/* --- Tier 1: Primary CTA (Book Now / accent blue) --- */
.btn-cta {
  background: var(--fp-accent-500);
  color: var(--fp-white);
  box-shadow: var(--fp-shadow-accent);
}
.btn-cta:hover,
.btn-cta:focus-visible {
  background: var(--fp-accent-600);
  color: var(--fp-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}
.btn-cta:active {
  background: var(--fp-accent-700);
  transform: translateY(0);
  box-shadow: var(--fp-shadow-accent);
}
.btn-cta:focus-visible {
  box-shadow:
    0 0 0 4px rgba(16, 185, 129, 0.4),
    var(--fp-shadow-accent);
}

/* --- Tier 2: Primary Blue (Login / Submit / Navigation CTA) --- */
.btn-primary {
  background: var(--fp-primary-600);
  color: var(--fp-white);
  border: 2px solid var(--fp-primary-600);
  box-shadow: var(--fp-shadow-blue);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--fp-primary-700);
  border-color: var(--fp-primary-700);
  color: var(--fp-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}
.btn-primary:active {
  background: var(--fp-primary-800);
  border-color: var(--fp-primary-800);
  transform: translateY(0);
}
.btn-primary:focus-visible {
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.3),
    var(--fp-shadow-blue);
}

/* --- Tier 3: Secondary (white + blue border) --- */
.btn-secondary {
  background: var(--fp-white);
  color: var(--fp-primary-600);
  border: 2px solid var(--fp-primary-600);
  box-shadow: none;
  font-weight: var(--fp-font-semibold);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--fp-primary-50);
  border-color: var(--fp-primary-700);
  color: var(--fp-primary-700);
  transform: translateY(-1px);
  box-shadow: var(--fp-shadow-sm);
}
.btn-secondary:active {
  background: var(--fp-primary-100);
  transform: translateY(0);
}
.btn-secondary:focus-visible {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

/* --- Tier 3b: Secondary white (for dark backgrounds) --- */
.btn-outline-white {
  background: transparent;
  color: var(--fp-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-weight: var(--fp-font-semibold);
}
.btn-outline-white:hover,
.btn-outline-white:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--fp-white);
  color: var(--fp-white);
  transform: translateY(-1px);
}

/* --- Tier 4: Neutral Outline --- */
.btn-outline {
  background: transparent;
  color: var(--fp-neutral-700);
  border: 1.5px solid var(--fp-neutral-300);
  font-weight: var(--fp-font-medium);
  font-size: 0.9375rem;
  height: 44px;
  padding: 10px 20px;
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--fp-neutral-100);
  border-color: var(--fp-neutral-400);
  color: var(--fp-neutral-800);
}

/* --- Tier 5: Ghost / text link --- */
.btn-ghost {
  background: transparent;
  color: var(--fp-primary-600);
  border: none;
  padding: var(--fp-space-2) 0;
  height: auto;
  font-weight: var(--fp-font-medium);
  box-shadow: none;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--fp-primary-700);
  text-decoration: underline;
  background: transparent;
}

/* --- Tier 6: Danger --- */
.btn-danger {
  background: var(--fp-danger-500);
  color: var(--fp-white);
  border: 2px solid var(--fp-danger-500);
  height: 44px;
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: var(--fp-font-semibold);
}
.btn-danger:hover,
.btn-danger:focus-visible {
  background: var(--fp-danger-600);
  border-color: var(--fp-danger-600);
  color: var(--fp-white);
  transform: translateY(-1px);
}
.btn-danger:focus-visible {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.25);
}

/* --- Disabled state (all buttons) --- */
.btn:disabled,
.btn.disabled {
  background: var(--fp-neutral-200) !important;
  color: var(--fp-neutral-400) !important;
  border-color: var(--fp-neutral-200) !important;
  box-shadow: none !important;
  cursor: not-allowed;
  transform: none !important;
  opacity: 1;
  pointer-events: none;
}

/* --- Button with spinner (loading state) --- */
.btn.is-loading .btn-spinner {
  display: inline-block;
}
.btn .btn-spinner {
  display: none;
  width: var(--fp-icon-sm);
  height: var(--fp-icon-sm);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--fp-white);
  border-radius: 50%;
  animation: fp-spin 0.65s linear infinite;
}
.btn-outline .btn-spinner,
.btn-secondary .btn-spinner {
  border-color: rgba(37, 99, 235, 0.25);
  border-top-color: var(--fp-primary-600);
}

/* --- Mobile tap target expansion --- */
@media (max-width: 767px) {
  .btn:not(.btn-sm):not(.btn-xs) {
    height: var(--fp-input-height-mob);
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .btn-ghost {
    height: auto;
  }
}

/* --- Full-width helper --- */
.btn-block {
  width: 100%;
}

/* ============================================================
   07. FORM ELEMENTS
   ============================================================ */

/* --- Form group wrapper --- */
.fp-form-group {
  margin-bottom: var(--fp-space-5);
}

/* --- Label --- */
.fp-label {
  display: block;
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-medium);
  color: var(--fp-neutral-700);
  margin-bottom: 6px;
  line-height: 1.4;
}
.fp-label .fp-required {
  color: var(--fp-danger-500);
  margin-left: 3px;
}

/* --- Base input, select, textarea --- */
.fp-input,
.fp-select,
.fp-textarea {
  display: block;
  width: 100%;
  height: var(--fp-input-height);
  padding: 12px var(--fp-space-4);
  background: var(--fp-white);
  color: var(--fp-neutral-900);
  font-family: var(--fp-font-sans);
  font-size: var(--fp-text-base);
  font-weight: var(--fp-font-normal);
  line-height: 1.5;
  border: 1.5px solid var(--fp-neutral-300);
  border-radius: var(--fp-radius-lg);
  transition:
    border-color var(--fp-transition-base),
    box-shadow var(--fp-transition-base);
  appearance: none;
  -webkit-appearance: none;
}
.fp-input::placeholder,
.fp-textarea::placeholder {
  color: var(--fp-neutral-400);
}

/* Focus state */
.fp-input:focus,
.fp-select:focus,
.fp-textarea:focus {
  outline: none;
  border-color: var(--fp-primary-500);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.fp-input:hover:not(:focus),
.fp-select:hover:not(:focus),
.fp-textarea:hover:not(:focus) {
  border-color: var(--fp-neutral-400);
}

/* Valid state */
.fp-input.is-valid,
.fp-select.is-valid,
.fp-textarea.is-valid {
  border-color: var(--fp-success-500);
  border-width: 2px;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2322C55E' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
}
.fp-input.is-valid:focus,
.fp-textarea.is-valid:focus {
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

/* Invalid state */
.fp-input.is-invalid,
.fp-select.is-invalid,
.fp-textarea.is-invalid {
  border-color: var(--fp-danger-500);
  border-width: 2px;
}
.fp-input.is-invalid:focus,
.fp-textarea.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

/* Disabled */
.fp-input:disabled,
.fp-select:disabled,
.fp-textarea:disabled {
  background: var(--fp-neutral-100);
  border-color: var(--fp-neutral-200);
  color: var(--fp-neutral-400);
  cursor: not-allowed;
}

/* --- Textarea --- */
.fp-textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
  line-height: 1.625;
}

/* --- Select --- */
.fp-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2364748B' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  padding-right: 42px;
  cursor: pointer;
}

/* --- Helper & error text --- */
.fp-helper-text {
  display: block;
  font-size: var(--fp-text-xs);
  color: var(--fp-neutral-500);
  margin-top: var(--fp-space-1);
  line-height: 1.5;
}
.fp-error-text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fp-text-xs);
  color: var(--fp-danger-600);
  margin-top: var(--fp-space-1);
  line-height: 1.5;
}
.fp-error-text i {
  font-size: 12px;
  flex-shrink: 0;
}

/* --- Input group (icon + input) --- */
.fp-input-group {
  position: relative;
}
.fp-input-group .fp-input {
  padding-left: 44px;
}
.fp-input-group .fp-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fp-neutral-500);
  font-size: var(--fp-icon-md);
  pointer-events: none;
  line-height: 1;
}
.fp-input-group .fp-input-icon-right {
  left: auto;
  right: 14px;
}
.fp-input-group .fp-input-icon-right ~ .fp-input {
  padding-left: var(--fp-space-4);
  padding-right: 44px;
}

/* --- Checkbox --- */
.fp-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--fp-space-3);
  cursor: pointer;
}
.fp-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--fp-neutral-300);
  border-radius: var(--fp-radius-sm);
  background: var(--fp-white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background var(--fp-transition-fast),
    border-color var(--fp-transition-fast);
  position: relative;
  margin-top: 2px;
}
.fp-checkbox:checked {
  background: var(--fp-primary-600);
  border-color: var(--fp-primary-600);
}
.fp-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: 2px solid var(--fp-white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.fp-checkbox:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}
.fp-checkbox-label {
  font-size: var(--fp-text-sm);
  color: var(--fp-neutral-700);
  line-height: 1.5;
  cursor: pointer;
}

/* --- Radio --- */
.fp-radio-wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--fp-space-3);
  cursor: pointer;
}
.fp-radio {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--fp-neutral-300);
  border-radius: 50%;
  background: var(--fp-white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background var(--fp-transition-fast),
    border-color var(--fp-transition-fast);
  position: relative;
  margin-top: 2px;
}
.fp-radio:checked {
  border-color: var(--fp-primary-600);
  border-width: 6px;
  background: var(--fp-white);
}
.fp-radio:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

/* --- Toggle switch --- */
.fp-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: var(--fp-space-3);
  cursor: pointer;
}
.fp-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.fp-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.fp-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--fp-neutral-300);
  border-radius: 13px;
  transition: background var(--fp-transition-base);
  cursor: pointer;
}
.fp-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--fp-white);
  border-radius: 50%;
  box-shadow: var(--fp-shadow-xs);
  transition: transform var(--fp-transition-base);
}
.fp-toggle input:checked ~ .fp-toggle-track {
  background: var(--fp-primary-600);
}
.fp-toggle input:checked ~ .fp-toggle-thumb {
  transform: translateX(22px);
}
.fp-toggle input:focus-visible ~ .fp-toggle-track {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}
.fp-toggle-label {
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-medium);
  color: var(--fp-neutral-700);
  cursor: pointer;
}

/* --- Form section separator --- */
.fp-form-section {
  padding-top: var(--fp-space-8);
  margin-top: var(--fp-space-8);
  border-top: 1px solid var(--fp-neutral-200);
}
.fp-form-section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.fp-form-section-title {
  font-size: var(--fp-text-lg);
  font-weight: var(--fp-font-semibold);
  color: var(--fp-neutral-800);
  margin-bottom: var(--fp-space-6);
  padding-bottom: var(--fp-space-4);
  border-bottom: 1px solid var(--fp-neutral-200);
}

/* Mobile input height */
@media (max-width: 767px) {
  .fp-input,
  .fp-select {
    height: var(--fp-input-height-mob);
  }
}

/* ============================================================
   08. CARDS
   ============================================================ */

/* --- Standard Card --- */
.fp-card {
  background: var(--fp-white);
  border: 1px solid var(--fp-neutral-200);
  border-radius: var(--fp-radius-2xl);
  box-shadow: var(--fp-shadow-sm);
  padding: var(--fp-space-6);
  position: relative;
  overflow: hidden;
}

/* --- Interactive Card --- */
.fp-card-interactive {
  background: var(--fp-white);
  border: 1px solid var(--fp-neutral-200);
  border-radius: var(--fp-radius-2xl);
  box-shadow: var(--fp-shadow-sm);
  padding: var(--fp-space-6);
  transition:
    box-shadow var(--fp-transition-base),
    border-color var(--fp-transition-base),
    transform var(--fp-transition-base);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.fp-card-interactive:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--fp-primary-200);
  transform: translateY(-2px);
  color: inherit;
  text-decoration: none;
}

/* --- Service / Device Selection Card --- */
.fp-card-service {
  background: var(--fp-white);
  border: 2px solid var(--fp-neutral-200);
  border-radius: var(--fp-radius-2xl);
  box-shadow: var(--fp-shadow-sm);
  padding: var(--fp-space-5);
  transition:
    border-color var(--fp-transition-base),
    box-shadow var(--fp-transition-base),
    background var(--fp-transition-base),
    transform var(--fp-transition-base);
  cursor: pointer;
  position: relative;
  user-select: none;
}
.fp-card-service:hover {
  border-color: var(--fp-primary-500);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}
.fp-card-service.is-selected {
  border-color: var(--fp-primary-600);
  background: var(--fp-primary-50);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}
/* Checkmark for selected state */
.fp-card-service .fp-card-check {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: var(--fp-primary-600);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--fp-white);
  font-size: 12px;
}
.fp-card-service.is-selected .fp-card-check {
  display: flex;
}

/* --- Stat / Widget Card --- */
.fp-card-stat {
  background: var(--fp-white);
  border: 1px solid var(--fp-neutral-200);
  border-radius: var(--fp-radius-2xl);
  box-shadow: var(--fp-shadow-sm);
  padding: var(--fp-space-5) var(--fp-space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--fp-space-4);
}
.fp-card-stat .fp-stat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--fp-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fp-icon-lg);
}
.fp-card-stat .fp-stat-value {
  font-size: var(--fp-text-3xl);
  font-weight: var(--fp-font-extrabold);
  color: var(--fp-neutral-900);
  line-height: 1.1;
  display: block;
}
.fp-card-stat .fp-stat-label {
  font-size: var(--fp-text-sm);
  color: var(--fp-neutral-500);
  margin-top: var(--fp-space-1);
  display: block;
}
.fp-card-stat .fp-stat-trend {
  font-size: var(--fp-text-xs);
  font-weight: var(--fp-font-medium);
  margin-top: var(--fp-space-1);
  display: flex;
  align-items: center;
  gap: 3px;
}
.fp-stat-trend.up {
  color: var(--fp-success-600);
}
.fp-stat-trend.down {
  color: var(--fp-danger-600);
}

/* Stat icon colour variants */
.fp-stat-icon.blue {
  background: var(--fp-primary-100);
  color: var(--fp-primary-600);
}
.fp-stat-icon.green {
  background: var(--fp-accent-100);
  color: var(--fp-accent-600);
}
.fp-stat-icon.orange {
  background: #fff7ed;
  color: #c2410c;
}
.fp-stat-icon.purple {
  background: #ede9fe;
  color: #6d28d9;
}

/* --- Pricing Card --- */
.fp-card-pricing {
  background: var(--fp-white);
  border: 1px solid var(--fp-neutral-200);
  border-radius: var(--fp-radius-3xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow var(--fp-transition-base);
}
.fp-card-pricing.is-featured {
  border: 2px solid var(--fp-primary-600);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
  position: relative;
}
.fp-card-pricing .fp-pricing-header {
  margin: -28px -24px var(--fp-space-6);
  padding: 16px 24px;
  border-radius: var(--fp-radius-3xl) var(--fp-radius-3xl) 0 0;
}
.fp-card-pricing.is-featured .fp-pricing-header {
  background: var(--fp-primary-600);
  color: var(--fp-white);
}
.fp-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fp-accent-500);
  color: var(--fp-white);
  font-size: var(--fp-text-xs);
  font-weight: var(--fp-font-bold);
  padding: 4px 14px;
  border-radius: var(--fp-radius-full);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Card padding on mobile */
@media (max-width: 767px) {
  .fp-card {
    padding: var(--fp-space-4);
  }
  .fp-card-interactive {
    padding: var(--fp-space-4);
  }
}

/* ============================================================
   09. STATUS BADGES & PILLS
   ============================================================ */

.fp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fp-text-xs);
  font-weight: var(--fp-font-semibold);
  padding: 4px 10px;
  border-radius: var(--fp-radius-full);
  border: 1px solid transparent;
  line-height: 1.4;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.fp-badge .fp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* Booking status colours — matches DB ENUM: pending,confirmed,received,in_progress,ready,completed,cancelled */
.fp-badge-pending {
  background: #fef3c7;
  color: #d97706;
  border-color: #fde68a;
}
.fp-badge-confirmed {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}
.fp-badge-received {
  background: #f5f3ff;
  color: #5b21b6;
  border-color: #ddd6fe;
}
.fp-badge-in_progress,
.fp-badge-in-progress {
  background: #fffbeb;
  color: #b45309;
  border-color: #fde68a;
}
.fp-badge-ready {
  background: #d1fae5;
  color: #065f46;
  border-color: #6ee7b7;
}
.fp-badge-completed {
  background: #dcfce7;
  color: #15803d;
  border-color: #22c55e;
}
.fp-badge-cancelled {
  background: #fee2e2;
  color: #b91c1c;
  border-color: #ef4444;
}

/* Semantic badges */
.fp-badge-success {
  background: var(--fp-success-100);
  color: var(--fp-success-600);
  border-color: var(--fp-success-500);
}
.fp-badge-warning {
  background: var(--fp-warning-100);
  color: var(--fp-warning-600);
  border-color: var(--fp-warning-500);
}
.fp-badge-danger {
  background: var(--fp-danger-100);
  color: var(--fp-danger-600);
  border-color: var(--fp-danger-500);
}
.fp-badge-info {
  background: var(--fp-info-100);
  color: var(--fp-info-600);
  border-color: var(--fp-info-500);
}
.fp-badge-primary {
  background: var(--fp-primary-100);
  color: var(--fp-primary-700);
  border-color: var(--fp-primary-400);
}
.fp-badge-neutral {
  background: var(--fp-neutral-100);
  color: var(--fp-neutral-600);
  border-color: var(--fp-neutral-300);
}

/* Larger badge variant */
.fp-badge-lg {
  font-size: var(--fp-text-sm);
  padding: 6px 14px;
}

/* ============================================================
   10. ALERT / BANNER CARDS
   ============================================================ */

.fp-alert {
  display: flex;
  align-items: flex-start;
  gap: var(--fp-space-3);
  padding: 14px var(--fp-space-4);
  border-radius: var(--fp-radius-xl);
  border-left: 4px solid transparent;
  font-size: var(--fp-text-sm);
  line-height: 1.5;
}
.fp-alert i {
  font-size: var(--fp-icon-md);
  flex-shrink: 0;
  margin-top: 1px;
}
.fp-alert-title {
  font-weight: var(--fp-font-semibold);
  margin-bottom: var(--fp-space-1);
  display: block;
}

.fp-alert-info {
  background: var(--fp-info-100);
  border-color: var(--fp-info-500);
  color: var(--fp-info-600);
}
.fp-alert-success {
  background: var(--fp-success-100);
  border-color: var(--fp-success-500);
  color: var(--fp-success-600);
}
.fp-alert-warning {
  background: var(--fp-warning-100);
  border-color: var(--fp-warning-500);
  color: var(--fp-warning-600);
}
.fp-alert-danger {
  background: var(--fp-danger-100);
  border-color: var(--fp-danger-500);
  color: var(--fp-danger-600);
}

/* ============================================================
   11. HEADER & NAVIGATION
   ============================================================ */

/* --- Announcement bar --- */
.fp-announce {
  background: #111111;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1031;
}
.fp-announce a {
  color: #34d399;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fp-announce a:hover {
  opacity: 0.85;
}
.fp-announce-sep {
  margin: 0 12px;
  opacity: 0.3;
}

@media (max-width: 767px) {
  .fp-announce {
    font-size: 0.75rem;
    padding: 7px 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .fp-announce-sep {
    margin: 0 6px;
  }
  .fp-announce .bi-stars {
    display: none;
  }
}

/* --- Site header --- */
.fp-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%;
  background: var(--fp-white);
  border-bottom: 1px solid var(--fp-neutral-200);
  transition:
    background var(--fp-transition-slow),
    border-color var(--fp-transition-slow),
    box-shadow var(--fp-transition-slow);
}

/* Scrolled state — shadow added by JS class */
.fp-header.is-scrolled {
  box-shadow: var(--fp-shadow-md);
}

/* Transparent mode — homepage hero overlap */
.fp-header.is-transparent {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.fp-header.is-transparent .fp-nav-link,
.fp-header.is-transparent .fp-nav-logo-text {
  color: var(--fp-white);
}
.fp-header.is-transparent .fp-nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}
.fp-header.is-transparent .fp-hamburger span {
  background: var(--fp-white);
}

/* --- Inner wrapper --- */
.fp-header-inner {
  height: var(--fp-nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--fp-space-4);
}

/* --- Logo --- */
.fp-nav-logo {
  display: flex;
  align-items: center;
  gap: var(--fp-space-2);
  text-decoration: none;
  flex-shrink: 0;
}
.fp-nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.fp-nav-logo-text {
  font-size: 1.125rem;
  font-weight: var(--fp-font-bold);
  color: var(--fp-neutral-900);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color var(--fp-transition-fast);
}

/* --- Desktop nav links --- */
.fp-nav-links {
  display: flex;
  align-items: center;
  gap: var(--fp-space-1);
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  margin-left: var(--fp-space-6);
}
.fp-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: var(--fp-space-2) var(--fp-space-3);
  font-size: 0.9375rem;
  font-weight: var(--fp-font-medium);
  color: var(--fp-neutral-700);
  border-radius: var(--fp-radius-lg);
  text-decoration: none;
  transition:
    color var(--fp-transition-fast),
    background var(--fp-transition-fast);
  white-space: nowrap;
}
.fp-nav-link:hover,
.fp-nav-link.is-active {
  color: var(--fp-primary-600);
  background: var(--fp-primary-50);
}
.fp-nav-link i {
  font-size: 13px;
  transition: transform var(--fp-transition-fast);
}
/* Rotate chevron when dropdown open */
.fp-nav-item.is-open > .fp-nav-link i {
  transform: rotate(180deg);
}

/* --- Nav actions (right side) --- */
.fp-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--fp-space-3);
  flex-shrink: 0;
}

/* --- Account dropdown trigger --- */
.fp-nav-account {
  display: flex;
  align-items: center;
  gap: var(--fp-space-2);
  padding: var(--fp-space-2) var(--fp-space-3);
  font-size: 0.9375rem;
  font-weight: var(--fp-font-medium);
  color: var(--fp-neutral-700);
  border-radius: var(--fp-radius-lg);
  cursor: pointer;
  transition:
    background var(--fp-transition-fast),
    color var(--fp-transition-fast);
  border: none;
  background: transparent;
}
.fp-nav-account:hover {
  background: var(--fp-neutral-100);
  color: var(--fp-neutral-900);
}
.fp-nav-account .fp-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fp-primary-600);
  color: var(--fp-white);
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Hamburger button --- */
.fp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: var(--fp-radius-lg);
  cursor: pointer;
  padding: var(--fp-space-2);
  transition: background var(--fp-transition-fast);
}
.fp-hamburger:hover {
  background: var(--fp-neutral-100);
}
.fp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fp-neutral-700);
  border-radius: 2px;
  transition:
    transform var(--fp-transition-base),
    opacity var(--fp-transition-base),
    width var(--fp-transition-base);
  margin: 0 auto;
}
/* Hamburger → X animation */
.fp-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.fp-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.fp-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile: show hamburger, hide nav links */
@media (max-width: 991px) {
  .fp-nav-links {
    display: none;
  }
  .fp-hamburger {
    display: flex;
  }
  .fp-header-inner {
    height: var(--fp-nav-height-mob);
  }
  /* Hide "Book a Repair" CTA on mobile — it's in the drawer */
  .fp-nav-actions .btn-cta {
    display: none;
  }
}

/* ============================================================
   12. MEGA DROPDOWN
   ============================================================ */

.fp-nav-item {
  position: relative;
  list-style: none;
}

/* Standard dropdown */
.fp-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--fp-white);
  border: 1px solid var(--fp-neutral-200);
  border-radius: var(--fp-radius-2xl);
  box-shadow: var(--fp-shadow-xl);
  padding: var(--fp-space-2);
  min-width: 200px;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity var(--fp-transition-base),
    visibility var(--fp-transition-base),
    transform var(--fp-transition-base);
}
.fp-nav-item:hover .fp-dropdown,
.fp-nav-item.is-open .fp-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mega dropdown */
.fp-mega-dropdown {
  position: fixed;
  top: var(--fp-mega-top, var(--fp-nav-height));
  left: 0;
  right: 0;
  background: var(--fp-white);
  border-top: 1px solid var(--fp-neutral-200);
  border-bottom: 1px solid var(--fp-neutral-200);
  box-shadow: var(--fp-shadow-lg);
  padding: var(--fp-space-8) 0;
  z-index: 1035;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity var(--fp-transition-base),
    visibility var(--fp-transition-base),
    transform var(--fp-transition-base);
}
.fp-nav-item:hover .fp-mega-dropdown,
.fp-nav-item.is-open .fp-mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fp-mega-col-title {
  font-size: var(--fp-text-xs);
  font-weight: var(--fp-font-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fp-neutral-400);
  padding: 0 var(--fp-space-3);
  margin-bottom: var(--fp-space-2);
}

.fp-mega-link {
  display: flex;
  align-items: center;
  gap: var(--fp-space-3);
  padding: var(--fp-space-2) var(--fp-space-3);
  border-radius: var(--fp-radius-lg);
  color: var(--fp-neutral-700);
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-medium);
  text-decoration: none;
  transition:
    background var(--fp-transition-fast),
    color var(--fp-transition-fast);
}
.fp-mega-link:hover {
  background: var(--fp-primary-50);
  color: var(--fp-primary-600);
}
.fp-mega-link .fp-mega-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--fp-radius-lg);
  background: var(--fp-neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fp-icon-md);
  flex-shrink: 0;
  transition: background var(--fp-transition-fast);
}
.fp-mega-link:hover .fp-mega-icon {
  background: var(--fp-primary-100);
  color: var(--fp-primary-600);
}

/* Mega dropdown — compact device links */
.fp-mega-device-link {
  display: block;
  padding: 4px var(--fp-space-3);
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-medium);
  color: var(--fp-neutral-700);
  text-decoration: none;
  border-radius: var(--fp-radius-md);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:
    background var(--fp-transition-fast),
    color var(--fp-transition-fast);
}
.fp-mega-device-link:hover {
  background: var(--fp-primary-50);
  color: var(--fp-primary-600);
}

/* Standard dropdown links */
.fp-dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--fp-space-2);
  padding: var(--fp-space-2) var(--fp-space-3);
  border-radius: var(--fp-radius-lg);
  color: var(--fp-neutral-700);
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-medium);
  text-decoration: none;
  transition:
    background var(--fp-transition-fast),
    color var(--fp-transition-fast);
  white-space: nowrap;
}
.fp-dropdown-link:hover {
  background: var(--fp-primary-50);
  color: var(--fp-primary-600);
}
.fp-dropdown-divider {
  height: 1px;
  background: var(--fp-neutral-200);
  margin: var(--fp-space-2) var(--fp-space-3);
}

/* ============================================================
   13. MOBILE DRAWER MENU
   ============================================================ */

/* Backdrop */
.fp-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--fp-transition-slow),
    visibility var(--fp-transition-slow);
  backdrop-filter: blur(2px);
}
.fp-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* Drawer panel */
.fp-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--fp-white);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform var(--fp-transition-slow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: var(--fp-shadow-2xl);
}
.fp-drawer.is-open {
  transform: translateX(0);
}

/* Drawer header */
.fp-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--fp-space-4) var(--fp-space-4);
  border-bottom: 1px solid var(--fp-neutral-200);
  min-height: var(--fp-nav-height-mob);
  flex-shrink: 0;
}
.fp-drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: var(--fp-radius-lg);
  color: var(--fp-neutral-600);
  font-size: var(--fp-icon-lg);
  cursor: pointer;
  transition:
    background var(--fp-transition-fast),
    color var(--fp-transition-fast);
}
.fp-drawer-close:hover {
  background: var(--fp-neutral-100);
  color: var(--fp-neutral-900);
}

/* Drawer CTA */
.fp-drawer-cta {
  padding: var(--fp-space-4);
  flex-shrink: 0;
}

/* Drawer nav */
.fp-drawer-nav {
  flex: 1;
  padding: var(--fp-space-2) var(--fp-space-2);
  overflow-y: auto;
}

/* Drawer nav item */
.fp-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--fp-space-3) var(--fp-space-4);
  border-radius: var(--fp-radius-lg);
  font-size: var(--fp-text-base);
  font-weight: var(--fp-font-medium);
  color: var(--fp-neutral-700);
  text-decoration: none;
  transition:
    background var(--fp-transition-fast),
    color var(--fp-transition-fast);
  min-height: 52px;
}
.fp-drawer-link:hover {
  background: var(--fp-neutral-100);
  color: var(--fp-neutral-900);
}
.fp-drawer-link i {
  font-size: var(--fp-icon-md);
}

/* Drawer sub-links */
.fp-drawer-sub {
  display: none;
  padding-left: var(--fp-space-4);
}
.fp-drawer-sub.is-open {
  display: block;
}
.fp-drawer-sub-link {
  display: block;
  padding: var(--fp-space-3) var(--fp-space-4);
  border-radius: var(--fp-radius-lg);
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-medium);
  color: var(--fp-neutral-600);
  text-decoration: none;
  transition:
    background var(--fp-transition-fast),
    color var(--fp-transition-fast);
}
.fp-drawer-sub-link:hover {
  background: var(--fp-primary-50);
  color: var(--fp-primary-600);
}

/* Drawer divider */
.fp-drawer-divider {
  height: 1px;
  background: var(--fp-neutral-200);
  margin: var(--fp-space-2) var(--fp-space-4);
}

/* Drawer footer */
.fp-drawer-footer {
  padding: var(--fp-space-4);
  border-top: 1px solid var(--fp-neutral-200);
  flex-shrink: 0;
}
.fp-drawer-footer .fp-drawer-link {
  font-size: var(--fp-text-sm);
  color: var(--fp-neutral-600);
  min-height: 44px;
}

/* ============================================================
   14. BREADCRUMB
   ============================================================ */

.fp-breadcrumb {
  background: var(--fp-neutral-50);
  border-bottom: 1px solid var(--fp-neutral-200);
}
.fp-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: var(--fp-space-1);
  padding: 12px 0;
  flex-wrap: wrap;
  min-height: 44px;
}
.fp-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: var(--fp-space-1);
  font-size: var(--fp-text-sm);
  color: var(--fp-neutral-500);
  white-space: nowrap;
}
.fp-breadcrumb-link {
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-medium);
  color: var(--fp-primary-600);
  text-decoration: none;
  transition: color var(--fp-transition-fast);
}
.fp-breadcrumb-link:hover {
  color: var(--fp-primary-700);
  text-decoration: underline;
}
.fp-breadcrumb-sep {
  color: var(--fp-neutral-400);
  font-size: var(--fp-text-xs);
  margin: 0 2px;
}
.fp-breadcrumb-current {
  font-size: var(--fp-text-sm);
  color: var(--fp-neutral-500);
  font-weight: var(--fp-font-normal);
}

/* ============================================================
   15. FOOTER
   ============================================================ */

.fp-footer {
  background: var(--fp-neutral-900);
  color: var(--fp-neutral-400);
  padding-top: var(--fp-space-16);
}

/* Column headings */
.fp-footer-heading {
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-semibold);
  color: var(--fp-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--fp-space-4);
}

/* Footer links */
.fp-footer-link {
  display: block;
  font-size: var(--fp-text-sm);
  color: var(--fp-neutral-400);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--fp-transition-fast);
  line-height: 1.5;
}
.fp-footer-link:hover {
  color: var(--fp-primary-400);
}

/* Footer logo */
.fp-footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: var(--fp-space-4);
}
.fp-footer-tagline {
  font-size: var(--fp-text-sm);
  color: var(--fp-neutral-500);
  line-height: 1.6;
  max-width: 220px;
  margin-bottom: var(--fp-space-6);
}

/* Social icons */
.fp-footer-social {
  display: flex;
  gap: var(--fp-space-3);
  flex-wrap: wrap;
}
.fp-footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--fp-radius-lg);
  background: rgba(255, 255, 255, 0.08);
  color: var(--fp-neutral-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fp-icon-sm);
  text-decoration: none;
  transition:
    background var(--fp-transition-fast),
    color var(--fp-transition-fast);
}
.fp-footer-social-link:hover {
  background: var(--fp-primary-600);
  color: var(--fp-white);
}

/* Footer main content area */
.fp-footer-main {
  padding-bottom: var(--fp-space-12);
}

/* Footer divider */
.fp-footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 0;
}

/* Bottom bar */
.fp-footer-bottom {
  background: var(--fp-neutral-950);
  padding: var(--fp-space-4) 0;
}
.fp-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--fp-space-4);
  flex-wrap: wrap;
}
.fp-footer-copyright {
  font-size: var(--fp-text-xs);
  color: var(--fp-neutral-500);
}
.fp-footer-payments {
  display: flex;
  align-items: center;
  gap: var(--fp-space-2);
  flex-wrap: wrap;
}
.fp-payment-icon {
  height: 24px;
  width: auto;
  border-radius: 3px;
  opacity: 0.6;
  background: var(--fp-white);
  padding: 2px 5px;
}

/* Footer mobile collapse — links in accordion */
@media (max-width: 767px) {
  .fp-footer {
    padding-top: var(--fp-space-12);
  }
  .fp-footer-main {
    padding-bottom: var(--fp-space-8);
  }
  .fp-footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

/* ============================================================
   16. TRUST BADGES ROW
   ============================================================ */

.fp-trust-bar {
  display: flex;
  align-items: center;
  gap: var(--fp-space-6);
  flex-wrap: wrap;
}
.fp-trust-item {
  display: flex;
  align-items: center;
  gap: var(--fp-space-2);
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-medium);
  color: var(--fp-neutral-700);
  white-space: nowrap;
}
.fp-trust-item i {
  color: var(--fp-accent-500);
  font-size: var(--fp-icon-md);
}
/* White variant — on dark backgrounds */
.fp-trust-bar.fp-trust-bar-white .fp-trust-item {
  color: rgba(255, 255, 255, 0.85);
}
.fp-trust-bar.fp-trust-bar-white .fp-trust-item i {
  color: var(--fp-accent-400);
}

@media (max-width: 767px) {
  .fp-trust-bar {
    gap: var(--fp-space-4);
    justify-content: center;
  }
}

/* ============================================================
   17. WARRANTY BADGE
   ============================================================ */

.fp-warranty-badge {
  display: flex;
  align-items: center;
  gap: var(--fp-space-3);
  background: var(--fp-accent-50);
  border: 1px solid var(--fp-accent-200);
  border-radius: var(--fp-radius-xl);
  padding: 12px var(--fp-space-4);
}
.fp-warranty-badge i {
  font-size: var(--fp-icon-lg);
  color: var(--fp-accent-500);
  flex-shrink: 0;
}
.fp-warranty-title {
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-semibold);
  color: var(--fp-accent-700);
  display: block;
  line-height: 1.3;
}
.fp-warranty-sub {
  font-size: var(--fp-text-xs);
  color: var(--fp-accent-600);
  display: block;
  margin-top: 2px;
}

/* ============================================================
   18. PRICE DISPLAY
   ============================================================ */

.fp-price {
  font-weight: var(--fp-font-semibold);
  color: var(--fp-neutral-900);
}
.fp-price-sm {
  font-size: var(--fp-text-base);
}
.fp-price-md {
  font-size: var(--fp-text-xl);
}
.fp-price-lg {
  font-size: var(--fp-text-3xl);
}
.fp-price-xl {
  font-size: var(--fp-text-4xl);
  color: var(--fp-primary-600);
  font-weight: var(--fp-font-bold);
}

.fp-price-from {
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-normal);
  color: var(--fp-neutral-500);
  margin-right: 3px;
}
.fp-price-original {
  font-size: var(--fp-text-base);
  font-weight: var(--fp-font-normal);
  color: var(--fp-neutral-400);
  text-decoration: line-through;
  margin-right: var(--fp-space-2);
}
.fp-price-sale {
  color: var(--fp-danger-600);
}
.fp-price-save-badge {
  display: inline-flex;
  align-items: center;
  background: var(--fp-danger-100);
  color: var(--fp-danger-600);
  font-size: var(--fp-text-xs);
  font-weight: var(--fp-font-semibold);
  padding: 2px var(--fp-space-2);
  border-radius: var(--fp-radius-full);
  margin-left: var(--fp-space-2);
}

/* ============================================================
   19. BOOKING REFERENCE
   ============================================================ */

.fp-booking-ref {
  font-family: var(--fp-font-mono);
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-medium);
  background: var(--fp-neutral-100);
  color: var(--fp-neutral-700);
  padding: 3px var(--fp-space-2);
  border-radius: var(--fp-radius-sm);
  border: 1px solid var(--fp-neutral-200);
  letter-spacing: 0.04em;
  display: inline-block;
}
.fp-booking-ref-lg {
  font-size: var(--fp-text-lg);
  padding: var(--fp-space-2) var(--fp-space-3);
  border-radius: var(--fp-radius-lg);
}

/* ============================================================
   20. STEP INDICATOR (BOOKING WIZARD)
   ============================================================ */

.fp-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--fp-space-8);
  overflow: hidden;
}

/* Individual step */
.fp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  gap: var(--fp-space-2);
}

/* Connector line */
.fp-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% + 14px);
  right: calc(-50% + 14px);
  height: 2px;
  background: var(--fp-neutral-200);
  z-index: 0;
}
.fp-step.is-completed:not(:last-child)::after {
  background: var(--fp-primary-500);
}

/* Step circle */
.fp-step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--fp-neutral-300);
  background: var(--fp-white);
  color: var(--fp-neutral-400);
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-semibold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all var(--fp-transition-base);
}
.fp-step.is-completed .fp-step-circle {
  background: var(--fp-primary-600);
  border-color: var(--fp-primary-600);
  color: var(--fp-white);
}
.fp-step.is-active .fp-step-circle {
  background: var(--fp-primary-600);
  border-color: var(--fp-primary-600);
  color: var(--fp-white);
  box-shadow: 0 0 0 4px var(--fp-primary-100);
}

/* Step label */
.fp-step-label {
  font-size: var(--fp-text-xs);
  font-weight: var(--fp-font-medium);
  color: var(--fp-neutral-400);
  text-align: center;
  white-space: nowrap;
}
.fp-step.is-completed .fp-step-label {
  color: var(--fp-primary-600);
}
.fp-step.is-active .fp-step-label {
  color: var(--fp-primary-700);
  font-weight: var(--fp-font-semibold);
}

/* Mobile step indicator — simplified */
@media (max-width: 767px) {
  .fp-steps {
    display: none;
  }
  .fp-steps-mobile {
    display: flex;
    align-items: center;
    gap: var(--fp-space-3);
    margin-bottom: var(--fp-space-6);
  }
  .fp-steps-mobile-label {
    font-size: var(--fp-text-sm);
    font-weight: var(--fp-font-medium);
    color: var(--fp-neutral-700);
  }
  .fp-steps-mobile-progress {
    flex: 1;
    height: 4px;
    background: var(--fp-neutral-200);
    border-radius: var(--fp-radius-full);
    overflow: hidden;
  }
  .fp-steps-mobile-bar {
    height: 100%;
    background: var(--fp-primary-600);
    border-radius: var(--fp-radius-full);
    transition: width var(--fp-transition-slow);
  }
}
.fp-steps-mobile {
  display: none;
}
@media (max-width: 767px) {
  .fp-steps-mobile {
    display: flex;
  }
}

/* ============================================================
   21. TOAST NOTIFICATIONS
   ============================================================ */

.fp-toast-container {
  position: fixed;
  top: var(--fp-space-5);
  right: var(--fp-space-5);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: var(--fp-space-3);
  max-width: 360px;
  width: 100%;
}

.fp-toast {
  display: flex;
  align-items: flex-start;
  gap: var(--fp-space-3);
  padding: var(--fp-space-4);
  background: var(--fp-white);
  border-radius: var(--fp-radius-xl);
  box-shadow: var(--fp-shadow-lg);
  border-left: 4px solid transparent;
  animation: fp-toast-in var(--fp-transition-slow) ease-out;
  position: relative;
}
.fp-toast.is-hiding {
  animation: fp-toast-out var(--fp-transition-slow) ease-in forwards;
}
.fp-toast-icon {
  font-size: var(--fp-icon-md);
  flex-shrink: 0;
  margin-top: 1px;
}
.fp-toast-body {
  flex: 1;
}
.fp-toast-title {
  font-size: var(--fp-text-sm);
  font-weight: var(--fp-font-semibold);
  color: var(--fp-neutral-900);
  margin-bottom: 2px;
  display: block;
}
.fp-toast-message {
  font-size: var(--fp-text-xs);
  color: var(--fp-neutral-600);
  line-height: 1.5;
  display: block;
}
.fp-toast-close {
  background: transparent;
  border: none;
  color: var(--fp-neutral-400);
  cursor: pointer;
  font-size: var(--fp-icon-sm);
  padding: 0;
  flex-shrink: 0;
  line-height: 1;
  transition: color var(--fp-transition-fast);
}
.fp-toast-close:hover {
  color: var(--fp-neutral-700);
}

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

@media (max-width: 575px) {
  .fp-toast-container {
    top: var(--fp-space-4);
    left: var(--fp-space-4);
    right: var(--fp-space-4);
    max-width: none;
  }
}

/* ============================================================
   22. MODALS
   ============================================================ */

/* Override Bootstrap modal border-radius */
.modal-content {
  border-radius: var(--fp-radius-3xl);
  border: none;
  box-shadow: var(--fp-shadow-2xl);
}
.modal-header {
  border-bottom: 1px solid var(--fp-neutral-200);
  padding: var(--fp-space-5) var(--fp-space-6);
  border-radius: var(--fp-radius-3xl) var(--fp-radius-3xl) 0 0;
}
.modal-title {
  font-size: var(--fp-text-xl);
  font-weight: var(--fp-font-semibold);
  color: var(--fp-neutral-900);
}
.modal-body {
  padding: var(--fp-space-6);
}
.modal-footer {
  border-top: 1px solid var(--fp-neutral-200);
  padding: var(--fp-space-5) var(--fp-space-6);
  border-radius: 0 0 var(--fp-radius-3xl) var(--fp-radius-3xl);
  gap: var(--fp-space-3);
}
.modal-backdrop.show {
  backdrop-filter: blur(2px);
}

/* Mobile modal → bottom sheet */
@media (max-width: 575px) {
  .modal-dialog {
    margin: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    align-items: flex-end;
    display: flex;
  }
  .modal.fade .modal-dialog {
    transform: translateY(100%);
  }
  .modal.show .modal-dialog {
    transform: translateY(0);
  }
  .modal-content {
    border-radius: var(--fp-radius-4xl) var(--fp-radius-4xl) 0 0;
    width: 100%;
  }
  /* Drag handle */
  .modal-content::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: var(--fp-neutral-300);
    border-radius: var(--fp-radius-full);
    margin: var(--fp-space-3) auto var(--fp-space-1);
  }
}

/* ============================================================
   23. EMPTY STATES
   ============================================================ */

.fp-empty {
  text-align: center;
  padding: var(--fp-space-16) var(--fp-space-6);
}
.fp-empty-icon {
  font-size: var(--fp-icon-3xl);
  color: var(--fp-neutral-300);
  margin-bottom: var(--fp-space-6);
  line-height: 1;
  display: block;
}
.fp-empty-title {
  font-size: var(--fp-text-xl);
  font-weight: var(--fp-font-semibold);
  color: var(--fp-neutral-700);
  margin-bottom: var(--fp-space-2);
}
.fp-empty-text {
  font-size: var(--fp-text-base);
  color: var(--fp-neutral-500);
  margin-bottom: var(--fp-space-6);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   24. LOADING & SKELETON STATES
   ============================================================ */

/* Skeleton shimmer */
.fp-skeleton {
  background: linear-gradient(
    90deg,
    var(--fp-neutral-100) 25%,
    var(--fp-neutral-200) 50%,
    var(--fp-neutral-100) 75%
  );
  background-size: 200% 100%;
  animation: fp-shimmer 1.5s infinite;
  border-radius: var(--fp-radius-lg);
}
.fp-skeleton-text {
  height: 1em;
  margin-bottom: var(--fp-space-2);
}
.fp-skeleton-title {
  height: 1.5em;
  width: 60%;
  margin-bottom: var(--fp-space-3);
}
.fp-skeleton-image {
  aspect-ratio: 1;
  width: 100%;
  border-radius: var(--fp-radius-2xl);
}
.fp-skeleton-btn {
  height: var(--fp-btn-height-md);
  width: 140px;
  border-radius: var(--fp-radius-lg);
}

/* Page loader bar */
.fp-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--fp-primary-600);
  z-index: 9999;
  transition: width var(--fp-transition-slow);
  border-radius: 0 var(--fp-radius-full) var(--fp-radius-full) 0;
}
.fp-page-loader.is-loading {
  width: 70%;
}
.fp-page-loader.is-done {
  width: 100%;
  opacity: 0;
  transition:
    width 0.3s,
    opacity 0.5s 0.3s;
}

/* ============================================================
   25. UTILITY CLASSES
   ============================================================ */

/* Colours */
.text-primary-600 {
  color: var(--fp-primary-600) !important;
}
.text-accent-500 {
  color: var(--fp-accent-500) !important;
}
.text-neutral-500 {
  color: var(--fp-neutral-500) !important;
}
.text-neutral-700 {
  color: var(--fp-neutral-700) !important;
}
.text-neutral-900 {
  color: var(--fp-neutral-900) !important;
}
.text-danger-600 {
  color: var(--fp-danger-600) !important;
}
.text-success-600 {
  color: var(--fp-success-600) !important;
}
.text-warning-600 {
  color: var(--fp-warning-600) !important;
}
.text-white {
  color: var(--fp-white) !important;
}

/* Backgrounds */
.bg-primary-50 {
  background: var(--fp-primary-50) !important;
}
.bg-primary-600 {
  background: var(--fp-primary-600) !important;
}
.bg-neutral-50 {
  background: var(--fp-neutral-50) !important;
}
.bg-neutral-100 {
  background: var(--fp-neutral-100) !important;
}
.bg-neutral-900 {
  background: var(--fp-neutral-900) !important;
}
.bg-accent-50 {
  background: var(--fp-accent-50) !important;
}
.bg-white {
  background: var(--fp-white) !important;
}

/* Font weights */
.fw-normal {
  font-weight: var(--fp-font-normal) !important;
}
.fw-medium {
  font-weight: var(--fp-font-medium) !important;
}
.fw-semibold {
  font-weight: var(--fp-font-semibold) !important;
}
.fw-bold {
  font-weight: var(--fp-font-bold) !important;
}
.fw-extrabold {
  font-weight: var(--fp-font-extrabold) !important;
}

/* Section padding */
.fp-section {
  padding-top: var(--fp-space-20);
  padding-bottom: var(--fp-space-20);
}
.fp-section-sm {
  padding-top: var(--fp-space-12);
  padding-bottom: var(--fp-space-12);
}
@media (max-width: 767px) {
  .fp-section {
    padding-top: var(--fp-space-12);
    padding-bottom: var(--fp-space-12);
  }
  .fp-section-sm {
    padding-top: var(--fp-space-8);
    padding-bottom: var(--fp-space-8);
  }
}

/* Dividers */
.fp-divider {
  border: none;
  border-top: 1px solid var(--fp-neutral-200);
  margin: var(--fp-space-8) 0;
}
.fp-divider-dark {
  border-color: rgba(255, 255, 255, 0.08);
}

/* Rounded image containers */
.fp-img-device {
  border-radius: var(--fp-radius-xl);
  overflow: hidden;
}
.fp-img-rounded {
  border-radius: var(--fp-radius-2xl);
  overflow: hidden;
}

/* Focus visible reset */
:focus-visible {
  outline: 3px solid var(--fp-primary-500);
  outline-offset: 2px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================================
   26. ANIMATIONS & KEYFRAMES
   ============================================================ */

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

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

@keyframes fp-toast-in {
  from {
    opacity: 0;
    transform: translateX(calc(100% + 20px));
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fp-toast-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(calc(100% + 20px));
    max-height: 0;
    padding: 0;
    margin: 0;
  }
}

@keyframes fp-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fp-animate-fade-in {
  animation: fp-fade-in 0.3s ease-out both;
}
.fp-animate-fade-in-delay-1 {
  animation-delay: 0.05s;
}
.fp-animate-fade-in-delay-2 {
  animation-delay: 0.1s;
}
.fp-animate-fade-in-delay-3 {
  animation-delay: 0.15s;
}
.fp-animate-fade-in-delay-4 {
  animation-delay: 0.2s;
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION
   ============================================================ */
.fp-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1045;
  background: #fff;
  border-top: 1px solid var(--fp-neutral-200);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.fp-bottom-nav-inner {
  display: flex;
  align-items: stretch;
  height: 58px;
}
.fp-bnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--fp-neutral-400);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  gap: 3px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s;
  padding: 6px 2px 4px;
}
.fp-bnav-item i {
  font-size: 21px;
  line-height: 1;
  transition: transform 0.15s;
}
.fp-bnav-item:active i {
  transform: scale(0.88);
}
.fp-bnav-item.is-active {
  color: var(--fp-primary-600);
}
.fp-bnav-item.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2.5px;
  background: var(--fp-primary-600);
  border-radius: 0 0 3px 3px;
}
.fp-bnav-item--book {
  margin-top: -12px;
  padding-top: 0;
  justify-content: flex-start;
  gap: 4px;
  color: var(--fp-neutral-400);
}
.fp-bnav-book-fab {
  width: 50px;
  height: 50px;
  background: var(--fp-accent-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 16px rgba(16, 185, 129, 0.45),
    0 1px 4px rgba(0, 0, 0, 0.12);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  flex-shrink: 0;
}
.fp-bnav-book-fab i {
  font-size: 22px;
  color: #fff;
  transition: transform 0.15s;
}
.fp-bnav-item--book:active .fp-bnav-book-fab {
  background: var(--fp-accent-600);
  transform: scale(0.92);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.fp-bnav-item--book:active .fp-bnav-book-fab i {
  transform: none;
}
.fp-bnav-item--book span {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--fp-accent-600);
  margin-top: 0;
}
.fp-bnav-item--more {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fp-font-sans);
}
.fp-bnav-item--more.is-active {
  color: var(--fp-primary-600);
}
.fp-bnav-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 18px);
  min-width: 16px;
  height: 16px;
  background: #ef4444;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
  line-height: 1;
}

@media (max-width: 767px) {
  .fp-bottom-nav {
    display: block;
  }
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
  }
  html {
    overflow-x: hidden;
  }
  .fp-hamburger {
    display: none !important;
  }
  .fp-header-inner {
    padding: 0 4px 0 0;
  }
  .fp-nav-account {
    padding-right: 0;
  }
}

/* ============================================================
   NEWSLETTER SECTION — shared partial
   ============================================================ */
/* ── CTA Band — light card design ── */
.fp-cta-band {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 72px 0;
}
.fp-cta-band-inner {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  padding: 52px 48px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}
.fp-cta-band-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.035em;
  margin: 10px 0 14px;
  line-height: 1.1;
}
.fp-cta-band-sub {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 24px;
}
.fp-cta-band-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.fp-cta-band-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}
.fp-cta-band-trust i {
  color: #10b981;
  font-size: 15px;
}
@media (max-width: 991px) {
  .fp-cta-band-inner {
    padding: 36px 28px;
  }
  .fp-cta-band-inner .col-lg-5 {
    align-items: flex-start !important;
  }
}
@media (max-width: 767px) {
  .fp-cta-band {
    padding: 48px 0;
  }
  .fp-cta-band-inner {
    padding: 28px 20px;
    border-radius: 14px;
  }
}

/* ── Newsletter — dark background ── */
.fp-newsletter {
  position: relative;
  background: linear-gradient(135deg, #0d0d0d 0%, #111111 60%, #000000 100%);
  padding: 40px 0;
  overflow: hidden;
}

/* Grid texture */
.fp-newsletter-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Glow orbs */
.fp-newsletter-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.fp-newsletter-glow--left {
  top: -80px;
  left: -80px;
}
.fp-newsletter-glow--right {
  bottom: -80px;
  right: -80px;
}

.fp-newsletter-inner {
  position: relative;
  z-index: 2;
}
.fp-newsletter-body {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.fp-newsletter-copy {
  flex: 1;
  min-width: 240px;
}
.fp-newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  color: #10b981;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 4px 12px;
  margin-bottom: 8px;
}
.fp-newsletter-title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.fp-newsletter-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

.fp-newsletter-form {
  flex: 1;
  min-width: 280px;
  max-width: 460px;
}
.fp-newsletter-field {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s;
}
.fp-newsletter-field:focus-within {
  border-color: rgba(16, 185, 129, 0.5);
}
.fp-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.9375rem;
  padding: 13px 16px;
}
.fp-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.fp-newsletter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(160deg, #10b981 0%, #059669 100%);
  border: none;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 13px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.fp-newsletter-btn:hover {
  background: linear-gradient(160deg, #10b981 0%, #059669 100%);
}
.fp-newsletter-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.fp-newsletter-msg {
  font-size: 0.8125rem;
  margin-top: 8px;
  min-height: 18px;
  padding-left: 2px;
}
.fp-newsletter-msg--success {
  color: #34d399;
}
.fp-newsletter-msg--error {
  color: #f87171;
}

@media (max-width: 767px) {
  .fp-newsletter {
    padding: 32px 0;
  }
  .fp-newsletter-body {
    gap: 28px;
  }
  .fp-newsletter-form {
    max-width: 100%;
    width: 100%;
  }
}

/* ============================================================
   PAGE HERO — shared across all simple pages
   (About, FAQ, Privacy, Terms, Cookie, Locations, etc.)
   ============================================================ */

.fp-page-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #111 60%, #0d1a12 100%);
  padding: 40px 0 32px;
  position: relative;
  overflow: hidden;
}
.fp-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.fp-page-hero-inner {
  position: relative;
  z-index: 2;
}
.fp-page-hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #10b981;
  margin-bottom: 10px;
}
.fp-page-hero h1 {
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 8px;
}
.fp-page-hero-sub {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  line-height: 1.65;
  margin: 0;
}

/* ── Hero breadcrumb — used on all dark-hero pages ── */
.fp-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.fp-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.fp-hero-breadcrumb a:hover {
  color: #10b981;
}
.fp-hero-breadcrumb i {
  font-size: 10px;
}

@media (max-width: 767px) {
  .fp-page-hero {
    padding: 28px 0 22px;
  }
}

/* ============================================================
   iOS INPUT ZOOM FIX
   iOS Safari zooms in on any input with font-size < 16px.
   Force 16px on all inputs/selects/textareas on mobile so the
   page never zooms on tap — visual size unchanged on desktop.
   ============================================================ */
@media (max-width: 991px) {
  input,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="number"],
  input[type="search"],
  input[type="url"],
  input[type="date"],
  input[type="time"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ============================================================
   END OF STYLESHEET
   ============================================================ */

/* ── Dark-background blue overrides (bright blue for dark sections) ── */
.fp-newsletter-badge {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.25);
  color: #34d399;
}
.fp-newsletter-glow {
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.14) 0%,
    transparent 70%
  );
}
