/* ==========================================================================
   Hand Cleaned Theme — theme.css
   Custom PrestaShop 8.1.7 Theme for Hand Cleaned
   Professional Cleaning Services — Sydney
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens based on approved mockup)
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --hc-blue: #0ea5e9;
  --hc-blue-bright: #38bdf8;
  --hc-blue-dark: #0284c7;
  --hc-blue-deep: #0f172a;
  --hc-yellow-bg: #fef08a;
  --hc-yellow-icon: #eab308;
  --hc-yellow-dark: #ca8a04;
  --hc-white: #ffffff;
  --hc-off-white: #f8fafc;
  --hc-dark: #0f172a;
  --hc-text-primary: #1e293b;
  --hc-text-secondary: #64748b;
  --hc-border: #e2e8f0;

  /* Typography */
  --hc-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --hc-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --hc-space-xs: 0.25rem;
  --hc-space-sm: 0.5rem;
  --hc-space-md: 1rem;
  --hc-space-lg: 1.5rem;
  --hc-space-xl: 2rem;
  --hc-space-2xl: 3rem;
  --hc-space-3xl: 4rem;

  /* Border Radius */
  --hc-radius-sm: 6px;
  --hc-radius-md: 12px;
  --hc-radius-lg: 20px;
  --hc-radius-xl: 32px;
  --hc-radius-full: 9999px;

  /* Shadows */
  --hc-shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.04);
  --hc-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
  --hc-shadow-md: 0 10px 30px rgba(14, 165, 233, 0.12);
  --hc-shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.15);

  /* Transitions */
  --hc-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --hc-transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}


/* --------------------------------------------------------------------------
   Reset & Global Baseline
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--hc-font-primary) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: var(--hc-text-primary) !important;
  background-color: var(--hc-white) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#wrapper {
  padding: 0 !important;
  margin: 0 !important;
  min-height: 50vh;
}

#content-wrapper {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

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

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

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

.hc-section {
  padding: 80px 0;
  position: relative;
  width: 100%;
}


/* --------------------------------------------------------------------------
   Buttons & Common UI Components
   -------------------------------------------------------------------------- */
.hc-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 24px !important;
  border-radius: var(--hc-radius-full) !important;
  font-family: var(--hc-font-primary) !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  border: none !important;
  transition: all var(--hc-transition-fast) !important;
  white-space: nowrap !important;
}

.hc-btn--primary {
  background-color: var(--hc-blue-bright) !important;
  color: var(--hc-white) !important;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.35) !important;
}

.hc-btn--primary:hover {
  background-color: var(--hc-blue) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.45) !important;
}

.hc-btn--primary-light {
  background-color: var(--hc-blue-bright) !important;
  color: var(--hc-white) !important;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.4) !important;
}

.hc-btn--primary-light:hover {
  background-color: var(--hc-white) !important;
  color: var(--hc-blue-dark) !important;
  transform: translateY(-2px) !important;
}

.hc-btn--outline {
  background-color: transparent !important;
  color: var(--hc-blue) !important;
  border: 1px solid var(--hc-blue-bright) !important;
}

.hc-btn--outline:hover {
  background-color: var(--hc-blue-bright) !important;
  color: var(--hc-white) !important;
  transform: translateY(-2px) !important;
}

.hc-btn--dark {
  background-color: var(--hc-dark) !important;
  color: var(--hc-white) !important;
}

.hc-btn--dark:hover {
  background-color: var(--hc-blue-dark) !important;
  transform: translateY(-2px) !important;
}

.hc-btn--light-sm {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: var(--hc-white) !important;
  padding: 6px 16px !important;
  font-size: 0.8125rem !important;
}

.hc-btn--light-sm:hover {
  background-color: var(--hc-white) !important;
  color: var(--hc-blue-dark) !important;
}

.hc-btn--full {
  width: 100% !important;
}


/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.hc-section-header {
  margin-bottom: 48px;
}

.hc-section-header__subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--hc-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.hc-section-header__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--hc-dark);
  margin: 0;
  letter-spacing: -0.02em;
}


/* --------------------------------------------------------------------------
   HEADER (Approved Mockup Layout)
   -------------------------------------------------------------------------- */
.hc-header {
  background-color: var(--hc-white) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
  position: relative !important;
  z-index: 100 !important;
  box-shadow: var(--hc-shadow-subtle) !important;
  width: 100% !important;
}

/* Ensure no legacy PrestaShop header rows appear on homepage */
#index .header-nav,
#index .header-banner,
#index .hc-header__hooks-row,
.page-index .header-nav,
.page-index .header-banner,
.page-index .hc-header__hooks-row {
  display: none !important;
}

.hc-header__container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 24px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

.hc-header__brand {
  display: flex;
  align-items: center;
}

.hc-header__logo-wrapper {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.hc-header__logo-wrapper img,
.hc-header__brand img {
  max-height: 72px !important;
  height: 72px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.hc-header__actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.hc-header__phone-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background-color: var(--hc-yellow-bg) !important;
  color: var(--hc-dark) !important;
  padding: 5px 16px 5px 6px !important;
  border-radius: var(--hc-radius-full) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: transform var(--hc-transition-fast), box-shadow var(--hc-transition-fast) !important;
}

.hc-header__phone-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.25) !important;
  color: var(--hc-dark) !important;
}

.hc-header__phone-icon-bg {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--hc-yellow-icon);
  color: var(--hc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hc-header__phone-icon {
  fill: currentColor;
  display: block;
}

.hc-header__contact-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: var(--hc-blue-bright) !important;
  color: var(--hc-white) !important;
  padding: 8px 22px !important;
  border-radius: var(--hc-radius-full) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(56, 189, 248, 0.3) !important;
  white-space: nowrap !important;
}

.hc-header__contact-btn:hover {
  background-color: var(--hc-blue) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4) !important;
}

.hc-header__menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.hc-header__menu-icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--hc-dark);
  border-radius: 2px;
}


/* --------------------------------------------------------------------------
   1. HERO SECTION
   -------------------------------------------------------------------------- */
.hc-hero {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
  color: var(--hc-white) !important;
  padding: 80px 0 120px !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
}

.hc-hero__bg-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1 !important;
  opacity: 0.95 !important;
  pointer-events: none !important;
}

.hc-hero__video-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.20) 0%, rgba(2, 132, 199, 0.30) 100%) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.hc-hero__container {
  max-width: 1280px !important;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  padding: 0 24px;
}

.hc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--hc-yellow-bg);
  color: var(--hc-dark);
  padding: 6px 18px;
  border-radius: var(--hc-radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hc-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--hc-yellow-icon);
}

.hc-hero__title {
  font-size: 3.5rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: var(--hc-white) !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.03em !important;
}

.hc-hero__description {
  font-size: 1.125rem !important;
  line-height: 1.6 !important;
  opacity: 0.95 !important;
  margin-bottom: 36px !important;
  max-width: 520px !important;
  color: var(--hc-white) !important;
}

.hc-hero__image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-hero__backdrop-card {
  position: absolute;
  width: 90%;
  height: 90%;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--hc-radius-xl);
  transform: rotate(3deg);
  z-index: 1;
}

.hc-hero__image-holder {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 380px;
  border-radius: var(--hc-radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-hero__wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 5;
}

.hc-hero__wave-divider svg {
  width: 100%;
  height: 60px;
}


/* Floating Bubbles */
.hc-bubbles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hc-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  animation: hcFloatBubble 6s ease-in-out infinite alternate;
}

.hc-bubble--1 { width: 40px; height: 40px; top: 15%; left: 8%; animation-delay: 0s; }
.hc-bubble--2 { width: 60px; height: 60px; top: 60%; left: 4%; animation-delay: 1.5s; }
.hc-bubble--3 { width: 30px; height: 30px; top: 25%; left: 45%; animation-delay: 3s; }
.hc-bubble--4 { width: 50px; height: 50px; top: 70%; right: 12%; animation-delay: 2s; }
.hc-bubble--5 { width: 35px; height: 35px; top: 20%; right: 5%; animation-delay: 0.8s; }

@keyframes hcFloatBubble {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-20px) scale(1.05); }
}


/* --------------------------------------------------------------------------
   2. ABOUT SECTION
   -------------------------------------------------------------------------- */
.hc-about {
  background-color: var(--hc-white) !important;
  padding: 100px 0 !important;
  position: relative !important;
}

.hc-about .container {
  max-width: 1280px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  margin: 0 auto !important;
}

.hc-about__image-wrapper {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-about__img {
  width: 100%;
  height: auto;
  max-width: 480px;
  object-fit: contain;
  display: block;
}

.hc-about__placeholder {
  min-height: 380px;
  width: 100%;
}

.hc-section-header__subtitle {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #0ea5e9 !important;
  display: block !important;
  margin-bottom: 8px !important;
}

.hc-section-header__title {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: var(--hc-dark) !important;
  line-height: 1.2 !important;
  margin-bottom: 20px !important;
}

.hc-about__paragraph {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--hc-text-secondary);
  margin-bottom: 32px;
}

.hc-btn--primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #0ea5e9 !important;
  color: #ffffff !important;
  padding: 12px 32px !important;
  border-radius: 9999px !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.hc-btn--primary:hover {
  background-color: #0284c7 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4) !important;
  color: #ffffff !important;
}


/* --------------------------------------------------------------------------
   3. SERVICES SECTION
   -------------------------------------------------------------------------- */
/* Global Homepage Section Container Alignment */
.hc-hero__container,
.hc-about .container,
.hc-services .container,
.hc-booking .container,
.hc-specialized .container,
.hc-location .container,
.hc-footer .container {
  max-width: 1280px !important;
  width: 100% !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

.hc-services {
  background-color: #f5f9fc !important;
  padding: 100px 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.hc-services .container {
  position: relative;
  z-index: 5;
}

/* Floating Decorative Bubbles */
.hc-services__bubbles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hc-bubble--s1 { width: 48px; height: 48px; top: 10%; left: 3%; opacity: 0.6; }
.hc-bubble--s2 { width: 36px; height: 36px; top: 65%; left: 5%; opacity: 0.5; }
.hc-bubble--s3 { width: 56px; height: 56px; top: 15%; right: 4%; opacity: 0.6; }
.hc-bubble--s4 { width: 40px; height: 40px; top: 70%; right: 3%; opacity: 0.5; }

.hc-services__grid {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: -12px !important;
  margin-right: -12px !important;
  margin-top: 48px !important;
}

.hc-services__col {
  padding-left: 12px !important;
  padding-right: 12px !important;
  margin-bottom: 24px !important;
  box-sizing: border-box !important;
}

.hc-service-card {
  background-color: #ffffff !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hc-service-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.12) !important;
}

.hc-service-card__image-container {
  height: 200px;
  background-color: #e2e8f0;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.hc-service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-service-card__body {
  padding: 24px !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
}

.hc-service-card__title {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 8px !important;
  line-height: 1.35 !important;
  min-height: 2.7em;
}

.hc-service-card__price {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #0ea5e9 !important;
  margin-bottom: 10px !important;
}

.hc-service-card__rating {
  color: #facc15 !important;
  font-size: 1.125rem !important;
  margin-bottom: 24px !important;
  letter-spacing: 2px;
}

.hc-service-card__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  background-color: #0ea5e9 !important;
  color: #ffffff !important;
  padding: 6px 6px 6px 20px !important;
  border-radius: 9999px !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
  margin-top: auto;
}

.hc-service-card__btn:hover {
  background-color: #0284c7 !important;
  color: #ffffff !important;
}

.hc-service-card__btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   4. BOOKING SECTION
   -------------------------------------------------------------------------- */
.hc-booking {
  background-color: #ffffff !important;
  padding: 80px 0 !important;
  position: relative !important;
}

.hc-booking__wrapper {
  background-color: #f0f9ff !important;
  border-radius: 32px !important;
  padding: 48px !important;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.06) !important;
}

.hc-booking__card {
  background-color: #0f172a !important;
  color: #ffffff !important;
  padding: 36px !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25) !important;
}

.hc-booking__title {
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 24px !important;
}

.hc-booking__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hc-booking__input,
.hc-booking__select {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  padding: 12px 18px !important;
  border-radius: 12px !important;
  font-size: 0.9375rem !important;
  width: 100% !important;
  outline: none !important;
  transition: border-color 0.2s ease, background-color 0.2s ease !important;
}

.hc-booking__input:focus,
.hc-booking__select:focus {
  border-color: #0ea5e9 !important;
  background-color: rgba(255, 255, 255, 0.12) !important;
}

.hc-booking__input::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}

.hc-booking__select option {
  background-color: #0f172a !important;
  color: #ffffff !important;
}

.hc-booking__submit {
  width: 100% !important;
  margin-top: 8px !important;
  padding: 14px 28px !important;
  font-size: 1rem !important;
}

.hc-booking__illustration-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.hc-booking__img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


/* --------------------------------------------------------------------------
   5. SPECIALIZED SERVICES SECTION
   -------------------------------------------------------------------------- */
.hc-specialized {
  background-color: #ffffff !important;
  padding: 80px 0 !important;
  position: relative !important;
}

.hc-specialized__title {
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 16px !important;
  line-height: 1.25 !important;
}

.hc-specialized__description {
  font-size: 1rem !important;
  color: #64748b !important;
  line-height: 1.65 !important;
  margin-bottom: 28px !important;
}

.hc-btn--dark {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #111827 !important;
  color: #ffffff !important;
  padding: 12px 28px !important;
  border-radius: 10px !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.hc-btn--dark:hover {
  background-color: #1f2937 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.hc-specialized__carousel-wrapper {
  position: relative !important;
  padding: 0 20px !important;
}

.hc-specialized__blue-card {
  background: #00a8ec !important;
  border-radius: 28px !important;
  padding: 28px !important;
  box-shadow: 0 12px 32px rgba(0, 168, 236, 0.2) !important;
  overflow: hidden;
}

.hc-spec-arrow--outer-prev,
.hc-spec-arrow--outer-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #00a8ec !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.hc-spec-arrow--outer-prev {
  left: -4px !important;
}

.hc-spec-arrow--outer-next {
  right: -4px !important;
}

.hc-spec-arrow--outer-prev:hover:not(:disabled),
.hc-spec-arrow--outer-next:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 6px 18px rgba(0, 168, 236, 0.25) !important;
  color: #0090ca !important;
}

.hc-specialized__carousel-viewport {
  overflow: hidden !important;
  width: 100% !important;
  position: relative !important;
}

.hc-specialized__slider {
  display: flex !important;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  will-change: transform;
}

.hc-specialized-card {
  background-color: #ffffff !important;
  border-radius: 20px !important;
  padding: 24px 20px !important;
  margin-right: 16px !important;
  flex: 0 0 calc(33.333% - 10.666px) !important;
  max-width: calc(33.333% - 10.666px) !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
  position: relative !important;
}

.hc-specialized-card__top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 16px !important;
}

.hc-specialized-card__icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a8ec;
}

.hc-specialized-card__sparkle {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(0, 168, 236, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.hc-specialized-card__body {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.hc-specialized-card__title {
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 10px !important;
  line-height: 1.35 !important;
  min-height: 2.7em;
}

.hc-specialized-card__text {
  font-size: 0.8125rem !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin-bottom: 20px !important;
  flex-grow: 1 !important;
}

.hc-btn--soft-blue {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #e0f2fe !important;
  color: #00a8ec !important;
  padding: 8px 20px !important;
  border-radius: 9999px !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
  align-self: flex-start !important;
  margin-top: auto !important;
}

.hc-btn--soft-blue:hover {
  background-color: #00a8ec !important;
  color: #ffffff !important;
}

.hc-specialized__dots {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 20px !important;
}

.hc-spec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hc-spec-dot.active {
  width: 20px;
  border-radius: 9999px;
  background-color: #00a8ec;
}


/* --------------------------------------------------------------------------
   6. LOCATION SECTION
   -------------------------------------------------------------------------- */
.hc-location {
  background-color: #f5f9fc !important;
  padding: 100px 0 !important;
  position: relative !important;
}

.hc-location__wrapper {
  background-color: #ffffff !important;
  border-radius: 32px !important;
  padding: 48px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.hc-location__title {
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 16px !important;
  line-height: 1.25 !important;
}

.hc-location__description {
  font-size: 1rem !important;
  color: #64748b !important;
  line-height: 1.65 !important;
  margin-bottom: 24px !important;
}

.hc-location__info-card {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  background-color: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  margin-bottom: 28px !important;
}

.hc-location__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #e0f2fe;
  color: #00a8ec;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hc-location__info-text {
  display: flex;
  flex-direction: column;
}

.hc-location__info-label {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #64748b !important;
}

.hc-location__info-value {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
}

.hc-location__action .hc-btn--primary {
  gap: 10px !important;
}

.hc-location__map-wrapper {
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid #e2e8f0 !important;
  line-height: 0;
  background-color: #e2e8f0;
}

.hc-location__iframe {
  width: 100% !important;
  height: 420px !important;
  border: 0 !important;
  display: block !important;
}


/* --------------------------------------------------------------------------
   7. FOOTER — Light Theme
   -------------------------------------------------------------------------- */
.hc-footer {
  background: #ffffff !important;
  color: #4a5568 !important;
  position: relative;
  width: 100% !important;
  overflow: hidden;
}

/* Wave SVG sits above the footer, transitions from page bg into white */
.hc-footer__wave {
  display: block;
  line-height: 0;
  margin-bottom: 0;
}

.hc-footer__wave svg {
  width: 100%;
  height: 90px;
  display: block;
}

.hc-footer__main {
  padding: 30px 0 0;
  background: #ffffff;
}

.hc-footer__container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* 4-column grid: Brand | Information | Categories | Opening Time */
.hc-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 28px;
}

/* --- Brand Column --- */
.hc-footer__brand {
  max-width: 280px;
}

.hc-footer__logo {
  margin-bottom: 14px;
}

.hc-footer__logo a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  text-decoration: none;
}

.hc-footer__logo img {
  display: block;
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.hc-footer__bio {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0 0 18px;
}

.hc-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e293b !important;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--hc-transition-fast);
}

.hc-footer__phone:hover {
  color: #0ea5e9 !important;
}

.hc-footer__phone-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0ea5e9;
  background: #e0f2fe;
  flex: 0 0 auto;
}

/* --- Nav Columns (Information, Categories) --- */
.hc-footer__heading {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  margin: 0 0 16px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.hc-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-footer__list li {
  margin-bottom: 10px;
}

.hc-footer__list a {
  color: #64748b !important;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--hc-transition-fast);
  line-height: 1.5;
}

.hc-footer__list a:hover {
  color: #0ea5e9 !important;
  padding-left: 0;
}

/* --- Opening Hours Column --- */
.hc-footer__hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-footer__hours-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
}

.hc-footer__hours-day {
  font-size: 0.875rem;
  color: #64748b;
  white-space: nowrap;
  min-width: 72px;
}

.hc-footer__hours-time {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
  text-align: right;
}

.hc-footer__hours-closed {
  color: #1e293b;
}

/* Hide PS module hook output in footer */
.hc-footer__module-hooks {
  display: none;
}

/* --- Bottom Bar --- */
.hc-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid #e8ecf0;
  margin-top: 0;
}

.hc-footer__copyright {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.hc-footer__copyright-accent {
  color: #0ea5e9;
  font-weight: 600;
}


/* --------------------------------------------------------------------------
   IMAGE PLACEHOLDERS
   -------------------------------------------------------------------------- */
.hc-placeholder-bg {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%) !important;
}

.hc-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background-color: #f1f5f9;
  border: 2px dashed #cbd5e1;
  border-radius: var(--hc-radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--hc-text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 24px;
  text-align: center;
}


/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
.hc-section-header.text-center {
  text-align: center !important;
  margin: 0 auto 36px !important;
}

.hc-section-header.text-center .hc-section-header__subtitle,
.hc-section-header.text-center .hc-section-header__title {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important;
  }
  .hc-about .row {
    display: flex !important;
    align-items: center !important;
  }
  .hc-about__image-col,
  .hc-about__content-col {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .hc-services__col {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    width: 25% !important;
  }
  .hc-booking__wrapper .row {
    display: flex !important;
    align-items: center !important;
  }
  .hc-booking__form-col {
    flex: 0 0 41.666667% !important;
    max-width: 41.666667% !important;
    width: 41.666667% !important;
  }
  .hc-booking__illustration-col {
    flex: 0 0 58.333333% !important;
    max-width: 58.333333% !important;
    width: 58.333333% !important;
  }
  .hc-specialized .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }
  .hc-specialized__content-col {
    flex: 0 0 35% !important;
    max-width: 35% !important;
    width: 35% !important;
    padding-right: 28px !important;
  }
  .hc-specialized__cards-col {
    flex: 0 0 65% !important;
    max-width: 65% !important;
    width: 65% !important;
  }
  .hc-location .row {
    display: flex !important;
    align-items: center !important;
  }
  .hc-location__content-col {
    flex: 0 0 41.666667% !important;
    max-width: 41.666667% !important;
    width: 41.666667% !important;
    padding-right: 28px !important;
  }
  .hc-location__map-col {
    flex: 0 0 58.333333% !important;
    max-width: 58.333333% !important;
    width: 58.333333% !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hc-services__col {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
  }
  .hc-specialized-card {
    flex: 0 0 calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
    margin-right: 16px !important;
  }
}

@media (max-width: 1199px) {
  .hc-hero__title {
    font-size: 2.75rem !important;
  }

  .hc-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .hc-footer__brand,
  .hc-footer__cta {
    grid-column: span 1;
  }
}

@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important;
  }

  .hc-hero {
    padding: 60px 0 100px !important;
  }

  .hc-hero__title {
    font-size: 2.25rem !important;
  }

  .hc-hero__image-col {
    margin-top: 48px;
  }

  .hc-booking__wrapper {
    padding: 28px !important;
  }

  .hc-booking__illustration-col {
    margin-top: 32px;
  }

  .hc-specialized__cards-col {
    margin-top: 32px;
  }

  .hc-location__map-col {
    margin-top: 32px !important;
  }

  .hc-location__wrapper {
    padding: 28px !important;
  }

  .hc-footer__main {
    padding: 24px 0 0;
  }

  .hc-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .hc-footer__brand {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .hc-hero__title {
    font-size: 2rem !important;
  }

  .hc-section-header__title,
  .hc-specialized__title {
    font-size: 1.75rem !important;
  }

  .hc-specialized-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
  }

  .hc-booking__card {
    padding: 20px !important;
  }

  .hc-specialized__blue-card {
    padding: 20px !important;
  }

  .hc-footer__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hc-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .hc-hero__badge {
    font-size: 0.75rem;
    padding: 4px 12px;
  }

  .hc-hero__title {
    font-size: 1.75rem !important;
  }

  .hc-about__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .hc-about__sparkle-icon {
    left: -10px !important;
  }

  .hc-services__col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .hc-footer__main {
    padding: 20px 0 0;
  }

  .hc-footer__phone {
    width: 100%;
  }

  .hc-footer__list a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }
}
