@charset "UTF-8";
/**
 * SipsTi Car Rental Tevi — Main SCSS Entry Point
 *
 * Compiles all partials into style.css.
 * Order matters: variables → base → layout → components → pages → responsive.
 *
 * Build: sass scss/style.scss style.css --style=compressed --no-source-map
 *
 * @package SipsTi_Car_Rental_Tevi
 */
/*
Theme Name: SipsTi Car Rental Tevi
Theme URI: https://sipsti.com
Author: HiCare Development Team
Author URI: https://hicare.ee
Description: Autorenditeema SipsTi platvormi pluginale. Kaasaegne, mobiilisõbralik ja kiire teema autorenditeenuste kuvamiseks. Arendatud HiCare OÜ poolt.
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 8.2
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hicar-theme
Tags: rental, cars, booking, custom-colors, custom-logo, featured-images, full-width-template

SipsTi Car Rental Tevi — Professionaalne autorenditeema
*/
/* ============================================
   CSS Custom Properties (Design Tokens)
   ============================================ */
:root {
  /* Brand Colors */
  --hc-primary: #2563EB;
  --hc-primary-hover: #1D4ED8;
  --hc-primary-light: #DBEAFE;
  --hc-primary-dark: #1E40AF;
  --hc-secondary: #F97316;
  --hc-secondary-hover: #EA580C;
  --hc-secondary-light: #FFF7ED;
  --hc-success: #16A34A;
  --hc-success-light: #DCFCE7;
  --hc-warning: #EAB308;
  --hc-warning-light: #FEF9C3;
  --hc-error: #DC2626;
  --hc-error-light: #FEE2E2;
  --hc-info: #0EA5E9;
  --hc-info-light: #E0F2FE;
  /* Neutral Palette */
  --hc-gray-50: #F8FAFC;
  --hc-gray-100: #F1F5F9;
  --hc-gray-200: #E2E8F0;
  --hc-gray-300: #CBD5E1;
  --hc-gray-400: #94A3B8;
  --hc-gray-500: #64748B;
  --hc-gray-600: #475569;
  --hc-gray-700: #334155;
  --hc-gray-800: #1E293B;
  --hc-gray-900: #0F172A;
  /* Typography */
  --hc-font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --hc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --hc-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --hc-text-xs: 0.75rem;
  --hc-text-sm: 0.875rem;
  --hc-text-base: 1rem;
  --hc-text-lg: 1.125rem;
  --hc-text-xl: 1.25rem;
  --hc-text-2xl: 1.5rem;
  --hc-text-3xl: 1.875rem;
  --hc-text-4xl: 2.25rem;
  --hc-text-5xl: 3rem;
  /* Spacing */
  --hc-space-1: 0.25rem;
  --hc-space-2: 0.5rem;
  --hc-space-3: 0.75rem;
  --hc-space-4: 1rem;
  --hc-space-5: 1.25rem;
  --hc-space-6: 1.5rem;
  --hc-space-8: 2rem;
  --hc-space-10: 2.5rem;
  --hc-space-12: 3rem;
  --hc-space-16: 4rem;
  --hc-space-20: 5rem;
  --hc-space-24: 6rem;
  /* Border Radius */
  --hc-radius-sm: 0.25rem;
  --hc-radius-md: 0.5rem;
  --hc-radius-lg: 0.75rem;
  --hc-radius-xl: 1rem;
  --hc-radius-2xl: 1.5rem;
  --hc-radius-full: 9999px;
  /* Shadows */
  --hc-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --hc-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --hc-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --hc-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  /* Transitions */
  --hc-transition-fast: 150ms ease;
  --hc-transition-base: 250ms ease;
  --hc-transition-slow: 350ms ease;
  /* Layout */
  --hc-container-sm: 640px;
  --hc-container-md: 768px;
  --hc-container-lg: 1024px;
  --hc-container-xl: 1280px;
  --hc-container-2xl: 1440px;
  /* Header */
  --hc-header-height: 72px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--hc-font-body);
  font-size: var(--hc-text-base);
  line-height: 1.6;
  color: var(--hc-gray-800);
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hc-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--hc-gray-900);
}

h1 {
  font-size: var(--hc-text-4xl);
}

h2 {
  font-size: var(--hc-text-3xl);
}

h3 {
  font-size: var(--hc-text-2xl);
}

h4 {
  font-size: var(--hc-text-xl);
}

h5 {
  font-size: var(--hc-text-lg);
}

h6 {
  font-size: var(--hc-text-base);
}

a {
  color: var(--hc-primary);
  text-decoration: none;
  transition: color var(--hc-transition-fast);
}

a:hover {
  color: var(--hc-primary-hover);
}

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

/* ============================================
   Breadcrumb
   ============================================ */
.hc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--hc-gray-500);
  margin-bottom: 24px;
}

.hc-breadcrumb a {
  color: var(--hc-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.hc-breadcrumb a:hover {
  color: var(--hc-primary-dark);
}

.hc-breadcrumb__sep {
  color: var(--hc-gray-300);
}

.hc-breadcrumb__current {
  color: var(--hc-gray-700);
}

/* ============================================
   Single Post & Page — Shared
   ============================================ */
.hc-section--post,
.hc-section--page {
  padding-top: 40px;
}

.hc-container--narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hc-post__title,
.hc-page__title {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--hc-gray-900);
}

.hc-post__meta {
  font-size: 0.85rem;
  color: var(--hc-gray-500);
  margin-bottom: 32px;
}

.hc-post__content,
.hc-page__content {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hc-post__content h2,
.hc-post__content h3,
.hc-post__content h4,
.hc-page__content h2,
.hc-page__content h3,
.hc-page__content h4 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.hc-post__content p,
.hc-page__content p {
  margin-bottom: 16px;
}

.hc-post__content ul,
.hc-post__content ol,
.hc-page__content ul,
.hc-page__content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.hc-post__content img,
.hc-page__content img {
  border-radius: var(--hc-radius-xl);
  margin: 24px 0;
}

.hc-post__thumbnail {
  margin-bottom: 32px;
  border-radius: var(--hc-radius-xl);
  overflow: hidden;
}

.hc-post__thumbnail img {
  width: 100%;
  height: auto;
}

.hc-post__footer {
  padding-top: 24px;
  border-top: 1px solid var(--hc-gray-200);
}

/* ============================================
   Layout
   ============================================ */
.hc-container {
  width: 100%;
  max-width: var(--hc-container-xl);
  margin: 0 auto;
  padding: 0 var(--hc-space-6);
}

.hc-section {
  padding: var(--hc-space-20) 0;
}

.hc-section--gray {
  background: var(--hc-gray-50);
}

/* ============================================
   Section Dividers — Wave shapes
   ============================================ */
.hc-wave-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-top: -1px;
  pointer-events: none;
}

.hc-wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hc-wave-divider--flip {
  transform: scaleY(-1);
  margin-top: 0;
  margin-bottom: -1px;
}

.hc-wave-divider--gray svg {
  fill: var(--hc-gray-50);
}

.hc-wave-divider--white svg {
  fill: #fff;
}

.hc-wave-divider--dark svg {
  fill: var(--hc-primary);
}

.hc-wave-divider--subtle svg {
  fill: var(--hc-gray-100);
}

/* ============================================
   Section Parallax Backgrounds
   ============================================ */
.hc-section[data-parallax] {
  position: relative;
  overflow: hidden;
}

.hc-parallax-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.07;
  filter: blur(60px);
  z-index: 0;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hc-parallax-orb--primary {
  background: var(--hc-primary);
}

.hc-parallax-orb--accent {
  background: var(--hc-secondary);
}

.hc-parallax-orb--purple {
  background: #8B5CF6;
}

/* ============================================
   How-it-works Connector Animation
   ============================================ */
.hc-how__connector svg line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hc-how.hc-section--visible .hc-how__connector svg line {
  stroke-dashoffset: 0;
}

/* Step number pulse on reveal */
.hc-how__step.revealed .hc-how__step-num {
  animation: hcStepPulse 0.6s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hcStepPulse {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* ============================================
   Trust Bar — Glass shimmer effect
   ============================================ */
.hc-trust__grid.revealed {
  position: relative;
  overflow: hidden;
}

.hc-trust__grid.revealed::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  animation: hcGlassShimmer 1.5s 0.4s ease-out forwards;
  pointer-events: none;
}

@keyframes hcGlassShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* ============================================
   CTA — Gradient sweep on reveal
   ============================================ */
.hc-cta.hc-section--visible .hc-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 40%, transparent 60%);
  animation: hcCtaSweep 2s ease-out forwards;
  pointer-events: none;
}

@keyframes hcCtaSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* ============================================
   Testimonial — Hover glow ring
   ============================================ */
.hc-testimonial::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--hc-radius-xl) + 2px);
  background: linear-gradient(135deg, var(--hc-primary) 0%, #8B5CF6 50%, var(--hc-secondary) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.hc-testimonial {
  position: relative;
  z-index: 1;
}

.hc-testimonial:hover::before {
  opacity: 0.35;
}

/* ============================================
   Reduce motion for accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .hc-reveal,
  .hc-reveal-child,
  .hc-stagger-wave > * {
    transition-duration: 0.01ms !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
  .hc-wave-divider {
    display: none;
  }
  .hc-parallax-orb {
    display: none;
  }
  .hc-hero__island {
    animation: none !important;
    opacity: 1 !important;
  }
  .hc-hero__hiiumaa-stroke {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }
  .hc-hero__hiiumaa-fill {
    animation: none !important;
    opacity: 1 !important;
  }
  .hc-hero__hiiumaa-halo {
    animation: none !important;
    opacity: 1 !important;
  }
  .hc-trust__grid.revealed::after,
  .hc-cta.hc-section--visible .hc-cta__bg::after {
    animation: none !important;
  }
}
/* ============================================
   Buttons
   ============================================ */
.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--hc-space-2);
  padding: var(--hc-space-3) var(--hc-space-6);
  font-family: var(--hc-font-body);
  font-size: var(--hc-text-sm);
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--hc-radius-lg);
  cursor: pointer;
  transition: all var(--hc-transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.hc-btn--primary {
  background: var(--hc-primary);
  color: #ffffff;
}

.hc-btn--primary:hover {
  background: var(--hc-primary-hover);
  color: #ffffff;
}

.hc-btn--secondary {
  background: transparent;
  color: var(--hc-primary);
  border-color: var(--hc-primary);
}

.hc-btn--secondary:hover {
  background: var(--hc-primary);
  color: #ffffff;
}

.hc-btn--accent {
  background: var(--hc-secondary);
  color: #ffffff;
}

.hc-btn--accent:hover {
  background: var(--hc-secondary-hover);
  color: #ffffff;
}

.hc-btn--lg {
  padding: var(--hc-space-4) var(--hc-space-8);
  font-size: var(--hc-text-base);
  border-radius: var(--hc-radius-xl);
}

.hc-btn--sm {
  padding: var(--hc-space-2) var(--hc-space-4);
  font-size: var(--hc-text-xs);
}

/* ============================================
   Vehicle Cards — Enhanced
   ============================================ */
.hc-vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--hc-space-8);
}

.hc-vehicle-card {
  background: #ffffff;
  border-radius: var(--hc-radius-xl);
  overflow: hidden;
  border: 1px solid var(--hc-gray-200);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.hc-vehicle-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: transparent;
}

.hc-vehicle-card__image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hc-vehicle-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--hc-gray-100);
}

.hc-vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hc-vehicle-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hc-gray-100);
}

.hc-vehicle-card__placeholder span {
  font-size: 64px;
}

.hc-vehicle-card__badge {
  position: absolute;
  top: var(--hc-space-3);
  left: var(--hc-space-3);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: var(--hc-space-1) var(--hc-space-3);
  border-radius: var(--hc-radius-full);
  font-size: var(--hc-text-xs);
  font-weight: 600;
}

.hc-vehicle-card__price-tag {
  position: absolute;
  bottom: var(--hc-space-3);
  right: var(--hc-space-3);
  background: var(--hc-primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--hc-radius-lg);
  font-family: var(--hc-font-heading);
  font-weight: 700;
  font-size: var(--hc-text-base);
  display: flex;
  align-items: baseline;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hc-vehicle-card__price-tag small {
  font-size: var(--hc-text-xs);
  opacity: 0.8;
  font-weight: 500;
}

.hc-vehicle-card__body {
  padding: var(--hc-space-5) var(--hc-space-6) var(--hc-space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hc-vehicle-card__title {
  font-size: var(--hc-text-lg);
  margin-bottom: var(--hc-space-2);
}

.hc-vehicle-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--hc-transition-fast);
}

.hc-vehicle-card__title a:hover {
  color: var(--hc-primary);
}

.hc-vehicle-card__year {
  font-weight: 400;
  color: var(--hc-gray-400);
  font-size: 0.85em;
}

.hc-vehicle-card__specs {
  display: flex;
  gap: var(--hc-space-4);
  margin: var(--hc-space-3) 0;
  padding: var(--hc-space-3) 0;
  border-top: 1px solid var(--hc-gray-100);
  border-bottom: 1px solid var(--hc-gray-100);
  flex-wrap: wrap;
}

.hc-vehicle-card__spec {
  display: flex;
  align-items: center;
  gap: var(--hc-space-1);
  font-size: var(--hc-text-xs);
  color: var(--hc-gray-500);
}

.hc-vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: var(--hc-space-2);
}

.hc-vehicle-card__price {
  font-family: var(--hc-font-heading);
}

.hc-vehicle-card__price .amount {
  font-size: var(--hc-text-2xl);
  font-weight: 800;
  color: var(--hc-primary);
}

.hc-vehicle-card__price .period {
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-500);
}

/* ============================================
   Country Selector & Phone Prefix
   ============================================ */
/* ── Country Select Trigger ────────────────── */
.hc-country-select {
  position: relative;
  z-index: 1;
}

.hc-country-select:has(.hc-country-select__dropdown.open),
.hc-country-select--open {
  z-index: 200;
}

/* Elevate the ancestor field to escape transform stacking contexts */
.hc-auth__field:has(.hc-country-select__dropdown.open),
.hc-auth__field--elevated {
  z-index: 200 !important;
  position: relative;
}

.hc-country-select__trigger {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3);
  width: 100%;
  padding: 13px 16px;
  background: var(--hc-gray-50);
  border: 1.5px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-xl);
  font-family: var(--hc-font-body);
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-800);
  cursor: pointer;
  transition: all var(--hc-transition-fast);
  text-align: left;
}

.hc-country-select__trigger:hover {
  border-color: var(--hc-gray-300);
  background: #fff;
}

.hc-country-select__trigger[aria-expanded=true] {
  border-color: var(--hc-primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--hc-primary-light);
}

.hc-country-select__flag {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.hc-country-select__name {
  flex: 1;
  font-weight: 500;
}

.hc-country-select__arrow {
  color: var(--hc-gray-400);
  transition: transform var(--hc-transition-fast);
  flex-shrink: 0;
}

.hc-country-select__trigger[aria-expanded=true] .hc-country-select__arrow {
  transform: rotate(180deg);
}

/* ── Dropdown ──────────────────────────────── */
.hc-country-select__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-xl);
  box-shadow: var(--hc-shadow-xl);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  overflow: hidden;
}

.hc-country-select__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  max-height: 320px;
  overflow: visible;
}

.hc-country-select__search-wrap {
  display: flex;
  align-items: center;
  gap: var(--hc-space-2);
  padding: var(--hc-space-3) var(--hc-space-4);
  border-bottom: 1px solid var(--hc-gray-100);
  color: var(--hc-gray-400);
}

.hc-country-select__search {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--hc-font-body);
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-800);
  width: 100%;
}

.hc-country-select__search::placeholder {
  color: var(--hc-gray-400);
}

.hc-country-select__list {
  list-style: none;
  margin: 0;
  padding: var(--hc-space-2);
  max-height: 260px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--hc-gray-300) transparent;
}

.hc-country-select__list::-webkit-scrollbar {
  width: 6px;
}

.hc-country-select__list::-webkit-scrollbar-track {
  background: transparent;
}

.hc-country-select__list::-webkit-scrollbar-thumb {
  background: var(--hc-gray-300);
  border-radius: 3px;
}

.hc-country-select__option {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3);
  padding: var(--hc-space-3) var(--hc-space-3);
  border-radius: var(--hc-radius-lg);
  cursor: pointer;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-700);
  transition: all var(--hc-transition-fast);
  user-select: none;
}

.hc-country-select__option:hover {
  background: var(--hc-primary-light);
  color: var(--hc-primary);
}

.hc-country-select__option--active {
  background: var(--hc-primary-light);
  color: var(--hc-primary);
  font-weight: 600;
}

.hc-country-select__option-flag {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.hc-country-select__option-name {
  flex: 1;
}

.hc-country-select__option-code {
  font-size: var(--hc-text-xs);
  color: var(--hc-gray-400);
  font-weight: 500;
}

.hc-country-select__option--active .hc-country-select__option-code {
  color: var(--hc-primary);
  opacity: 0.7;
}

/* Empty / no match state */
.hc-country-select__empty {
  padding: var(--hc-space-6) var(--hc-space-4);
  text-align: center;
  color: var(--hc-gray-400);
  font-size: var(--hc-text-sm);
}

/* ── Phone Prefix ──────────────────────────── */
.hc-phone-wrap {
  position: relative;
}

.hc-phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--hc-gray-100);
  border: none;
  border-radius: var(--hc-radius-lg);
  padding: 6px 10px;
  cursor: default;
  font-family: var(--hc-font-body);
  font-size: var(--hc-text-sm);
  font-weight: 600;
  color: var(--hc-gray-600);
  transition: all var(--hc-transition-fast);
}

.hc-phone-prefix__flag {
  font-size: 1.15rem;
  line-height: 1;
}

.hc-phone-prefix__code {
  letter-spacing: 0.02em;
}

.hc-auth__input--phone {
  padding-left: 110px !important;
}

/* ── Responsive for country/phone ──────────── */
@media (max-width: 640px) {
  .hc-country-select__dropdown.open {
    max-height: 260px;
  }
  .hc-auth__input--phone {
    padding-left: 100px !important;
  }
  .hc-phone-prefix {
    padding: 5px 8px;
    gap: 4px;
  }
}
/* ============================================
   Header
   ============================================ */
.hc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--hc-gray-200);
  height: var(--hc-header-height);
  display: flex;
  align-items: center;
  transition: all var(--hc-transition-base);
}

.hc-header.scrolled {
  box-shadow: var(--hc-shadow-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
}

/* Transparent header on hero pages */
.hc-header--transparent {
  background: transparent;
  border-bottom-color: transparent;
}

.hc-header--transparent .hc-header__nav a,
.hc-header--transparent .hc-header__logo-text {
  color: rgba(255, 255, 255, 0.85);
}

.hc-header--transparent .hc-header__nav a:hover,
.hc-header--transparent .hc-header__nav a.active {
  color: #fff;
  border-bottom-color: #fff;
}

.hc-header--transparent .hc-header__logo-img {
  filter: brightness(0) invert(1);
}

.hc-header--transparent .hc-hamburger span {
  background: #fff;
}

.hc-header--transparent.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom-color: var(--hc-gray-200);
}

.hc-header--transparent.scrolled .hc-header__nav a {
  color: var(--hc-gray-600);
}

.hc-header--transparent.scrolled .hc-header__nav a:hover,
.hc-header--transparent.scrolled .hc-header__nav a.active {
  color: var(--hc-primary);
  border-bottom-color: var(--hc-primary);
}

.hc-header--transparent.scrolled .hc-header__logo-img {
  filter: none;
}

.hc-header--transparent.scrolled .hc-header__logo-text {
  color: var(--hc-gray-900);
}

.hc-header--transparent.scrolled .hc-hamburger span {
  background: var(--hc-gray-700);
}

.hc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--hc-container-xl);
  margin: 0 auto;
  padding: 0 var(--hc-space-6);
}

.hc-header__logo {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3);
  font-family: var(--hc-font-heading);
  font-weight: 800;
  font-size: var(--hc-text-xl);
  color: var(--hc-gray-900);
}

.hc-header__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.hc-header__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: filter var(--hc-transition-base);
}

.hc-header__logo-text {
  font-family: var(--hc-font-heading);
  font-weight: 800;
  font-size: var(--hc-text-xl);
  color: var(--hc-gray-900);
  transition: color var(--hc-transition-base);
}

.hc-header__nav {
  display: flex;
  align-items: center;
  gap: var(--hc-space-8);
}

.hc-header__nav a {
  color: var(--hc-gray-600);
  font-size: var(--hc-text-sm);
  font-weight: 500;
  padding: var(--hc-space-2) 0;
  border-bottom: 2px solid transparent;
  transition: all var(--hc-transition-fast);
}

.hc-header__nav a:hover,
.hc-header__nav a.active {
  color: var(--hc-primary);
  border-bottom-color: var(--hc-primary);
}

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

.hc-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--hc-space-2);
  cursor: pointer;
  color: var(--hc-gray-700);
}

/* Animated Hamburger */
.hc-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hc-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--hc-gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Ghost Button */
.hc-btn--ghost {
  background: transparent;
  color: var(--hc-gray-600);
  border: none;
}

.hc-btn--ghost:hover {
  color: var(--hc-primary);
  background: var(--hc-primary-light);
}

.hc-header--transparent .hc-btn--ghost {
  color: rgba(255, 255, 255, 0.85);
}

.hc-header--transparent .hc-btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.hc-header--transparent.scrolled .hc-btn--ghost {
  color: var(--hc-gray-600);
}

.hc-header--transparent.scrolled .hc-btn--ghost:hover {
  color: var(--hc-primary);
  background: var(--hc-primary-light);
}

/* ============================
   Account Dropdown (Desktop)
   ============================ */
.hc-account-dd {
  position: relative;
}

.hc-account-dd__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc-account-dd__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hc-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.hc-header--transparent:not(.scrolled) .hc-account-dd__avatar {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hc-account-dd__chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  opacity: 0.5;
}

.hc-account-dd:hover .hc-account-dd__chevron,
.hc-account-dd--open .hc-account-dd__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.hc-account-dd__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--hc-gray-200);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

/* Invisible hover bridge between trigger and menu */
.hc-account-dd__menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.hc-account-dd:hover .hc-account-dd__menu,
.hc-account-dd--open .hc-account-dd__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hc-account-dd__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 8px;
}

.hc-account-dd__header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--hc-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.hc-account-dd__header-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.hc-account-dd__header-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--hc-gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-account-dd__header-email {
  font-size: 12px;
  color: var(--hc-gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-account-dd__divider {
  height: 1px;
  background: var(--hc-gray-200);
  margin: 4px 6px;
}

.hc-account-dd__nav {
  display: flex;
  flex-direction: column;
}

.hc-account-dd__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--hc-gray-700);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.hc-account-dd__item:hover {
  background: var(--hc-gray-100);
  color: var(--hc-gray-900);
}

.hc-account-dd__item svg {
  opacity: 0.55;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}

.hc-account-dd__item:hover svg {
  opacity: 0.85;
}

.hc-account-dd__item--logout {
  color: #ef4444;
}

.hc-account-dd__item--logout:hover {
  background: #fef2f2;
  color: #dc2626;
}

.hc-account-dd__item--logout svg {
  opacity: 0.7;
}

.hc-account-dd__item--logout:hover svg {
  opacity: 1;
}

/* Glow Button */
.hc-btn--glow {
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.hc-btn--glow:hover {
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

/* Glass Button */
.hc-btn--glass {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hc-btn--glass:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* White Button */
.hc-btn--white {
  background: #fff;
  color: var(--hc-primary);
  border: none;
}

.hc-btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--hc-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Mobile Drawer
   ============================================ */
.hc-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s 0.4s;
}

.hc-drawer.open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s;
}

.hc-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hc-drawer.open .hc-drawer__overlay {
  opacity: 1;
}

.hc-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 85vw);
  height: 100%;
  background: #fff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.hc-drawer.open .hc-drawer__panel {
  transform: translateX(0);
}

.hc-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--hc-gray-100);
}

.hc-drawer__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.hc-drawer__brand {
  font-family: var(--hc-font-heading);
  font-weight: 800;
  font-size: var(--hc-text-lg);
  color: var(--hc-gray-900);
}

.hc-drawer__close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--hc-gray-500);
  border-radius: var(--hc-radius-md);
  transition: all var(--hc-transition-fast);
}

.hc-drawer__close:hover {
  color: var(--hc-gray-800);
  background: var(--hc-gray-100);
}

.hc-drawer__nav {
  flex: 1;
  padding: 16px 24px;
}

.hc-drawer__nav ul {
  list-style: none;
}

.hc-drawer__nav li {
  border-bottom: 1px solid var(--hc-gray-100);
}

.hc-drawer__nav a {
  display: block;
  padding: 16px 0;
  font-size: var(--hc-text-lg);
  font-weight: 500;
  color: var(--hc-gray-700);
  transition: color var(--hc-transition-fast);
}

.hc-drawer__nav a:hover {
  color: var(--hc-primary);
}

.hc-drawer__footer {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--hc-gray-100);
}

.hc-drawer__contact {
  text-align: center;
  margin-top: 8px;
}

.hc-drawer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-500);
}

/* ============================================
   Footer — Updated
   ============================================ */
.hc-footer__newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: var(--hc-space-12);
  margin-bottom: var(--hc-space-12);
  border-bottom: 1px solid var(--hc-gray-700);
}

.hc-footer__newsletter-text h3 {
  color: #fff;
  font-size: var(--hc-text-xl);
  margin-bottom: 4px;
}

.hc-footer__newsletter-text p {
  font-size: var(--hc-text-sm);
}

.hc-footer__newsletter-form {
  display: flex;
  gap: 8px;
  min-width: 360px;
}

.hc-footer__newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--hc-gray-600);
  border-radius: var(--hc-radius-lg);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: var(--hc-text-sm);
  font-family: var(--hc-font-body);
  transition: all var(--hc-transition-fast);
}

.hc-footer__newsletter-form input::placeholder {
  color: var(--hc-gray-500);
}

.hc-footer__newsletter-form input:focus {
  outline: none;
  border-color: var(--hc-primary);
  background: rgba(255, 255, 255, 0.12);
}

.hc-footer__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.hc-footer__logo:hover {
  opacity: 1;
}

.hc-footer__brand-name {
  color: #fff;
  font-size: var(--hc-text-xl);
  margin-bottom: var(--hc-space-4);
}

.hc-footer__brand-desc {
  font-size: var(--hc-text-sm);
  line-height: 1.7;
  margin-bottom: 20px;
}

.hc-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.hc-footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-400);
  transition: color var(--hc-transition-fast);
  text-decoration: none;
}

a.hc-footer__contact-item:hover {
  color: #fff;
}

.hc-footer__contact-item svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.hc-footer__social {
  display: flex;
  gap: 10px;
}

.hc-footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--hc-radius-lg);
  background: rgba(255, 255, 255, 0.08);
  color: var(--hc-gray-400);
  transition: all 0.2s ease;
}

.hc-footer__social-link:hover {
  background: var(--hc-primary);
  color: #fff;
  transform: translateY(-2px);
}

.hc-footer__bottom a {
  color: var(--hc-primary-light);
  transition: color var(--hc-transition-fast);
}

.hc-footer__bottom a:hover {
  color: #fff;
}

/* ============================================
   Footer — Reveal on scroll effect
   ============================================ */
.hc-footer {
  background: var(--hc-gray-900);
  color: var(--hc-gray-400);
  padding: var(--hc-space-16) 0 var(--hc-space-8);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

/* Main content sits above the footer */
.hc-main {
  position: relative;
  z-index: 1;
  background: #fff;
}

/* Shadow at bottom edge of content for depth illusion */
.hc-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.08));
  z-index: 2;
  transform: translateY(100%);
}

.hc-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--hc-space-12);
  margin-bottom: var(--hc-space-12);
}

.hc-footer__brand h3 {
  color: #ffffff;
  font-size: var(--hc-text-xl);
  margin-bottom: var(--hc-space-4);
}

.hc-footer__brand p {
  font-size: var(--hc-text-sm);
  line-height: 1.7;
}

.hc-footer__col h4 {
  color: #ffffff;
  font-size: var(--hc-text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--hc-space-4);
}

.hc-footer__col ul {
  list-style: none;
}

.hc-footer__col ul li {
  margin-bottom: var(--hc-space-2);
}

.hc-footer__col ul a {
  color: var(--hc-gray-400);
  font-size: var(--hc-text-sm);
  transition: color var(--hc-transition-fast);
}

.hc-footer__col ul a:hover {
  color: #ffffff;
}

.hc-footer__bottom {
  padding-top: var(--hc-space-8);
  border-top: 1px solid var(--hc-gray-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--hc-text-sm);
}

.hc-footer__powered {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--hc-text-sm);
  transition: color 0.25s ease;
}

.hc-footer__powered:hover {
  color: rgba(255, 255, 255, 0.85);
}

.hc-footer__powered img {
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.25s ease;
}

.hc-footer__powered:hover img {
  opacity: 0.85;
}

.hc-footer__powered-name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}

.hc-footer__powered:hover .hc-footer__powered-name {
  color: #fff;
}

/* ============================================
   Hero Section — Premium Redesign
   ============================================ */
.hc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.has-transparent-header .hc-hero {
  margin-top: calc(-1 * var(--hc-header-height));
  padding-top: var(--hc-header-height);
}

.hc-hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hc-hero__bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
  filter: saturate(0.4) brightness(0.6) contrast(1.1);
}

.hc-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: saturate(0.4) brightness(0.5);
}

.hc-hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 15% 20%, rgba(180, 180, 200, 0.04) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 80% 70%, rgba(100, 110, 130, 0.03) 0%, transparent 50%), linear-gradient(160deg, rgba(18, 20, 24, 0.92) 0%, rgba(22, 25, 30, 0.88) 25%, rgba(26, 29, 35, 0.84) 50%, rgba(30, 33, 40, 0.8) 75%, rgba(24, 27, 32, 0.85) 100%);
  backdrop-filter: blur(2px) saturate(0.8);
  -webkit-backdrop-filter: blur(2px) saturate(0.8);
  z-index: -1;
}

/* Floating decorative glow orbs in hero */
.hc-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 1;
  animation: hcHeroGlow 10s ease-in-out infinite alternate;
}

.hc-hero__glow--1 {
  width: 500px;
  height: 500px;
  background: rgba(140, 150, 170, 0.04);
  top: -10%;
  right: -5%;
}

.hc-hero__glow--2 {
  width: 350px;
  height: 350px;
  background: rgba(120, 130, 150, 0.03);
  bottom: 10%;
  left: 5%;
  animation-delay: -3s;
}

.hc-hero__glow--3 {
  width: 250px;
  height: 250px;
  background: rgba(150, 160, 180, 0.025);
  top: 40%;
  right: 25%;
  animation-delay: -5s;
}

@keyframes hcHeroGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(20px, -15px) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: translate(-10px, 10px) scale(0.95);
    opacity: 0.8;
  }
}
/* ── Estonia Map with Hiiumaa Highlighted – decorative hero illustration ── */
.hc-hero__island {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  max-width: 1400px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: hcIslandReveal 2.8s ease-out 0.5s forwards;
}

.hc-hero__map-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Rest of Estonia – subtle silhouette */
.hc-hero__map-rest {
  opacity: 0.6;
  transition: opacity 0.6s ease;
}

/* Hiiumaa group – scale 1.5× from its visual center */
.hc-hero__hiiumaa-group {
  transform: scale(1.5);
  transform-origin: 128px 234px;
}

/* Hiiumaa outer glow halo – soft ambient light */
.hc-hero__hiiumaa-halo {
  opacity: 0;
  animation: hcHiiumaaHaloIn 2s ease-out 1.8s forwards;
}

/* Hiiumaa filled shape – breathing pulse */
.hc-hero__hiiumaa-fill {
  opacity: 0;
  animation: hcHiiumaaFillIn 1.6s ease-out 1.2s forwards;
}

/* Hiiumaa stroke – draws in along the outline */
.hc-hero__hiiumaa-stroke {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: hcHiiumaaDraw 3s ease-in-out 1s forwards;
}

/* ── Map animations ── */
/* Full map container fade-in + scale */
@keyframes hcIslandReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.94);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
/* Hiiumaa fill fades in and starts breathing */
@keyframes hcHiiumaaFillIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Hiiumaa halo glow appears softly */
@keyframes hcHiiumaaHaloIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Hiiumaa stroke draw-in */
@keyframes hcHiiumaaDraw {
  0% {
    stroke-dashoffset: 800;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* Breathing pulse on Hiiumaa fill (runs after initial reveal) */
.hc-hero__hiiumaa-fill {
  animation: hcHiiumaaFillIn 1.6s ease-out 1.2s forwards, hcHiiumaaBreathe 6s ease-in-out 3s infinite alternate;
}

@keyframes hcHiiumaaBreathe {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}
/* Halo gentle pulse */
.hc-hero__hiiumaa-halo {
  animation: hcHiiumaaHaloIn 2s ease-out 1.8s forwards, hcHaloPulse 5s ease-in-out 4s infinite alternate;
}

@keyframes hcHaloPulse {
  0% {
    opacity: 0.8;
    stroke-width: 6;
  }
  50% {
    opacity: 1;
    stroke-width: 8;
  }
  100% {
    opacity: 0.7;
    stroke-width: 5;
  }
}
.hc-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hc-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--hc-space-16);
  align-items: center;
  padding: var(--hc-space-20) 0;
}

.hc-hero__content {
  max-width: 640px;
}

.hc-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: #ffffff;
  margin-bottom: var(--hc-space-6);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.hc-hero__subtitle {
  font-size: var(--hc-text-xl);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--hc-space-8);
  line-height: 1.6;
  max-width: 520px;
}

/* Vehicle Type Chips */
.hc-hero__types {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--hc-space-10);
  align-self: flex-start;
}

.hc-hero__type-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--hc-radius-lg);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hc-hero__type-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--chip-color, rgba(255, 255, 255, 0.3));
  color: #fff;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 1px var(--chip-color, rgba(255, 255, 255, 0.12));
}

.hc-hero__type-chip:hover .hc-hero__type-icon {
  filter: brightness(1.2) drop-shadow(0 0 6px var(--chip-color, rgba(255, 255, 255, 0.4)));
}

img.hc-hero__type-icon {
  display: block;
  width: auto;
  height: 22px;
  object-fit: contain;
  filter: brightness(0.95);
  transition: filter 0.3s ease;
}

span.hc-hero__type-icon {
  font-size: 1rem;
}

.hc-hero__type-label {
  white-space: nowrap;
  flex: 1;
}

.hc-hero__type-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 1px 7px;
  border-radius: var(--hc-radius-full);
  font-size: 11px;
  font-weight: 700;
  margin-left: auto;
}

/* Hero Actions */
.hc-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.hc-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hc-hero__scroll-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

.hc-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.hc-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7));
  animation: hcScrollLine 2.2s ease-in-out infinite;
}

@keyframes hcScrollLine {
  0% {
    top: -40%;
  }
  100% {
    top: 110%;
  }
}
/* ============================================
   Search Card (Hero) — Glassmorphism Dark
   ============================================ */
.hc-search-card {
  position: relative;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: 20px;
  padding: 32px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  overflow: hidden;
}

/* Animated gradient border ring */
.hc-search-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1px;
  background: conic-gradient(from var(--hc-card-angle, 0deg), transparent 0%, rgba(59, 130, 246, 0.5) 10%, rgba(139, 92, 246, 0.4) 25%, transparent 40%, transparent 60%, rgba(6, 182, 212, 0.4) 75%, rgba(59, 130, 246, 0.5) 90%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: hcCardBorderSpin 6s linear infinite;
  z-index: 1;
}

@property --hc-card-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes hcCardBorderSpin {
  to {
    --hc-card-angle: 360deg;
  }
}
/* Internal top-light shimmer */
.hc-search-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  z-index: 2;
}

/* Corner accent glow */
.hc-search-card__glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hc-search-card__glow--1 {
  background: rgba(59, 130, 246, 0.15);
  top: -60px;
  right: -40px;
}

.hc-search-card__glow--2 {
  background: rgba(139, 92, 246, 0.1);
  bottom: -50px;
  left: -30px;
}

.hc-search-card__header {
  position: relative;
  z-index: 3;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hc-search-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
}

.hc-search-card__header-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.hc-search-card__header-text p {
  font-size: var(--hc-text-xs);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.hc-search-card__form {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hc-search-card__form .hc-form-group {
  gap: 6px;
}

.hc-search-card__form label,
.hc-search-card .hc-form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.hc-search-card__form label svg,
.hc-search-card .hc-form-group label svg {
  color: rgba(255, 255, 255, 0.7);
}

.hc-search-card__form input,
.hc-search-card__form select,
.hc-search-card .hc-form-group input,
.hc-search-card .hc-form-group select {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  font-size: var(--hc-text-sm);
  font-family: var(--hc-font-body);
  transition: all 0.25s ease;
  outline: none;
}

.hc-search-card__form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.hc-search-card__form input:focus,
.hc-search-card__form select:focus,
.hc-search-card .hc-form-group input:focus,
.hc-search-card .hc-form-group select:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12), 0 0 20px rgba(59, 130, 246, 0.08);
}

/* Date input icons — override dark text on webkit */
.hc-search-card__form input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.5);
  cursor: pointer;
}

.hc-search-card__form select option {
  background: #1e293b;
  color: #fff;
}

.hc-search-card__submit {
  margin-top: 4px;
  width: 100%;
  padding: 14px 24px;
  font-size: var(--hc-text-sm);
  font-weight: 600;
  color: #fff;
  background: var(--hc-primary);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
}

.hc-search-card__submit:hover {
  opacity: 0.85;
}

.hc-search-card__submit:active {
  opacity: 0.7;
}

/* Divider line between form fields and button */
.hc-search-card__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin: 4px 0;
}

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

.hc-form-group label {
  font-size: var(--hc-text-sm);
  font-weight: 600;
  color: var(--hc-gray-700);
}

.hc-form-group input,
.hc-form-group select {
  padding: var(--hc-space-3) var(--hc-space-4);
  border: 1px solid var(--hc-gray-300);
  border-radius: var(--hc-radius-lg);
  font-size: var(--hc-text-sm);
  font-family: var(--hc-font-body);
  color: var(--hc-gray-800);
  transition: border-color var(--hc-transition-fast);
  background: #ffffff;
}

.hc-form-group input:focus,
.hc-form-group select:focus {
  outline: none;
  border-color: var(--hc-primary);
  box-shadow: 0 0 0 3px var(--hc-primary-light);
}

/* ============================================
   Scroll Reveal Animations — Enhanced
   ============================================ */
.hc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.hc-reveal.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(0deg);
}

/* Direction variants */
.hc-reveal--left {
  transform: translateX(-50px) translateY(0);
}

.hc-reveal--right {
  transform: translateX(50px) translateY(0);
}

.hc-reveal--scale {
  transform: scale(0.88);
}

.hc-reveal--scale-up {
  transform: scale(0.92) translateY(20px);
}

.hc-reveal--rotate-left {
  transform: translateY(30px) rotate(-3deg);
}

.hc-reveal--rotate-right {
  transform: translateY(30px) rotate(3deg);
}

.hc-reveal--blur {
  filter: blur(8px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hc-reveal--blur.revealed {
  filter: blur(0);
}

/* Children */
.hc-reveal-child {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hc-reveal-child.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger-wave: each child lands with a bounce */
.hc-stagger-wave > * {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hc-stagger-wave.revealed > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays applied by JS or nth-child */
.hc-stagger-wave.revealed > *:nth-child(1) {
  transition-delay: 0ms;
}

.hc-stagger-wave.revealed > *:nth-child(2) {
  transition-delay: 100ms;
}

.hc-stagger-wave.revealed > *:nth-child(3) {
  transition-delay: 200ms;
}

.hc-stagger-wave.revealed > *:nth-child(4) {
  transition-delay: 300ms;
}

.hc-stagger-wave.revealed > *:nth-child(5) {
  transition-delay: 400ms;
}

.hc-stagger-wave.revealed > *:nth-child(6) {
  transition-delay: 500ms;
}

/* ============================================
   Section Headings
   ============================================ */
.hc-section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.hc-section-heading__tag {
  display: inline-block;
  padding: 4px 16px;
  background: var(--hc-primary-light);
  color: var(--hc-primary);
  font-size: var(--hc-text-sm);
  font-weight: 600;
  border-radius: var(--hc-radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hc-section-heading__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hc-section-heading__desc {
  font-size: var(--hc-text-lg);
  color: var(--hc-gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   Trust Bar (Stats)
   ============================================ */
.hc-trust {
  position: relative;
  z-index: 5;
  margin-top: -48px;
  padding: 0 var(--hc-space-6);
}

.hc-trust__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #fff;
  border-radius: var(--hc-radius-2xl);
  padding: 40px 56px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.hc-trust__item {
  text-align: center;
  flex: 1;
}

.hc-trust__number {
  font-family: var(--hc-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--hc-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.hc-trust__label {
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-500);
  font-weight: 500;
}

.hc-trust__divider {
  width: 1px;
  height: 48px;
  background: var(--hc-gray-200);
  flex-shrink: 0;
}

/* ============================================
   How It Works
   ============================================ */
.hc-how__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.hc-how__step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.hc-how__icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--hc-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-primary);
  transition: all 0.3s ease;
}

.hc-how__step:hover .hc-how__icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.hc-how__step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  background: var(--hc-primary);
  color: #fff;
  font-size: var(--hc-text-xs);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: var(--hc-shadow-md);
}

.hc-how__title {
  font-size: var(--hc-text-lg);
  margin-bottom: 8px;
}

.hc-how__desc {
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-500);
  line-height: 1.6;
}

.hc-how__connector {
  width: 80px;
  flex-shrink: 0;
  padding-top: 40px;
}

/* ============================================
   Featured Carousel
   ============================================ */
.hc-featured__carousel-wrap {
  position: relative;
}

.hc-featured__carousel {
  display: flex;
  gap: var(--hc-space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
}

.hc-featured__carousel::-webkit-scrollbar {
  display: none;
}

.hc-featured__slide {
  flex: 0 0 340px;
  scroll-snap-align: start;
}

.hc-featured__slide .hc-vehicle-card {
  height: 100%;
}

.hc-featured__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--hc-gray-200);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--hc-shadow-lg);
  transition: all 0.2s ease;
  z-index: 5;
  color: var(--hc-gray-700);
}

.hc-featured__arrow:hover {
  background: var(--hc-primary);
  color: #fff;
  border-color: var(--hc-primary);
  transform: translateY(-50%) scale(1.05);
}

.hc-featured__arrow--prev {
  left: 16px;
}

.hc-featured__arrow--next {
  right: 16px;
}

/* ============================================
   Why Choose Us
   ============================================ */
.hc-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hc-space-8);
}

.hc-why__card {
  background: #fff;
  border-radius: var(--hc-radius-xl);
  padding: 36px 28px;
  border: 1px solid var(--hc-gray-200);
  transition: all 0.3s ease;
  text-align: center;
}

.hc-why__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hc-shadow-xl);
  border-color: transparent;
}

.hc-why__icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--hc-radius-xl);
  background: color-mix(in srgb, var(--icon-color) 10%, transparent);
  color: var(--icon-color);
  transition: all 0.3s ease;
}

.hc-why__card:hover .hc-why__icon-wrap {
  transform: scale(1.1) rotate(5deg);
  background: color-mix(in srgb, var(--icon-color) 15%, transparent);
}

.hc-why__card h3 {
  font-size: var(--hc-text-lg);
  margin-bottom: 8px;
}

.hc-why__card p {
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-500);
  line-height: 1.6;
}

/* ============================================
   Testimonials
   ============================================ */
.hc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hc-space-8);
}

.hc-testimonial {
  background: #fff;
  border: 1px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-xl);
  padding: 32px;
  transition: all 0.3s ease;
}

.hc-testimonial:hover {
  box-shadow: var(--hc-shadow-lg);
  transform: translateY(-2px);
}

.hc-testimonial__stars {
  color: #F59E0B;
  font-size: var(--hc-text-lg);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.hc-testimonial__text {
  font-size: var(--hc-text-base);
  color: var(--hc-gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.hc-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hc-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hc-primary-light);
  color: var(--hc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--hc-text-sm);
  flex-shrink: 0;
}

.hc-testimonial__name {
  font-weight: 600;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-800);
}

.hc-testimonial__meta {
  font-size: var(--hc-text-xs);
  color: var(--hc-gray-400);
}

/* ============================================
   CTA Banner
   ============================================ */
.hc-cta {
  position: relative;
  padding: var(--hc-space-24) 0;
  overflow: hidden;
}

.hc-cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--hc-primary) 0%, var(--hc-primary-dark) 50%, #1e3a5f 100%);
  z-index: 0;
}

.hc-cta__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.hc-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hc-cta__title {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hc-cta__desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--hc-text-lg);
  max-width: 550px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hc-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   Vehicle Detail Page — Redesigned
   ============================================ */
/* Breadcrumb */
.hc-section--breadcrumb {
  padding: 16px 0 0;
}

.hc-section--detail {
  padding-top: 0;
  padding-bottom: var(--hc-space-12);
}

.hc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-500);
  margin-bottom: 20px;
}

.hc-breadcrumb a {
  color: var(--hc-gray-500);
  transition: color var(--hc-transition-fast);
}

.hc-breadcrumb a:hover {
  color: var(--hc-primary);
}

.hc-breadcrumb svg {
  color: var(--hc-gray-300);
  flex-shrink: 0;
}

.hc-breadcrumb span:last-child {
  color: var(--hc-gray-800);
  font-weight: 500;
}

/* Section header with link */
.hc-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.hc-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--hc-text-sm);
  font-weight: 600;
  color: var(--hc-primary);
  transition: gap var(--hc-transition-fast);
}

.hc-link-arrow:hover {
  gap: 8px;
}

/* ─── Main Layout ─────────────────────────────────────────── */
.hc-vd {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--hc-space-10);
  align-items: start;
}

/* ─── Gallery ─────────────────────────────────────────────── */
.hc-vd-gallery {
  position: sticky;
  top: calc(var(--hc-header-height) + 16px);
  z-index: 1;
}

.hc-vd-gallery__stage {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--hc-radius-xl);
  overflow: hidden;
  background: var(--hc-gray-100);
  cursor: zoom-in;
}

.hc-vd-gallery__stage--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.hc-vd-gallery__placeholder {
  font-size: 100px;
  line-height: 1;
}

.hc-vd-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--hc-gray-50);
  transition: opacity 0.15s ease;
}

/* Gallery counter */
.hc-vd-gallery__counter {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: var(--hc-radius-full);
  font-size: var(--hc-text-xs);
  font-weight: 600;
  pointer-events: none;
}

.hc-vd-gallery__counter svg {
  stroke: #fff;
}

/* Gallery arrows */
.hc-vd-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: all var(--hc-transition-fast);
  box-shadow: var(--hc-shadow-md);
  z-index: 2;
}

.hc-vd-gallery__stage:hover .hc-vd-gallery__arrow {
  opacity: 1;
}

.hc-vd-gallery__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.hc-vd-gallery__arrow--prev {
  left: 12px;
}

.hc-vd-gallery__arrow--next {
  right: 12px;
}

/* Zoom button */
.hc-vd-gallery__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: var(--hc-radius-md);
  cursor: pointer;
  opacity: 0;
  transition: all var(--hc-transition-fast);
  color: #fff;
  z-index: 2;
}

.hc-vd-gallery__stage:hover .hc-vd-gallery__zoom {
  opacity: 1;
}

.hc-vd-gallery__zoom:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* Gallery thumbnails */
.hc-vd-gallery__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0 4px;
  scrollbar-width: thin;
}

.hc-vd-gallery__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 52px;
  border-radius: var(--hc-radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--hc-gray-100);
  padding: 0;
  transition: all var(--hc-transition-fast);
  opacity: 0.6;
}

.hc-vd-gallery__thumb:hover {
  opacity: 1;
  border-color: var(--hc-gray-300);
}

.hc-vd-gallery__thumb.active {
  opacity: 1;
  border-color: var(--hc-primary);
  box-shadow: 0 0 0 2px var(--hc-primary-light);
}

.hc-vd-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Mobile Header (hidden on desktop) ──────────────────── */
.hc-vd__mobile-header {
  display: none;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: var(--hc-radius-xl);
  border: 1px solid rgba(226, 232, 240, 0.5);
  margin-top: 16px;
}

.hc-vd__title {
  font-size: var(--hc-text-2xl);
  margin: 6px 0 2px;
}

.hc-vd__subtitle {
  color: var(--hc-gray-500);
  font-size: var(--hc-text-base);
  margin-bottom: 12px;
}

.hc-vd__mobile-price {
  margin-bottom: 16px;
}

.hc-vd__price-value {
  font-family: var(--hc-font-heading);
  font-size: var(--hc-text-2xl);
  font-weight: 800;
  color: var(--hc-primary);
}

.hc-vd__price-period {
  color: var(--hc-gray-500);
  font-size: var(--hc-text-sm);
}

/* ─── Badges ─────────────────────────────────────────────── */
.hc-vd-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: var(--hc-text-xs);
  font-weight: 600;
  white-space: nowrap;
}

.hc-badge--primary {
  background: var(--hc-primary-light);
  color: var(--hc-primary);
}

.hc-badge--type {
  background: color-mix(in srgb, var(--badge-color) 12%, transparent);
  color: var(--badge-color);
  border: 1px solid color-mix(in srgb, var(--badge-color) 25%, transparent);
}

/* ─── Content Tabs ────────────────────────────────────────── */
.hc-vd-tabs {
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.hc-vd-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: var(--hc-header-height);
  z-index: 3;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 0 4px;
}

.hc-vd-tabs__nav::-webkit-scrollbar {
  display: none;
}

.hc-vd-tabs__btn {
  padding: 12px 20px;
  font-size: var(--hc-text-sm);
  font-weight: 600;
  color: var(--hc-gray-500);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--hc-transition-fast);
  font-family: var(--hc-font-body);
}

.hc-vd-tabs__btn:hover {
  color: var(--hc-gray-800);
}

.hc-vd-tabs__btn.active {
  color: var(--hc-primary);
  border-bottom-color: var(--hc-primary);
}

.hc-vd-tabs__panel {
  display: none;
  animation: hcFadeIn 0.3s ease;
}

.hc-vd-tabs__panel.active {
  display: block;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 0 0 var(--hc-radius-xl) var(--hc-radius-xl);
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-top: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

@keyframes hcFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ─── Quick Specs ─────────────────────────────────────────── */
.hc-vd-quickspecs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.hc-vd-quickspec {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--hc-gray-50);
  border: 1px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hc-vd-quickspec:hover {
  transform: translateY(-1px);
  box-shadow: var(--hc-shadow-sm);
}

.hc-vd-quickspec__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hc-vd-quickspec__label {
  display: block;
  font-size: var(--hc-text-xs);
  color: var(--hc-gray-500);
  margin-bottom: 1px;
}

.hc-vd-quickspec__value {
  display: block;
  font-weight: 600;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-800);
}

/* ─── Description ─────────────────────────────────────────── */
.hc-vd-description {
  margin-bottom: 28px;
}

.hc-vd-description h3 {
  font-size: var(--hc-text-lg);
  margin-bottom: 12px;
}

.hc-vd-description__text {
  color: var(--hc-gray-600);
  line-height: 1.8;
  font-size: var(--hc-text-base);
}

/* ─── Features ────────────────────────────────────────────── */
.hc-vd-features h3 {
  font-size: var(--hc-text-lg);
  margin-bottom: 16px;
}

.hc-vd-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.hc-vd-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--hc-gray-50);
  border-radius: var(--hc-radius-md);
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-700);
  transition: background 0.15s ease, transform 0.15s ease;
}

.hc-vd-feature:hover {
  background: var(--hc-success-light);
}

.hc-vd-feature svg {
  flex-shrink: 0;
}

/* ─── Full Specs Grid ──────────────────────────────────────── */
.hc-vd-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hc-gray-200);
  border: 1px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
}

.hc-vd-spec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
}

.hc-vd-spec-row__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.hc-vd-spec-row__label {
  flex: 1;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-500);
}

.hc-vd-spec-row__value {
  font-weight: 600;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-800);
}

/* ─── Pricing Cards ───────────────────────────────────────── */
.hc-vd-pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.hc-vd-pricing-card {
  position: relative;
  padding: 28px 20px;
  background: #fff;
  border: 2px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-xl);
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hc-vd-pricing-card:hover {
  transform: translateY(-2px);
}

.hc-vd-pricing-card--popular {
  border-color: var(--hc-primary);
  background: linear-gradient(to bottom, var(--hc-primary-light), #fff);
}

.hc-vd-pricing-card__label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hc-secondary);
  color: #fff;
  padding: 3px 16px;
  border-radius: var(--hc-radius-full);
  font-size: var(--hc-text-xs);
  font-weight: 700;
  white-space: nowrap;
}

.hc-vd-pricing-card__duration {
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-500);
  font-weight: 600;
  margin-bottom: 8px;
}

.hc-vd-pricing-card__price {
  font-family: var(--hc-font-heading);
  font-size: var(--hc-text-3xl);
  font-weight: 800;
  color: var(--hc-primary);
  line-height: 1;
}

.hc-vd-pricing-card__unit {
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-500);
  margin-top: 4px;
}

.hc-vd-pricing-card__savings {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: var(--hc-text-xs);
  font-weight: 700;
  color: var(--hc-success);
  background: var(--hc-success-light);
  padding: 4px 10px;
  border-radius: var(--hc-radius-full);
}

.hc-vd-pricing__deposit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--hc-info-light);
  border-radius: var(--hc-radius-lg);
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-700);
}

/* ─── Sidebar Booking Widget ─────────────────────────────── */
.hc-vd__sidebar {
  position: sticky;
  top: calc(var(--hc-header-height) + 16px);
}

.hc-vd-booking {
  background: #fff;
  border: 1px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-xl);
  box-shadow: var(--hc-shadow-lg);
  overflow: hidden;
}

.hc-vd-booking__header {
  padding: 24px 24px 0;
}

.hc-vd-booking__title {
  font-size: var(--hc-text-xl) !important;
  margin: 8px 0 0;
}

.hc-vd-booking__subtitle {
  color: var(--hc-gray-500);
  font-size: var(--hc-text-sm);
  margin: 2px 0 0;
}

/* Price section */
.hc-vd-booking__price {
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--hc-primary), var(--hc-primary-dark));
  color: #fff;
  margin: 16px 0 0;
}

.hc-vd-booking__price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.hc-vd-booking__price-value {
  font-family: var(--hc-font-heading);
  font-size: var(--hc-text-3xl);
  font-weight: 800;
}

.hc-vd-booking__price-unit {
  font-size: var(--hc-text-base);
  opacity: 0.8;
}

.hc-vd-booking__deposit {
  display: block;
  margin-top: 4px;
  font-size: var(--hc-text-xs);
  opacity: 0.7;
}

/* Availability Checker */
.hc-vd-checker {
  padding: 20px 24px;
}

.hc-vd-checker__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--hc-text-sm) !important;
  font-weight: 600;
  color: var(--hc-gray-700);
  margin-bottom: 14px;
}

.hc-vd-checker__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hc-vd-checker__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hc-vd-checker__field label {
  font-size: var(--hc-text-xs);
  font-weight: 600;
  color: var(--hc-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hc-vd-checker__field input {
  padding: 10px 12px;
  border: 1.5px solid var(--hc-gray-300);
  border-radius: var(--hc-radius-md);
  font-size: var(--hc-text-sm);
  font-family: var(--hc-font-body);
  color: var(--hc-gray-800);
  transition: all var(--hc-transition-fast);
  width: 100%;
  background: #fff;
}

.hc-vd-checker__field input:focus {
  outline: none;
  border-color: var(--hc-primary);
  box-shadow: 0 0 0 3px var(--hc-primary-light);
}

/* Checker result */
.hc-vd-checker__result {
  margin-top: 14px;
}

.hc-vd-checker__loading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-500);
  padding: 8px 0;
}

.hc-vd-price-result {
  background: var(--hc-gray-50);
  border: 1px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-lg);
  padding: 16px;
  animation: hcSlideDown 0.25s ease;
}

@keyframes hcSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hc-vd-price-result__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--hc-text-sm);
  font-weight: 700;
  color: var(--hc-success);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hc-gray-200);
}

.hc-vd-price-result__header--info {
  color: var(--hc-info);
}

.hc-vd-price-result__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hc-vd-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-600);
}

.hc-vd-price-row--discount {
  color: var(--hc-success);
}

.hc-vd-price-row--total {
  border-top: 2px solid var(--hc-gray-300);
  margin-top: 6px;
  padding-top: 8px;
  font-weight: 700;
  font-size: var(--hc-text-base);
  color: var(--hc-primary);
}

.hc-vd-price-result__deposit {
  margin-top: 8px;
  font-size: var(--hc-text-xs);
  color: var(--hc-gray-500);
  padding-top: 8px;
  border-top: 1px dashed var(--hc-gray-300);
}

/* CTA Buttons */
.hc-vd-booking__actions {
  padding: 0 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc-vd-booking__book-btn {
  width: 100%;
  justify-content: center;
}

.hc-vd-booking__phone-btn {
  width: 100%;
  justify-content: center;
}

/* Sidebar specs */
.hc-vd-booking__specs {
  padding: 0 24px 20px;
  border-top: 1px solid var(--hc-gray-100);
  padding-top: 16px;
}

.hc-vd-booking-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.hc-vd-booking-spec__icon {
  font-size: 1rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.hc-vd-booking-spec__label {
  flex: 1;
  font-size: var(--hc-text-xs);
  color: var(--hc-gray-500);
}

.hc-vd-booking-spec__value {
  font-size: var(--hc-text-xs);
  font-weight: 600;
  color: var(--hc-gray-800);
}

/* ─── Availability Calendar (Tab) ─────────────────────────── */
.hc-vd-availability__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 0;
  color: var(--hc-gray-500);
}

.hc-vd-availability__error {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: var(--hc-error-light);
  color: #991B1B;
  border-radius: var(--hc-radius-lg);
  font-size: var(--hc-text-sm);
}

.hc-vd-availability__legend {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hc-vd-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--hc-text-xs);
  color: var(--hc-gray-600);
}

.hc-vd-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}

.hc-vd-legend-dot--available {
  background: var(--hc-success-light);
  border: 1px solid var(--hc-success);
}

.hc-vd-legend-dot--booked {
  background: var(--hc-error-light);
  border: 1px solid var(--hc-error);
}

.hc-vd-legend-dot--blocked {
  background: var(--hc-gray-200);
  border: 1px solid var(--hc-gray-400);
}

.hc-vd-legend-dot--selected {
  background: var(--hc-primary-light);
  border: 1px solid var(--hc-primary);
}

/* Calendar grid */
.hc-cal-months {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--hc-space-6);
}

.hc-cal-month__title {
  font-size: var(--hc-text-base) !important;
  text-align: center;
  margin-bottom: var(--hc-space-3);
}

.hc-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.hc-cal-header {
  text-align: center;
  font-size: var(--hc-text-xs);
  font-weight: 600;
  color: var(--hc-gray-500);
  padding: var(--hc-space-1);
}

.hc-cal-day {
  text-align: center;
  padding: var(--hc-space-2);
  font-size: var(--hc-text-sm);
  border-radius: var(--hc-radius-sm);
  cursor: default;
  transition: all 0.15s ease;
}

.hc-cal-day--empty {
  background: transparent;
}

.hc-cal-day--available {
  background: var(--hc-success-light);
  color: #166534;
  cursor: pointer;
}

.hc-cal-day--available:hover {
  background: var(--hc-success);
  color: #fff;
  transform: scale(1.1);
}

.hc-cal-day--booked {
  background: var(--hc-error-light);
  color: #991B1B;
}

.hc-cal-day--blocked {
  background: var(--hc-gray-200);
  color: var(--hc-gray-500);
}

.hc-cal-day--past {
  color: var(--hc-gray-300);
}

/* Calendar selection */
.hc-cal-day--sel-start,
.hc-cal-day--sel-end {
  background: var(--hc-primary) !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: var(--hc-radius-md);
}

.hc-cal-day--sel-range {
  background: var(--hc-primary-light) !important;
  color: var(--hc-primary) !important;
}

.hc-cal-selection {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--hc-primary-light);
  border: 1px solid var(--hc-primary);
  border-radius: var(--hc-radius-lg);
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-700);
}

.hc-cal-selection__days {
  color: var(--hc-gray-500);
}

.hc-cal-selection__book {
  margin-left: auto;
}

.hc-cal-selection__clear {
  background: transparent;
  color: var(--hc-gray-500);
  border: 1px solid var(--hc-gray-300);
}

/* ─── Spinner ─────────────────────────────────────────────── */
.hc-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--hc-gray-200);
  border-top-color: var(--hc-primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.hc-spinner--sm {
  width: 16px;
  height: 16px;
  border-width: 2px;
}

/* ─── Lightbox ────────────────────────────────────────────── */
.hc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hc-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.hc-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.hc-lightbox__content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--hc-radius-lg);
  transition: opacity 0.12s ease;
}

.hc-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  transition: background var(--hc-transition-fast);
}

.hc-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hc-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  transition: all var(--hc-transition-fast);
}

.hc-lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.hc-lightbox__arrow--prev {
  left: 20px;
}

.hc-lightbox__arrow--next {
  right: 20px;
}

.hc-lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--hc-text-sm);
  font-weight: 600;
}

/* ─── Animate In ──────────────────────────────────────────── */
.hc-vd-pricing-card,
.hc-vd-quickspec,
.hc-vd-feature {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hc-vd-pricing-card.hc-animate-in,
.hc-vd-quickspec.hc-animate-in,
.hc-vd-feature.hc-animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delay */
.hc-vd-quickspec:nth-child(1) {
  transition-delay: 0s;
}

.hc-vd-quickspec:nth-child(2) {
  transition-delay: 0.05s;
}

.hc-vd-quickspec:nth-child(3) {
  transition-delay: 0.1s;
}

.hc-vd-quickspec:nth-child(4) {
  transition-delay: 0.15s;
}

.hc-vd-pricing-card:nth-child(1) {
  transition-delay: 0s;
}

.hc-vd-pricing-card:nth-child(2) {
  transition-delay: 0.1s;
}

.hc-vd-pricing-card:nth-child(3) {
  transition-delay: 0.2s;
}

/* ============================================
   Booking Form
   ============================================ */
.hc-booking-form {
  max-width: 100%;
}

.hc-step__title {
  font-size: var(--hc-text-xl);
  margin-bottom: var(--hc-space-6);
  padding-bottom: var(--hc-space-3);
  border-bottom: 2px solid var(--hc-gray-200);
}

.hc-booking-vehicle-card {
  display: flex;
  align-items: center;
  gap: var(--hc-space-4);
  padding: var(--hc-space-4);
  background: var(--hc-gray-50);
  border-radius: var(--hc-radius-lg);
  border: 1px solid var(--hc-gray-200);
  margin-bottom: var(--hc-space-4);
}

.hc-booking-vehicle-card img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--hc-radius-md);
}

.hc-booking-vehicle-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hc-booking-dates,
.hc-booking-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--hc-space-4);
  margin-bottom: var(--hc-space-4);
}

.hc-form-group textarea {
  padding: var(--hc-space-3) var(--hc-space-4);
  border: 1px solid var(--hc-gray-300);
  border-radius: var(--hc-radius-lg);
  font-size: var(--hc-text-sm);
  font-family: var(--hc-font-body);
  color: var(--hc-gray-800);
  resize: vertical;
  transition: border-color var(--hc-transition-fast);
  width: 100%;
}

.hc-form-group textarea:focus {
  outline: none;
  border-color: var(--hc-primary);
  box-shadow: 0 0 0 3px var(--hc-primary-light);
}

/* Price preview */
.hc-price-preview {
  background: var(--hc-gray-50);
  border: 1px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-lg);
  padding: var(--hc-space-5) var(--hc-space-6);
  margin-top: var(--hc-space-4);
}

.hc-price-preview h4 {
  font-size: var(--hc-text-base);
  margin-bottom: var(--hc-space-4);
}

.hc-price-preview__rows {
  display: flex;
  flex-direction: column;
  gap: var(--hc-space-2);
}

.hc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--hc-space-2) 0;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-700);
}

.hc-price-row--total {
  border-top: 2px solid var(--hc-gray-300);
  margin-top: var(--hc-space-2);
  padding-top: var(--hc-space-3);
  font-size: var(--hc-text-lg);
  font-weight: 700;
  color: var(--hc-primary);
}

.hc-price-preview--final {
  background: var(--hc-primary-light);
  border-color: var(--hc-primary);
}

/* Customer form */
.hc-booking-customer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hc-space-4);
}

/* Extras grid */
.hc-extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--hc-space-3);
}

.hc-extra-card {
  display: block;
  cursor: pointer;
}

.hc-extra-card input[type=checkbox] {
  display: none;
}

.hc-extra-card__content {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3);
  padding: var(--hc-space-4);
  border: 2px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-lg);
  transition: all var(--hc-transition-fast);
}

.hc-extra-card:hover .hc-extra-card__content {
  border-color: var(--hc-primary-light);
}

.hc-extra-card input:checked + .hc-extra-card__content {
  border-color: var(--hc-primary);
  background: var(--hc-primary-light);
}

.hc-extra-card__price {
  margin-left: auto;
  font-weight: 700;
  color: var(--hc-primary);
  font-size: var(--hc-text-sm);
  white-space: nowrap;
}

/* Payment methods */
.hc-payment-options {
  display: flex;
  flex-direction: column;
  gap: var(--hc-space-3);
}

.hc-payment-option {
  display: block;
  cursor: pointer;
}

.hc-payment-option input[type=radio] {
  display: none;
}

.hc-payment-option__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--hc-space-4) var(--hc-space-5);
  border: 2px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-lg);
  transition: all var(--hc-transition-fast);
}

.hc-payment-option__content span {
  font-size: var(--hc-text-xs);
  color: var(--hc-gray-500);
}

.hc-payment-option.active .hc-payment-option__content {
  border-color: var(--hc-primary);
  background: var(--hc-primary-light);
}

.hc-payment-option__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hc-payment-option__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--hc-gray-100);
  border-radius: var(--hc-radius);
  color: var(--hc-gray-600);
  flex-shrink: 0;
}

.hc-payment-option.active .hc-payment-option__icon {
  background: var(--hc-primary);
  color: #fff;
}

.hc-payment-option__content {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3);
  padding: var(--hc-space-4) var(--hc-space-5);
  border: 2px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-lg);
  transition: all var(--hc-transition-fast);
}

.hc-payment-option__content > div:last-child {
  flex: 1;
}

.hc-payment-option__content strong {
  display: block;
  font-size: var(--hc-text-base);
  color: var(--hc-gray-900);
}

.hc-payment-option__content span {
  font-size: var(--hc-text-xs);
  color: var(--hc-gray-500);
}

/* Payment instructions */
.hc-payment-instructions {
  margin-top: var(--hc-space-4);
  padding: var(--hc-space-4);
  background: var(--hc-gray-50);
  border-radius: var(--hc-radius-lg);
  border-left: 4px solid var(--hc-primary);
}

.hc-payment-instructions p {
  margin: 0 0 var(--hc-space-3) 0;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-700);
}

.hc-payment-instructions p:last-child {
  margin-bottom: 0;
}

/* Bank details box */
.hc-bank-details {
  margin-top: var(--hc-space-3);
  padding: var(--hc-space-4);
  background: #fff;
  border: 1px solid var(--hc-gray-200);
  border-radius: var(--hc-radius);
}

.hc-bank-details h4 {
  margin: 0 0 var(--hc-space-2) 0;
  font-size: var(--hc-text-sm);
  font-weight: 600;
  color: var(--hc-gray-900);
}

.hc-bank-details p {
  margin: 0 0 var(--hc-space-1) 0;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-700);
}

.hc-bank-details p:last-child {
  margin-bottom: 0;
}

/* Payment loading */
.hc-payment-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--hc-space-3);
  padding: var(--hc-space-6);
  color: var(--hc-gray-500);
  font-size: var(--hc-text-sm);
}

/* Payment notice */
.hc-payment-notice {
  padding: var(--hc-space-4);
  text-align: center;
  color: var(--hc-gray-500);
  font-size: var(--hc-text-sm);
}

.hc-stripe-element {
  padding: var(--hc-space-4);
  border: 1px solid var(--hc-gray-300);
  border-radius: var(--hc-radius-lg);
  background: #fff;
}

/* Booking summary */
.hc-booking-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hc-space-4);
  margin-bottom: var(--hc-space-4);
}

.hc-booking-summary__section {
  padding: var(--hc-space-4);
  background: var(--hc-gray-50);
  border-radius: var(--hc-radius-lg);
}

.hc-booking-summary__section h4 {
  font-size: var(--hc-text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hc-gray-500);
  margin-bottom: var(--hc-space-2);
}

.hc-booking-summary__section p {
  font-size: var(--hc-text-sm);
  white-space: pre-line;
  color: var(--hc-gray-800);
  margin: 0;
}

/* Alert */
.hc-alert {
  padding: var(--hc-space-4);
  border-radius: var(--hc-radius-lg);
  font-size: var(--hc-text-sm);
  margin-top: var(--hc-space-4);
}

.hc-alert--error {
  background: var(--hc-error-light);
  color: #991B1B;
  border: 1px solid #FECACA;
}

.hc-alert--success {
  background: var(--hc-success-light);
  color: #166534;
  border: 1px solid #BBF7D0;
}

/* Loading animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hc-spin {
  animation: spin 0.6s linear infinite;
}

/* ============================================
   My Account — Profile Tab
   ============================================ */
#hc-account-profile {
  display: none;
}

#hc-account-profile.active {
  display: block;
}

.hc-profile-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hc-space-4);
  max-width: 600px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hc-vd {
    grid-template-columns: 1fr;
  }
  .hc-vd-gallery,
  .hc-vd__sidebar {
    position: static;
  }
  .hc-vd__mobile-header {
    display: block;
  }
  .hc-vd-booking__header {
    display: none;
  }
  .hc-vd-pricing__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .hc-vehicles-grid {
    grid-template-columns: 1fr;
  }
  /* Vehicle Detail responsive */
  .hc-vd-quickspecs {
    grid-template-columns: 1fr;
  }
  .hc-vd-features__grid {
    grid-template-columns: 1fr;
  }
  .hc-vd-specs-grid {
    grid-template-columns: 1fr;
  }
  .hc-vd-pricing__cards {
    grid-template-columns: 1fr;
  }
  .hc-vd-gallery__arrow {
    opacity: 1;
    width: 36px;
    height: 36px;
  }
  .hc-lightbox__arrow {
    width: 40px;
    height: 40px;
  }
  .hc-lightbox__arrow--prev {
    left: 10px;
  }
  .hc-lightbox__arrow--next {
    right: 10px;
  }
  .hc-booking-customer__grid {
    grid-template-columns: 1fr;
  }
  .hc-booking-summary {
    grid-template-columns: 1fr;
  }
  .hc-booking-vehicle-card {
    flex-direction: column;
    text-align: center;
  }
  .hc-booking-vehicle-card img {
    width: 100%;
    height: 160px;
  }
}
/* ─── Vehicle Type Tabs ──────────────────────────────────────── */
.hc-type-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hc-type-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--hc-radius-lg);
  border: 1.5px solid var(--hc-gray-200);
  background: white;
  color: var(--hc-gray-600);
  font-size: var(--hc-text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.hc-type-tab:hover {
  border-color: var(--hc-gray-400);
  color: var(--hc-gray-800);
  background: var(--hc-gray-50);
}

.hc-type-tab--active {
  background: var(--tab-color, var(--hc-primary));
  color: white;
  border-color: var(--tab-color, var(--hc-primary));
  font-weight: 600;
}

.hc-type-tab--active:hover {
  background: var(--tab-color, var(--hc-primary));
  color: white;
  border-color: var(--tab-color, var(--hc-primary));
  opacity: 0.9;
}

.hc-type-tab__count {
  font-size: 0.85em;
  opacity: 0.7;
}

/* ─── Category Pills ─────────────────────────────────────────── */
.hc-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--hc-gray-200);
  background: white;
  color: var(--hc-gray-600);
  font-size: var(--hc-text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
}

.hc-category-pill:hover {
  border-color: var(--hc-primary);
  color: var(--hc-primary);
}

.hc-category-pill--active {
  background: var(--hc-primary);
  color: white;
  border-color: var(--hc-primary);
}

.hc-category-pill--active:hover {
  background: var(--hc-primary);
  color: white;
  opacity: 0.9;
}

/* ─── Vehicle Card spec updates ──────────────────────────────── */
.hc-vehicle-card__spec {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── Badge variants (extended) ─────────────────────────────── */
.hc-badge--outline {
  background: transparent;
  border: 1px solid var(--hc-gray-300);
  color: var(--hc-gray-600);
}

.hc-badge--primary {
  background: var(--hc-primary-light, var(--hc-primary));
  color: var(--hc-primary);
}

/* ============================================
   Auth Pages (Login / Register)
   ============================================ */
.hc-auth {
  display: grid;
  grid-template-columns: 480px 1fr;
  min-height: 100vh;
}

/* ── Side Panel ────────────────────────────── */
.hc-auth__side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  padding: var(--hc-space-10);
}

.hc-auth__side-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1e40af 70%, #2563eb 100%);
  z-index: 0;
}

.hc-auth__side-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.07;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 1px, transparent 1px), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.3) 1px, transparent 1px), radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
  background-size: 60px 60px, 80px 80px, 100px 100px;
}

.hc-auth__side-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 360px;
}

.hc-auth__side-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: var(--hc-space-8);
  animation: hcAuthPulse 3s ease-in-out infinite;
}

.hc-auth__side-title {
  font-family: var(--hc-font-heading);
  font-size: var(--hc-text-3xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--hc-space-4);
  letter-spacing: -0.02em;
}

.hc-auth__side-text {
  font-size: var(--hc-text-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--hc-space-10);
}

.hc-auth__side-features {
  display: flex;
  flex-direction: column;
  gap: var(--hc-space-4);
  text-align: left;
}

.hc-auth__feature {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3);
  font-size: var(--hc-text-sm);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--hc-space-3) var(--hc-space-4);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--hc-radius-lg);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--hc-transition-base);
}

.hc-auth__feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

/* Floating blobs */
.hc-auth__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.4;
  animation: hcBlobFloat 8s ease-in-out infinite;
}

.hc-auth__blob--1 {
  width: 200px;
  height: 200px;
  background: rgba(37, 99, 235, 0.5);
  top: -60px;
  right: -60px;
}

.hc-auth__blob--2 {
  width: 160px;
  height: 160px;
  background: rgba(249, 115, 22, 0.35);
  bottom: -40px;
  left: -40px;
  animation-delay: -4s;
}

@keyframes hcBlobFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -20px) scale(1.1);
  }
  50% {
    transform: translate(-10px, 20px) scale(0.95);
  }
  75% {
    transform: translate(15px, 10px) scale(1.05);
  }
}
@keyframes hcAuthPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}
/* ── Main Form Panel ───────────────────────── */
.hc-auth__main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--hc-space-10);
  background: var(--hc-gray-50);
  position: relative;
  overflow-y: auto;
}

.hc-auth__card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: var(--hc-radius-2xl);
  padding: var(--hc-space-10);
  box-shadow: var(--hc-shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.03);
  position: relative;
}

.hc-auth__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--hc-space-8);
}

.hc-auth__logo img,
.hc-auth__logo svg {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.hc-auth__header {
  text-align: center;
  margin-bottom: var(--hc-space-8);
}

.hc-auth__title {
  font-family: var(--hc-font-heading);
  font-size: var(--hc-text-2xl);
  font-weight: 800;
  color: var(--hc-gray-900);
  margin-bottom: var(--hc-space-2);
  letter-spacing: -0.02em;
}

.hc-auth__subtitle {
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-500);
}

/* ── Alert ─────────────────────────────────── */
.hc-auth__alert {
  display: flex;
  align-items: flex-start;
  gap: var(--hc-space-3);
  padding: var(--hc-space-4);
  border-radius: var(--hc-radius-lg);
  font-size: var(--hc-text-sm);
  margin-bottom: var(--hc-space-6);
  animation: hcAuthShake 0.5s ease;
}

.hc-auth__alert--error {
  background: var(--hc-error-light);
  color: var(--hc-error);
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.hc-auth__alert--error svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.hc-auth__alert--success {
  background: var(--hc-success-light);
  color: var(--hc-success);
  border: 1px solid rgba(22, 163, 74, 0.15);
}

@keyframes hcAuthShake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 50%, 90% {
    transform: translateX(-4px);
  }
  30%, 70% {
    transform: translateX(4px);
  }
}
/* ── Form ──────────────────────────────────── */
.hc-auth__form {
  display: flex;
  flex-direction: column;
  gap: var(--hc-space-5);
}

.hc-auth__field {
  display: flex;
  flex-direction: column;
  gap: var(--hc-space-2);
}

.hc-auth__label {
  font-size: var(--hc-text-sm);
  font-weight: 600;
  color: var(--hc-gray-700);
}

.hc-auth__label-hint {
  font-weight: 400;
  color: var(--hc-gray-400);
}

.hc-auth__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.hc-auth__input-icon {
  position: absolute;
  left: 14px;
  color: var(--hc-gray-400);
  pointer-events: none;
  transition: color var(--hc-transition-fast);
  z-index: 1;
}

.hc-auth__input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1.5px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-xl);
  font-family: var(--hc-font-body);
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-800);
  background: var(--hc-gray-50);
  outline: none;
  transition: all var(--hc-transition-fast);
}

.hc-auth__input::placeholder {
  color: var(--hc-gray-400);
}

.hc-auth__input:hover {
  border-color: var(--hc-gray-300);
  background: #fff;
}

.hc-auth__input:focus {
  border-color: var(--hc-primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--hc-primary-light);
}

.hc-auth__input:focus ~ .hc-auth__input-icon,
.hc-auth__input-wrap:focus-within .hc-auth__input-icon {
  color: var(--hc-primary);
}

/* Password input with toggle */
.hc-auth__input--password {
  padding-right: 48px;
}

.hc-auth__toggle-pw {
  position: absolute;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  border-radius: var(--hc-radius-md);
  color: var(--hc-gray-400);
  cursor: pointer;
  transition: all var(--hc-transition-fast);
  z-index: 1;
}

.hc-auth__toggle-pw:hover {
  color: var(--hc-gray-600);
  background: var(--hc-gray-100);
}

.hc-auth__toggle-pw .hc-pw-hide {
  display: none;
}

.hc-auth__toggle-pw.active .hc-pw-show {
  display: none;
}

.hc-auth__toggle-pw.active .hc-pw-hide {
  display: block;
}

/* ── Remember / Forgot ─────────────────────── */
.hc-auth__options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc-auth__remember {
  display: flex;
  align-items: center;
  gap: var(--hc-space-2);
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-600);
  cursor: pointer;
  user-select: none;
}

.hc-auth__remember input[type=checkbox] {
  display: none;
}

.hc-auth__checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--hc-gray-300);
  border-radius: var(--hc-radius-sm);
  position: relative;
  transition: all var(--hc-transition-fast);
  flex-shrink: 0;
}

.hc-auth__checkbox::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform var(--hc-transition-fast);
}

.hc-auth__remember input[type=checkbox]:checked + .hc-auth__checkbox {
  background: var(--hc-primary);
  border-color: var(--hc-primary);
}

.hc-auth__remember input[type=checkbox]:checked + .hc-auth__checkbox::after {
  transform: rotate(45deg) scale(1);
}

.hc-auth__forgot {
  font-size: var(--hc-text-sm);
  color: var(--hc-primary);
  font-weight: 500;
  transition: color var(--hc-transition-fast);
}

.hc-auth__forgot:hover {
  color: var(--hc-primary-hover);
}

/* ── Submit Button ─────────────────────────── */
.hc-auth__submit {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: var(--hc-space-2);
}

.hc-auth__submit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.hc-auth__submit:hover::before {
  width: 300px;
  height: 300px;
}

.hc-auth__submit:active {
  transform: scale(0.98);
}

/* ── Divider ───────────────────────────────── */
.hc-auth__divider {
  display: flex;
  align-items: center;
  gap: var(--hc-space-4);
  margin: var(--hc-space-6) 0;
  color: var(--hc-gray-400);
  font-size: var(--hc-text-sm);
}

.hc-auth__divider::before,
.hc-auth__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hc-gray-200);
}

/* ── Switch link ───────────────────────────── */
.hc-auth__switch {
  text-align: center;
  font-size: var(--hc-text-sm);
  color: var(--hc-gray-500);
}

.hc-auth__switch-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--hc-primary);
  transition: all var(--hc-transition-fast);
}

.hc-auth__switch-link:hover {
  color: var(--hc-primary-hover);
  gap: 8px;
}

/* ── Register: Multi-step ──────────────────── */
.hc-auth__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--hc-space-6);
}

.hc-auth__step {
  display: flex;
  align-items: center;
  gap: var(--hc-space-2);
  opacity: 0.4;
  transition: all var(--hc-transition-base);
}

.hc-auth__step--active {
  opacity: 1;
}

.hc-auth__step--done {
  opacity: 0.7;
}

.hc-auth__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: var(--hc-text-xs);
  font-weight: 700;
  background: var(--hc-gray-200);
  color: var(--hc-gray-600);
  transition: all var(--hc-transition-base);
}

.hc-auth__step--active .hc-auth__step-num {
  background: var(--hc-primary);
  color: #fff;
  box-shadow: 0 0 0 4px var(--hc-primary-light);
}

.hc-auth__step--done .hc-auth__step-num {
  background: var(--hc-success);
  color: #fff;
}

.hc-auth__step-label {
  font-size: var(--hc-text-xs);
  font-weight: 600;
  color: var(--hc-gray-600);
}

.hc-auth__step--active .hc-auth__step-label {
  color: var(--hc-gray-900);
}

.hc-auth__step-line {
  width: 40px;
  height: 2px;
  background: var(--hc-gray-200);
  margin: 0 var(--hc-space-3);
  transition: background var(--hc-transition-base);
}

.hc-auth__step-line.done {
  background: var(--hc-success);
}

/* Step panels */
.hc-auth__form-step {
  display: none;
  flex-direction: column;
  gap: var(--hc-space-5);
  animation: hcAuthStepIn 0.4s ease;
}

.hc-auth__form-step--active {
  display: flex;
}

@keyframes hcAuthStepIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Row layout for name fields */
.hc-auth__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hc-space-4);
}

/* Form actions row */
.hc-auth__form-actions {
  display: flex;
  gap: var(--hc-space-3);
}

.hc-auth__form-actions .hc-auth__submit {
  flex: 1;
}

.hc-auth__prev-step {
  flex-shrink: 0;
}

/* ── Password Strength Meter ───────────────── */
.hc-auth__pw-strength {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3);
  margin-top: var(--hc-space-2);
}

.hc-auth__pw-bar {
  flex: 1;
  height: 4px;
  background: var(--hc-gray-200);
  border-radius: var(--hc-radius-full);
  overflow: hidden;
}

.hc-auth__pw-bar-fill {
  height: 100%;
  width: 0;
  border-radius: var(--hc-radius-full);
  transition: width 0.4s ease, background 0.4s ease;
}

.hc-auth__pw-bar-fill[data-strength="1"] {
  width: 25%;
  background: var(--hc-error);
}

.hc-auth__pw-bar-fill[data-strength="2"] {
  width: 50%;
  background: var(--hc-warning);
}

.hc-auth__pw-bar-fill[data-strength="3"] {
  width: 75%;
  background: var(--hc-info);
}

.hc-auth__pw-bar-fill[data-strength="4"] {
  width: 100%;
  background: var(--hc-success);
}

.hc-auth__pw-text {
  font-size: var(--hc-text-xs);
  font-weight: 600;
  white-space: nowrap;
  min-width: 60px;
  transition: color var(--hc-transition-fast);
}

/* Password match indicator */
.hc-auth__pw-match {
  display: flex;
  align-items: center;
  gap: var(--hc-space-2);
  font-size: var(--hc-text-xs);
  font-weight: 600;
  margin-top: var(--hc-space-1);
  color: var(--hc-success);
  animation: hcAuthFadeIn 0.3s ease;
}

@keyframes hcAuthFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── Input validation states ───────────────── */
.hc-auth__input.valid {
  border-color: var(--hc-success);
}

.hc-auth__input.valid:focus {
  box-shadow: 0 0 0 4px var(--hc-success-light);
}

.hc-auth__input.invalid {
  border-color: var(--hc-error);
}

.hc-auth__input.invalid:focus {
  box-shadow: 0 0 0 4px var(--hc-error-light);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .hc-auth {
    grid-template-columns: 1fr;
  }
  .hc-auth__side {
    display: none;
  }
  .hc-auth__main {
    min-height: 100vh;
    padding: var(--hc-space-6);
    background: linear-gradient(135deg, #f0f4ff 0%, #fafbff 50%, #fff5ed 100%);
  }
  .hc-auth__card {
    max-width: 440px;
  }
}
@media (max-width: 640px) {
  .hc-auth__card {
    padding: var(--hc-space-6);
    border-radius: var(--hc-radius-xl);
  }
  .hc-auth__row {
    grid-template-columns: 1fr;
  }
  .hc-auth__form-actions {
    flex-direction: column-reverse;
  }
  .hc-auth__form-actions .hc-auth__submit {
    width: 100%;
  }
  .hc-auth__prev-step {
    width: 100%;
  }
  .hc-auth__options {
    flex-direction: column;
    gap: var(--hc-space-3);
    align-items: flex-start;
  }
  .hc-auth__steps {
    gap: 0;
  }
  .hc-auth__step-label {
    display: none;
  }
}
/* ── Focus-visible outline for a11y ────────── */
.hc-auth__input:focus-visible,
.hc-auth__toggle-pw:focus-visible,
.hc-auth__submit:focus-visible,
.hc-auth__remember:focus-visible,
.hc-auth__forgot:focus-visible {
  outline: 2px solid var(--hc-primary);
  outline-offset: 2px;
}

/* ============================================================
   MY ACCOUNT – Dashboard, Bookings, Profile, Documents, Security
   ============================================================ */
/* ─── Layout ────────────────────────────────────────────────── */
.hc-ma {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  min-height: calc(100vh - var(--hc-header-height, 72px));
  background: var(--hc-gray-50, #f8fafc);
  max-width: var(--hc-container-xl);
  margin: 0 auto;
}

.hc-ma__sidebar {
  background: #fff;
  border-right: 1px solid var(--hc-gray-200, #e2e8f0);
  padding: var(--hc-space-6, 24px) 0;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: var(--hc-header-height, 72px);
  height: calc(100vh - var(--hc-header-height, 72px));
  overflow-y: auto;
}

.hc-ma__content {
  padding: var(--hc-space-8, 32px) var(--hc-space-10, 40px) var(--hc-space-12, 48px);
  max-width: 100%;
  width: 100%;
  min-width: 0;
}

.hc-ma__mobile-tabs {
  display: none;
}

/* ─── User card ─────────────────────────────────────────────── */
.hc-ma__user-card {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3, 12px);
  padding: 0 var(--hc-space-5, 20px) var(--hc-space-5, 20px);
  border-bottom: 1px solid var(--hc-gray-100, #f1f5f9);
  margin-bottom: var(--hc-space-4, 16px);
}

.hc-ma__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hc-primary, #2563EB), #1d4ed8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.hc-ma__user-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hc-ma__user-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--hc-gray-900, #0f172a);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-ma__user-email {
  font-size: 0.8rem;
  color: var(--hc-gray-500, #64748b);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── Sidebar navigation ───────────────────────────────────── */
.hc-ma__nav {
  flex: 1;
  padding: 0 var(--hc-space-3, 12px);
}

.hc-ma__nav-item {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3, 12px);
  padding: var(--hc-space-3, 12px) var(--hc-space-4, 16px);
  border-radius: var(--hc-radius-lg, 12px);
  color: var(--hc-gray-600, #475569);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  position: relative;
  cursor: pointer;
}

.hc-ma__nav-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.hc-ma__nav-item:hover {
  background: var(--hc-gray-50, #f8fafc);
  color: var(--hc-gray-900, #0f172a);
}

.hc-ma__nav-item:hover svg {
  opacity: 1;
}

.hc-ma__nav-item--active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--hc-primary, #2563EB);
  font-weight: 600;
}

.hc-ma__nav-item--active svg {
  opacity: 1;
  color: var(--hc-primary, #2563EB);
}

.hc-ma__nav-item--logout {
  margin: var(--hc-space-4, 16px) var(--hc-space-3, 12px) 0;
  color: var(--hc-gray-500, #64748b);
  border-top: 1px solid var(--hc-gray-100, #f1f5f9);
  padding-top: var(--hc-space-4, 16px);
  border-radius: 0 0 var(--hc-radius-lg, 12px) var(--hc-radius-lg, 12px);
}

.hc-ma__nav-item--logout:hover {
  color: #dc2626;
  background: #fef2f2;
}

.hc-ma__nav-badge {
  margin-left: auto;
  background: var(--hc-primary, #2563EB);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  min-width: 20px;
  text-align: center;
}

.hc-ma__nav-badge--warn {
  background: #f59e0b;
}

/* ─── Page header ───────────────────────────────────────────── */
.hc-ma__page-header {
  margin-bottom: var(--hc-space-6, 24px);
}

.hc-ma__page-title {
  font-family: var(--hc-font-display, "Plus Jakarta Sans", sans-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--hc-gray-900, #0f172a);
  margin: 0 0 var(--hc-space-2, 8px);
}

.hc-ma__page-desc {
  color: var(--hc-gray-500, #64748b);
  font-size: 0.95rem;
  margin: 0;
}

/* ─── Stats cards ───────────────────────────────────────────── */
.hc-ma__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hc-space-4, 16px);
  margin-bottom: var(--hc-space-6, 24px);
}

.hc-ma__stat-card {
  background: #fff;
  border: 1px solid var(--hc-gray-200, #e2e8f0);
  border-radius: var(--hc-radius-xl, 16px);
  padding: var(--hc-space-5, 20px);
  display: flex;
  align-items: center;
  gap: var(--hc-space-4, 16px);
  transition: box-shadow 0.2s ease;
}

.hc-ma__stat-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hc-ma__stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--hc-radius-lg, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hc-ma__stat-icon--blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--hc-primary, #2563EB);
}

.hc-ma__stat-icon--green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.hc-ma__stat-icon--orange {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.hc-ma__stat-data {
  display: flex;
  flex-direction: column;
}

.hc-ma__stat-value {
  font-family: var(--hc-font-display, "Plus Jakarta Sans", sans-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hc-gray-900, #0f172a);
  line-height: 1.2;
}

.hc-ma__stat-label {
  font-size: 0.8rem;
  color: var(--hc-gray-500, #64748b);
  margin-top: 2px;
}

/* ─── Next booking highlight ────────────────────────────────── */
.hc-ma__next-booking {
  margin-bottom: var(--hc-space-6, 24px);
}

.hc-ma__next-label {
  display: flex;
  align-items: center;
  gap: var(--hc-space-2, 8px);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hc-primary, #2563EB);
  margin-bottom: var(--hc-space-3, 12px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hc-ma__next-card {
  background: #fff;
  border: 2px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--hc-radius-xl, 16px);
  padding: var(--hc-space-5, 20px);
  display: flex;
  align-items: center;
  gap: var(--hc-space-5, 20px);
}

.hc-ma__next-img {
  width: 120px;
  height: 80px;
  border-radius: var(--hc-radius-lg, 12px);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--hc-gray-100, #f1f5f9);
}

.hc-ma__next-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-ma__next-info {
  flex: 1;
  min-width: 0;
}

.hc-ma__next-info h3 {
  font-family: var(--hc-font-display, "Plus Jakarta Sans", sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hc-gray-900, #0f172a);
  margin: 0 0 var(--hc-space-2, 8px);
}

.hc-ma__next-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hc-space-4, 16px);
}

.hc-ma__next-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--hc-gray-600, #475569);
}

.hc-ma__next-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--hc-space-2, 8px);
  flex-shrink: 0;
}

.hc-ma__next-price {
  font-family: var(--hc-font-display, "Plus Jakarta Sans", sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--hc-gray-900, #0f172a);
}

/* ─── Status badges ─────────────────────────────────────────── */
.hc-ma__status {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.hc-ma__status--pending {
  background: #fef3c7;
  color: #92400e;
}

.hc-ma__status--confirmed {
  background: #dbeafe;
  color: #1e40af;
}

.hc-ma__status--active {
  background: #d1fae5;
  color: #065f46;
}

.hc-ma__status--completed {
  background: var(--hc-gray-100, #f1f5f9);
  color: var(--hc-gray-600, #475569);
}

.hc-ma__status--cancelled {
  background: #fee2e2;
  color: #991b1b;
}

/* ─── Quick actions ─────────────────────────────────────────── */
.hc-ma__quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hc-space-4, 16px);
  margin-bottom: var(--hc-space-6, 24px);
}

.hc-ma__quick-card {
  background: #fff;
  border: 1px solid var(--hc-gray-200, #e2e8f0);
  border-radius: var(--hc-radius-xl, 16px);
  padding: var(--hc-space-5, 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hc-space-3, 12px);
  text-decoration: none;
  color: var(--hc-gray-700, #334155);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: center;
}

.hc-ma__quick-card:hover {
  border-color: var(--hc-primary, #2563EB);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
  color: var(--hc-primary, #2563EB);
  transform: translateY(-2px);
}

.hc-ma__quick-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--hc-radius-lg, 12px);
  background: var(--hc-gray-50, #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-gray-500, #64748b);
  transition: all 0.2s ease;
}

.hc-ma__quick-card:hover .hc-ma__quick-icon {
  background: rgba(37, 99, 235, 0.08);
  color: var(--hc-primary, #2563EB);
}

/* ─── Section header ────────────────────────────────────────── */
.hc-ma__section {
  margin-bottom: var(--hc-space-6, 24px);
}

.hc-ma__section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--hc-space-4, 16px);
}

.hc-ma__section-header h2 {
  font-family: var(--hc-font-display, "Plus Jakarta Sans", sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hc-gray-900, #0f172a);
  margin: 0;
}

.hc-ma__section-link {
  font-size: 0.85rem;
  color: var(--hc-primary, #2563EB);
  font-weight: 600;
  text-decoration: none;
}

.hc-ma__section-link:hover {
  text-decoration: underline;
}

/* ─── Booking list & cards ──────────────────────────────────── */
.hc-ma__booking-list {
  display: flex;
  flex-direction: column;
  gap: var(--hc-space-4, 16px);
}

.hc-ma__booking-card {
  background: #fff;
  border: 1px solid var(--hc-gray-200, #e2e8f0);
  border-radius: var(--hc-radius-xl, 16px);
  overflow: hidden;
  display: flex;
  transition: box-shadow 0.2s ease;
}

.hc-ma__booking-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hc-ma__booking-img {
  width: 180px;
  flex-shrink: 0;
  background: var(--hc-gray-100, #f1f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-ma__booking-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-ma__booking-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-ma__booking-body {
  flex: 1;
  padding: var(--hc-space-5, 20px);
  display: flex;
  flex-direction: column;
  gap: var(--hc-space-3, 12px);
  min-width: 0;
}

.hc-ma__booking-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--hc-space-3, 12px);
}

.hc-ma__booking-title {
  font-family: var(--hc-font-display, "Plus Jakarta Sans", sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hc-gray-900, #0f172a);
  margin: 0;
}

.hc-ma__booking-ref {
  font-size: 0.8rem;
  color: var(--hc-gray-500, #64748b);
  font-family: monospace;
}

.hc-ma__booking-details {
  display: flex;
  flex-direction: column;
  gap: var(--hc-space-2, 8px);
}

.hc-ma__booking-detail {
  display: flex;
  align-items: center;
  gap: var(--hc-space-2, 8px);
  font-size: 0.85rem;
  color: var(--hc-gray-600, #475569);
}

.hc-ma__booking-detail svg {
  flex-shrink: 0;
  color: var(--hc-gray-400, #94a3b8);
}

.hc-ma__booking-days {
  margin-left: auto;
  font-weight: 600;
  color: var(--hc-gray-500, #64748b);
  font-size: 0.8rem;
}

.hc-ma__booking-footer {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3, 12px);
  padding-top: var(--hc-space-3, 12px);
  border-top: 1px solid var(--hc-gray-100, #f1f5f9);
  margin-top: auto;
}

.hc-ma__booking-price {
  font-family: var(--hc-font-display, "Plus Jakarta Sans", sans-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hc-gray-900, #0f172a);
}

.hc-ma__cancel-btn {
  margin-left: auto;
  background: none;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 6px 16px;
  border-radius: var(--hc-radius-md, 8px);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.hc-ma__cancel-btn:hover {
  background: #fef2f2;
  border-color: #dc2626;
}

.hc-ma__view-vehicle {
  font-size: 0.8rem;
  color: var(--hc-primary, #2563EB);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.hc-ma__view-vehicle:hover {
  text-decoration: underline;
}

/* ---- Success Banner ---- */
.hc-ma__success-banner {
  display: flex;
  align-items: center;
  gap: var(--hc-space-4, 16px);
  padding: var(--hc-space-5, 20px) var(--hc-space-6, 24px);
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  border-radius: var(--hc-radius-lg, 12px);
  color: #fff;
  margin-bottom: var(--hc-space-6, 24px);
  animation: hc-slide-down 0.4s ease-out;
  position: relative;
}

@keyframes hc-slide-down {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hc-ma__success-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-ma__success-text h3 {
  font-family: var(--hc-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.hc-ma__success-text p {
  font-size: 0.88rem;
  margin: 0;
  opacity: 0.9;
}

.hc-ma__success-text p strong {
  font-family: var(--hc-font-mono, monospace);
  letter-spacing: 0.04em;
}

.hc-ma__success-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.15s;
}

.hc-ma__success-close:hover {
  color: #fff;
}

/* ---- Enhanced Booking Actions ---- */
.hc-ma__booking-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-wrap: wrap;
}

.hc-ma__action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--hc-radius-md, 8px);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  background: none;
  line-height: 1.4;
}

.hc-ma__action-btn svg {
  flex-shrink: 0;
}

.hc-ma__action-btn--dates {
  border-color: var(--hc-primary, #2563EB);
  color: var(--hc-primary, #2563EB);
}

.hc-ma__action-btn--dates:hover {
  background: rgba(37, 99, 235, 0.06);
}

.hc-ma__action-btn--cancel {
  border-color: #fecaca;
  color: #dc2626;
}

.hc-ma__action-btn--cancel:hover {
  background: #fef2f2;
  border-color: #dc2626;
}

.hc-ma__action-btn--rebook {
  border-color: #bbf7d0;
  color: #16a34a;
}

.hc-ma__action-btn--rebook:hover {
  background: #f0fdf4;
  border-color: #16a34a;
}

.hc-ma__action-btn--view {
  color: var(--hc-gray-500, #64748b);
  font-weight: 500;
}

.hc-ma__action-btn--view:hover {
  color: var(--hc-primary, #2563EB);
}

/* ---- Date Change Modal ---- */
.hc-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--hc-space-4, 16px);
}

.hc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  animation: hc-fade-in 0.2s ease;
}

@keyframes hc-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hc-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: var(--hc-radius-xl, 16px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 480px;
  animation: hc-modal-show 0.3s ease;
  overflow: hidden;
}

@keyframes hc-modal-show {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.hc-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--hc-space-5, 20px) var(--hc-space-6, 24px);
  border-bottom: 1px solid var(--hc-gray-100, #f1f5f9);
}

.hc-modal__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hc-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hc-gray-900, #0f172a);
  margin: 0;
}

.hc-modal__close {
  background: none;
  border: none;
  color: var(--hc-gray-400, #94a3b8);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.15s;
}

.hc-modal__close:hover {
  color: var(--hc-gray-700, #334155);
  background: var(--hc-gray-50, #f8fafc);
}

.hc-modal__body {
  padding: var(--hc-space-6, 24px);
}

.hc-modal__ref {
  font-size: 0.88rem;
  color: var(--hc-gray-500, #64748b);
  margin: 0 0 var(--hc-space-4, 16px) 0;
}

.hc-modal__ref strong {
  font-family: var(--hc-font-mono, monospace);
  color: var(--hc-gray-700, #334155);
}

.hc-modal__notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #eff6ff;
  color: var(--hc-primary, #2563EB);
  border-radius: var(--hc-radius-md, 8px);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: var(--hc-space-5, 20px);
}

.hc-modal__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hc-space-4, 16px);
  margin-bottom: var(--hc-space-4, 16px);
}

.hc-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hc-modal__field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hc-gray-600, #475569);
}

.hc-modal__price-info {
  padding: var(--hc-space-4, 16px);
  background: var(--hc-gray-50, #f8fafc);
  border-radius: var(--hc-radius-md, 8px);
  border: 1px solid var(--hc-gray-100, #f1f5f9);
}

.hc-modal__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--hc-gray-600, #475569);
}

.hc-modal__price-row + .hc-modal__price-row {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--hc-gray-200, #e2e8f0);
}

.hc-modal__price-row strong {
  color: var(--hc-gray-900, #0f172a);
  font-family: var(--hc-font-display);
}

.hc-modal__error {
  padding: 10px 14px;
  background: #fef2f2;
  color: #dc2626;
  border-radius: var(--hc-radius-md, 8px);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: var(--hc-space-4, 16px);
}

.hc-modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--hc-space-3, 12px);
  padding: var(--hc-space-4, 16px) var(--hc-space-6, 24px);
  border-top: 1px solid var(--hc-gray-100, #f1f5f9);
  background: var(--hc-gray-50, #f8fafc);
}

.hc-modal__footer .hc-btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hc-modal__footer .hc-btn--primary svg {
  margin-right: 4px;
}

/* Compact booking card (dashboard recent) */
.hc-ma__booking-card--compact {
  padding: var(--hc-space-4, 16px);
  display: flex;
  align-items: center;
  gap: var(--hc-space-4, 16px);
}

.hc-ma__booking-card--compact .hc-ma__booking-img {
  width: 72px;
  height: 52px;
  border-radius: var(--hc-radius-md, 8px);
  overflow: hidden;
}

.hc-ma__booking-info {
  flex: 1;
  min-width: 0;
}

.hc-ma__booking-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hc-gray-900, #0f172a);
  margin: 0;
}

.hc-ma__booking-dates {
  font-size: 0.8rem;
  color: var(--hc-gray-500, #64748b);
}

.hc-ma__booking-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.hc-ma__booking-right .hc-ma__booking-price {
  font-size: 0.95rem;
}

/* ─── Filters ───────────────────────────────────────────────── */
.hc-ma__filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hc-space-2, 8px);
  margin-bottom: var(--hc-space-5, 20px);
}

.hc-ma__filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--hc-gray-200, #e2e8f0);
  background: #fff;
  color: var(--hc-gray-600, #475569);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.hc-ma__filter-btn:hover {
  border-color: var(--hc-primary, #2563EB);
  color: var(--hc-primary, #2563EB);
}

.hc-ma__filter-btn--active {
  background: var(--hc-primary, #2563EB);
  border-color: var(--hc-primary, #2563EB);
  color: #fff;
}

/* ─── Empty state ───────────────────────────────────────────── */
.hc-ma__empty {
  text-align: center;
  padding: var(--hc-space-12, 48px) var(--hc-space-6, 24px);
}

.hc-ma__empty-icon {
  margin-bottom: var(--hc-space-5, 20px);
}

.hc-ma__empty h3 {
  font-family: var(--hc-font-display, "Plus Jakarta Sans", sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hc-gray-900, #0f172a);
  margin: 0 0 var(--hc-space-2, 8px);
}

.hc-ma__empty p {
  color: var(--hc-gray-500, #64748b);
  margin: 0 0 var(--hc-space-6, 24px);
  max-width: 400px;
  margin-inline: auto;
}

/* ─── Cards ─────────────────────────────────────────────────── */
.hc-ma__card {
  background: #fff;
  border: 1px solid var(--hc-gray-200, #e2e8f0);
  border-radius: var(--hc-radius-xl, 16px);
  overflow: hidden;
  margin-bottom: var(--hc-space-5, 20px);
}

.hc-ma__card-header {
  padding: var(--hc-space-5, 20px) var(--hc-space-6, 24px);
  border-bottom: 1px solid var(--hc-gray-100, #f1f5f9);
}

.hc-ma__card-header h2 {
  font-family: var(--hc-font-display, "Plus Jakarta Sans", sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--hc-gray-900, #0f172a);
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--hc-space-2, 8px);
}

.hc-ma__card-body {
  padding: var(--hc-space-6, 24px);
}

/* ─── Forms ─────────────────────────────────────────────────── */
.hc-ma__form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--hc-space-5, 20px);
}

.hc-ma__form-grid--single {
  grid-template-columns: 1fr;
  max-width: 480px;
}

.hc-ma__field {
  display: flex;
  flex-direction: column;
  gap: var(--hc-space-2, 8px);
}

.hc-ma__field--full {
  grid-column: 1/-1;
}

.hc-ma__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hc-gray-700, #334155);
}

.hc-ma__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.hc-ma__input-icon {
  position: absolute;
  left: 14px;
  color: var(--hc-gray-400, #94a3b8);
  pointer-events: none;
  z-index: 1;
}

.hc-ma__input {
  width: 100%;
  padding: 12px 14px 12px 44px;
  border: 1.5px solid var(--hc-gray-200, #e2e8f0);
  border-radius: var(--hc-radius-lg, 12px);
  font-size: 0.9rem;
  color: var(--hc-gray-900, #0f172a);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.hc-ma__input:focus {
  outline: none;
  border-color: var(--hc-primary, #2563EB);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.hc-ma__input--disabled {
  background: var(--hc-gray-50, #f8fafc);
  color: var(--hc-gray-500, #64748b);
  cursor: not-allowed;
}

.hc-ma__input--phone {
  padding-left: 110px !important;
}

.hc-ma__field-hint {
  font-size: 0.78rem;
  color: var(--hc-gray-500, #64748b);
  font-style: italic;
}

/* Phone prefix inside my-account */
.hc-ma__input-wrap .hc-phone-prefix {
  position: absolute;
  left: 4px;
  z-index: 2;
}

.hc-ma__input-wrap.hc-phone-wrap {
  position: relative;
}

/* ─── Form actions ──────────────────────────────────────────── */
.hc-ma__form-actions {
  padding-top: var(--hc-space-5, 20px);
}

/* ─── Alerts ────────────────────────────────────────────────── */
.hc-ma__alert {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3, 12px);
  padding: var(--hc-space-4, 16px) var(--hc-space-5, 20px);
  border-radius: var(--hc-radius-lg, 12px);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--hc-space-5, 20px);
}

.hc-ma__alert svg {
  flex-shrink: 0;
}

.hc-ma__alert--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.hc-ma__alert--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ─── Password toggle & strength ────────────────────────────── */
.hc-ma__pw-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--hc-gray-400, #94a3b8);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
}

.hc-ma__pw-toggle:hover {
  color: var(--hc-gray-600, #475569);
}

.hc-ma__pw-strength {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3, 12px);
  margin-top: var(--hc-space-2, 8px);
}

.hc-ma__pw-strength-bar {
  flex: 1;
  height: 4px;
  background: var(--hc-gray-200, #e2e8f0);
  border-radius: 2px;
  overflow: hidden;
}

.hc-ma__pw-strength-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width 0.3s ease, background 0.3s ease;
}

.hc-ma__pw-strength-text {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.hc-ma__pw-match {
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: var(--hc-space-2, 8px);
}

/* ─── Divider ───────────────────────────────────────────────── */
.hc-ma__divider {
  border: none;
  border-top: 1px solid var(--hc-gray-100, #f1f5f9);
  margin: var(--hc-space-5, 20px) 0;
}

/* ─── Account info grid ─────────────────────────────────────── */
.hc-ma__info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hc-space-5, 20px);
}

.hc-ma__info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hc-ma__info-label {
  font-size: 0.78rem;
  color: var(--hc-gray-500, #64748b);
  font-weight: 500;
}

.hc-ma__info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hc-gray-900, #0f172a);
}

/* ─── Document banner ───────────────────────────────────────── */
.hc-ma__doc-banner {
  display: flex;
  align-items: flex-start;
  gap: var(--hc-space-3, 12px);
  padding: var(--hc-space-4, 16px) var(--hc-space-5, 20px);
  border-radius: var(--hc-radius-lg, 12px);
  margin-bottom: var(--hc-space-5, 20px);
}

.hc-ma__doc-banner svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.hc-ma__doc-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.hc-ma__doc-banner p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

.hc-ma__doc-status--pending {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.hc-ma__doc-status--verified {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.hc-ma__doc-status--rejected {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ─── Document grid ─────────────────────────────────────────── */
.hc-ma__doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--hc-space-5, 20px);
}

/* ─── Upload zone ───────────────────────────────────────────── */
.hc-ma__doc-upload-zone {
  border: 2px dashed var(--hc-gray-300, #cbd5e1);
  border-radius: var(--hc-radius-lg, 12px);
  padding: var(--hc-space-8, 32px) var(--hc-space-5, 20px);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hc-ma__doc-upload-zone:hover {
  border-color: var(--hc-primary, #2563EB);
  background: rgba(37, 99, 235, 0.02);
}

.hc-ma__doc-upload-zone svg {
  margin-bottom: var(--hc-space-3, 12px);
}

.hc-ma__doc-upload-zone p {
  font-size: 0.9rem;
  color: var(--hc-gray-600, #475569);
  margin: 0 0 var(--hc-space-1, 4px);
}

.hc-ma__doc-upload-zone p strong {
  color: var(--hc-primary, #2563EB);
}

.hc-ma__doc-upload-zone > span {
  font-size: 0.78rem;
  color: var(--hc-gray-400, #94a3b8);
}

/* ─── Doc uploaded state ────────────────────────────────────── */
.hc-ma__doc-uploaded {
  display: flex;
  align-items: center;
  gap: var(--hc-space-3, 12px);
  padding: var(--hc-space-4, 16px);
  background: #f0fdf4;
  border-radius: var(--hc-radius-lg, 12px);
  border: 1px solid #bbf7d0;
}

.hc-ma__doc-uploaded div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hc-ma__doc-uploaded strong {
  font-size: 0.9rem;
  color: #065f46;
}

.hc-ma__doc-uploaded span {
  font-size: 0.8rem;
  color: #15803d;
}

/* ── Country select inside my-account ───────────────────────── */
.hc-ma__field .hc-country-select {
  z-index: 1;
}

.hc-ma__field .hc-country-select--open,
.hc-ma__field:has(.hc-country-select__dropdown[style*="display: block"]) {
  z-index: 200;
}

/* =============================================
   INCIDENTS / TEATED — Customer Account
   ============================================= */
.hc-hidden {
  display: none !important;
}

.hc-rotate {
  transform: rotate(180deg) !important;
}

/* Type Grid */
.hc-inc__type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.hc-inc__type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.hc-inc__type-btn:hover {
  border-color: var(--hc-primary, #2563eb);
  background: #eff6ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.hc-inc__type-btn--active {
  border-color: var(--hc-primary, #2563eb);
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.hc-inc__type-icon {
  color: var(--hc-primary, #2563eb);
}

.hc-inc__type-name {
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
}

.hc-inc__type-desc {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.3;
}

/* Step headers */
.hc-inc__step-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px 0;
}

.hc-inc__step-desc {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 16px 0;
}

.hc-inc__section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #374151;
  margin-bottom: 12px;
}

/* Booking selection */
.hc-inc__booking-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.hc-inc__booking-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
}

.hc-inc__booking-btn:hover {
  border-color: var(--hc-primary, #2563eb);
  background: #f8fafc;
}

.hc-inc__booking-btn--active {
  border-color: var(--hc-primary, #2563eb);
  background: #eff6ff;
}

.hc-inc__booking-vehicle strong {
  font-size: 15px;
  color: #1f2937;
}

.hc-inc__booking-reg {
  font-size: 12px;
  color: #6b7280;
  margin-left: 8px;
}

.hc-inc__booking-dates {
  font-size: 13px;
  color: #374151;
}

.hc-inc__booking-ref {
  font-size: 12px;
  color: #9ca3af;
  font-family: monospace;
}

/* Checkbox label */
.hc-inc__checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
}

.hc-inc__checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--hc-primary, #2563eb);
}

/* Sub fields */
.hc-inc__sub-fields {
  margin-top: 12px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

/* Upload zone */
.hc-inc__upload-zone {
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #fafbfc;
}

.hc-inc__upload-zone:hover,
.hc-inc__upload-zone--active {
  border-color: var(--hc-primary, #2563eb);
  background: #eff6ff;
}

.hc-inc__upload-icon {
  margin-bottom: 8px;
}

.hc-inc__upload-zone p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.hc-inc__upload-link {
  color: var(--hc-primary, #2563eb);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

/* File previews */
.hc-inc__preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.hc-inc__preview-item {
  position: relative;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  background: #f9fafb;
}

.hc-inc__preview-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.hc-inc__preview-file {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  font-size: 32px;
}

.hc-inc__preview-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.hc-inc__preview-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  font-size: 24px;
}

.hc-inc__preview-name {
  padding: 4px 8px;
  font-size: 11px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-inc__preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* List items */
.hc-inc__list-item {
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  transition: background 0.15s;
}

.hc-inc__list-item:last-child {
  border-bottom: none;
}

.hc-inc__list-item:hover {
  background: #f8fafc;
}

.hc-inc__list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.hc-inc__list-ref {
  font-family: monospace;
  font-size: 12px;
  color: #6b7280;
}

.hc-inc__list-title {
  font-weight: 600;
  font-size: 15px;
  color: #1f2937;
  margin-bottom: 4px;
}

.hc-inc__list-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #9ca3af;
  flex-wrap: wrap;
}

/* Detail modal / drawer */
.hc-inc__detail-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  justify-content: flex-end;
}

.hc-inc__detail-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}

.hc-inc__detail-drawer {
  position: relative;
  width: 540px;
  max-width: 100vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  animation: hcSlideIn 0.25s ease-out;
}

@keyframes hcSlideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.hc-inc__detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.hc-inc__detail-header h2 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.hc-inc__detail-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 4px;
}

.hc-inc__detail-close:hover {
  color: #1f2937;
}

.hc-inc__detail-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.hc-inc__detail-footer {
  padding: 12px 20px;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
}

/* Detail sections */
.hc-inc__detail-section {
  margin-bottom: 20px;
}

.hc-inc__detail-section h4 {
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
}

.hc-inc__detail-section p {
  font-size: 14px;
  color: #1f2937;
  margin: 0;
  line-height: 1.6;
}

.hc-inc__detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.hc-inc__detail-grid > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hc-inc__detail-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.hc-inc__detail-grid span:last-child {
  font-size: 14px;
  color: #1f2937;
}

/* Detail photos */
.hc-inc__detail-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.hc-inc__detail-photos img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}

.hc-inc__detail-photos img:hover {
  opacity: 0.85;
}

/* Timeline (comments) */
.hc-inc__detail-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hc-inc__timeline-item {
  padding: 10px 14px;
  border-radius: 8px;
  background: #f3f4f6;
}

.hc-inc__timeline-item--customer {
  background: #eff6ff;
  border-left: 3px solid var(--hc-primary, #2563eb);
}

.hc-inc__timeline-item--system {
  background: #fefce8;
  font-style: italic;
}

.hc-inc__timeline-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.hc-inc__timeline-author {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.hc-inc__timeline-date {
  font-size: 11px;
  color: #9ca3af;
}

.hc-inc__timeline-text {
  font-size: 13px;
  color: #1f2937;
  line-height: 1.5;
}

/* Toast notifications */
.hc-inc__toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999999;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  max-width: 380px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateX(120%);
  transition: transform 0.3s ease;
}

.hc-inc__toast--visible {
  transform: translateX(0);
}

.hc-inc__toast--success {
  background: #059669;
  color: #fff;
}

.hc-inc__toast--error {
  background: #dc2626;
  color: #fff;
}

.hc-inc__toast--info {
  background: #1f2937;
  color: #fff;
}

/* Loading spinner */
.hc-loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #e5e7eb;
  border-top-color: var(--hc-primary, #2563eb);
  border-radius: 50%;
  animation: hcSpin 0.6s linear infinite;
  margin: 0 auto;
}

@keyframes hcSpin {
  to {
    transform: rotate(360deg);
  }
}
/* ── Responsive ── */
@media (max-width: 768px) {
  .hc-inc__type-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .hc-inc__type-btn {
    padding: 14px 8px;
  }
  .hc-inc__booking-btn {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .hc-inc__detail-drawer {
    width: 100vw;
  }
  .hc-inc__detail-photos {
    grid-template-columns: repeat(2, 1fr);
  }
  .hc-inc__detail-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hc-inc__type-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hc-inc__preview-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }
}
/* ─────────────────────────────────────────────────
   Legal pages (rental-terms, privacy-policy)
   ───────────────────────────────────────────────── */
.hc-legal-page {
  padding: 60px 0 80px;
}

.hc-legal-page__title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.hc-legal-page__updated {
  color: var(--hc-gray-400);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.hc-legal-page__content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--hc-primary, #2563eb);
}

.hc-legal-page__content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 8px;
}

.hc-legal-page__content p {
  color: var(--hc-gray-600, #4b5563);
  line-height: 1.75;
  margin-bottom: 12px;
}

.hc-legal-page__content ul,
.hc-legal-page__content ol {
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--hc-gray-600, #4b5563);
  line-height: 1.75;
}

.hc-legal-page__content li {
  margin-bottom: 6px;
}

.hc-legal-page__content strong {
  color: var(--hc-gray-800, #1f2937);
}

/* Legal tables (GDPR etc.) */
.hc-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.9rem;
}

.hc-legal-table th {
  background: var(--hc-gray-50, #f9fafb);
  font-weight: 600;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid var(--hc-gray-200, #e5e7eb);
}

.hc-legal-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--hc-gray-100, #f3f4f6);
  vertical-align: top;
  color: var(--hc-gray-600, #4b5563);
}

.hc-legal-table tr:hover td {
  background: var(--hc-gray-50, #f9fafb);
}

@media (max-width: 768px) {
  .hc-legal-page__title {
    font-size: 1.6rem;
  }
  .hc-legal-table {
    font-size: 0.8rem;
  }
  .hc-legal-table th,
  .hc-legal-table td {
    padding: 8px 10px;
  }
}
/* ─────────────────────────────────────────────────
   404 Page
   ───────────────────────────────────────────────── */
.hc-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hc-404__container {
  text-align: center;
  max-width: 600px;
}

.hc-404__code {
  font-size: 120px;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--hc-gray-200);
  font-weight: 800;
}

.hc-404__title {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.hc-404__desc {
  color: var(--hc-gray-500);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hc-404__search {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto 32px;
}

.hc-404__search-input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--hc-gray-200);
  border-radius: var(--hc-radius);
  font-size: 0.95rem;
}

.hc-404__search-input:focus {
  outline: none;
  border-color: var(--hc-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.hc-404__links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hc-404__code {
    font-size: 80px;
  }
  .hc-404__search {
    flex-direction: column;
  }
  .hc-404__links {
    flex-direction: column;
    align-items: stretch;
  }
}
/* ─────────────────────────────────────────────────
   Pagination
   ───────────────────────────────────────────────── */
.hc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--hc-gray-100);
  flex-wrap: wrap;
}

.hc-pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--hc-radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hc-gray-600);
  background: var(--hc-gray-50);
  border: 1px solid var(--hc-gray-200);
  text-decoration: none;
  transition: all 0.15s;
}

.hc-pagination__btn:hover {
  background: var(--hc-primary);
  color: #fff;
  border-color: var(--hc-primary);
}

.hc-pagination__btn--disabled {
  opacity: 0.4;
  pointer-events: none;
}

.hc-pagination__pages {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hc-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--hc-radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hc-gray-600);
  text-decoration: none;
  transition: all 0.15s;
}

.hc-pagination__page:hover {
  background: var(--hc-gray-100);
}

.hc-pagination__page--active {
  background: var(--hc-primary);
  color: #fff;
  pointer-events: none;
}

.hc-pagination__dots {
  color: var(--hc-gray-400);
  padding: 0 4px;
}

@media (max-width: 480px) {
  .hc-pagination__btn span {
    display: none;
  }
  .hc-pagination__pages {
    gap: 2px;
  }
  .hc-pagination__page {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}
/* ============================================
   Responsive — Global
   ============================================ */
@media (max-width: 1200px) {
  .hc-hero__grid {
    grid-template-columns: 1fr 380px;
    gap: var(--hc-space-10);
  }
}
@media (max-width: 1024px) {
  .hc-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--hc-space-8);
    text-align: center;
  }
  .hc-hero__content {
    max-width: 100%;
  }
  .hc-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hc-hero__types {
    justify-content: center;
  }
  .hc-hero__actions {
    justify-content: center;
  }
  .hc-hero__search {
    max-width: 460px;
    margin: 0 auto;
  }
  .hc-hero__scroll {
    display: none;
  }
  .hc-hero__glow {
    display: none;
  }
  .hc-hero__island {
    display: none;
  }
  .hc-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hc-testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
  .hc-how__connector {
    display: none;
  }
  .hc-how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--hc-space-8);
  }
  .hc-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--hc-space-8);
  }
  .hc-footer__newsletter {
    flex-direction: column;
    text-align: center;
  }
  .hc-footer__newsletter-form {
    min-width: unset;
    width: 100%;
    max-width: 400px;
  }
  /* Header mobile */
  .hc-header__nav {
    display: none;
  }
  .hc-header__actions .hc-btn--ghost {
    display: none;
  }
  .hc-account-dd {
    display: none;
  }
  .hc-header__mobile-toggle {
    display: flex;
  }
  .hc-featured__arrow {
    display: none;
  }
  .hc-featured__slide {
    flex: 0 0 300px;
  }
}
@media (max-width: 768px) {
  .hc-hero {
    min-height: 90vh;
  }
  .hc-trust__grid {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }
  .hc-trust__divider {
    width: 48px;
    height: 1px;
  }
  .hc-trust {
    margin-top: -32px;
  }
  .hc-how__grid {
    grid-template-columns: 1fr;
    gap: var(--hc-space-6);
    max-width: 360px;
    margin: 0 auto;
  }
  .hc-why__grid {
    grid-template-columns: 1fr;
  }
  .hc-testimonials__grid {
    grid-template-columns: 1fr;
  }
  .hc-featured__slide {
    flex: 0 0 280px;
  }
  .hc-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--hc-space-6);
  }
  .hc-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .hc-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  .hc-hero__type-chip {
    padding: 8px 14px 8px 10px;
    font-size: var(--hc-text-xs);
  }
  .hc-hero__type-chip img.hc-hero__type-icon {
    height: 22px;
  }
  .hc-section {
    padding: var(--hc-space-16) 0;
  }
}
/* ============================================================
   MY ACCOUNT – Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hc-ma {
    grid-template-columns: 220px 1fr;
  }
  .hc-ma__content {
    padding: var(--hc-space-6, 24px);
  }
  .hc-ma__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .hc-ma__booking-img {
    width: 140px;
  }
}
@media (max-width: 768px) {
  .hc-ma {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hc-ma__sidebar {
    display: none;
  }
  .hc-ma__mobile-tabs {
    display: flex;
    overflow-x: auto;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--hc-gray-200, #e2e8f0);
    padding: 0;
    position: sticky;
    top: var(--hc-header-height, 72px);
    z-index: 10;
    -webkit-overflow-scrolling: touch;
  }
  .hc-ma__mobile-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--hc-space-3, 12px) var(--hc-space-4, 16px);
    text-decoration: none;
    color: var(--hc-gray-500, #64748b);
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    flex-shrink: 0;
    transition: all 0.15s ease;
  }
  .hc-ma__mobile-tab--active {
    color: var(--hc-primary, #2563EB);
    border-bottom-color: var(--hc-primary, #2563EB);
  }
  .hc-ma__content {
    padding: var(--hc-space-5, 20px) var(--hc-space-4, 16px) var(--hc-space-10, 40px);
  }
  .hc-ma__page-title {
    font-size: 1.4rem;
  }
  .hc-ma__stats {
    grid-template-columns: 1fr;
    gap: var(--hc-space-3, 12px);
  }
  .hc-ma__quick-actions {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--hc-space-3, 12px);
  }
  .hc-ma__quick-card {
    padding: var(--hc-space-4, 16px) var(--hc-space-3, 12px);
  }
  .hc-ma__next-card {
    flex-direction: column;
    align-items: stretch;
  }
  .hc-ma__next-img {
    width: 100%;
    height: 160px;
  }
  .hc-ma__next-right {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .hc-ma__booking-card:not(.hc-ma__booking-card--compact) {
    flex-direction: column;
  }
  .hc-ma__booking-card:not(.hc-ma__booking-card--compact) .hc-ma__booking-img {
    width: 100%;
    height: 160px;
  }
  .hc-ma__form-grid {
    grid-template-columns: 1fr;
  }
  .hc-ma__doc-grid {
    grid-template-columns: 1fr;
  }
  .hc-ma__info-grid {
    grid-template-columns: 1fr;
    gap: var(--hc-space-4, 16px);
  }
}
@media (max-width: 480px) {
  .hc-ma__quick-actions {
    grid-template-columns: 1fr;
  }
  .hc-ma__booking-card--compact {
    flex-wrap: wrap;
  }
  .hc-ma__booking-card--compact .hc-ma__booking-right {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    padding-top: var(--hc-space-3, 12px);
    border-top: 1px solid var(--hc-gray-100, #f1f5f9);
  }
  .hc-ma__booking-footer {
    flex-wrap: wrap;
  }
  .hc-ma__booking-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
  .hc-modal__dates {
    grid-template-columns: 1fr;
  }
  .hc-ma__success-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--hc-space-4, 16px);
  }
  .hc-ma__stat-value {
    font-size: 1.25rem;
  }
}
/* ╔══════════════════════════════════════════════════════════════════╗
   ║  VEHICLES PAGE — Hero, Filters, Toolbar, Grid/List, Empty      ║
   ╚══════════════════════════════════════════════════════════════════╝ */
/* ─── Hero Section ──────────────────────────────────────────── */
.hc-vehicles-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hc-vehicles-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hc-vehicles-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hc-vehicles-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hc-vehicles-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hc-vehicles-hero__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hc-vehicles-hero__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hc-vehicles-hero__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 18px;
  backdrop-filter: blur(4px);
}

.hc-vehicles-hero__stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--stat-color) 15%, transparent);
  color: var(--stat-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hc-vehicles-hero__stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--hc-font-heading);
  line-height: 1;
}

.hc-vehicles-hero__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* ─── Vehicles Section ──────────────────────────────────────── */
.hc-vehicles-section {
  padding: 40px 0 80px;
  background: var(--hc-gray-50, #f8fafc);
  min-height: 60vh;
}

/* ─── Type Tabs ─────────────────────────────────────────────── */
.hc-vehicles-types {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hc-vehicles-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--hc-gray-200);
  background: #fff;
  color: var(--hc-gray-600);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.hc-vehicles-type__icon {
  display: flex;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.hc-vehicles-type:hover {
  border-color: var(--hc-gray-400);
  color: var(--hc-gray-800);
  background: var(--hc-gray-50);
}

.hc-vehicles-type:hover .hc-vehicles-type__icon {
  opacity: 0.8;
}

.hc-vehicles-type__count {
  background: var(--hc-gray-100);
  color: var(--hc-gray-500);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
}

.hc-vehicles-type--active {
  background: var(--type-color, var(--hc-primary));
  color: #fff;
  border-color: var(--type-color, var(--hc-primary));
  font-weight: 600;
}

.hc-vehicles-type--active .hc-vehicles-type__icon {
  opacity: 1;
}

.hc-vehicles-type--active .hc-vehicles-type__count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hc-vehicles-type--active:hover {
  opacity: 0.92;
  background: var(--type-color, var(--hc-primary));
  color: #fff;
  border-color: var(--type-color, var(--hc-primary));
}

/* ─── Category Pills ────────────────────────────────────────── */
.hc-vehicles-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hc-vehicles-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--hc-gray-200);
  background: #fff;
  color: var(--hc-gray-600);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
}

.hc-vehicles-cat:hover {
  border-color: var(--hc-primary);
  color: var(--hc-primary);
}

.hc-vehicles-cat__count {
  opacity: 0.5;
  font-size: 12px;
}

.hc-vehicles-cat--active {
  background: var(--hc-primary);
  color: #fff;
  border-color: var(--hc-primary);
}

.hc-vehicles-cat--active:hover {
  background: var(--hc-primary);
  color: #fff;
  opacity: 0.9;
}

.hc-vehicles-cat--active .hc-vehicles-cat__count {
  opacity: 0.8;
}

/* ─── Toolbar ───────────────────────────────────────────────── */
.hc-vehicles-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--hc-gray-200);
}

.hc-vehicles-toolbar__count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--hc-gray-500);
}

.hc-vehicles-toolbar__count strong {
  color: var(--hc-gray-900);
}

.hc-vehicles-toolbar__count .hc-icon {
  opacity: 0.4;
}

.hc-vehicles-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Sort Dropdown ──── */
.hc-vehicles-sort {
  position: relative;
}

.hc-vehicles-sort__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--hc-gray-200);
  border-radius: 10px;
  background: #fff;
  color: var(--hc-gray-700);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.hc-vehicles-sort__trigger:hover {
  border-color: var(--hc-gray-400);
  background: var(--hc-gray-50);
}

.hc-vehicles-sort__trigger .hc-icon:last-child {
  transition: transform 0.2s;
  opacity: 0.4;
}

.hc-vehicles-sort--open .hc-vehicles-sort__trigger .hc-icon:last-child {
  transform: rotate(180deg);
}

.hc-vehicles-sort__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--hc-gray-200);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.15s ease;
  z-index: 100;
}

.hc-vehicles-sort--open .hc-vehicles-sort__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hc-vehicles-sort__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--hc-gray-700);
  text-decoration: none;
  transition: background 0.15s;
}

.hc-vehicles-sort__item:hover {
  background: var(--hc-gray-100);
}

.hc-vehicles-sort__item--active {
  color: var(--hc-primary);
  font-weight: 600;
}

/* ── View Toggle ──── */
.hc-vehicles-view {
  display: flex;
  border: 1px solid var(--hc-gray-200);
  border-radius: 10px;
  overflow: hidden;
}

.hc-vehicles-view__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  color: var(--hc-gray-400);
  text-decoration: none;
  transition: all 0.15s ease;
  background: #fff;
}

.hc-vehicles-view__btn + .hc-vehicles-view__btn {
  border-left: 1px solid var(--hc-gray-200);
}

.hc-vehicles-view__btn:hover {
  color: var(--hc-gray-700);
  background: var(--hc-gray-50);
}

.hc-vehicles-view__btn--active {
  color: var(--hc-primary);
  background: var(--hc-primary-light, rgba(37, 99, 235, 0.08));
}

/* ─── Grid / List Layouts ───────────────────────────────────── */
.hc-vehicles-grid--list {
  grid-template-columns: 1fr !important;
}

.hc-vehicle-card--list {
  flex-direction: row;
}

.hc-vehicle-card--list .hc-vehicle-card__image-link {
  width: 280px;
  flex-shrink: 0;
}

.hc-vehicle-card--list .hc-vehicle-card__image {
  height: 100%;
  aspect-ratio: auto;
  border-radius: var(--hc-radius-xl) 0 0 var(--hc-radius-xl);
}

.hc-vehicle-card--list .hc-vehicle-card__body {
  flex: 1;
  justify-content: center;
}

/* ─── SVG Icon base ─────────────────────────────────────────── */
.hc-icon {
  flex-shrink: 0;
  display: inline-flex;
  vertical-align: middle;
}

/* ─── Vehicle card placeholder with SVG ─────────────────────── */
.hc-vehicle-card__placeholder .hc-icon {
  color: var(--hc-gray-300);
}

/* ─── Vehicle card badge with SVG icon ──────────────────────── */
.hc-vehicle-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hc-vehicle-card__badge .hc-icon {
  opacity: 0.8;
}

/* ─── Vehicle card spec with SVG icon ───────────────────────── */
.hc-vehicle-card__spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hc-vehicle-card__spec .hc-icon {
  opacity: 0.45;
  color: var(--hc-gray-500);
}

/* ─── Button icons ──────────────────────────────────────────── */
.hc-btn .hc-icon {
  margin-right: 2px;
}

/* ─── Empty State ───────────────────────────────────────────── */
.hc-vehicles-empty {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
}

.hc-vehicles-empty__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--hc-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-gray-300);
  margin-bottom: 24px;
}

.hc-vehicles-empty__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hc-gray-900);
  margin-bottom: 8px;
}

.hc-vehicles-empty__desc {
  color: var(--hc-gray-500);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hc-vehicle-card--list .hc-vehicle-card__image-link {
    width: 220px;
  }
}
@media (max-width: 768px) {
  .hc-vehicles-hero {
    padding: 60px 0 40px;
  }
  .hc-vehicles-hero__title {
    font-size: 1.75rem;
  }
  .hc-vehicles-hero__stats {
    gap: 12px;
  }
  .hc-vehicles-hero__stat {
    padding: 10px 14px;
  }
  .hc-vehicles-hero__stat-num {
    font-size: 1.15rem;
  }
  .hc-vehicles-types {
    gap: 6px;
  }
  .hc-vehicles-type {
    padding: 8px 14px;
    font-size: 13px;
  }
  .hc-vehicles-type__label {
    display: none;
  }
  /* List → grid on mobile */
  .hc-vehicles-grid--list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  }
  .hc-vehicle-card--list {
    flex-direction: column;
  }
  .hc-vehicle-card--list .hc-vehicle-card__image-link {
    width: auto;
  }
  .hc-vehicle-card--list .hc-vehicle-card__image {
    aspect-ratio: 16/10;
    border-radius: var(--hc-radius-xl) var(--hc-radius-xl) 0 0;
  }
  .hc-vehicles-toolbar {
    flex-wrap: wrap;
  }
  .hc-vehicles-view {
    display: none;
  }
}
@media (max-width: 480px) {
  .hc-vehicles-hero__stats {
    flex-direction: column;
  }
}
/* ═══════════════════════════════════════════════════════════════
   BOOKING PAGE
   ═══════════════════════════════════════════════════════════════ */
.hc-booking-section {
  padding-top: 24px;
  padding-bottom: 60px;
  background: var(--hc-gray-50);
  min-height: 70vh;
}

/* ── Progress Bar ──────────────────────────────────────────── */
.hc-booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hc-booking-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.hc-booking-progress__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hc-gray-200);
  color: var(--hc-gray-400);
  transition: all 0.3s ease;
  border: 3px solid var(--hc-gray-200);
}

.hc-booking-progress__step.active .hc-booking-progress__circle {
  background: var(--hc-primary);
  color: #fff;
  border-color: var(--hc-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.hc-booking-progress__step.completed .hc-booking-progress__circle {
  background: var(--hc-success, #10B981);
  color: #fff;
  border-color: var(--hc-success, #10B981);
}

.hc-booking-progress__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hc-gray-400);
  transition: color 0.3s;
}

.hc-booking-progress__step.active .hc-booking-progress__label,
.hc-booking-progress__step.completed .hc-booking-progress__label {
  color: var(--hc-gray-700);
}

.hc-booking-progress__line {
  flex: 1;
  height: 3px;
  background: var(--hc-gray-200);
  margin: 0 -4px;
  position: relative;
  top: -14px;
  border-radius: 2px;
  overflow: hidden;
  min-width: 40px;
}

.hc-booking-progress__line-fill {
  width: 0%;
  height: 100%;
  background: var(--hc-primary);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.hc-booking-progress__line.filled .hc-booking-progress__line-fill {
  width: 100%;
}

/* ── Layout ────────────────────────────────────────────────── */
.hc-booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* ── Booking Card (form sections) ──────────────────────────── */
.hc-booking-card {
  background: #fff;
  border-radius: var(--hc-radius-xl, 16px);
  padding: 28px;
  margin-bottom: 20px;
  border: 1px solid var(--hc-gray-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hc-booking-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hc-gray-100);
}

.hc-booking-card__header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--hc-gray-800);
}

.hc-booking-card__header .hc-icon {
  color: var(--hc-primary);
}

.hc-booking-card__subheader {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.hc-booking-card__subheader h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.hc-booking-card__subheader .hc-icon {
  color: var(--hc-primary);
}

/* ── Vehicle Picker (category-based) ──────────────────────── */
.hc-vehicle-picker {
  margin-top: 16px;
}

.hc-vehicle-picker__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 0;
  color: var(--hc-gray-400);
  font-size: 0.9rem;
}

.hc-vp-category {
  margin-bottom: 8px;
  border: 1px solid var(--hc-gray-100);
  border-radius: var(--hc-radius-lg, 12px);
  overflow: hidden;
  background: #fff;
}

.hc-vp-category__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font: inherit;
  transition: background 0.15s;
}

.hc-vp-category__header:hover {
  background: var(--hc-gray-50);
}

.hc-vp-category__icon {
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  color: var(--hc-primary, #2563eb);
}

.hc-vp-category__icon .hc-icon--cat {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hc-vp-category__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hc-gray-800);
  margin: 0;
  flex: 1;
}

.hc-vp-category__count {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--hc-primary);
  background: rgba(var(--hc-primary-rgb, 59, 130, 246), 0.08);
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 22px;
  text-align: center;
}

.hc-vp-category__chevron {
  color: var(--hc-gray-400);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.hc-vp-category.open .hc-vp-category__chevron {
  transform: rotate(180deg);
}

.hc-vp-category__body {
  padding: 0 16px 16px;
}

.hc-vp-category__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

/* ── Type Tabs ────────────────────────────────────────────── */
.hc-vp-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.hc-vp-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid var(--hc-gray-100);
  border-radius: var(--hc-radius-lg, 12px);
  background: #fff;
  color: var(--hc-gray-600);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  justify-content: center;
}

.hc-vp-tab:hover {
  border-color: var(--hc-primary-light, #93C5FD);
  color: var(--hc-primary);
}

.hc-vp-tab.active {
  border-color: var(--hc-primary);
  background: rgba(var(--hc-primary-rgb, 59, 130, 246), 0.04);
  color: var(--hc-primary);
}

.hc-vp-tab .hc-icon--cat {
  width: 18px;
  height: 18px;
}

.hc-vp-tab__count {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--hc-gray-100);
  color: var(--hc-gray-500);
  padding: 1px 7px;
  border-radius: 8px;
}

.hc-vp-tab.active .hc-vp-tab__count {
  background: rgba(var(--hc-primary-rgb, 59, 130, 246), 0.12);
  color: var(--hc-primary);
}

/* ── Selection Banner ─────────────────────────────────────── */
.hc-vp-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: rgba(var(--hc-primary-rgb, 59, 130, 246), 0.04);
  border: 2px solid var(--hc-primary);
  border-radius: var(--hc-radius-lg, 12px);
  animation: hc-fadeIn 0.3s ease;
}

@keyframes hc-fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hc-vp-selection__info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.hc-vp-selection__img {
  width: 56px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--hc-gray-100);
  flex-shrink: 0;
}

.hc-vp-selection__text {
  min-width: 0;
}

.hc-vp-selection__text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hc-gray-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-vp-selection__text span {
  font-size: 0.75rem;
  color: var(--hc-gray-500);
}

.hc-vp-selection__price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--hc-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.hc-vp-selection__change {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--hc-gray-200);
  border-radius: 8px;
  background: #fff;
  color: var(--hc-gray-600);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hc-vp-selection__change:hover {
  border-color: var(--hc-primary);
  color: var(--hc-primary);
  background: rgba(var(--hc-primary-rgb, 59, 130, 246), 0.04);
}

/* ── Vehicle Cards ────────────────────────────────────────── */
.hc-vp-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--hc-gray-100);
  border-radius: var(--hc-radius-lg, 12px);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.hc-vp-card:hover {
  border-color: var(--hc-primary-light, #93C5FD);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.hc-vp-card.selected {
  border-color: var(--hc-primary);
  box-shadow: 0 0 0 3px rgba(var(--hc-primary-rgb, 59, 130, 246), 0.15), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.hc-vp-card__img-wrap {
  height: 110px;
  background: var(--hc-gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hc-vp-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-vp-card__placeholder {
  color: var(--hc-gray-300);
}

.hc-vp-card__body {
  padding: 10px 12px 12px;
}

.hc-vp-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hc-gray-800);
  margin: 0 0 4px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-vp-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.hc-vp-card__specs span {
  font-size: 0.7rem;
  color: var(--hc-gray-500);
  background: var(--hc-gray-50);
  padding: 2px 6px;
  border-radius: 4px;
}

.hc-vp-card__price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--hc-primary);
}

.hc-vp-card__price small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--hc-gray-400);
}

.hc-vp-card__check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hc-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}

.hc-vp-card.selected .hc-vp-card__check {
  opacity: 1;
  transform: scale(1);
}

/* ── Vehicle Detail Popup (desktop hover) ─────────────────── */
.hc-vehicle-detail-popup {
  position: absolute;
  z-index: 1000;
  width: 320px;
  background: #fff;
  border-radius: var(--hc-radius-xl, 16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hc-vehicle-detail-popup.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hc-vehicle-detail-popup__arrow {
  position: absolute;
  top: 20px;
  left: -6px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.06);
}

.hc-vehicle-detail-popup.left .hc-vehicle-detail-popup__arrow {
  left: auto;
  right: -6px;
  box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.06);
}

.hc-vehicle-detail-popup__inner {
  overflow: hidden;
  border-radius: var(--hc-radius-xl, 16px);
}

.hc-vehicle-detail-popup__gallery {
  height: 160px;
  background: var(--hc-gray-50);
  overflow: hidden;
}

.hc-vehicle-detail-popup__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-vehicle-detail-popup__body {
  padding: 16px;
}

.hc-vehicle-detail-popup__body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hc-gray-800);
  margin: 0 0 2px;
}

.hc-vehicle-detail-popup__meta {
  font-size: 0.8rem;
  color: var(--hc-gray-400);
}

.hc-vehicle-detail-popup__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.hc-vdp-spec {
  font-size: 0.78rem;
  color: var(--hc-gray-600);
  background: var(--hc-gray-50);
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hc-vehicle-detail-popup__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--hc-gray-100);
}

.hc-vehicle-detail-popup__price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--hc-primary);
}

.hc-vehicle-detail-popup__price-unit {
  font-size: 0.8rem;
  color: var(--hc-gray-400);
}

/* ── Vehicle Picker Responsive ────────────────────────────── */
@media (max-width: 640px) {
  .hc-vp-tabs {
    flex-direction: row;
  }
  .hc-vp-tab {
    padding: 8px 12px;
    font-size: 0.82rem;
  }
  .hc-vp-selection {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hc-vp-selection__change {
    justify-content: center;
  }
  .hc-vp-category__grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  .hc-vp-card__img-wrap {
    height: 90px;
  }
  .hc-vp-card__body {
    padding: 8px 10px 10px;
  }
  .hc-vp-card__name {
    font-size: 0.8rem;
  }
}
/* ── Sidebar Vehicle Card ─────────────────────────────────── */
.hc-sidebar-vehicle-card {
  padding: 0 !important;
  overflow: hidden;
  margin-bottom: 12px !important;
}

.hc-sidebar-vehicle__img-wrap {
  height: 140px;
  background: var(--hc-gray-50);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-sidebar-vehicle__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-sidebar-vehicle__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-gray-300);
  width: 100%;
  height: 100%;
}

.hc-sidebar-vehicle__info {
  padding: 14px 18px 16px;
}

.hc-sidebar-vehicle__info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hc-gray-800);
  margin: 0 0 2px;
}

.hc-sidebar-vehicle__meta {
  font-size: 0.8rem;
  color: var(--hc-gray-500);
}

/* ── Sidebar Locations Card ───────────────────────────────── */
.hc-sidebar-locations {
  padding: 16px 18px !important;
  margin-bottom: 12px !important;
}

.hc-sidebar-locations__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hc-sidebar-locations__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hc-sidebar-locations__icon--pickup {
  background: #DCFCE7;
  color: #16A34A;
}

.hc-sidebar-locations__icon--return {
  background: #DBEAFE;
  color: #2563EB;
}

.hc-sidebar-locations__text {
  flex: 1;
  min-width: 0;
}

.hc-sidebar-locations__text small {
  display: block;
  font-size: 0.7rem;
  color: var(--hc-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 2px;
}

.hc-sidebar-locations__text span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hc-gray-700);
  display: block;
  line-height: 1.3;
}

.hc-sidebar-locations__text span small {
  font-size: 0.75rem;
  color: var(--hc-gray-400);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 1px;
}

.hc-sidebar-loc-same {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--hc-primary);
  background: rgba(var(--hc-primary-rgb, 59, 130, 246), 0.08);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.hc-sidebar-locations__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 4px 10px;
  color: var(--hc-gray-300);
}

/* ── Vehicle Card (in booking) ─────────────────────────────── */
.hc-booking-vehicle {
  display: flex;
  gap: 20px;
  padding: 16px;
  border-radius: var(--hc-radius-lg, 12px);
  background: var(--hc-gray-50);
  border: 1px solid var(--hc-gray-100);
  margin-bottom: 20px;
}

.hc-booking-vehicle__img {
  width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--hc-radius-md, 8px);
  flex-shrink: 0;
}

.hc-booking-vehicle__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hc-gray-100);
  color: var(--hc-gray-400);
}

.hc-booking-vehicle__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hc-booking-vehicle__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.hc-booking-vehicle__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--hc-gray-800);
}

.hc-booking-vehicle__meta {
  font-size: 0.85rem;
  color: var(--hc-gray-500);
}

.hc-booking-vehicle__price {
  text-align: right;
  white-space: nowrap;
}

.hc-booking-vehicle__price-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--hc-primary);
}

.hc-booking-vehicle__price-unit {
  font-size: 0.8rem;
  color: var(--hc-gray-500);
}

.hc-booking-vehicle__specs {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.hc-booking-vehicle__spec {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--hc-gray-600);
}

.hc-booking-vehicle__spec .hc-icon {
  color: var(--hc-gray-400);
}

/* ── Form Elements ─────────────────────────────────────────── */
.hc-booking-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.hc-booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hc-form-group label .hc-icon {
  vertical-align: -2px;
  margin-right: 2px;
  color: var(--hc-gray-400);
}

/* ── Notices ────────────────────────────────────────────────── */
.hc-booking-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--hc-radius-md, 8px);
  margin-bottom: 20px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.hc-booking-notice .hc-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.hc-booking-notice--info {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1E40AF;
}

.hc-booking-notice--info .hc-icon {
  color: #3B82F6;
}

.hc-booking-notice--warning {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #92400E;
}

.hc-booking-notice--warning .hc-icon {
  color: #F59E0B;
}

.hc-booking-notice--success {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
}

.hc-booking-notice--success .hc-icon {
  color: #10B981;
}

.hc-booking-notice--error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
}

.hc-booking-notice--error .hc-icon {
  color: #EF4444;
}

.hc-booking-notice div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hc-booking-notice strong {
  font-weight: 700;
}

/* ── Greeting ──────────────────────────────────────────────── */
.hc-booking-greeting {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #EFF6FF, #F0FDF4);
  border-radius: var(--hc-radius-lg, 12px);
  margin-bottom: 20px;
}

.hc-booking-greeting__avatar img {
  border-radius: 50%;
  border: 2px solid var(--hc-primary);
}

.hc-booking-greeting__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hc-booking-greeting__text strong {
  font-size: 1rem;
  color: var(--hc-gray-800);
}

.hc-booking-greeting__text span {
  font-size: 0.85rem;
  color: var(--hc-gray-500);
}

/* ── Driver License Upload ─────────────────────────────────── */
.hc-booking-license {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--hc-gray-100);
}

.hc-license-uploads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.hc-license-upload__area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 16px;
  border: 2px dashed var(--hc-gray-300);
  border-radius: var(--hc-radius-lg, 12px);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--hc-gray-50);
  text-align: center;
}

.hc-license-upload__area:hover {
  border-color: var(--hc-primary);
  background: #EFF6FF;
}

.hc-license-upload__area .hc-icon {
  color: var(--hc-gray-400);
}

.hc-license-upload__area:hover .hc-icon {
  color: var(--hc-primary);
}

.hc-license-upload__area strong {
  font-size: 0.9rem;
  color: var(--hc-gray-700);
}

.hc-license-upload__area span {
  font-size: 0.75rem;
  color: var(--hc-gray-400);
}

.hc-license-upload__preview {
  position: relative;
  border-radius: var(--hc-radius-lg, 12px);
  overflow: hidden;
  border: 2px solid var(--hc-success, #10B981);
}

.hc-license-upload__preview img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.hc-license-upload__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.hc-license-upload__remove:hover {
  background: rgba(220, 38, 38, 0.9);
}

/* ── Extras ─────────────────────────────────────────────────── */
.hc-extras-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc-extra-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-md, 8px);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.hc-extra-item:hover {
  border-color: var(--hc-primary);
  background: var(--hc-gray-50);
}

.hc-extra-item input[type=checkbox] {
  display: none;
}

.hc-extra-item input[type=checkbox]:checked + .hc-extra-item__content {
  color: var(--hc-primary);
}

.hc-extra-item input[type=checkbox]:checked ~ .hc-extra-item__check {
  opacity: 1;
  transform: scale(1);
}

.hc-extra-item:has(input:checked) {
  border-color: var(--hc-primary);
  background: #EFF6FF;
}

.hc-extra-item__content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.hc-extra-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hc-extra-item__text strong {
  font-size: 0.9rem;
}

.hc-extra-item__text span {
  font-size: 0.78rem;
  color: var(--hc-gray-500);
}

.hc-extra-item__price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--hc-primary);
  white-space: nowrap;
}

.hc-extra-item__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--hc-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s;
  flex-shrink: 0;
}

/* ── Step Navigation ───────────────────────────────────────── */
.hc-booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.hc-btn--ghost {
  background: transparent;
  color: var(--hc-gray-600);
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--hc-radius-md, 8px);
  transition: all 0.2s;
}

.hc-btn--ghost:hover {
  background: var(--hc-gray-100);
  color: var(--hc-gray-800);
}

/* ── Summary (Step 3) ──────────────────────────────────────── */
.hc-booking-summary {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hc-summary-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hc-gray-100);
}

.hc-summary-row:last-child {
  border-bottom: none;
}

.hc-summary-row__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--hc-radius-md, 8px);
  background: var(--hc-gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--hc-primary);
}

.hc-summary-row__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hc-summary-row__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hc-gray-400);
  font-weight: 600;
}

.hc-summary-row__content strong {
  font-size: 0.95rem;
  color: var(--hc-gray-800);
}

.hc-summary-row__sub {
  font-size: 0.85rem;
  color: var(--hc-gray-500);
}

.hc-summary-row__edit {
  background: none;
  border: none;
  color: var(--hc-primary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: var(--hc-radius-sm, 4px);
  transition: background 0.2s;
  white-space: nowrap;
}

.hc-summary-row__edit:hover {
  background: #EFF6FF;
}

/* ── Payment Options ───────────────────────────────────────── */
.hc-payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc-payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 2px solid var(--hc-gray-200);
  border-radius: var(--hc-radius-lg, 12px);
  cursor: pointer;
  transition: all 0.2s;
}

.hc-payment-option:hover {
  border-color: var(--hc-gray-300);
}

.hc-payment-option.active {
  border-color: var(--hc-primary);
  background: #EFF6FF;
}

.hc-payment-option input[type=radio] {
  display: none;
}

.hc-payment-option__radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--hc-gray-300);
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.hc-payment-option.active .hc-payment-option__radio {
  border-color: var(--hc-primary);
}

.hc-payment-option.active .hc-payment-option__radio::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hc-primary);
}

.hc-payment-option__content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.hc-payment-option__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--hc-radius-md, 8px);
  background: var(--hc-gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-primary);
  flex-shrink: 0;
}

.hc-payment-option.active .hc-payment-option__icon {
  background: var(--hc-primary);
  color: #fff;
}

.hc-payment-option__content strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hc-payment-option__content span {
  font-size: 0.8rem;
  color: var(--hc-gray-500);
}

.hc-stripe-element {
  padding: 14px;
  border: 1px solid var(--hc-gray-300);
  border-radius: var(--hc-radius-md, 8px);
  background: #fff;
}

/* ── Terms ──────────────────────────────────────────────────── */
.hc-booking-terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.hc-booking-terms input[type=checkbox] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--hc-primary);
}

.hc-booking-terms span {
  font-size: 0.88rem;
  color: var(--hc-gray-600);
  line-height: 1.5;
}

.hc-booking-terms a {
  color: var(--hc-primary);
  text-decoration: underline;
}

/* ── Loading ───────────────────────────────────────────────── */
.hc-booking-loading {
  text-align: center;
  padding: 40px;
}

.hc-booking-loading p {
  margin-top: 16px;
  color: var(--hc-gray-600);
  font-weight: 500;
}

/* ── Sidebar ───────────────────────────────────────────────── */
.hc-booking-sidebar__sticky {
  position: sticky;
  top: 100px;
}

/* ── Price Card ────────────────────────────────────────────── */
.hc-booking-price-card {
  background: #fff;
}

.hc-booking-price-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--hc-gray-800);
}

.hc-booking-price-card__title .hc-icon {
  color: var(--hc-primary);
}

.hc-price-empty {
  text-align: center;
  padding: 24px 0;
  color: var(--hc-gray-400);
  font-size: 0.9rem;
}

.hc-price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--hc-gray-600);
}

.hc-price-row--discount {
  color: var(--hc-success, #10B981);
}

.hc-price-row--discount .hc-icon {
  vertical-align: -1px;
}

.hc-price-row--total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 2px solid var(--hc-gray-800);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hc-gray-800);
}

.hc-price-row--deposit {
  color: var(--hc-gray-400);
  font-size: 0.85rem;
  padding-top: 8px;
  border-top: 1px dashed var(--hc-gray-200);
  margin-top: 4px;
}

/* ── Trust Badges ──────────────────────────────────────────── */
.hc-booking-trust {
  background: #fff;
  border-radius: var(--hc-radius-xl, 16px);
  padding: 20px 24px;
  margin-bottom: 20px;
  border: 1px solid var(--hc-gray-100);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hc-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--hc-gray-600);
  font-weight: 500;
}

.hc-trust-badge .hc-icon {
  color: var(--hc-success, #10B981);
  flex-shrink: 0;
}

/* ── Info Box ──────────────────────────────────────────────── */
.hc-booking-info {
  background: #fff;
  border-radius: var(--hc-radius-xl, 16px);
  padding: 20px 24px;
  border: 1px solid var(--hc-gray-100);
}

.hc-booking-info__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.hc-booking-info__header .hc-icon {
  color: var(--hc-primary);
}

.hc-booking-info ul {
  margin: 0;
  padding-left: 18px;
}

.hc-booking-info li {
  font-size: 0.82rem;
  color: var(--hc-gray-500);
  line-height: 1.7;
}

/* ── Badge variations ──────────────────────────────────────── */
.hc-badge--warning {
  background: #FFFBEB;
  color: #92400E;
  border: 1px solid #FDE68A;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}

/* ── Field error ───────────────────────────────────────────── */
.hc-field-error {
  color: var(--hc-error, #DC2626);
  font-size: 0.82rem;
  margin-top: 6px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hc-booking-layout {
    grid-template-columns: 1fr;
  }
  .hc-booking-sidebar {
    order: -1;
  }
  .hc-booking-sidebar__sticky {
    position: static;
  }
  .hc-booking-price-card {
    display: none; /* Show only on desktop; mobile sees inline prices */
  }
  .hc-sidebar-vehicle-card {
    display: none;
  }
  .hc-sidebar-locations {
    display: none !important;
  }
  .hc-vehicle-detail-popup {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .hc-booking-section {
    padding-top: 16px;
    padding-bottom: 40px;
  }
  .hc-booking-progress {
    margin-bottom: 24px;
  }
  .hc-booking-progress__circle {
    width: 40px;
    height: 40px;
  }
  .hc-booking-progress__label {
    font-size: 0.72rem;
  }
  .hc-booking-card {
    padding: 20px 16px;
    border-radius: var(--hc-radius-lg, 12px);
  }
  .hc-booking-dates,
  .hc-booking-form-grid {
    grid-template-columns: 1fr;
  }
  .hc-license-uploads {
    grid-template-columns: 1fr;
  }
  .hc-booking-vehicle {
    flex-direction: column;
    gap: 12px;
  }
  .hc-booking-vehicle__img {
    width: 100%;
    height: 140px;
  }
  .hc-booking-vehicle__top {
    flex-direction: column;
    gap: 4px;
  }
  .hc-booking-vehicle__price {
    text-align: left;
  }
  .hc-vp-category__grid {
    grid-template-columns: 1fr 1fr;
  }
  .hc-booking-nav {
    flex-direction: column-reverse;
    gap: 12px;
  }
  .hc-booking-nav .hc-btn {
    width: 100%;
    justify-content: center;
  }
  .hc-booking-trust {
    display: none;
  }
  .hc-booking-info {
    display: none;
  }
  .hc-summary-row__edit {
    display: none;
  }
  .hc-payment-option {
    padding: 14px;
  }
  .hc-payment-option__icon {
    width: 40px;
    height: 40px;
  }
}
