/* ============================================================
   PREMIUM BARBERSHOP - LUXURY DARK THEME
   ============================================================ */

/* CSS Variables - Premium Color Palette */
:root {
  --brand-primary: #1a1a1a;
  --brand-accent: #c9a962;
  --brand-accent-hover: #d4b978;
  --brand-gold: #d4af37;
  --brand-gold-light: #f4e4a6;
  
  /* Dark Theme Colors */
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #242424;
  --bg-card: #1c1c1c;
  --bg-glass: rgba(26, 26, 26, 0.85);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #808080;
  --text-gold: #c9a962;
  
  /* Border Colors - Subtle gray instead of gold-tinted */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-hover: rgba(255, 255, 255, 0.2);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(255, 255, 255, 0.08);
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing - Mobile First */
  --section-padding: 3rem;
  --section-padding-md: 4rem;
  --section-padding-lg: 6rem;
  --container-max-width: 1280px;
  --container-padding-x: 1rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.3; }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--text-secondary);
}

a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--brand-accent-hover);
}

.text-gold { color: var(--text-gold) !important; }
.text-secondary-custom { color: var(--text-secondary) !important; }
.text-muted-custom { color: var(--text-muted) !important; }

/* ============================================================
   NAVBAR - Glassmorphism Premium
   ============================================================ */

.navbar-premium {
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  transition: all 0.4s ease;
}

.navbar-premium.scrolled {
  background: rgba(15, 15, 15, 0.98);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand-premium {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary) !important;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand-premium:hover {
  color: var(--brand-accent) !important;
}

.navbar-brand-premium .logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.navbar-brand-premium:hover .logo-img {
  filter: brightness(0) invert(0.8) sepia(1) saturate(2) hue-rotate(10deg);
}

.nav-link-premium {
  color: var(--text-secondary) !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 1rem !important;
  position: relative;
  transition: color 0.3s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
}

/* Mobile navbar improvements */
.navbar-collapse {
  background: var(--bg-primary);
  padding: 0;
  margin-top: 0;
  border: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navbar-collapse.collapsing,
.navbar-collapse.show {
  display: flex !important;
}

.navbar-collapse .navbar-nav {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.navbar-collapse .nav-link-premium {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem !important;
  text-align: center;
  justify-content: center;
  min-height: 64px;
  width: 100%;
}

.navbar-toggler {
  min-height: 48px;
  min-width: 48px;
  padding: 0.75rem;
  z-index: 1045;
  position: relative;
}

/* Close button for mobile menu */
.navbar-toggler[aria-expanded="true"] {
  position: fixed;
  top: 1rem;
  right: 1rem;
}

/* Mobile menu animations */
.navbar-collapse {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navbar-collapse.show {
  opacity: 1;
  visibility: visible;
}

.navbar-collapse .navbar-nav {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.navbar-collapse.show .navbar-nav {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .navbar-collapse {
    background: transparent;
    padding: 0;
    margin-top: 0;
    border: none;
    position: static;
    width: auto;
    height: auto;
    max-height: none;
    overflow-y: visible;
    z-index: auto;
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
  }
  
  .navbar-collapse .navbar-nav {
    width: auto;
    max-width: none;
    padding: 0;
    flex-direction: row;
    gap: 0;
  }
  
  .navbar-collapse .nav-link-premium {
    font-size: 0.875rem;
    padding: 0.5rem 1rem !important;
    min-height: 48px;
    width: auto;
  }
  
  .navbar-toggler[aria-expanded="true"] {
    position: relative;
    top: auto;
    right: auto;
  }
}

.nav-link-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-premium:hover,
.nav-link-premium.active {
  color: var(--text-primary) !important;
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
  width: 60%;
}

/* Status Badge */
.status-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  border: 1px solid currentColor;
}

.status-badge.open {
  background: rgba(39, 174, 96, 0.15);
  color: #27ae60;
  border-color: rgba(39, 174, 96, 0.3);
}

.status-badge.closed {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border-color: rgba(231, 76, 60, 0.3);
}

/* ============================================================
   BUTTONS - Premium Styles
   ============================================================ */

.btn {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 24px;
  min-height: 48px;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 992px) {
  .btn {
    padding: 12px 24px;
  }
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

/* ============================================================
   MODERN MINIMALIST BUTTONS - Clean white on dark
   ============================================================ */

/* Base button styles - shared across all variants */
.btn-premium,
.btn-outline-premium,
.btn-dark-premium,
.btn-light-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 52px;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0.02em;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Primary - Solid White */
.btn-premium {
  background: #ffffff;
  color: #0a0a0a;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.btn-premium:hover {
  background: #f0f0f0;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.btn-premium:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

/* Outline Premium - White outline (Secondary) */
.btn-outline-premium {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-premium:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-premium:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.15);
}

/* Dark/Secondary - Charcoal fill */
.btn-dark-premium {
  background: #2a2a2a;
  color: #e0e0e0;
  border: none;
}

.btn-dark-premium:hover {
  background: #333333;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Light - Subtle border */
.btn-light-premium {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-light-premium:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Bootstrap btn-dark override - charcoal fill style */
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 52px;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0.02em;
  border-radius: 6px;
  background: #2a2a2a;
  color: #e0e0e0;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-dark:hover {
  background: #333333;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Bootstrap btn-sm and btn-lg - modern sizing */
.btn-sm {
  padding: 10px 20px;
  min-height: 40px;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 16px 32px;
  min-height: 56px;
  font-size: 0.9375rem;
}

/* ============================================================
   HERO SECTION - Cinematic
   ============================================================ */

.hero-section {
  min-height: 70vh;
  min-height: 70dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  padding: 6rem 0 3rem;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 85vh;
    min-height: 85dvh;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.3) 0%,
    rgba(15, 15, 15, 0.6) 50%,
    rgba(15, 15, 15, 0.95) 100%
  );
}

/* Hero video background */
.hero-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.hero-background-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.3) 0%,
    rgba(15, 15, 15, 0.6) 50%,
    rgba(15, 15, 15, 0.95) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--brand-accent);
}

@media (min-width: 768px) {
  .hero-subtitle::before,
  .hero-subtitle::after {
    width: 40px;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-title em {
  font-style: italic;
  color: var(--brand-accent);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-cta .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero-cta {
    flex-direction: row;
  }
  
  .hero-cta .btn {
    width: auto;
  }
}

/* ============================================================
   PAGE HEROES - Editorial Standalone Pages
   ============================================================ */

.page-hero {
  position: relative;
  padding: 6rem 0 3rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 7rem 0 3.5rem;
  }
}

@media (min-width: 992px) {
  .page-hero {
    padding: 8rem 0 4.5rem;
  }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 169, 98, 0.16), transparent 38%),
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.72) 0%, rgba(15, 15, 15, 0.98) 100%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color-hover), transparent);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .page-hero-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
    gap: 2rem;
    align-items: end;
  }
}

.page-kicker {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  margin-bottom: 1.25rem;
  max-width: 11ch;
}

.page-hero-text {
  font-size: 1.075rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 40rem;
}

.page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.page-hero-panel {
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.94) 0%, rgba(15, 15, 15, 0.98) 100%);
  border: 1px solid var(--border-color);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.page-hero-panel-title {
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.metric-cluster {
  display: grid;
  gap: 1rem;
}

.metric-tile {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.metric-tile:first-child {
  border-top: none;
  padding-top: 0;
}

.metric-value {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  line-height: 1;
  color: var(--text-primary);
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.detail-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-accent);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================================
   SECTIONS - Premium Layout
   ============================================================ */

.section-premium {
  padding: var(--section-padding) var(--container-padding-x);
  position: relative;
}

@media (min-width: 768px) {
  .section-premium {
    padding: var(--section-padding-md) var(--container-padding-x);
  }
}

@media (min-width: 992px) {
  .section-premium {
    padding: var(--section-padding-lg) 0;
  }
}

.section-premium.bg-dark {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   CARDS - Premium Glass Cards
   ============================================================ */

.card-premium {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.card-premium:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-glow);
}

.card-premium-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card-premium-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-premium:hover .card-premium-image img {
  transform: scale(1.05);
}

.card-premium-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 15, 15, 0.6) 100%);
}

.card-premium-content {
  padding: 1.75rem;
}

.card-premium-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.card-premium-text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card-premium-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.card-premium-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-accent);
}

.card-premium-price span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */

.service-card {
  background: linear-gradient(145deg, #1e1e1e 0%, #1a1a1a 100%);
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.4),
    0 10px 20px -5px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 24px -6px rgba(0, 0, 0, 0.5),
    0 20px 40px -10px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 169, 98, 0.1) inset;
  border-color: rgba(201, 169, 98, 0.2);
}

body.has-starter-contact-bar .service-card {
  cursor: default;
}

@media (min-width: 768px) {
  .service-card {
    padding: 2rem;
  }
}

@media (min-width: 1200px) {
  .service-card {
    padding: 2.5rem;
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--brand-accent);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card-text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-accent);
}

.service-card-duration {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   PRICING TABLE - Premium
   ============================================================ */

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.pricing-table th,
.pricing-table td {
  padding: 1.5rem 2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-secondary);
}

.pricing-note-text {
  color: var(--text-secondary);
  line-height: 1.7;
}

.pricing-table tr {
  transition: background 0.3s ease;
}

.pricing-table tr:hover {
  background: rgba(201, 169, 98, 0.03);
}

.pricing-table td {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.pricing-table .service-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--text-primary);
  font-weight: 500;
}

.pricing-table .service-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-accent);
  font-weight: 600;
  text-align: right;
}

/* ============================================================
   GALLERY - Premium Grid
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 15, 15, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}

.gallery-zoom-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.gallery-zoom-hint svg {
  stroke: var(--brand-accent);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-card {
  background: linear-gradient(145deg, #1e1e1e 0%, #1a1a1a 100%);
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.4),
    0 10px 20px -5px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 24px -6px rgba(0, 0, 0, 0.5),
    0 20px 40px -10px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 169, 98, 0.1) inset;
  border-color: rgba(201, 169, 98, 0.2);
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }
}

@media (min-width: 1200px) {
  .testimonial-card {
    padding: 2.5rem;
  }
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--brand-accent);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-accent);
  border: 2px solid var(--border-color);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}

.testimonial-rating {
  color: var(--brand-accent);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-card {
  background: linear-gradient(145deg, #1e1e1e 0%, #1a1a1a 100%);
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.4),
    0 10px 20px -5px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition: all 0.4s ease;
}

.contact-card:hover {
  box-shadow: 
    0 12px 24px -6px rgba(0, 0, 0, 0.5),
    0 20px 40px -10px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 169, 98, 0.1) inset;
  border-color: rgba(201, 169, 98, 0.2);
}

/* Mobile: Reduce padding to maximize form space */
@media (max-width: 575.98px) {
  .contact-card {
    padding: 1rem;
  }
}

@media (min-width: 768px) {
  .contact-card {
    padding: 2rem;
  }
}

@media (min-width: 1200px) {
  .contact-card {
    padding: 2.5rem;
  }
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--text-primary);
}

.offer-body-copy {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
}

/* Opening Hours */
.opening-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opening-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9375rem;
}

.opening-hours-list li:last-child {
  border-bottom: none;
}

.opening-hours-day {
  color: var(--text-primary);
  font-weight: 500;
}

.opening-hours-time {
  color: var(--text-secondary);
}

.opening-hours-time.closed {
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   FORMS - Premium Inputs
   ============================================================ */

.form-control-premium,
.form-select-premium {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.form-control-premium:focus,
.form-select-premium:focus {
  background: var(--bg-tertiary);
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
  color: var(--text-primary);
  outline: none;
}

.form-control-premium::placeholder {
  color: var(--text-muted);
}

.form-control-premium.is-invalid,
.form-select-premium.is-invalid {
  border-color: rgba(231, 76, 60, 0.65);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.form-control-premium.is-invalid:focus,
.form-select-premium.is-invalid:focus {
  border-color: rgba(231, 76, 60, 0.85);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.16);
}

.form-label-premium {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Auto-style form inputs inside contact cards */
.contact-card input[type="text"],
.contact-card input[type="password"],
.contact-card input[type="email"],
.contact-card input[type="tel"],
.contact-card input[type="date"],
.contact-card input[type="time"],
.contact-card textarea,
.contact-card select {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-card input[type="text"]:focus,
.contact-card input[type="password"]:focus,
.contact-card input[type="email"]:focus,
.contact-card input[type="tel"]:focus,
.contact-card input[type="date"]:focus,
.contact-card input[type="time"]:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  background: var(--bg-tertiary);
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
  color: var(--text-primary);
  outline: none;
}

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

/* ============================================================
   ALERTS
   ============================================================ */

.alert-premium {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.alert-premium.alert-success {
  border-color: rgba(39, 174, 96, 0.3);
}

.alert-premium.alert-success .alert-icon {
  background: #27ae60;
}

.alert-premium.alert-danger {
  border-color: rgba(231, 76, 60, 0.3);
}

.alert-premium.alert-danger .alert-icon {
  background: #e74c3c;
}

.booking-error-summary {
  border: 1px solid rgba(231, 76, 60, 0.4);
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.12), rgba(255, 255, 255, 0.02));
  padding: 1.25rem 1.5rem;
}

.booking-error-summary:focus {
  outline: 2px solid rgba(231, 76, 60, 0.55);
  outline-offset: 4px;
}

.booking-error-summary-header {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.booking-error-summary-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e74c3c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-error-summary-title {
  margin: 0 0 0.35rem;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.booking-error-summary-copy {
  color: var(--text-secondary);
}

.booking-error-summary-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-secondary);
  display: grid;
  gap: 0.45rem;
}

.booking-error-summary-list a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  margin-right: 0.35rem;
}

.booking-error-summary-list a:hover,
.booking-error-summary-list a:focus {
  color: var(--brand-accent);
}

/* ============================================================
   FOOTER - Premium
   ============================================================ */

.footer-premium {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
}

@media (min-width: 768px) {
  .footer-premium {
    padding: 4rem 0 2rem;
  }
}

@media (min-width: 992px) {
  .footer-premium {
    padding: 5rem 0 2rem;
  }
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 1.5rem;
}

.footer-signup .form-control-premium {
  min-height: 48px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--brand-accent);
}

.footer-contact {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--text-secondary);
}

.footer-contact a:hover {
  color: var(--brand-accent);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.footer-social a.social-facebook {
  background: #1877F2;
}

.footer-social a.social-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer-social a.social-tiktok {
  background: #000000;
}

.footer-social a.social-x {
  background: #000000;
}

.footer-social a.social-linkedin {
  background: #0A66C2;
}

.footer-social a.social-youtube {
  background: #FF0000;
}

.footer-social a.social-google {
  background: #DB4437;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--brand-accent);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1050;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  color: #fff;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================================
   MOBILE-FIRST RESPONSIVE
   ============================================================ */

/* Base styles are mobile-first (default for small screens) */

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
  :root {
    --container-padding-x: 0.75rem;
  }
}

/* Tablet and up (768px+) */
@media (min-width: 768px) {
  :root {
    --container-padding-x: 1.5rem;
  }
  
  .page-hero-panel {
    padding: 2rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 1.25rem;
  }
  
  .card-premium-content,
  .service-card,
  .testimonial-card,
  .contact-card {
    padding: 2rem;
  }
}

/* Desktop and up (992px+) */
@media (min-width: 992px) {
  :root {
    --container-padding-x: 1rem;
  }
  
  .page-hero {
    padding: 8rem 0 4rem;
  }

  .page-hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-hero-title {
    max-width: 20ch;
  }
  
  .hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
  }
  
  .btn {
    padding: 12px 24px;
  }
  
  .hero-cta {
    flex-direction: row;
  }
  
  .hero-cta .btn {
    width: auto;
  }
}

/* Large desktop (1200px+) */
@media (min-width: 1200px) {
  .card-premium-content,
  .service-card,
  .testimonial-card {
    padding: 2.5rem;
  }
}

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.border-gold { border-color: var(--border-color) !important; }
.bg-premium-dark { background-color: var(--bg-primary) !important; }
.bg-premium-card { background-color: var(--bg-card) !important; }

/* Map Container */
.map-container {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-container iframe {
  /* Map displayed in full color - no grayscale filter */
  filter: none !important;
}

/* Booking Sidebar */
.booking-sidebar {
  position: sticky;
  top: 7rem;
}

.booking-service-spotlight,
.booking-choice-card,
.booking-check-card,
.booking-assurance-card {
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
}

.booking-choice-card-invalid {
  border-color: rgba(231, 76, 60, 0.45);
  box-shadow: inset 0 0 0 1px rgba(231, 76, 60, 0.08);
}

.booking-assurance-card-warning {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.06);
}

.booking-service-header,
.booking-assurance-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.booking-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--brand-accent);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-service-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.booking-service-metric,
.booking-service-extra {
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.12);
  padding: 1rem;
}

.booking-service-metric-label,
.booking-service-extra-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
}

.booking-choice-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border-color);
  padding: 1rem;
  cursor: pointer;
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.12);
}

.booking-choice-option input {
  margin: 0;
  accent-color: var(--brand-accent);
}

.booking-check-card {
  height: 100%;
}

.booking-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.booking-check-label input {
  margin-top: 0.2rem;
}

.booking-assurance-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.02));
}

/* Flatpickr Customization */
.flatpickr-calendar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekday {
  color: var(--text-primary);
  fill: var(--text-primary);
}

.flatpickr-day {
  color: var(--text-secondary);
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  color: var(--text-muted);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: var(--bg-primary);
}

.flatpickr-day:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: var(--brand-accent);
}

/* Home Section Scroll Margin */
.home-section {
  scroll-margin-top: 100px;
}

/* ============================================================
   UNIFIED MOBILE-FIRST DESIGN SYSTEM
   ============================================================ */

/* Compact spacing is now the default for ALL tiers on mobile */
/* Desktop expands to full spacing for Professional/Premium */

/* Compact map container - smaller on mobile */
.map-container-compact {
  height: 220px;
}

@media (min-width: 768px) {
  .map-container-compact {
    height: 400px;
  }
}

/* ============================================================
   MOBILE COMPACT DEFAULTS (All Tiers)
   ============================================================ */
@media (max-width: 767.98px) {
  /* Compact section spacing for all tiers on mobile */
  .section-premium {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  
  /* Compact hero - auto height instead of viewport-based */
  .hero-section {
    min-height: auto;
    padding: 4.5rem 0 2rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Compact section headers */
  .section-header {
    margin-bottom: 1.25rem;
  }
  
  .section-title {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
    margin-bottom: 0.5rem;
  }
  
  .section-subtitle {
    font-size: 0.9375rem;
  }
  
  /* Compact cards - unified padding */
  .service-card,
  .contact-card,
  .testimonial-card {
    padding: 1.25rem;
  }
  
  .service-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .service-card-text {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  /* Compact testimonial */
  .testimonial-text {
    font-size: 1.1rem;
  }
  
  .testimonial-card::before {
    font-size: 4rem;
    top: 0;
    left: 1rem;
  }
  
  /* Compact contact section */
  .starter-contact-compact .contact-card {
    padding: 1rem;
  }
  
  .starter-contact-compact .contact-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  
  .opening-hours-list li {
    padding: 0.4rem 0;
    font-size: 0.875rem;
  }
  
  /* Compact CTA buttons */
  .hero-cta-starter {
    gap: 0.5rem;
  }
  
  .hero-cta-starter .btn-hero-primary,
  .hero-cta-starter .btn-hero-whatsapp,
  .hero-cta-starter .btn-hero-secondary {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/* ============================================================
   DESKTOP EXPANDED (Professional/Premium)
   ============================================================ */
@media (min-width: 768px) {
  /* Restore expanded spacing on desktop */
  .section-premium {
    padding-top: var(--section-padding-md);
    padding-bottom: var(--section-padding-md);
  }
  
  /* Larger hero on desktop */
  .hero-section {
    min-height: 85vh;
    padding: 0;
  }
  
  /* Restore larger typography */
  .hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
  }
  
  /* Restore card padding */
  .service-card,
  .contact-card,
  .testimonial-card {
    padding: 2rem;
  }
}

@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-premium {
    padding-top: var(--section-padding-lg);
    padding-bottom: var(--section-padding-lg);
  }
}

/* ============================================================
   SINGLE-PAGE COMPACT OVERRIDES (Starter Tier Specific)
   ============================================================ */
/* These apply the compact spacing even on desktop for Starter tier */

.single-page-compact .section-premium {
  --section-padding: 2rem;
  --section-padding-md: 2.5rem;
  --section-padding-lg: 3rem;
}

@media (min-width: 768px) {
  .single-page-compact .section-premium {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  .single-page-compact .hero-section {
    min-height: 70vh;
    padding: 6rem 0 3rem;
  }
}

@media (min-width: 992px) {
  .single-page-compact .section-premium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .single-page-compact .hero-section {
    min-height: 85vh;
  }
}

@media (max-width: 767.98px) {
  .booking-service-header,
  .booking-assurance-header {
    flex-direction: column;
  }

  .booking-service-metrics,
  .booking-choice-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PREMIUM ANIMATIONS & EFFECTS
   ============================================================ */

/* Scroll-triggered reveal animations */
.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);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Card premium hover effects */
.card-hover-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

.card-hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 30px rgba(201, 169, 98, 0.1);
}

/* Gold glow effect on hover */
.gold-glow-hover {
  transition: box-shadow 0.4s ease;
}

.gold-glow-hover:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Button micro-interactions */
.btn-micro {
  transition: transform 0.2s ease, 
              box-shadow 0.2s ease,
              background-color 0.3s ease;
}

.btn-micro:hover {
  transform: scale(1.02);
}

.btn-micro:active {
  transform: scale(0.98);
}

/* Link underline animation */
.link-underline {
  position: relative;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand-accent);
  transition: width 0.3s ease;
}

.link-underline:hover::after {
  width: 100%;
}

/* Image zoom on hover */
.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-zoom:hover img {
  transform: scale(1.05);
}

/* Form input focus effects */
.input-focus-glow {
  transition: border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.input-focus-glow:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
  outline: none;
}

/* Hero text reveal animation */
@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-reveal {
  animation: textReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.text-reveal-1 { animation-delay: 0.1s; }
.text-reveal-2 { animation-delay: 0.2s; }
.text-reveal-3 { animation-delay: 0.3s; }
.text-reveal-4 { animation-delay: 0.4s; }

/* Fade in on load */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in-load {
  animation: fadeIn 0.6s ease forwards;
}

/* Pulse animation for live indicators */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Shimmer effect for loading states */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(90deg, 
    var(--bg-tertiary) 25%, 
    var(--bg-card) 50%, 
    var(--bg-tertiary) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Navbar scroll hide/show */
.navbar-scroll {
  transition: transform 0.3s ease;
}

.navbar-scroll.hidden {
  transform: translateY(-100%);
}

/* Gallery item overlay reveal */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Icon bounce on hover */
.icon-bounce:hover {
  animation: iconBounce 0.5s ease;
}

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

/* Skeleton loading placeholder */
.skeleton {
  background: linear-gradient(90deg, 
    var(--bg-tertiary) 25%, 
    var(--bg-card) 50%, 
    var(--bg-tertiary) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* Dropdown menu animation */
.dropdown-menu-premium {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, 
              transform 0.2s ease, 
              visibility 0.2s ease;
}

.dropdown-menu-premium.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Enhanced focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* Smooth page transitions */
.page-transition {
  animation: pageTransition 0.4s ease;
}

@keyframes pageTransition {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Service card specific hover */
.service-card-hover {
  position: relative;
  overflow: hidden;
}

.service-card-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card-hover:hover::before {
  transform: scaleX(1);
}

/* Testimonial card quote animation */
@keyframes quoteFade {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quote-animate {
  animation: quoteFade 0.6s ease forwards;
}

/* Status badge pulse for 'open' */
.status-badge.open {
  animation: pulse 2s ease-in-out infinite;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Make reveal elements visible by default on mobile */
@media (max-width: 767.98px) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   DROPDOWN MENU STYLES
   ============================================================ */

.dropdown-menu-premium {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}

.dropdown-menu-premium .dropdown-item {
  color: var(--text-secondary);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dropdown-menu-premium .dropdown-item:hover,
.dropdown-menu-premium .dropdown-item:focus {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.dropdown-menu-premium .dropdown-item.active {
  background: var(--brand-accent);
  color: var(--bg-primary);
}

.dropdown-menu-premium .dropdown-divider {
  border-color: var(--border-color);
  margin: 0.5rem 0;
}

/* Avatar styling */
.bg-gold {
  background-color: var(--brand-accent) !important;
}

/* Enhanced navbar dropdown toggle */
.nav-link.dropdown-toggle::after {
  transition: transform 0.2s ease;
}

.nav-link.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* ============================================================
   QUICK LINKS FOOTER STYLES
   ============================================================ */

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--brand-accent);
  transform: translateX(4px);
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--brand-accent);
  transition: width 0.2s ease;
}

.footer-links a:hover::before {
  width: 12px;
}

/* ============================================================
   ALERT INFO PREMIUM STYLE
   ============================================================ */

.alert-info {
  background: rgba(52, 152, 219, 0.1);
  border-color: rgba(52, 152, 219, 0.3);
  color: #5dade2;
}

.alert-info .alert-link {
  color: var(--brand-accent);
  text-decoration: underline;
}

.alert-info .alert-link:hover {
  color: var(--brand-accent-hover);
}

/* ============================================================
   PRELOADER / PAGE TRANSITION
   ============================================================ */

.page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--brand-accent);
  animation: preloaderProgress 1.5s ease-in-out infinite;
}

@keyframes preloaderProgress {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* ============================================================
   HOVER LIFT FOR CARDS
   ============================================================ */

.contact-card,
.service-card,
.barber-card,
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

.contact-card:hover,
.service-card:hover,
.barber-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   SECTION REVEAL ANIMATION
   ============================================================ */

.section-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   GALLERY ENHANCEMENTS
   ============================================================ */

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-item-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
  transition: opacity 0.4s ease;
}

/* ============================================================
   BUTTON ENHANCEMENTS
   ============================================================ */

.btn-premium,
.btn-outline-premium {
  transition: transform 0.2s ease, 
              box-shadow 0.2s ease,
              background-color 0.3s ease,
              border-color 0.3s ease;
}

.btn-premium:hover,
.btn-outline-premium:hover {
  transform: translateY(-2px);
}

.btn-premium:active,
.btn-outline-premium:active {
  transform: translateY(0);
}

/* ============================================================
   NAVBAR LINK ANIMATION
   ============================================================ */

.nav-link-premium {
  position: relative;
}

.nav-link-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
  width: 60%;
}

/* ============================================================
   FORM ENHANCEMENTS
   ============================================================ */

.form-control,
.form-select {
  transition: border-color 0.3s ease, 
              box-shadow 0.3s ease,
              background-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
  background-color: var(--bg-card);
}

/* ============================================================
   TABLE ENHANCEMENTS
   ============================================================ */

.pricing-table tr {
  transition: background-color 0.2s ease;
}

.pricing-table tr:hover {
  background-color: rgba(201, 169, 98, 0.05);
}

/* ============================================================
   STATUS BADGE PULSE
   ============================================================ */

.status-badge.open {
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================================
   SCROLLBAR STYLING
   ============================================================ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-accent);
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION - Lucide Icons
   ============================================================ */

/* Body padding for fixed bottom nav on mobile */
@media (max-width: 991.98px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 64px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(15, 15, 15, 0.99) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  min-height: 48px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.mobile-nav-item:active {
  transform: scale(0.92);
  opacity: 0.7;
}

.mobile-nav-item.active {
  color: var(--brand-gold);
}

.mobile-nav-item.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--brand-gold);
  border-radius: 0 0 3px 3px;
}

.mobile-nav-cta {
  color: var(--brand-gold);
  position: relative;
}

.mobile-nav-cta::before {
  content: '';
  position: absolute;
  inset: 8px 12px;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 98, 0.3);
}

.mobile-nav-cta.active::before {
  background: rgba(201, 169, 98, 0.25);
  border-color: var(--brand-gold);
}

.mobile-nav-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  position: relative;
  z-index: 1;
}

.mobile-nav-item.active .mobile-nav-icon {
  stroke-width: 2.5;
}

/* Hide mobile bottom nav on desktop */
@media (min-width: 992px) {
  .mobile-bottom-nav {
    display: none;
  }
}

/* ============================================================
   EXPANDABLE CARDS - Mobile Tap to Reveal
   ============================================================ */

/* Mobile: Content hidden by default, shown when expanded */
@media (max-width: 767.98px) {
  .card-expandable {
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .card-expandable:active {
    transform: scale(0.98);
  }
  
  .card-expandable-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease, margin 0.3s ease;
  }
  
  .card-expandable.mobile-expanded .card-expandable-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
  }
  
  .card-expandable-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    color: var(--brand-gold);
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .card-expandable-toggle .expand-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
  }
  
  .card-expandable.mobile-expanded .expand-icon {
    transform: rotate(180deg);
  }
}

/* Desktop/Tablet: Always show content, hide toggle */
@media (min-width: 768px) {
  .card-expandable-content {
    display: block !important;
  }
  
  .card-expandable-toggle {
    display: none !important;
  }
  
  .card-expandable {
    cursor: default;
  }
}

/* ============================================================
   PREMIUM VISUAL SET - NEW STYLES
   Service Images, Team Cards, Shop Visuals
   ============================================================ */

/* ============================================================
   SERVICE CARDS WITH IMAGES
   ============================================================ */

.service-card-with-image {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

.service-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
  pointer-events: none;
}

.service-card-image-count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.78);
  border: 1px solid rgba(201, 169, 98, 0.35);
  color: var(--text-primary);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  z-index: 2;
}

.service-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-with-image .service-card-content {
  padding-top: 0.5rem;
}

.service-card-with-image .service-card-title {
  margin-top: 0;
}

.service-card-with-image .service-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.service-card-thumb-strip {
  display: flex;
  gap: 0.625rem;
  margin-top: 1rem;
}

.service-card-thumb {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  flex: 0 0 auto;
}

.service-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .service-card-grid-mobile-rail {
    --service-card-rail-width: min(86vw, 320px);
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    margin-inline: -0.75rem;
    padding-inline: 0.75rem;
    padding-bottom: 0.5rem;
    scroll-padding-inline: 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
    /* Subtle gradient fade on right edge to indicate scrollability */
    -webkit-mask-image: linear-gradient(
      to right,
      black calc(100% - 50px),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      black calc(100% - 50px),
      transparent 100%
    );
  }

  .service-card-grid-mobile-rail::-webkit-scrollbar {
    display: none;
  }

  .service-card-grid-mobile-rail > .service-card-grid-item {
    width: var(--service-card-rail-width);
    max-width: var(--service-card-rail-width);
    flex: 0 0 var(--service-card-rail-width);
    padding-left: 0;
    padding-right: 0;
    scroll-snap-align: start;
  }

  .service-card-grid-mobile-rail > .service-card-grid-item:last-child {
    margin-right: 0.25rem;
    /* Subtle highlight on last card to indicate more content */
    position: relative;
  }

  /* Gold accent line on right edge of last card */
  .service-card-grid-mobile-rail > .service-card-grid-item:last-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60px;
    background: var(--brand-accent);
    border-radius: 2px;
    opacity: 0.5;
    animation: scrollHintPulse 2.5s ease-in-out infinite;
  }

  .service-card-grid-mobile-rail .service-card {
    height: 100%;
  }
}

/* Scroll hint pulse animation */
@keyframes scrollHintPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@media (min-width: 768px) {
  .service-card-image {
    height: 240px;
  }
  
  .service-card-content {
    padding: 2rem;
  }
}

@media (min-width: 1200px) {
  .service-card-image {
    height: 280px;
  }
  
  .service-card-content {
    padding: 2rem;
  }
}

/* ============================================================
   TEAM SECTION & CARDS
   ============================================================ */

.team-card {
  background: linear-gradient(145deg, #1e1e1e 0%, #1a1a1a 100%);
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: 12px;
  transition: all 0.4s ease;
  height: 100%;
  overflow: hidden;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.4),
    0 10px 20px -5px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.team-card:hover {
  border-color: rgba(201, 169, 98, 0.2);
  transform: translateY(-4px);
  box-shadow: 
    0 12px 24px -6px rgba(0, 0, 0, 0.5),
    0 20px 40px -10px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 169, 98, 0.1) inset;
}

/* Team card as link - ensure text colors remain correct */
a.team-card {
  color: inherit;
  display: block;
}

a.team-card:hover {
  color: inherit;
}

a.team-card .team-card-name,
a.team-card .team-card-role {
  color: inherit;
}

.team-card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-card-photo img {
  transform: scale(1.05);
}

.team-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.team-card-initials {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--brand-accent);
  opacity: 0.5;
}

.team-card-content {
  padding: 1.25rem;
  text-align: center;
}

.team-card-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.team-card-role {
  font-size: 0.8125rem;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.team-card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.team-skill-tag {
  font-size: 0.6875rem;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Team Group Photo */
.team-photo-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.team-group-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   SHOP INTERIOR IMAGES
   ============================================================ */

.shop-image-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.shop-interior-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.shop-image-container:hover .shop-interior-image {
  transform: scale(1.02);
}

/* ============================================================
   HERO ENHANCEMENTS
   ============================================================ */

.hero-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* ============================================================
   GALLERY ENHANCEMENTS
   ============================================================ */

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

@media (max-width: 767px) {
  .team-card-photo {
    aspect-ratio: 1;
  }
  
  .team-card-content {
    padding: 1rem;
  }
  
  .team-card-name {
    font-size: 1rem;
  }
  
  .service-card-image {
    height: 180px;
  }
}

/* ============================================================
   ANIMATION ENHANCEMENTS
   ============================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }

/* Parallax effect for hero */
@supports (background-attachment: fixed) {
  .hero-background {
    background-attachment: fixed;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
  }
  
  .service-card-image img,
  .team-card-photo img,
  .gallery-item img,
  .shop-interior-image {
    transition: none;
  }
  
  .service-card:hover .service-card-image img,
  .team-card:hover .team-card-photo img,
  .gallery-item:hover img,
  .shop-image-container:hover .shop-interior-image {
    transform: none;
  }
}

/* ============================================================
   PAGE HERO IMAGES - NEW STYLES
   ============================================================ */

.page-hero-with-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.page-hero-has-bg {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0.7) 0%, rgba(15, 15, 15, 0.85) 100%);
  z-index: 1;
}

.page-hero-has-bg .container {
  position: relative;
  z-index: 2;
}

/* Adjust text colors when on hero background */
.page-hero-has-bg .page-hero-title,
.page-hero-has-bg .page-kicker {
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero-has-bg .page-hero-text {
  color: var(--text-secondary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   ABOUT PAGE ENHANCEMENTS
   ============================================================ */

.about-image-frame {
  position: relative;
}

.about-image-border {
  border: 2px solid var(--brand-accent);
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  z-index: 0;
}

.about-image-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-frame:hover .about-image {
  transform: scale(1.05);
}

.about-image-placeholder {
  background: var(--bg-tertiary);
  aspect-ratio: 4/5;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Team photo wide display */
.team-photo-wide {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.team-photo-wide img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   CONTACT PAGE ENHANCEMENTS
   ============================================================ */

.contact-shop-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.contact-shop-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.contact-shop-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, transparent 100%);
}

.contact-shop-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-top: 0.5rem;
}

/* ============================================================
   ENHANCED ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.reveal {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Fade in animation */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

/* Scale in animation for cards */
.scale-in {
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

/* ============================================================
   PARALLAX SUPPORT
   ============================================================ */

@supports (background-attachment: fixed) {
  .page-hero-with-image {
    background-attachment: fixed;
  }
}

/* Mobile: Disable parallax for performance */
@media (max-width: 768px) {
  .page-hero-with-image {
    background-attachment: scroll;
  }
  
  .page-hero-has-bg {
    min-height: 50vh;
  }
  
  .contact-shop-image img {
    height: 250px;
  }
}

/* ============================================================
   ENHANCED HOVER EFFECTS
   ============================================================ */

.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-zoom:hover img {
  transform: scale(1.08);
}

/* Card lift effect */
.card-hover-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

.card-hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Gold glow hover */
.gold-glow-hover {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gold-glow-hover:hover {
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-glow);
}

/* ============================================================
   REDUCED MOTION SUPPORT
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .fade-in,
  .scale-in {
    animation: none;
    opacity: 1;
  }
  
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4,
  .stagger-1,
  .stagger-2,
  .stagger-3,
  .stagger-4,
  .stagger-5 {
    animation-delay: 0s;
  }
  
  .page-hero-with-image {
    background-attachment: scroll;
  }
  
  .img-zoom img,
  .about-image,
  .card-hover-lift {
    transition: none;
  }
  
  .img-zoom:hover img,
  .about-image-frame:hover .about-image,
  .card-hover-lift:hover {
    transform: none;
  }
}

/* ============================================================
   LOADING STATES
   ============================================================ */

.loading-shimmer {
  background: linear-gradient(
    90deg,
    var(--bg-tertiary) 25%,
    var(--bg-secondary) 50%,
    var(--bg-tertiary) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

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

/* ============================================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================================ */

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-accent);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 1rem;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border-color: rgba(201, 169, 98, 0.5);
    --text-secondary: #d0d0d0;
  }
}


/* ============================================================
   STARTER TIER - ENHANCED CONTACT CTAS
   ============================================================ */

/* ------------------------------------------------------------
   Sticky Contact Bar (Starter Tier Only)
   ------------------------------------------------------------ */
.starter-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.98) 0%, rgba(10, 10, 10, 0.99) 100%);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  backdrop-filter: blur(10px);
}

.starter-contact-bar .btn-starter-call {
  flex: 1;
  max-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 48px;
  background: #ffffff;
  color: #0a0a0a;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.starter-contact-bar .btn-starter-call:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.starter-contact-bar .btn-starter-call:active {
  transform: translateY(0);
}

.starter-contact-bar .btn-starter-whatsapp {
  flex: 1;
  max-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 48px;
  background: #25D366;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.starter-contact-bar .btn-starter-whatsapp:hover {
  background: #22c35e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.starter-contact-bar .btn-starter-whatsapp:active {
  transform: translateY(0);
}

.starter-contact-bar .btn-starter-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.starter-contact-bar .btn-starter-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Add padding to body when contact bar is shown */
body.has-starter-contact-bar {
  padding-bottom: 80px;
}

/* Hide on desktop */
@media (min-width: 992px) {
  .starter-contact-bar {
    display: none;
  }
  
  body.has-starter-contact-bar {
    padding-bottom: 0;
  }
}

/* ------------------------------------------------------------
   Floating Action Buttons (Mobile)
   ------------------------------------------------------------ */
.floating-contact-buttons {
  position: fixed;
  bottom: 100px;
  right: 16px;
  z-index: 1035;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
  text-decoration: none;
}

.fab-btn:hover {
  transform: scale(1.05);
}

.fab-btn:active {
  transform: scale(0.95);
}

.fab-btn.phone {
  background: #ffffff;
  color: #0a0a0a;
}

.fab-btn.phone:hover {
  background: #f0f0f0;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.fab-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.fab-btn.whatsapp:hover {
  background: #22bf5b;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.fab-btn svg {
  width: 24px;
  height: 24px;
}

/* Hide on desktop */
@media (min-width: 992px) {
  .floating-contact-buttons {
    display: none;
  }
}

/* ------------------------------------------------------------
   Enhanced Contact Cards (Starter Tier)
   ------------------------------------------------------------ */
.starter-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.starter-contact-actions .btn-contact-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 48px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.starter-contact-actions .btn-contact-large.phone {
  background: #ffffff;
  color: #0a0a0a;
  border: none;
}

.starter-contact-actions .btn-contact-large.phone:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.starter-contact-actions .btn-contact-large.whatsapp {
  background: transparent;
  color: #25D366;
  border: 1px solid #25D366;
}

.starter-contact-actions .btn-contact-large.whatsapp:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

@media (max-width: 575.98px) {
  .starter-contact-actions {
    grid-template-columns: 1fr;
  }
  
  .starter-contact-actions .btn-contact-large {
    padding: 12px 24px;
    min-height: 48px;
    font-size: 0.875rem;
  }
}

/* ------------------------------------------------------------
   Hero CTA Enhancement (Starter Tier)
   ------------------------------------------------------------ */
.hero-cta-starter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ============================================================
   HERO CTA BUTTONS - Modern Minimalist Style
   ============================================================ */

.hero-cta-starter .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 52px;
  background: #ffffff;
  color: #0a0a0a;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.hero-cta-starter .btn-hero-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.hero-cta-starter .btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 52px;
  background: #25D366;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-cta-starter .btn-hero-whatsapp:hover {
  background: #22c35e;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.hero-cta-starter .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 52px;
  background: transparent;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-cta-starter .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 575.98px) {
  .hero-cta-starter {
    gap: 12px;
  }

  .hero-cta-starter .btn-hero-primary,
  .hero-cta-starter .btn-hero-whatsapp,
  .hero-cta-starter .btn-hero-secondary {
    flex: 1 1 0;
    justify-content: center;
    padding: 12px 16px;
    min-height: 48px;
  }
}

/* ------------------------------------------------------------
   Service Card CTA (Starter Tier)
   ------------------------------------------------------------ */
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 14px;
  background: rgba(201, 169, 98, 0.1);
  color: var(--brand-gold);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.service-card-cta:hover {
  background: rgba(201, 169, 98, 0.2);
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

/* ============================================================
   END STARTER TIER CTAS
   ============================================================ */


/* ============================================================
   STARTER TIER - BOTTOM MENU (WhatsApp & Call)
   ============================================================ */

.starter-bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 8px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(15, 15, 15, 0.95);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.4);
}

.starter-bottom-item {
  flex: 1;
  max-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.starter-bottom-item:hover {
  color: #fff;
  background: rgba(201, 169, 98, 0.12);
}

.starter-bottom-item:active {
  transform: scale(0.96);
}

.starter-bottom-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.starter-bottom-icon.ph-whatsapp-logo {
  color: rgba(37, 211, 102, 0.9);
}

.starter-bottom-item:hover .starter-bottom-icon.ph-whatsapp-logo {
  color: #25D366;
}

.starter-bottom-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Add padding to body when bottom menu is shown */
body.has-starter-contact-bar {
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
}

/* Hide old contact bar styles */
.starter-contact-bar,
.starter-contact-bar-minimal,
.floating-contact-buttons {
  display: none !important;
}

/* Hide on desktop */
@media (min-width: 992px) {
  .starter-bottom-menu {
    display: none;
  }

  body.has-starter-contact-bar {
    padding-bottom: 0;
  }
}

/* ============================================================
   END MINIMAL ICON-ONLY CONTACT BAR
   ============================================================ */

/* ============================================================
   BOOKING WIZARD - Phase 1 Professional Tier Polish
   ============================================================ */

/* Wizard Progress Container */
.wizard-progress-container {
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .wizard-progress-container {
    margin-bottom: 3rem;
    padding: 0;
  }
}

/* Progress Bar */
.wizard-progress-bar {
  height: 4px;
  background: var(--bg-tertiary);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.wizard-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-gold) 100%);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

/* Steps Indicator */
.wizard-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 400px;
  margin: 0 auto;
}

.wizard-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.wizard-step-dot .wizard-step-number,
.wizard-step-dot .wizard-step-check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  background: var(--bg-tertiary);
  color: var(--text-muted);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.wizard-step-dot .wizard-step-check {
  display: none;
  background: var(--brand-accent);
  color: var(--bg-primary);
  border-color: var(--brand-accent);
}

.wizard-step-dot.active .wizard-step-number {
  background: var(--brand-accent);
  color: var(--bg-primary);
  border-color: var(--brand-accent);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.4);
}

.wizard-step-dot.completed .wizard-step-number {
  display: none;
}

.wizard-step-dot.completed .wizard-step-check {
  display: flex;
}

.wizard-step-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.wizard-step-dot.active .wizard-step-label,
.wizard-step-dot.completed .wizard-step-label {
  color: var(--text-primary);
}

.wizard-step-connector {
  flex: 1;
  height: 2px;
  background: var(--border-color);
  margin: 0 0.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.wizard-step-connector::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step-dot.completed + .wizard-step-connector::after,
.wizard-step-connector:has(+ .completed)::after {
  transform: scaleX(1);
}

/* Step Badge (in card titles) */
.wizard-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--brand-accent);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50%;
  margin-right: 0.75rem;
  vertical-align: middle;
}

/* Wizard Step Animation */
.wizard-step {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.wizard-step-enter {
  opacity: 0;
  transform: translateX(20px);
}

.wizard-step-active {
  opacity: 1;
  transform: translateX(0);
}

/* Step Error Message */
.wizard-step-error {
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

/* Wizard Navigation */
.wizard-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.wizard-navigation .btn {
  min-width: 140px;
}

@media (max-width: 767.98px) {
  .wizard-navigation {
    flex-direction: row;
    gap: 1rem;
  }
  
  .wizard-navigation .btn {
    flex: 1;
    min-width: auto;
  }
}

/* Resume Banner */
.wizard-resume-banner {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-resume-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 576px) {
  .wizard-resume-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.wizard-resume-content span {
  color: var(--text-primary);
  font-weight: 500;
}

.wizard-resume-actions {
  display: flex;
  gap: 0.75rem;
}

/* Booking Review Section */
.booking-review-section {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}

.booking-review-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-color);
}

.booking-review-item:last-child {
  border-bottom: none;
}

.booking-review-label {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.booking-review-value {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

@media (max-width: 767.98px) {
  .booking-review-value {
    max-width: 50%;
  }
}

/* Submitting State */
.booking-wizard-form.wizard-submitting {
  pointer-events: none;
  opacity: 0.8;
}

.booking-wizard-form.wizard-submitting .wizard-progress-fill {
  animation: progressPulse 1.5s ease infinite;
}

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

/* Enhanced Form Controls for Wizard */
.wizard-step .form-control-premium.is-invalid,
.wizard-step .form-select-premium.is-invalid {
  border-color: #e74c3c;
  background-image: none;
}

.wizard-step .form-control-premium.is-invalid:focus,
.wizard-step .form-select-premium.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

/* Mobile-optimized step navigation */
@media (max-width: 767.98px) {
  .wizard-steps-indicator {
    max-width: 300px;
  }
  
  .wizard-step-dot .wizard-step-number,
  .wizard-step-dot .wizard-step-check {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .wizard-step-label {
    font-size: 0.6875rem;
  }
  
  .wizard-step-connector {
    margin: 0 0.5rem;
    margin-bottom: 1.25rem;
  }
}

/* Accessibility: Focus visible states */
.wizard-step-dot:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .wizard-step,
  .wizard-progress-fill,
  .wizard-step-connector::after {
    transition: none;
  }
  
  .wizard-step-enter,
  .wizard-step-active {
    opacity: 1;
    transform: none;
  }
  
  .wizard-resume-banner {
    animation: none;
  }
}

/* ============================================================
   PHASE 2: TOUCH GESTURES & MOBILE INTERACTIONS
   ============================================================ */

/* ==========================================
   Touch Ripple Effect
   ========================================== */
.touch-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-premium,
.btn-outline-premium {
  position: relative;
  overflow: hidden;
}

/* ==========================================
   Pull to Refresh
   ========================================== */
.pull-to-refresh-indicator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-100%) translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: transform 0.2s ease;
  z-index: 10;
}

.pull-indicator-spinner {
  width: 24px;
  height: 24px;
  color: var(--brand-accent);
  transition: transform 0.2s ease;
}

.pull-indicator-spinner svg {
  width: 100%;
  height: 100%;
}

.pull-to-refresh-indicator.ready .pull-indicator-spinner {
  transform: rotate(180deg);
}

.pull-to-refresh-indicator.refreshing .pull-indicator-spinner {
  animation: spin 1s linear infinite;
}

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

[data-pull-to-refresh] {
  position: relative;
  min-height: 100vh;
}

/* ==========================================
   Bottom Sheet
   ========================================== */
.bottom-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1060;
}

.bottom-sheet-overlay.active {
  opacity: 1;
  visibility: visible;
}

.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-radius: 1rem 1rem 0 0;
  padding: 1rem 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1070;
  max-height: 85vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.bottom-sheet.active {
  transform: translateY(0);
}

.bottom-sheet-handle {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 1rem;
  cursor: grab;
}

.bottom-sheet-handle:active {
  cursor: grabbing;
}

.bottom-sheet-handle-bar {
  width: 40px;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
}

.bottom-sheet-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-align: center;
}

.bottom-sheet-content {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Bottom Sheet Content Styles */
.service-sheet-content,
.barber-sheet-content {
  padding: 0.5rem 0;
}

.service-sheet-description,
.barber-sheet-bio {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.service-sheet-meta {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.25rem;
}

.service-sheet-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-accent);
  font-weight: 600;
}

.service-sheet-duration {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.service-sheet-suitability,
.service-sheet-prep,
.barber-sheet-specialties {
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.barber-sheet-photo {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: block;
  border: 2px solid var(--border-color);
}

/* ==========================================
   Swipeable Gallery
   ========================================== */
[data-swipeable-gallery] {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

[data-gallery-image] {
  display: none;
  width: 100%;
  transition: opacity 0.3s ease;
}

[data-gallery-image].active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gallery-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-indicator.active {
  background: var(--brand-accent);
  transform: scale(1.3);
}

/* Gallery swipe hint */
.gallery-swipe-hint {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-primary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

[data-swipeable-gallery]:hover .gallery-swipe-hint,
[data-swipeable-gallery]:active .gallery-swipe-hint {
  opacity: 1;
}

.gallery-swipe-hint.prev {
  left: 1rem;
}

.gallery-swipe-hint.next {
  right: 1rem;
}

/* ==========================================
   Long Press Visual Feedback
   ========================================== */
[data-long-press] {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

[data-long-press]:active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 98, 0.1);
  border-radius: inherit;
  animation: long-press-feedback 0.5s ease forwards;
}

@keyframes long-press-feedback {
  0% { opacity: 0; }
  20% { opacity: 1; }
  100% { opacity: 0; }
}

/* ==========================================
   Touch-Optimized Form Elements
   ========================================== */
@media (pointer: coarse) {
  /* Larger touch targets on mobile */
  .form-control-premium,
  .form-select-premium {
    min-height: 48px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .booking-choice-option {
    min-height: 56px;
    padding: 1rem;
  }
  
  .booking-check-card {
    min-height: 56px;
    padding: 1rem;
  }
  
  /* Increase spacing between form elements */
  .wizard-step .row.g-4 {
    --bs-gutter-y: 1.25rem;
  }
  
  /* Consistent button sizing */
  .wizard-navigation .btn {
    min-height: 48px;
    font-size: 0.875rem;
  }
}

/* ==========================================
   Reduced Motion Support
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  .bottom-sheet,
  .bottom-sheet-overlay,
  .touch-ripple,
  [data-gallery-image] {
    transition: none;
    animation: none;
  }
  
  .pull-indicator-spinner {
    animation: none;
  }
}

/* ==========================================
   iOS Safe Area Support
   ========================================== */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .bottom-sheet {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }
}

/* ============================================================
   GALLERY LIGHTBOX - Phase 2
   ============================================================ */

.gallery-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.gallery-lightbox-close:hover {
  background: var(--brand-accent);
  color: var(--bg-primary);
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.gallery-lightbox-nav:hover {
  background: var(--brand-accent);
  color: var(--bg-primary);
}

.gallery-lightbox-nav.prev {
  left: 1rem;
}

.gallery-lightbox-nav.next {
  right: 1rem;
}

.gallery-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  touch-action: pan-y;
}

.gallery-lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  transition: opacity 0.2s ease;
  border-radius: 4px;
}

.gallery-lightbox-caption {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
  text-align: center;
}

.gallery-lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.gallery-lightbox-swipe-hint {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.gallery-lightbox-swipe-hint.hide {
  opacity: 0;
}

/* Gallery Row Swipe Hint */
.gallery-row-swipe-hint {
  text-align: center;
  padding: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-row-swipe-hint.show {
  opacity: 1;
}

.gallery-row-swipe-hint span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-row-swipe-hint span::after {
  content: '→';
  animation: swipeHint 1.5s ease infinite;
}

@keyframes swipeHint {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(5px); opacity: 1; }
}

/* Make gallery rows horizontally scrollable on mobile */
@media (max-width: 767.98px) {
  .gallery-section .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
  }
  
  .gallery-section .row::-webkit-scrollbar {
    display: none;
  }
  
  .gallery-section .row > div {
    flex: 0 0 50%;
    scroll-snap-align: start;
  }
}

/* Gallery item touch feedback */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 98, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.gallery-item:active::after {
  background: rgba(201, 169, 98, 0.1);
}

/* ============================================================
   SERVICE CARD QUICK VIEW - Phase 2
   ============================================================ */

.service-card-quick-view-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--text-primary);
  font-size: 0.75rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:active .service-card-quick-view-hint,
.service-card[data-long-press]:active .service-card-quick-view-hint {
  opacity: 1;
}

.service-card-quick-view-hint span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 169, 98, 0.9);
  color: var(--bg-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-weight: 500;
}

/* Enhanced service card touch feedback */
.service-card {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.service-card:active::before {
  opacity: 1;
}

/* Service card ripple container */
.service-card-image,
.service-card-icon {
  position: relative;
  overflow: hidden;
}

/* Booking manage page pull-to-refresh */
[data-pull-to-refresh] {
  position: relative;
}

.booking-refresh-content {
  min-height: 50vh;
}

/* ==========================================
   Improved Mobile Form Interactions
   ========================================== */

/* Touch-friendly checkboxes */
.booking-check-card {
  position: relative;
  overflow: hidden;
}

.booking-check-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-accent);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  border-radius: inherit;
  pointer-events: none;
}

.booking-check-card:active::after {
  opacity: 0.1;
  transform: scale(1);
}

/* Wizard step transitions */
.wizard-step {
  will-change: opacity, transform;
}

/* Button press states */
.btn-premium:active,
.btn-outline-premium:active {
  transform: scale(0.98);
}

/* Form select touch optimization */
.form-select-premium {
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ==========================================
   Loading States
   ========================================== */

.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btn-spin 0.8s linear infinite;
}

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

/* ==========================================
   Offline Indicator
   ========================================== */

.offline-indicator {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #e74c3c;
  color: white;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.offline-indicator.visible {
  transform: translateY(0);
}

/* ==========================================
   Touch Gesture Visual Feedback
   ========================================== */

@media (pointer: coarse) {
  /* Larger tap targets */
  .gallery-item,
  .service-card,
  .team-card {
    cursor: pointer;
  }
  
  /* Remove hover effects on touch devices */
  .card-hover-lift:hover {
    transform: none;
  }
  
  .card-hover-lift:active {
    transform: scale(0.98);
  }
  
  /* Swipe hint animation */
  .gallery-swipe-hint {
    animation: pulse-hint 2s ease infinite;
  }
  
  @keyframes pulse-hint {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
}

/* ==========================================
   Focus States for Accessibility
   ========================================== */

.bottom-sheet:focus,
.gallery-lightbox-overlay:focus {
  outline: none;
}

/* High contrast focus */
.btn:focus-visible,
.form-control-premium:focus-visible,
.form-select-premium:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* ==========================================
   Animation Performance
   ========================================== */

.wizard-step,
.bottom-sheet,
.gallery-lightbox-overlay,
.touch-ripple {
  will-change: transform, opacity;
}

/* GPU acceleration for animations */
.service-card-grid-mobile-rail {
  transform: translateZ(0);
}

/* ============================================================
   PHASE 3: TESTIMONIAL CAROUSEL
   ============================================================ */

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonial-carousel-track {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.testimonial-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.testimonial-carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-carousel-slide.prev {
  transform: translateX(-100px);
}

.testimonial-carousel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  text-align: center;
  position: relative;
}

@media (max-width: 767.98px) {
  .testimonial-carousel-card {
    padding: 1.75rem;
  }
}

/* Stars */
.testimonial-carousel-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-star {
  color: var(--border-color);
  font-size: 1.5rem;
  line-height: 1;
}

.testimonial-star.filled {
  color: var(--brand-accent);
}

/* Quote */
.testimonial-carousel-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0 0 2rem;
  position: relative;
}

.testimonial-carousel-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--brand-accent);
  opacity: 0.3;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
}

/* Author */
.testimonial-carousel-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-carousel-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bg-primary);
}

.testimonial-carousel-info {
  text-align: left;
}

.testimonial-carousel-name {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.125rem;
}

.testimonial-carousel-service {
  display: block;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Verified Badge */
.testimonial-verified-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #27ae60;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 767.98px) {
  .testimonial-verified-badge {
    position: static;
    margin-top: 1rem;
    justify-content: center;
  }
}

/* Navigation */
.testimonial-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-carousel-nav:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: var(--bg-primary);
}

.testimonial-carousel-nav.prev {
  left: -24px;
}

.testimonial-carousel-nav.next {
  right: -24px;
}

@media (max-width: 991.98px) {
  .testimonial-carousel-nav {
    display: none;
  }
}

/* Indicators */
.testimonial-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.testimonial-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-indicator.active {
  background: var(--brand-accent);
  transform: scale(1.3);
}

.testimonial-indicator:hover {
  background: var(--brand-accent-hover);
}

/* Swipe Hint */
.testimonial-swipe-hint {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  animation: fade-pulse 2s ease infinite;
}

.testimonial-swipe-hint span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-swipe-hint span::after {
  content: '→';
  animation: swipe-hint-arrow 1.5s ease infinite;
}

@keyframes fade-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes swipe-hint-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* ============================================================
   PHASE 3: BEFORE/AFTER SLIDER
   ============================================================ */

.before-after-slider {
  max-width: 800px;
  margin: 0 auto;
}

.before-after-container {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.before-after-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.before-after-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.before-after-image.before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 2;
}

.before-after-image.before img {
  /* Ensure the before image doesn't squish */
  width: 100vw;
  max-width: 800px;
}

/* Handle */
.before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-accent);
  transform: translateX(-50%);
  z-index: 3;
  cursor: col-resize;
}

.before-after-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--brand-accent);
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.before-after-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--brand-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.before-after-handle-button svg {
  width: 16px;
  height: 16px;
}

.before-after-container:hover .before-after-handle-button {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Labels */
.before-after-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 4;
  border-radius: 2px;
}

.before-after-label.before {
  left: 1rem;
}

.before-after-label.after {
  right: 1rem;
}

/* Caption */
.before-after-caption {
  text-align: center;
  color: var(--text-secondary);
  margin-top: 1rem;
  font-size: 0.9375rem;
}

/* Mobile touch optimization */
@media (pointer: coarse) {
  .before-after-handle-button {
    width: 56px;
    height: 56px;
  }
  
  .before-after-handle-button svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================================
   PHASE 3: SOCIAL PROOF COUNTERS
   ============================================================ */

.social-proof-bar {
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .social-proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.social-proof-item {
  text-align: center;
}

.social-proof-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.social-proof-label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
}

.social-proof-stars {
  display: block;
  color: var(--brand-accent);
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

/* Count-up animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-proof-number {
  animation: countUp 0.6s ease forwards;
}

/* ============================================================
   PHASE 3: REVIEW BADGES
   ============================================================ */

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.review-badge-stars {
  color: var(--brand-accent);
  letter-spacing: 0.05em;
}

.review-badge-count {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.review-badge-pulse {
  animation: badge-pulse 2s ease infinite;
}

@keyframes badge-pulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.2);
  }
  50% { 
    box-shadow: 0 0 0 8px rgba(201, 169, 98, 0);
  }
}

/* Service card review count */
.service-card-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: 0.75rem;
}

.service-card-reviews svg {
  width: 14px;
  height: 14px;
  color: var(--brand-accent);
}

/* Popular service badge */
.popular-service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-accent);
  color: var(--bg-primary);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  z-index: 2;
}

/* Booking count indicator */
.booking-count-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

.booking-count-indicator::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #27ae60;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* ============================================================
   PHASE 3: SOCIAL PROOF TOAST NOTIFICATIONS
   ============================================================ */

.social-proof-toast-container {
  position: fixed;
  bottom: 100px;
  left: 1rem;
  right: 1rem;
  z-index: 1040;
  pointer-events: none;
}

@media (min-width: 576px) {
  .social-proof-toast-container {
    left: auto;
    right: 2rem;
    width: 320px;
  }
}

.social-proof-toast {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--brand-accent);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.social-proof-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.social-proof-toast-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 98, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  flex-shrink: 0;
}

.social-proof-toast-icon svg {
  width: 20px;
  height: 20px;
}

.social-proof-toast-content {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.social-proof-toast-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================================
   PHASE 3: TRUST BADGES
   ============================================================ */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  color: var(--brand-accent);
}

/* Google Business, Facebook, Instagram badges */
.trust-badge-google,
.trust-badge-facebook,
.trust-badge-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  font-size: 0.8125rem;
  font-weight: 500;
}

.trust-badge-google svg,
.trust-badge-facebook svg,
.trust-badge-instagram svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   HERO QUICK CONTACT - Professional/Premium Tiers
   ============================================================ */

.hero-quick-contact {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.quick-contact-label {
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quick-contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-quick-call,
.btn-quick-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 48px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-quick-call {
  background: #ffffff;
  color: #0a0a0a;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.btn-quick-call:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.btn-quick-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: none;
}

.btn-quick-whatsapp:hover {
  background: #22c35e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-quick-call svg,
.btn-quick-whatsapp svg {
  width: 18px;
  height: 18px;
}

/* Mobile optimization */
@media (max-width: 575.98px) {
  .hero-quick-contact {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
  
  .quick-contact-buttons {
    width: 100%;
  }
  
  .btn-quick-call,
  .btn-quick-whatsapp {
    flex: 1;
    justify-content: center;
    min-width: 120px;
  }
}

/* Desktop layout */
@media (min-width: 768px) {
  .hero-quick-contact {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  
  .quick-contact-label {
    margin-bottom: 0;
  }
}

/* ============================================================
   PHASE 4: PWA COMPONENTS
   ============================================================ */

/* ==========================================
   Install Banner
   ========================================== */
.pwa-install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 1rem;
  z-index: 1080;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.pwa-install-banner.show {
  transform: translateY(0);
}

.pwa-install-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.pwa-install-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  flex-shrink: 0;
}

.pwa-install-icon svg {
  width: 24px;
  height: 24px;
}

.pwa-install-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pwa-install-text strong {
  color: var(--text-primary);
  font-size: 1rem;
}

.pwa-install-text span {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.pwa-install-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.pwa-install-actions .btn-link {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.pwa-install-actions .btn-link:hover {
  color: var(--text-primary);
}

@media (max-width: 575.98px) {
  .pwa-install-content {
    flex-wrap: wrap;
  }
  
  .pwa-install-actions {
    width: 100%;
    justify-content: flex-end;
    margin-top: 0.5rem;
  }
}

/* ==========================================
   Online/Offline Indicator
   ========================================== */
.online-indicator {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #27ae60;
  color: white;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  z-index: 1050;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.online-indicator.hidden {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.online-indicator.offline {
  background: #e74c3c;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.online-indicator.offline .indicator-dot {
  animation: none;
}

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

/* ==========================================
   Offline Page Styles
   ========================================== */
.page-hero-sm {
  padding: 5rem 0 2rem;
}

.offline-icon {
  color: var(--brand-accent);
  opacity: 0.8;
}

.offline-icon svg {
  stroke: currentColor;
}

/* ==========================================
   Offline Form Queue
   ========================================== */
.form-offline-queue {
  position: relative;
}

.form-offline-queue::after {
  content: 'Queued for sync';
  position: absolute;
  top: -10px;
  right: 0;
  background: var(--brand-accent);
  color: var(--bg-primary);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}

/* ==========================================
   Standalone Mode Optimizations
   ========================================== */
@media (display-mode: standalone) {
  /* Hide browser-specific UI elements */
  .browser-only {
    display: none !important;
  }
  
  /* Adjust for mobile safe areas */
  .navbar-premium {
    padding-top: env(safe-area-inset-top);
  }
  
  .pwa-install-banner {
    display: none;
  }
}

/* ==========================================
   iOS Safari Specific
   ========================================== */
@supports (-webkit-touch-callout: none) {
  /* iOS specific adjustments */
  .pwa-install-banner {
    /* iOS doesn't support beforeinstallprompt */
    display: none;
  }
}

/* ============================================================
   TOUCH RIPPLE EFFECT
   ============================================================ */

.touch-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.touch-active {
  transform: scale(0.98) !important;
  transition: transform 0.1s ease !important;
}

/* Touch feedback for buttons and cards */
.btn,
.mobile-nav-item,
.service-card,
.team-card,
.barber-card {
  position: relative;
  overflow: hidden;
}

/* ============================================================
   FORM CONTROL FOCUS STATES
   ============================================================ */

.form-control-premium:focus,
.form-select-premium:focus,
input[type="date"]:focus,
input[type="time"]:focus {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
  outline: none;
}

/* ============================================================
   QUICK BOOK FAB - Modern Minimalist
   ============================================================ */

.quick-book-fab {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  min-height: 56px;
  background: #ffffff;
  color: #0a0a0a;
  border: none;
  border-radius: 28px;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.25s ease;
}

.quick-book-fab:hover {
  background: #f0f0f0;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 3px 12px rgba(255, 255, 255, 0.15);
}

.quick-book-fab:active {
  transform: translateY(0) scale(0.98);
}

.quick-book-fab i {
  font-size: 1.25rem;
}

/* ============================================================
   MOBILE SAFETY AREA SUPPORT
   ============================================================ */

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-bottom-nav {
    padding-bottom: env(safe-area-inset-bottom);
    height: calc(64px + env(safe-area-inset-bottom));
  }
  
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
  
  .quick-book-fab {
    bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

/* ============================================================
   TESTIMONIAL CARDS - Matching Service Card Design
   ============================================================ */

.testimonial-card {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card-stars {
  padding: 1.5rem 1.5rem 0.75rem;
  display: flex;
  gap: 0.25rem;
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-color);
}

.testimonial-star {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1;
}

.testimonial-star.filled {
  color: var(--brand-gold);
}

.testimonial-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-card-quote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-primary);
  flex: 1;
}

.testimonial-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.testimonial-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold) 0%, #b8941f 100%);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.testimonial-card-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.testimonial-card-service {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.testimonial-verified-badge {
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
  .testimonial-card-stars {
    padding: 1.25rem 1.25rem 0.5rem;
  }
  
  .testimonial-card-quote {
    font-size: 1rem;
  }
}

/* Desktop adjustments */
@media (min-width: 768px) {
  .testimonial-card-stars {
    padding: 1.5rem 2rem 1rem;
  }
  
  .testimonial-card-quote {
    font-size: 1.25rem;
  }
}

/* ============================================================
   HERO BACKGROUND - Unified Video, Slideshow & Image
   ============================================================ */

/* Hero Video Background */
.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slideshow-slide.active {
  opacity: 1;
}

/* Slideshow Indicators */
.hero-slideshow-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.hero-slideshow-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slideshow-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-slideshow-indicator.active {
  background: var(--brand-gold);
  transform: scale(1.2);
}

/* Slideshow Navigation */
.hero-slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.hero-slideshow-nav:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.hero-slideshow-nav.prev {
  left: 1.5rem;
}

.hero-slideshow-nav.next {
  right: 1.5rem;
}

.hero-slideshow-nav i {
  width: 24px;
  height: 24px;
}

/* Fallback Gradient */
.hero-background-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  z-index: 0;
}

/* Ensure hero overlay works with all backgrounds */
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

/* Mobile adjustments for slideshow */
@media (max-width: 991.98px) {
  .hero-slideshow-indicators {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
  
  .hero-slideshow-indicator {
    width: 8px;
    height: 8px;
  }
}

/* Hide slideshow indicators when there's only one slide */
.hero-slideshow[data-slides="1"] .hero-slideshow-indicators,
.hero-slideshow[data-slides="1"] .hero-slideshow-nav {
  display: none !important;
}

/* ============================================================
   FOOTER LINKS - 2 COLUMN LAYOUT
   ============================================================ */

/* Two-column footer links - override flex layout */
.footer-links.footer-links-two-column {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
  flex-direction: unset;
}

.footer-links-two-column a {
  margin-bottom: 0;
}

/* Mobile: Keep 2 columns but tighter spacing */
@media (max-width: 575.98px) {
  .footer-links.footer-links-two-column {
    gap: 0.375rem 1rem;
  }
  
  .footer-links-two-column a {
    font-size: 0.8125rem;
  }
}

/* Very small screens: Stack to 1 column */
@media (max-width: 374.98px) {
  .footer-links.footer-links-two-column {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BARBER CARD GRID - Mobile Horizontal Scroll
   ============================================================ */

@media (max-width: 767.98px) {
  .barber-card-grid-mobile-rail {
    --barber-card-rail-width: min(85vw, 320px);
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    margin-inline: -0.75rem;
    padding-inline: 0.75rem;
    padding-bottom: 0.5rem;
    scroll-padding-inline: 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Subtle gradient fade on right edge to indicate scrollability */
    -webkit-mask-image: linear-gradient(
      to right,
      black calc(100% - 50px),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      black calc(100% - 50px),
      transparent 100%
    );
  }

  .barber-card-grid-mobile-rail::-webkit-scrollbar {
    display: none;
  }

  .barber-card-grid-mobile-rail > .barber-card-grid-item {
    width: var(--barber-card-rail-width);
    max-width: var(--barber-card-rail-width);
    flex: 0 0 var(--barber-card-rail-width);
    padding-left: 0;
    padding-right: 0;
    scroll-snap-align: start;
  }

  .barber-card-grid-mobile-rail > .barber-card-grid-item:last-child {
    margin-right: 0.25rem;
    position: relative;
  }

  /* Gold accent line on right edge of last card */
  .barber-card-grid-mobile-rail > .barber-card-grid-item:last-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60px;
    background: var(--brand-accent);
    border-radius: 2px;
    opacity: 0.5;
    animation: scrollHintPulse 2.5s ease-in-out infinite;
  }

  .barber-card-grid-mobile-rail .barber-card {
    height: 100%;
  }
}

/* ============================================================
   BLOG CARDS
   ============================================================ */

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image-placeholder {
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
}

.blog-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.blog-card-excerpt {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.blog-card-read-time::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.blog-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-card-link:hover {
  color: var(--brand-gold);
  background: rgba(212, 175, 55, 0.05);
}

.blog-card-link i {
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link i {
  transform: translateX(4px);
}

/* Mobile: Blog cards stack naturally */
@media (max-width: 991.98px) {
  .blog-card-image {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .blog-card-title {
    font-size: 1.125rem;
  }
  
  .blog-card-content {
    padding: 1.25rem;
  }
  
  .blog-card-link {
    padding: 0.875rem 1.25rem;
  }
}
