/* ============================================================
   AYAN BARBERSHOP — Premium Black & Gold Design System v2.0
   Modern, Smooth, Professional
   ============================================================ */

/* ===================== CSS VARIABLES ===================== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A07C1C;
  --gold-glow: rgba(201, 168, 76, 0.4);
  --gold-glow-strong: rgba(201, 168, 76, 0.7);
  --black: #0A0A0A;
  --black-light: #111111;
  --black-card: #141414;
  --black-card-hover: #1A1A1A;
  --black-border: #222222;
  --black-surface: #0E0E0E;
  --white: #FFFFFF;
  --white-soft: #F5F5F5;
  --grey: #888888;
  --grey-dark: #444444;
  --grey-light: #AAAAAA;
  --grey-booked: #2A2A2A;
  --error: #E74C3C;
  --success: #2ECC71;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', 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 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-gold: 0 4px 30px rgba(201,168,76,0.15);
  --shadow-gold-strong: 0 8px 40px rgba(201,168,76,0.3);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ===================== 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(--black);
  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 24px;
}

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

/* ===================== SELECTION ===================== */
::selection {
  background: rgba(201, 168, 76, 0.3);
  color: var(--white);
}

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

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

::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 168, 76, 0.5);
}

/* ===================== 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(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  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(--gold);
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
}

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

.logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--white);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold);
  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(--gold);
  transition: all var(--transition-smooth);
  border-radius: 1px;
  transform: translateX(-50%);
}

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

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

.nav-cta {
  padding: 11px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  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(201, 168, 76, 0.25);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--shadow-gold-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: var(--white);
  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(10, 10, 10, 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(--gold);
  transform: translateX(4px);
}

.mobile-link.cta {
  margin-top: 16px;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: 50px;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

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

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('images/hero-barbershop.png') center center / cover no-repeat;
  filter: brightness(0.3) saturate(0.8);
  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(201, 168, 76, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.06) 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(--gold);
  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: 200px;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 24px;
  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: 8px 28px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  background: rgba(201, 168, 76, 0.06);
  backdrop-filter: blur(10px);
  animation: badgePulse 3s infinite ease-in-out;
}

@keyframes badgePulse {
  0%, 100% { border-color: rgba(201, 168, 76, 0.3); box-shadow: none; }
  50% { border-color: rgba(201, 168, 76, 0.6); box-shadow: 0 0 30px rgba(201, 168, 76, 0.1); }
}

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

.hero-title-line {
  display: block;
  font-size: clamp(48px, 10vw, 100px);
  letter-spacing: 6px;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-title-line.gold {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201, 168, 76, 0.3), 0 4px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--grey-light);
  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(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.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(201, 168, 76, 0.5);
  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(201, 168, 76, 0.4);
  color: var(--gold);
  background: transparent;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
}

.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: var(--grey-light);
}

.hero-info-item svg {
  color: var(--gold);
  opacity: 0.8;
}

.hero-info-divider {
  width: 1px;
  height: 20px;
  background: rgba(201, 168, 76, 0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

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

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

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

.section-tag {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  background: rgba(201, 168, 76, 0.04);
}

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

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-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;
}

/* ===================== ABOUT ===================== */
.about {
  background: var(--black-surface);
}

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

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

.about-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #111;
  border-radius: var(--radius-lg);
  border: 1px solid var(--black-border);
  transition: transform var(--transition-slow);
}

.about-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #111;
  border-radius: var(--radius-lg);
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.about-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

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

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

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.badge-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  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: 700;
  color: var(--white);
  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(201, 168, 76, 0.1);
  color: var(--gold);
  flex-shrink: 0;
}

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

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

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

.stat-plus {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  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(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.service-card {
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: 28px;
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
  isolation: isolate;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0), rgba(201, 168, 76, 0.9), rgba(201, 168, 76, 0));
  opacity: 0.75;
  z-index: 3;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  z-index: 3;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.24);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36), 0 0 26px rgba(201, 168, 76, 0.10);
}

.service-card.featured {
  border-color: rgba(201, 168, 76, 0.20);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(241, 220, 123, 0.96), rgba(201, 168, 76, 0.95));
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 4;
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.28);
}

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

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

.service-card:hover .service-image {
  transform: scale(1.05);
  filter: brightness(0.99) saturate(1.04);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(201, 168, 76, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.06) 0%, rgba(5, 5, 5, 0.03) 30%, rgba(5, 5, 5, 0.16) 52%, rgba(5, 5, 5, 0.56) 74%, rgba(5, 5, 5, 0.84) 100%);
  transition: all var(--transition-smooth);
}

.service-card:hover .service-image-overlay {
  background:
    radial-gradient(circle at 82% 12%, rgba(201, 168, 76, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.05) 0%, rgba(5, 5, 5, 0.04) 30%, rgba(5, 5, 5, 0.18) 52%, rgba(5, 5, 5, 0.60) 74%, rgba(5, 5, 5, 0.86) 100%);
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 22px 20px;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.00) 0%, rgba(10, 10, 10, 0.12) 18%, rgba(8, 8, 8, 0.44) 55%, rgba(5, 5, 5, 0.80) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(6px) saturate(112%);
  backdrop-filter: blur(6px) saturate(112%);
}

.service-content::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%, transparent 74%, rgba(201, 168, 76, 0.03));
  opacity: 1;
}

.service-content > * {
  position: relative;
  z-index: 1;
}

.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.18;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.88);
}

.service-desc {
  font-size: 14px;
  color: rgba(245, 245, 245, 0.92);
  line-height: 1.55;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

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

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

.price-amount {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.50);
}

.service-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(18, 18, 18, 0.44);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 13px;
  color: rgba(245, 245, 245, 0.92);
}

.service-duration svg {
  color: var(--gold);
  opacity: 0.9;
}

.service-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  padding: 11px 22px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0.10));
  border: 1px solid rgba(201, 168, 76, 0.34);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all var(--transition-smooth);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 16px rgba(0, 0, 0, 0.20);
}

.service-book-btn:hover {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.98), rgba(168, 135, 47, 0.98));
  color: var(--black);
  border-color: rgba(201, 168, 76, 0.95);
  box-shadow: 0 10px 22px rgba(201, 168, 76, 0.28);
  transform: translateY(-2px);
}

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

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

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

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

/* 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: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--black-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(--black-card);
}

.step.active .step-circle,
.step.completed .step-circle {
  border-color: var(--gold);
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.3);
}

.step.completed .step-circle {
  background: linear-gradient(135deg, var(--gold), var(--gold-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(--gold);
}

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

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

/* 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: 700;
  color: var(--white);
  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(--black-border);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  background: var(--black-surface);
  overflow: hidden;
}

.service-option-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
  transform: translateY(-2px);
}

.service-option input:checked + .service-option-card {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.1);
}

.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(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
}

.service-option-name {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
}

.service-option-price {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  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(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
}

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

.calendar-container {
  background: var(--black-surface);
  border: 1px solid var(--black-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(--black-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(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  transform: scale(1.05);
}

.calendar-month-year {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.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(201, 168, 76, 0.15);
  color: var(--gold);
  transform: scale(1.1);
}

.calendar-day.selected {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--black) !important;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  transform: scale(1.1);
}

.calendar-day.today {
  border: 1px solid rgba(201, 168, 76, 0.3);
}

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

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

/* Time Slots */
.timeslots-container {
  background: var(--black-surface);
  border: 1px solid var(--black-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: var(--white);
  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(--black-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  position: relative;
}

.timeslot:hover:not(.booked):not(.selected) {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.15);
}

.timeslot.selected {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.4), 0 0 50px rgba(201, 168, 76, 0.1);
  font-weight: 700;
  transform: translateY(-2px);
}

.timeslot.booked {
  background: #555;
  color: #999;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  border-color: #555;
  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(--black-border);
  border-top-color: var(--gold);
  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(--black-border);
}

/* Step 3: Customer Form */
.booking-summary-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  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(--gold);
}

.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(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 15px;
  transition: all var(--transition-smooth);
}

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

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: rgba(201, 168, 76, 0.02);
}

.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;
}


/* ===================== QUICK CONTACT BUTTONS ===================== */
.quick-contact-buttons {
  max-width: 820px;
  margin: 30px auto 10px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quick-contact-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 12px 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.07), rgba(10, 10, 10, 0.9)),
    rgba(20, 20, 20, 0.82);
  border: 1px solid rgba(201, 168, 76, 0.26);
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 0 14px rgba(201, 168, 76, 0.06);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
}

.quick-contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(201, 168, 76, 0.1), transparent);
  transform: translateX(-110%);
  transition: transform 0.7s ease;
}

.quick-contact-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 76, 0.58);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.36), 0 0 18px rgba(201, 168, 76, 0.14);
}

.quick-contact-btn:hover::before {
  transform: translateX(110%);
}

.quick-contact-icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold);
}

.quick-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-contact-icon-instagram {
  border: none;
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 14%, #fd5949 42%, #d6249f 64%, #285AEB 100%);
  color: #fff;
  box-shadow: 0 0 14px rgba(214, 36, 159, 0.18);
}

.quick-contact-icon-call {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.16);
}

.quick-contact-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.quick-contact-label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--gold-light);
}

.quick-contact-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--white-soft);
  word-break: break-word;
}

@media (max-width: 700px) {
  .quick-contact-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 24px auto 8px;
    padding: 0 18px;
    gap: 10px;
  }

  .quick-contact-btn {
    min-height: 56px;
    padding: 10px 11px;
    gap: 9px;
    border-radius: 16px;
  }

  .quick-contact-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .quick-contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .quick-contact-label {
    font-size: 14px;
  }

  .quick-contact-value {
    font-size: 10.5px;
    line-height: 1.2;
  }
}

@media (max-width: 380px) {
  .quick-contact-buttons {
    padding: 0 14px;
    gap: 8px;
  }

  .quick-contact-btn {
    padding: 9px 9px;
    gap: 8px;
  }

  .quick-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .quick-contact-label {
    font-size: 13px;
  }

  .quick-contact-value {
    font-size: 9.8px;
  }
}

/* ===================== CONTACT ===================== */
.contact {
  background: var(--black);
}

.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(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}

.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.08);
}

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

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

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

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

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

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

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

.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(--gold);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--black-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(0, 0, 0, 0.85);
  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(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.3);
  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.5);
}

.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(--gold), var(--gold-dark), var(--gold));
}

.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: var(--white);
  background: rgba(255,255,255,0.1);
}

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

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

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

.checkmark-check {
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkStroke 0.4s ease-in-out 0.8s forwards;
}

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

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

.modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.modal-message {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}

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

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

.modal-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.modal-detail-label {
  font-size: 13px;
  color: var(--grey);
  font-weight: 500;
}

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

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

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(20, 20, 30, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--error);
  border-radius: var(--radius-md);
  z-index: 3000;
  transition: all var(--transition-smooth);
  box-shadow: 0 8px 30px rgba(231, 76, 60, 0.2);
}

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

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

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

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===================== OPENING HOURS LAYOUT ===================== */
.opening-hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.opening-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  border-bottom: 1px solid rgba(34, 34, 34, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

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

.opening-day {
  color: var(--grey-light);
  font-weight: 500;
}

.opening-time {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.3px;
}

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

.opening-hours-row.closed .opening-time {
  color: var(--grey-dark);
  font-style: italic;
}

/* ===================== WHATSAPP FLOATING BUTTON ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: whatsappPulse 2.5s infinite ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
  background: #20BD5A;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55), 0 2px 12px rgba(0, 0, 0, 0.35);
  }
}

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

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

  .nav-toggle {
    display: flex;
  }

  .hero-title-line {
    font-size: clamp(40px, 12vw, 80px);
    letter-spacing: 3px;
  }

  .hero-bg-image {
    filter: brightness(0.2) saturate(0.7);
  }

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

  .about-image-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-features {
    gap: 12px;
  }

  .about-stats {
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-card {
    max-width: 100%;
  }

  .service-image-wrap {
    aspect-ratio: 3/4;
  }

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

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

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

  .timeslots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-summary-mini {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .contact-map iframe {
    height: 300px;
  }

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

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

  .step-line {
    width: 40px;
  }

  .step-label {
    font-size: 9px;
  }

  section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .modal {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .service-content {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 16px 16px;
    border-radius: 0 0 20px 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .timeslots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .timeslot {
    padding: 10px 4px;
    font-size: 13px;
  }

  .booking-nav {
    flex-direction: column;
    gap: 12px;
  }

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

  .about-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-info {
    flex-direction: column;
    gap: 12px;
  }

  .hero-info-divider {
    display: none;
  }

  .service-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ===================== SMOOTH LOADING ===================== */
@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  animation: fadeInPage 0.6s ease-out;
}

.opening-hours-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.opening-hours-contact p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.opening-hours-contact strong {
  color: #C9A84C;
}
/* ===================== LANGUAGE SWITCHER ===================== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--grey-light);
  border-radius: 50px;
  transition: all var(--transition-smooth);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.lang-btn:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.lang-btn.active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.25);
}

.lang-flag {
  font-size: 13px;
  line-height: 1;
}

/* Mobile language switcher */
.lang-switcher-mobile {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50px;
}

.lang-btn-mobile {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--grey-light);
  border-radius: 50px;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.lang-btn-mobile:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.lang-btn-mobile.active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.25);
}

/* Hide language switcher on mobile - show mobile version instead */
@media (max-width: 768px) {
  .lang-switcher {
    display: none;
  }
}

/* Hide mobile language switcher on desktop */
@media (min-width: 769px) {
  .lang-switcher-mobile {
    display: none;
  }
}


@media (max-width:768px){

.service-option-card{

display:flex !important;
flex-direction:row !important;

align-items:center !important;
justify-content:space-between !important;

padding:12px 14px !important;

min-height:72px !important;

}

.service-option-info{

display:flex !important;
flex-direction:column !important;

align-items:flex-start !important;

}

.service-option-name{

font-size:14px !important;

margin:0 !important;

}

.service-option-duration{

font-size:11px !important;

margin-top:4px !important;

}

.service-option-price{

font-size:22px !important;

margin:0 !important;

}

}
/* ===================== SHOP CLOSED OVERLAY ===================== */
.shop-closed-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-radius: 16px;
  padding: 40px;
}

.shop-closed-message {
  text-align: center;
  max-width: 400px;
}

.shop-closed-icon {
  color: var(--gold, #C9A84C);
  margin-bottom: 20px;
  opacity: 0.8;
}

.shop-closed-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold, #C9A84C);
  margin: 0 0 12px 0;
  letter-spacing: 2px;
}

.shop-closed-text {
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  margin: 0;
}

/* ===================== BLOCKED CALENDAR DATE ===================== */
.calendar-day.blocked {
  opacity: 0.3;
  cursor: not-allowed !important;
  text-decoration: line-through;
  pointer-events: none;
  color: #666;
  background: transparent;
}

.calendar-day.blocked:hover {
  background: transparent;
  color: #666;
}

/* ============================================================
   SCRIPT COMPATIBILITY LAYER
   Matches script.js four-step booking flow and dynamic barber UI
   ============================================================ */
.accent {
  color: var(--gold);
}

.booking-wrapper {
  max-width: 920px;
}

/* Step 2: Barber selection */
.barber-select-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.barber-card {
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
}

.barber-card:hover:not(.unavailable) {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.045);
  box-shadow: var(--shadow-gold);
}

.barber-card.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.14), var(--shadow-gold);
}

.barber-card-avatar {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.32);
  background: var(--black-card);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.barber-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.barber-card-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.barber-card-name {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.barber-card-role {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.barber-check {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.75);
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  transition: opacity var(--transition-fast), transform var(--transition-bounce);
}

.barber-check svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.barber-card.selected .barber-check {
  opacity: 1;
  transform: scale(1);
}

.barber-card.unavailable {
  filter: grayscale(100%);
  opacity: 0.5;
  cursor: not-allowed;
}

.barber-loading,
.barber-empty {
  min-height: 150px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--grey-light);
  text-align: center;
  border: 1px dashed var(--black-border);
  border-radius: var(--radius-lg);
  background: var(--black-surface);
}

.barber-loading {
  display: none;
}

.barber-empty svg {
  color: var(--gold);
  opacity: 0.7;
}

/* Four summary columns: service, barber, date, time */
.booking-summary-mini {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Keep dynamically injected service and barber content stable while loading. */
#servicesGrid:empty,
#serviceSelectGrid:empty {
  min-height: 120px;
}

@media (max-width: 768px) {
  .barber-select-grid {
    grid-template-columns: 1fr;
  }

  .booking-summary-mini {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .booking-steps {
    justify-content: space-between;
  }

  .step-circle {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .step-line {
    min-width: 12px;
    width: auto;
    flex: 1;
    margin: 0 5px 22px;
  }

  .step-label {
    max-width: 60px;
    font-size: 8px;
    text-align: center;
  }

  .barber-card {
    min-height: 112px;
    padding: 14px;
    gap: 14px;
  }

  .barber-card-avatar {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .barber-card-name {
    font-size: 17px;
  }

  .booking-summary-mini {
    grid-template-columns: 1fr;
  }
}


/* ===================== MOBILE ABOUT IMAGE FIX ===================== */
/* Keeps the About slider visible on phone screens and prevents the 7+ badge from floating over the title. */
.about-image-wrap {
  isolation: isolate;
}

.about-slider {
  min-height: 320px;
}

.about-slide {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .about-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
  }

  .about-image-wrap {
    width: min(100%, 420px);
    max-width: 420px;
    min-height: 420px;
    margin: 0 auto 8px;
    order: 1;
  }

  .about-slider {
    width: 100%;
    min-height: 420px;
    aspect-ratio: 4 / 5;
    display: block;
    overflow: hidden;
  }

  .about-image,
  .about-slide {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
  }

  .about-image-badge {
    left: 16px;
    right: auto;
    bottom: 16px;
    top: auto;
    z-index: 5;
    padding: 12px 16px;
  }

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

  .badge-text {
    font-size: 11px;
    line-height: 1.2;
  }

  .about-content {
    order: 2;
  }
}

@media (max-width: 480px) {
  .about-image-wrap {
    width: 100%;
    min-height: 360px;
    margin-top: 0;
  }

  .about-slider {
    min-height: 360px;
    aspect-ratio: 4 / 5;
  }

  .about-image,
  .about-slide {
    min-height: 360px;
  }
}

/* ===================== MOBILE TOP START REFINEMENT ===================== */
/* Cleaner, shorter and smoother first screen on mobile. Desktop remains unchanged. */
@media (max-width: 768px) {
  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
  }

  .navbar {
    padding: 6px 0 !important;
    min-height: 72px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.90) 100%) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.10);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  }

  .navbar.scrolled {
    padding: 5px 0 !important;
    min-height: 66px;
    background: rgba(10, 10, 10, 0.96) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  }

  .nav-container {
    min-height: 60px;
    padding: 0 18px !important;
  }

  .nav-logo img {
    height: 62px !important;
    width: auto !important;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(201, 168, 76, 0.20);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gold-light);
  }

  .hero {
    min-height: 82vh;
    padding-top: 72px;
    align-items: flex-start;
  }

  .hero-bg-image {
    top: 68px;
    bottom: 0;
    inset-inline: 0;
    background-position: center top;
    filter: brightness(0.32) saturate(0.86);
  }

  .hero-bg-overlay {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.08) 28%, rgba(10, 10, 10, 0.90) 100%),
      radial-gradient(ellipse at 50% 18%, rgba(201, 168, 76, 0.11) 0%, transparent 58%);
  }

  .hero-content {
    padding-top: 34px;
    padding-inline: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    min-height: 66px;
    padding: 4px 0 !important;
  }

  .navbar.scrolled {
    min-height: 62px;
    padding: 4px 0 !important;
  }

  .nav-container {
    min-height: 56px;
    padding: 0 16px !important;
  }

  .nav-logo img {
    height: 56px !important;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .hero {
    min-height: 76vh;
    padding-top: 64px;
  }

  .hero-bg-image {
    top: 62px;
  }

  .hero-content {
    padding-top: 26px;
  }
}
