/* ============================================================
   BARBERSHOP SAMI — Luxury Ivory & Charcoal Design System
   Modern, Spacious, Premium, Light
   ============================================================ */

/* ===================== CSS VARIABLES ===================== */
:root {
  --accent: #2B2B2B;
  --accent-light: #3A3A3A;
  --accent-dark: #1F1F1F;
  --accent-glow: rgba(43, 43, 43, 0.3);
  --accent-glow-strong: rgba(43, 43, 43, 0.5);
  --bg: #F3F0E8;
  --bg-card: #EAE8E2;
  --bg-surface: #DDD6C4;
  --border: #D1C9B0;
  --white: #FFFFFF;
  --white-soft: #4A4A4A;
  --grey: #8A8A8A;
  --grey-dark: #6E6E6E;
  --grey-light: #7A7A7A;
  --grey-booked: #C8C0AE;
  --error: #E74C3C;
  --success: #2ECC71;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Outfit', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.1);
  --shadow-accent: 0 4px 30px rgba(43,43,43,0.15);
  --shadow-accent-strong: 0 8px 40px rgba(43,43,43,0.2);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--white-soft);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  outline: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.accent {
  color: var(--accent);
}

/* ===================== SELECTION ===================== */
::selection {
  background: rgba(43, 43, 43, 0.2);
  color: var(--white);
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(43, 43, 43, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(43, 43, 43, 0.35);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(243, 240, 232, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(43, 43, 43, 0.08);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  transition: transform var(--transition-normal);
}

.nav-logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  font-size: 28px;
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(43, 43, 43, 0.25));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #2B2B2B;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--accent);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--grey-light);
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all var(--transition-smooth);
  border-radius: 1px;
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

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

.nav-cta {
  padding: 11px 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(43, 43, 43, 0.2);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  box-shadow: var(--shadow-accent-strong);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2B2B2B;
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(243, 240, 232, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-link {
  font-size: 26px;
  font-weight: 600;
  color: var(--white-soft);
  transition: all var(--transition-normal);
  position: relative;
}

.mobile-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.mobile-link.cta {
  margin-top: 16px;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border-radius: 50px;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(43, 43, 43, 0.25);
}

/* ===================== LANGUAGE SWITCHER ===================== */
.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
}

.lang-btn {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--grey-light);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
  background: none;
}

.lang-btn.active {
  color: var(--accent);
  border-color: rgba(43, 43, 43, 0.25);
  background: rgba(43, 43, 43, 0.06);
}

.lang-btn:hover {
  color: var(--accent);
}

.lang-flag {
  font-size: 12px;
}

.lang-switcher-mobile {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.lang-btn-mobile {
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-light);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
  cursor: pointer;
  background: none;
}

.lang-btn-mobile.active {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(43, 43, 43, 0.08);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('images/hero-barbershop.png') center center / cover no-repeat;
  filter: brightness(0.75) saturate(0.5);
  transform: scale(1.05);
  animation: heroImageZoom 20s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(43, 43, 43, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(43, 43, 43, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(43, 43, 43, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 28px;
  animation: heroFadeIn 1.2s ease-out;
}

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

.hero-badge {
  display: inline-block;
  padding: 10px 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  animation: badgePulse 3s infinite ease-in-out;
}

@keyframes badgePulse {
  0%, 100% { border-color: rgba(255, 255, 255, 0.3); box-shadow: none; }
  50% { border-color: rgba(255, 255, 255, 0.5); box-shadow: 0 0 30px rgba(255, 255, 255, 0.08); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  font-size: clamp(48px, 10vw, 100px);
  letter-spacing: 6px;
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-title-line.accent {
  color: #FFFFFF;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.15), 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(18px, 2.5vw, 24px);
  color: #FFFFFF;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(43, 43, 43, 0.25);
}

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

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

.btn-primary:hover {
  box-shadow: 0 8px 35px rgba(43, 43, 43, 0.35);
  transform: translateY(-3px);
}

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

.btn-primary:disabled::before {
  display: none;
}

.btn-outline {
  border: 1px solid rgba(43, 43, 43, 0.3);
  color: var(--accent);
  background: transparent;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(43, 43, 43, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(43, 43, 43, 0.12);
  transform: translateY(-2px);
}

/* Hero-specific: white text & icon for outline buttons on dark image background */
.hero .btn-outline {
  color: #FFFFFF;
}

.hero .btn-outline svg {
  color: #FFFFFF;
}

.btn-book {
  font-size: 15px;
  padding: 16px 40px;
}

.hero-info {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #FFFFFF;
}

.hero-info-item svg {
  color: #FFFFFF;
  opacity: 0.8;
}

.hero-info-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
}

/* ===================== SECTIONS COMMON ===================== */
section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid rgba(43, 43, 43, 0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  background: rgba(43, 43, 43, 0.03);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  color: #2B2B2B;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-desc {
  font-size: 16px;
  color: var(--grey-light);
  margin-top: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===================== ABOUT ===================== */
.about {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 50%, var(--bg) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

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

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: contain;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition-slow);
}

.about-image-wrap:hover .about-image {
  transform: scale(1.02);
}

.about-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(243, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(43, 43, 43, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-light);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.about-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: #2B2B2B;
  margin-bottom: 20px;
}

.about-text {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-soft);
}

.feature-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(43, 43, 43, 0.08);
  color: var(--accent);
  flex-shrink: 0;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--grey);
  margin-top: 8px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ===================== SERVICES ===================== */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(43, 43, 43, 0.15);
  box-shadow: var(--shadow-accent-strong);
}

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

.service-card.featured {
  border-color: rgba(43, 43, 43, 0.15);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(43, 43, 43, 0.3);
}

.service-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(234, 232, 226, 0.92) 0%, rgba(234, 232, 226, 0.55) 40%, transparent 60%);
  transition: all var(--transition-smooth);
}

.service-card:hover .service-image-overlay {
  background: linear-gradient(to top, rgba(234, 232, 226, 0.95) 0%, rgba(234, 232, 226, 0.6) 40%, transparent 60%);
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.45) 60%,
    rgba(255, 255, 255, 0.2) 100%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13px;
  color: #2B2B2B;
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #111111;
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #2B2B2B;
}

.service-duration svg {
  color: var(--accent);
  opacity: 0.7;
}

.service-book-btn {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(43, 43, 43, 0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-smooth);
  text-align: center;
}

.service-book-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(43, 43, 43, 0.25);
  transform: translateY(-2px);
}

/* ===================== BOOKING ===================== */
.booking {
  background: var(--bg-surface);
  position: relative;
}

.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43, 43, 43, 0.25), transparent);
}

.booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}

.booking-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark), var(--accent));
}

/* Steps indicator */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--grey);
  transition: all var(--transition-smooth);
  background: var(--bg-card);
}

.step.active .step-circle,
.step.completed .step-circle {
  border-color: var(--accent);
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 0 25px rgba(43, 43, 43, 0.25);
}

.step.completed .step-circle {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.step.active .step-label {
  color: var(--accent);
}

.step-line {
  width: 50px;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.step-line.active {
  background: var(--accent);
}

/* Booking step panels */
.booking-step {
  display: none;
  animation: stepFadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.booking-step.active {
  display: block;
}

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

.booking-step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: #2B2B2B;
  margin-bottom: 8px;
}

.booking-step-desc {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 28px;
}

/* Step 1: Service Selection */
.service-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.service-option input {
  display: none;
}

.service-option-card {
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  background: var(--bg-surface);
  overflow: hidden;
}

.service-option-card:hover {
  border-color: rgba(43, 43, 43, 0.25);
  background: rgba(43, 43, 43, 0.025);
  transform: translateY(-2px);
}

.service-option input:checked + .service-option-card {
  border-color: var(--accent);
  background: rgba(43, 43, 43, 0.06);
  box-shadow: 0 0 30px rgba(43, 43, 43, 0.08);
}

.service-option input:checked + .service-option-card::after {
  content: '\2713';
  position: absolute;
  top: 10px;
  right: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
}

.service-option-name {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #2B2B2B;
  margin-bottom: 8px;
}

.service-option-price {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 4px;
}

.service-option-duration {
  font-size: 12px;
  color: var(--grey);
}

.service-option-badge {
  position: absolute;
  top: 8px;
  left: 12px;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
}

/* Step 2: Barber Selection — Premium Cards */
.barber-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.barber-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  background: var(--bg-surface);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  min-height: 320px;
}

.barber-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 43, 43, 0) 0%, rgba(43, 43, 43, 0.025) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.barber-card:hover {
  border-color: rgba(43, 43, 43, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(43, 43, 43, 0.06);
}

.barber-card:hover::before {
  opacity: 1;
}

/* Selected state — charcoal highlight border */
.barber-card.selected {
  border-color: #2B2B2B;
  background: rgba(43, 43, 43, 0.05);
  box-shadow: 0 0 0 1px rgba(43, 43, 43, 0.25), 0 8px 40px rgba(43, 43, 43, 0.1), 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.barber-card.selected::before {
  opacity: 1;
  background: linear-gradient(180deg, rgba(43, 43, 43, 0.03) 0%, rgba(43, 43, 43, 0.015) 100%);
}

/* Checkmark badge on selected card */
.barber-card .barber-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2B2B2B, #1F1F1F);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(43, 43, 43, 0.3);
  z-index: 2;
  animation: checkPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.barber-card.selected .barber-check {
  display: flex;
}

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

.barber-check svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  stroke-width: 3;
  fill: none;
}

/* Full-card background avatar */
.barber-card-avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  margin: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  background: linear-gradient(145deg, rgba(43, 43, 43, 0.12), rgba(43, 43, 43, 0.04));
  z-index: 0;
}

.barber-card-avatar .barber-avatar-initials {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 1px;
  transition: all var(--transition-smooth);
}

.barber-card-avatar .barber-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.barber-card:hover .barber-card-avatar .barber-avatar-img {
  transform: scale(1.05);
}

/* LIGHT overlay — only at the very bottom for text readability */
.barber-card-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(234, 232, 226, 0.88) 0%,
    rgba(234, 232, 226, 0.5) 45%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Professional SVG placeholder when no image available */
.barber-card-avatar .barber-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(43, 43, 43, 0.1), rgba(43, 43, 43, 0.03));
  border-radius: 0;
}

.barber-card-avatar .barber-avatar-placeholder svg {
  width: 70px;
  height: 70px;
  opacity: 0.35;
  color: var(--accent);
}

.barber-card:hover .barber-card-avatar {
  /* subtle brightness on hover */
}

.barber-card.selected .barber-card-avatar {
  background: linear-gradient(145deg, rgba(43, 43, 43, 0.15), rgba(43, 43, 43, 0.04));
}

.barber-card.selected .barber-card-avatar .barber-avatar-initials {
  color: #2B2B2B;
}

/* Barber name — bottom strip over image */
.barber-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: #2B2B2B;
  margin-bottom: 4px;
  margin-top: 0;
  padding: 0 20px;
  letter-spacing: 0.5px;
  transition: color var(--transition-smooth);
  position: relative;
  z-index: 3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.barber-card.selected .barber-card-name {
  color: #2B2B2B;
}

/* Barber role subtitle — bottom strip over image */
.barber-card-role {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition-smooth);
  position: relative;
  z-index: 3;
  padding: 0 20px 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.barber-card.selected .barber-card-role {
  color: var(--accent-light);
}

.barber-loading,
.barber-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px;
  color: var(--grey);
  font-size: 14px;
  grid-column: 1 / -1;
}

/* Step 3: Calendar & Time */
.datetime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.calendar-container {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  transition: all var(--transition-smooth);
  background: transparent;
}

.calendar-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(43, 43, 43, 0.04);
  transform: scale(1.05);
}

.calendar-month-year {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: #2B2B2B;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}

.calendar-weekdays span {
  font-size: 11px;
  font-weight: 700;
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--white-soft);
  border: none;
  background: none;
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: rgba(43, 43, 43, 0.12);
  color: var(--accent);
  transform: scale(1.1);
}

.calendar-day.selected {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(43, 43, 43, 0.3);
  transform: scale(1.1);
}

.calendar-day.today {
  border: 1px solid rgba(43, 43, 43, 0.25);
}

.calendar-day.disabled {
  color: var(--grey-dark);
  cursor: not-allowed;
  opacity: 0.3;
}

.calendar-day.empty {
  cursor: default;
}

.calendar-day.blocked {
  color: var(--grey-dark);
  cursor: not-allowed;
  opacity: 0.3;
  text-decoration: line-through;
  position: relative;
}

.calendar-day.blocked::after {
  content: '×';
  position: absolute;
  font-size: 10px;
  color: var(--error);
  opacity: 0.6;
}

.calendar-day.blocked:hover {
  background: none;
  transform: none;
}

/* Time Slots */
.timeslots-container {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.timeslots-header {
  margin-bottom: 16px;
}

.timeslots-title {
  font-size: 16px;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 4px;
}

.timeslots-date {
  font-size: 13px;
  color: var(--grey);
}

.timeslots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
  align-content: start;
}

.timeslot {
  padding: 12px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  color: var(--accent);
  background: rgba(43, 43, 43, 0.04);
  position: relative;
}

.timeslot:hover:not(.booked):not(.selected) {
  border-color: var(--accent);
  background: rgba(43, 43, 43, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 43, 43, 0.12);
}

.timeslot.selected {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(43, 43, 43, 0.3), 0 0 50px rgba(43, 43, 43, 0.08);
  font-weight: 700;
  transform: translateY(-2px);
}

.timeslot.booked {
  background: #C8C0AE;
  color: #9A9A9A;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  border-color: #C8C0AE;
  text-decoration: line-through;
}

.timeslots-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px;
  color: var(--grey);
  font-size: 14px;
}

.timeslots-loading.active {
  display: flex;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.timeslots-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px;
  color: var(--grey);
  font-size: 14px;
}

.timeslots-empty-icon {
  font-size: 32px;
  opacity: 0.5;
}

/* Booking Navigation */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Step 4: Customer Form */
.booking-summary-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
  background: rgba(43, 43, 43, 0.04);
  border: 1px solid rgba(43, 43, 43, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.summary-mini-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-mini-label {
  font-size: 11px;
  color: var(--grey);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.summary-mini-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-light);
  letter-spacing: 0.5px;
}

.form-input {
  padding: 14px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: #2B2B2B;
  font-size: 15px;
  transition: all var(--transition-smooth);
}

.form-input::placeholder {
  color: var(--grey-dark);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43, 43, 43, 0.08);
  background: rgba(43, 43, 43, 0.015);
}

.form-input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-error {
  font-size: 12px;
  color: var(--error);
  min-height: 16px;
}

/* ===================== CONTACT ===================== */
.contact {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.contact-card:hover {
  border-color: rgba(43, 43, 43, 0.15);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(43, 43, 43, 0.06);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(43, 43, 43, 0.08);
  color: var(--accent);
  margin-bottom: 14px;
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: #2B2B2B;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.6;
}

.opening-hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opening-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.opening-hours-row .opening-day {
  color: var(--grey-light);
}

.opening-hours-row .opening-time {
  color: var(--white-soft);
  font-weight: 500;
}

.opening-hours-row.closed .opening-time {
  color: var(--error);
  font-weight: 600;
}

.contact-map iframe {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg-surface);
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--grey);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--grey);
  transition: all var(--transition-normal);
  position: relative;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  width: 100%;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--grey-dark);
}

/* ===================== SUCCESS MODAL ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 43, 43, 0.4);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(43, 43, 43, 0.25);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: scale(0.8) translateY(20px);
  transition: transform var(--transition-smooth);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark), var(--accent));
}

.modal-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0;
  animation: confettiFall 3s ease-in forwards;
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(-20px) rotate(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(500px) rotate(720deg) scale(0.5);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  color: var(--grey);
  transition: all var(--transition-fast);
  z-index: 10;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: #2B2B2B;
  background: rgba(0,0,0,0.05);
}

/* Checkmark SVG animation */
.modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}

.checkmark-svg {
  width: 72px;
  height: 72px;
}

.checkmark-circle {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: checkCircle 0.6s ease-in-out 0.3s forwards;
}

.checkmark-check {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkMark 0.3s ease-in-out 0.9s forwards;
}

@keyframes checkCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes checkMark {
  to { stroke-dashoffset: 0; }
}

.modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: #2B2B2B;
  margin-bottom: 12px;
}

.modal-message {
  font-size: 15px;
  color: var(--grey-light);
  margin-bottom: 8px;
}

.modal-message-sub {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 24px;
}

.modal-details {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 28px;
  text-align: left;
}

.modal-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-detail-row:last-child {
  border-bottom: none;
}

.modal-detail-label {
  font-size: 13px;
  color: var(--grey);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.modal-detail-value {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}

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

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 90vw;
}

.toast.active {
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  color: var(--error);
  flex-shrink: 0;
}

.toast-message {
  font-size: 14px;
  color: var(--white-soft);
  font-weight: 500;
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(43, 43, 43, 0.3);
  z-index: 1500;
  transition: all var(--transition-smooth);
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(43, 43, 43, 0.45);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 24px rgba(43, 43, 43, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(43, 43, 43, 0.3), 0 0 0 12px rgba(43, 43, 43, 0.06); }
  100% { box-shadow: 0 4px 24px rgba(43, 43, 43, 0.3); }
}

/* ===================== SHOP CLOSED OVERLAY ===================== */
.shop-closed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(243, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-radius: var(--radius-xl);
}

.shop-closed-message {
  text-align: center;
  padding: 40px;
}

.shop-closed-icon {
  color: var(--error);
  margin-bottom: 16px;
}

.shop-closed-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: #2B2B2B;
  margin-bottom: 12px;
}

.shop-closed-text {
  font-size: 14px;
  color: var(--grey-light);
  max-width: 300px;
  line-height: 1.6;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .lang-switcher, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title-line {
    font-size: clamp(40px, 12vw, 72px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-select-grid {
    grid-template-columns: 1fr;
  }

  .barber-select-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .barber-card {
    flex-direction: column;
    text-align: center;
    min-height: unset;
    height: auto;
    justify-content: flex-start;
  }

  .barber-card-avatar {
    position: relative;
    width: 100%;
    height: 210px;
    margin: 0;
    flex-shrink: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    inset: auto;
  }

  .barber-card-avatar::after {
    height: 100%;
    background: linear-gradient(
      to top,
      rgba(234, 232, 226, 0.6) 0%,
      transparent 60%
    );
  }

  .barber-card-avatar .barber-avatar-img {
    object-fit: cover;
    object-position: center 20%;
  }

  .barber-card-avatar .barber-avatar-initials {
    font-size: 36px;
  }

  .barber-card-avatar .barber-avatar-placeholder svg {
    width: 50px;
    height: 50px;
  }

  .barber-card-name {
    font-size: 20px;
    margin-top: 12px;
  }

  .barber-card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .barber-card-role {
    padding-bottom: 12px;
  }

  .barber-card:hover {
    transform: translateY(-4px);
  }

  .barber-card.selected {
    transform: translateY(-2px);
  }

  .datetime-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .booking-wrapper {
    padding: 28px 20px;
  }

  .about-stats {
    gap: 24px;
  }

  section {
    padding: 80px 0;
  }

  .section-title {
    font-size: clamp(28px, 6vw, 36px);
  }
}

@media (max-width: 480px) {
  .hero-title-line {
    font-size: clamp(36px, 14vw, 56px);
    letter-spacing: 3px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 8px 20px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .stat-number {
    font-size: 28px;
  }

  .booking-wrapper {
    padding: 20px 16px;
    border-radius: var(--radius-lg);
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
}