/* ═══════════════════════════════════════════════════════
   BARBER PICHO – styles.css
   Premium Dark Barbershop · Tlemcen · 2024
═══════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────── */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2F;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --dark-4: #2A2A2A;
  --grey: #444444;
  --grey-light: #888888;
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-60: rgba(255,255,255,0.6);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.08);

  --font-display: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;
  --font-arabic: 'Amiri', serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  /* Added grey math background: dark base with subtle repeating hexagonal grid */
  background-color: #1a1a1a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.6' opacity='0.28'%3E%3Cpolygon points='30,2 58,17 58,47 30,62 2,47 2,17'/%3E%3Cpolygon points='30,54 58,69 58,99 30,114 2,99 2,69'/%3E%3Cpolygon points='-30,54 -2,69 -2,99 -30,114 -58,99 -58,69'/%3E%3Cpolygon points='90,54 118,69 118,99 90,114 62,99 62,69'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 60px 104px;
}

/* RTL support */
html[dir="rtl"] body { font-family: var(--font-arabic), var(--font-body); }
html[dir="rtl"] .hero-content,
html[dir="rtl"] .about-text-col,
html[dir="rtl"] .booking-info { text-align: right; }
html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
html[dir="rtl"] .hero-btns { flex-direction: row-reverse; }
html[dir="rtl"] .footer-col { text-align: right; }
html[dir="rtl"] .info-block { flex-direction: row-reverse; justify-content: flex-start; }
html[dir="rtl"] .info-block .info-icon { display: none; }
html[dir="rtl"] .info-block > div { flex: 1; text-align: right; direction: rtl; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── Hex Background Pattern ────────────────────────── */
.hex-pattern,
.hex-pattern-light {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zm0-4l24-14V22L28 8 4 22v26l24 14z' fill='none' stroke='%23ffffff' stroke-width='0.4' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.hex-pattern-light { opacity: 0.5; }

/* ─── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.7rem;
}
.btn-full { width: 100%; }

/* ─── Section Shared ────────────────────────────────── */
section { padding: 90px 5vw; position: relative; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.section-sub {
  margin-top: 14px;
  color: var(--white-60);
  font-size: 0.95rem;
}

.gold { color: var(--gold); }
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5vw;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  text-shadow: none;
}
.logo-text {
  animation: textPulse 5s linear infinite;
}
@keyframes textPulse {
  0%        { text-shadow: 0 0 10px rgba(232,201,122,0.7), 0 0 22px rgba(201,168,76,0.4), 0 0 40px rgba(201,168,76,0.2); opacity: 1; }
  2%        { text-shadow: none; opacity: 0.4; }
  4%        { text-shadow: 0 0 10px rgba(232,201,122,0.7), 0 0 22px rgba(201,168,76,0.4); opacity: 1; }
  6%        { text-shadow: none; opacity: 0.3; }
  8%        { text-shadow: 0 0 10px rgba(232,201,122,0.7), 0 0 22px rgba(201,168,76,0.4); opacity: 1; }
  30%       { text-shadow: 0 0 10px rgba(232,201,122,0.7), 0 0 22px rgba(201,168,76,0.4); opacity: 1; }
  31%       { text-shadow: none; opacity: 0.5; }
  32%       { text-shadow: 0 0 10px rgba(232,201,122,0.7), 0 0 22px rgba(201,168,76,0.4); opacity: 1; }
  60%       { text-shadow: 0 0 10px rgba(232,201,122,0.7), 0 0 22px rgba(201,168,76,0.4); opacity: 1; }
  61%       { text-shadow: none; opacity: 0.2; }
  62%       { text-shadow: none; opacity: 0.6; }
  63%       { text-shadow: 0 0 10px rgba(232,201,122,0.7), 0 0 22px rgba(201,168,76,0.4); opacity: 1; }
  64%       { text-shadow: none; opacity: 0.3; }
  65%       { text-shadow: 0 0 10px rgba(232,201,122,0.7), 0 0 22px rgba(201,168,76,0.4); opacity: 1; }
  100%      { text-shadow: 0 0 10px rgba(232,201,122,0.7), 0 0 22px rgba(201,168,76,0.4), 0 0 40px rgba(201,168,76,0.2); opacity: 1; }
}
.logo-icon {
  color: var(--gold);
  font-size: 1rem;
  animation: iconFlicker 3s ease-in-out infinite;
}
@keyframes iconFlicker {
  0%,100% { filter: drop-shadow(0 0 4px rgba(232,201,122,0.9)) drop-shadow(0 0 10px rgba(201,168,76,0.6)); opacity: 1; }
  20%      { filter: drop-shadow(0 0 2px rgba(232,201,122,0.4)) drop-shadow(0 0 5px rgba(201,168,76,0.2));  opacity: 0.7; }
  22%      { filter: drop-shadow(0 0 6px rgba(232,201,122,1))   drop-shadow(0 0 14px rgba(201,168,76,0.8)); opacity: 1; }
  60%      { filter: drop-shadow(0 0 3px rgba(232,201,122,0.5)) drop-shadow(0 0 7px rgba(201,168,76,0.3));  opacity: 0.8; }
  62%      { filter: drop-shadow(0 0 6px rgba(232,201,122,1))   drop-shadow(0 0 14px rgba(201,168,76,0.8)); opacity: 1; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-60);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-glow { text-shadow: 0 0 8px #fff, 0 0 20px #fff, 0 0 40px #fff; }

.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--white-10);
  border-radius: 4px;
  padding: 3px;
}
.lang-btn {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white-60);
  padding: 5px 10px;
  border-radius: 3px;
  transition: var(--transition);
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active {
  background: var(--gold);
  color: var(--white);
  text-shadow: 0 0 6px #fff, 0 0 14px #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 5vw 24px;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease, max-height 0.5s ease;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
}
.mobile-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  visibility: visible;
  max-height: 600px;
  overflow: visible;
}
/* Letter flicker styles */
.mobile-link .flicker-letter {
  display: inline-block;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.mobile-link .flicker-letter.lit {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255,255,255,1), 0 0 25px rgba(255,255,255,0.6);
}
.mobile-link .flicker-letter.ignite {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255,255,255,1), 0 0 35px rgba(255,255,255,0.8), 0 0 60px rgba(255,255,255,0.4);
}
/* Arabic: apply glow to whole link instead of individual letters */
html[dir="rtl"] .mobile-link.lit {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255,255,255,1), 0 0 25px rgba(255,255,255,0.6);
}
html[dir="rtl"] .mobile-link.ignite {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255,255,255,1), 0 0 35px rgba(255,255,255,0.8), 0 0 60px rgba(255,255,255,0.4);
}
.mobile-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-60);
  padding: 12px 24px;
  width: 100%;
  text-align: center;
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--gold); }
html[dir="rtl"] .mobile-link {
  font-family: var(--font-arabic), var(--font-body);
  letter-spacing: 0;
  text-transform: none;
}
.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

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

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.35) saturate(0.7);
  transform: scale(1.05);
  animation: zoomOut 8s ease forwards;
}
@keyframes zoomOut {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.7) 0%,
    rgba(10,10,10,0.5) 40%,
    rgba(0,0,0,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 5vw 80px;
  max-width: 900px;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
@keyframes badgeIconGoldBeat {
  0%,100% { opacity: 1;   text-shadow: 0 0 8px rgba(201,168,76,1), 0 0 20px rgba(201,168,76,0.9), 0 0 35px rgba(201,168,76,0.6); }
  10%      { opacity: 0.15; text-shadow: none; }
  20%      { opacity: 1;   text-shadow: 0 0 12px rgba(201,168,76,1), 0 0 28px rgba(201,168,76,1), 0 0 45px rgba(201,168,76,0.7); }
  30%      { opacity: 0.2; text-shadow: none; }
  40%      { opacity: 1;   text-shadow: 0 0 8px rgba(201,168,76,1), 0 0 20px rgba(201,168,76,0.9); }
  60%,90%  { opacity: 1;   text-shadow: 0 0 8px rgba(201,168,76,1), 0 0 18px rgba(201,168,76,0.8); }
}
@keyframes badgeIconWhiteBeat {
  0%,100% { opacity: 1;   text-shadow: 0 0 8px #fff, 0 0 20px #fff, 0 0 35px #fff; }
  10%      { opacity: 0.15; text-shadow: none; }
  20%      { opacity: 1;   text-shadow: 0 0 12px #fff, 0 0 28px #fff, 0 0 45px #fff; }
  30%      { opacity: 0.2; text-shadow: none; }
  40%      { opacity: 1;   text-shadow: 0 0 8px #fff, 0 0 20px #fff, 0 0 35px #fff; }
  60%,90%  { opacity: 1;   text-shadow: 0 0 8px #fff, 0 0 18px #fff; }
}
.hero-badge .badge-icon-first {
  display: inline-block;
  color: var(--gold);
  animation: badgeIconGoldBeat 2.4s ease-in-out infinite;
}
.hero-badge .badge-text-gold {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201,168,76,1), 0 0 22px rgba(201,168,76,0.8), 0 0 38px rgba(201,168,76,0.5);
}
.hero-badge .badge-text-white {
  color: var(--white);
  text-shadow: 0 0 10px #fff, 0 0 22px #fff, 0 0 38px #fff;
}
.hero-badge .badge-icon-second {
  display: inline-block;
  color: var(--white);
  animation: badgeIconWhiteBeat 2.4s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
html[dir="rtl"] .hero-title { font-family: 'Tajawal', sans-serif; font-weight: 900; }
.hero-en { display: block; }
.hero-accent {
  display: block;
  color: var(--gold);
  -webkit-text-stroke: 1px var(--gold-dark);
}

.hero-ar {
  display: none !important;
  font-family: var(--font-arabic);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--gold);
  -webkit-text-stroke: 1px var(--gold-dark);
  line-height: 1.1;
  margin-bottom: 8px;
  direction: rtl;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-fr {
  display: none !important;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--gold);
  -webkit-text-stroke: 1px var(--gold-dark);
  line-height: 1.0;
  margin-bottom: 8px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--white-60);
  letter-spacing: 0.12em;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.65s both;
  text-shadow: 0 0 10px rgba(255,255,255,0.6), 0 0 22px rgba(255,255,255,0.35), 0 0 40px rgba(255,255,255,0.15);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.75s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  animation: fadeInUp 0.8s ease 0.9s both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-lbl {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--white-30);
  text-transform: uppercase;
}
.stat-div { width: 1px; height: 40px; background: var(--white-30); }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-30);
  font-size: 0.8rem;
  animation: bounce 2s ease infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

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

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
#services {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--white-10);
  transition: none;
  animation: fadeInUp 0.7s ease var(--delay, 0s) both;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow), 0 0 0 1px var(--gold-dark);
  border-color: var(--gold);
}
.service-card.featured {
  border-color: var(--white-10);
  box-shadow: none;
}
.service-card.selected,
.service-card.selected:hover,
.service-card.featured.selected {
  border: 2px solid #E8C97A !important;
  box-shadow:
    0 0 6px 2px rgba(232,201,122,0.9),
    0 0 18px 6px rgba(201,168,76,0.6),
    0 0 40px 12px rgba(201,168,76,0.3) !important;
  transform: none !important;
  transition: none !important;
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-img-wrap img {
  transition: transform 0.7s ease;
}
.service-card:hover .card-img-wrap img {
  transform: scale(1.08);
}
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 50%);
}
.card-price {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.da { font-size: 0.7rem; }
.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold-light);
  padding: 4px 10px;
  border-radius: 2px;
}

.card-body {
  padding: 24px;
}
.card-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.card-body p {
  font-size: 0.85rem;
  color: var(--white-60);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.meta-item {
  font-size: 0.72rem;
  color: var(--white-30);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════
   BOOKING
═══════════════════════════════════════════════════════ */
#booking {
  background: var(--black);
  overflow-x: hidden;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.booking-form-card {
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: visible;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Share Tech Mono', monospace !important;
  font-size: 0.9rem;
  padding: 14px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  text-align: left;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  background: var(--dark-3);
  border-color: #FFFFFF;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.7),
    0 0 10px 2px rgba(255,255,255,0.45),
    0 0 22px 4px rgba(255,255,255,0.2) !important;
}
/* Override browser autofill background */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 999px var(--dark-3) inset !important;
  box-shadow: 0 0 0 999px var(--dark-3) inset !important;
  -webkit-text-fill-color: var(--white) !important;
  background-color: var(--dark-3) !important;
  font-family: 'Share Tech Mono', monospace !important;
  caret-color: var(--white);
}
/* Placeholder = dim grey + left aligned */
.form-group input::placeholder { 
  color: var(--grey) !important;
  -webkit-text-fill-color: var(--grey) !important;
  font-family: 'Share Tech Mono', monospace !important;
  text-align: left;
}
#clientName::placeholder,
#clientPhone::placeholder {
  color: var(--grey) !important;
  -webkit-text-fill-color: var(--grey) !important;
  text-align: left;
}
.form-group select option { background: var(--dark-3); }

/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Date input */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(1) saturate(3) hue-rotate(5deg);
  cursor: pointer;
}

/* ─── Booking Section – Unified Share Tech Mono for ALL inputs & pickers ── */

/* All text inputs in booking form */
#booking .form-group input {
  font-family: 'Share Tech Mono', monospace !important;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
#booking .form-group input::placeholder {
  font-family: 'Share Tech Mono', monospace !important;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Service / Date / Time trigger buttons */
#booking .cs-trigger,
#booking .ct-trigger,
#booking .cd-trigger {
  font-family: 'Share Tech Mono', monospace !important;
  color: var(--grey);
}
#booking .cs-trigger-text,
#booking .ct-trigger-text,
#booking .cd-trigger-text {
  font-family: 'Share Tech Mono', monospace !important;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--grey);
}
/* Bright white once a value is chosen */
#booking .cs-trigger-text.cs-has-value,
#booking .ct-trigger-text.ct-has-value,
#booking .cd-trigger-text.cd-has-value {
  color: var(--white) !important;
}

/* Service dropdown options */
#booking .cs-opt,
#booking .cs-opt-label {
  font-family: 'Share Tech Mono', monospace !important;
  font-size: 0.93rem;
  letter-spacing: 0.04em;
}

/* Time slot grid buttons */
.ct-slot {
  font-family: 'Share Tech Mono', monospace !important;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

/* Calendar day numbers */
.cd-day:not(.cd-blank) {
  font-family: 'Share Tech Mono', monospace !important;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* Direct ID overrides – guaranteed Share Tech Mono on name & phone */
#clientName,
#clientPhone {
  font-family: 'Share Tech Mono', monospace !important;
  font-size: 1rem !important;
  letter-spacing: 0.06em !important;
  color: var(--white) !important;
  text-align: center;
}

.cooldown-msg {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.85rem;
  text-align: center;
}
.success-msg {
  margin-top: 16px;
  padding: 16px;
  background: rgba(76,201,100,0.1);
  border: 1px solid #3a8a4c;
  border-radius: var(--radius);
  color: #5eda7a;
  font-size: 0.85rem;
  text-align: center;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  transition: none !important;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.info-block:hover { border-color: var(--gold-dark); }
.info-block.selected {
  border: 2px solid #E8C97A !important;
  box-shadow:
    0 0 6px 2px rgba(232,201,122,0.9),
    0 0 18px 6px rgba(201,168,76,0.6),
    0 0 40px 12px rgba(201,168,76,0.3) !important;
  transition: none !important;
}
.info-icon {
  font-size: 1.4rem;
  min-width: 32px;
  text-align: center;
  padding-top: 2px;
}
.info-block h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.info-block p {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--white-60);
}

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
#about {
  background: var(--dark);
}
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-img-col { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  border: 1px solid var(--white-10);
}
.about-img-frame img {
  transition: transform 0.7s ease;
}
.about-img-frame:hover img { transform: scale(1.04); }
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
  z-index: 1;
}
.about-badge-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,10,10,0.88);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.about-text-col .section-tag { text-align: left; }
.about-name {
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-align: left;
}
.about-body {
  color: var(--white-60);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.skill-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 7px 14px;
  border-radius: 2px;
  background: rgba(201,168,76,0.06);
}

/* ═══════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════ */
#gallery { padding: 0; }
.gallery-strip {
  display: flex;
  height: 280px;
  overflow: hidden;
}
.gallery-item {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  transition: transform 0.6s ease;
  filter: brightness(0.6) saturate(0.8);
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.9) saturate(1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3), transparent, rgba(0,0,0,0.3));
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
#contact {
  padding: 0;
  background: var(--dark);
  border-top: 1px solid var(--white-10);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 70px 5vw 50px;
  border-bottom: 1px solid var(--white-10);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-tagline {
  color: var(--white-30);
  font-size: 0.82rem;
  margin-bottom: 24px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), filter var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn.wa  { background: #128C7E; }
.social-btn.ig  { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.social-btn.maps { background: #4285F4; }
.social-btn:hover { transform: scale(1.12); filter: brightness(1.2); }

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-list li {
  font-size: 0.87rem;
  color: var(--white-60);
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hours-val { color: var(--white-30); font-size: 0.8rem; font-family: monospace; }
.hours-closed { color: var(--gold-dark); font-size: 0.78rem; }

.footer-scissors-col { display: flex; flex-direction: column; }

/* ── Scissors Animation ── */
.scissors-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  position: relative;
}
.scissors-svg {
  width: 130px;
  height: 130px;
  animation: scissorsSpin 8s ease-in-out infinite;
  transform-origin: center;
}
@keyframes scissorsSpin {
  0%   { transform: rotate(-15deg); filter: drop-shadow(0 0 6px rgba(201,168,76,0.4)) drop-shadow(0 0 16px rgba(201,168,76,0.15)); }
  25%  { transform: rotate(5deg);   filter: drop-shadow(0 0 12px rgba(232,201,122,0.8)) drop-shadow(0 0 28px rgba(201,168,76,0.4)); }
  50%  { transform: rotate(-15deg); filter: drop-shadow(0 0 6px rgba(201,168,76,0.4)) drop-shadow(0 0 16px rgba(201,168,76,0.15)); }
  75%  { transform: rotate(5deg);   filter: drop-shadow(0 0 18px rgba(232,201,122,1))  drop-shadow(0 0 40px rgba(201,168,76,0.6)); }
  100% { transform: rotate(-15deg); filter: drop-shadow(0 0 6px rgba(201,168,76,0.4)) drop-shadow(0 0 16px rgba(201,168,76,0.15)); }
}
.blade-top {
  animation: bladeSnip 2.4s cubic-bezier(0.4,0,0.2,1) infinite;
  transform-origin: 60px 60px;
}
.blade-bottom {
  animation: bladeSnip 2.4s cubic-bezier(0.4,0,0.2,1) infinite reverse;
  transform-origin: 60px 60px;
}
@keyframes bladeSnip {
  0%,100% { transform: rotate(0deg); }
  30%     { transform: rotate(14deg); }
  60%     { transform: rotate(0deg); }
  80%     { transform: rotate(8deg); }
}
.sparks .spark {
  transform-origin: 60px 60px;
}
.spark-1 { animation: sparkFly1 2.4s ease-out infinite; }
.spark-2 { animation: sparkFly2 2.4s ease-out infinite 0.2s; }
.spark-3 { animation: sparkFly3 2.4s ease-out infinite 0.1s; }
.spark-4 { animation: sparkFly4 2.4s ease-out infinite 0.3s; }
@keyframes sparkFly1 {
  0%,55% { opacity:0; transform:translate(0,0) scale(1); }
  60%    { opacity:1; }
  100%   { opacity:0; transform:translate(8px,-10px) scale(0.3); }
}
@keyframes sparkFly2 {
  0%,55% { opacity:0; transform:translate(0,0) scale(1); }
  60%    { opacity:1; }
  100%   { opacity:0; transform:translate(8px,10px) scale(0.3); }
}
@keyframes sparkFly3 {
  0%,55% { opacity:0; transform:translate(0,0) scale(1); }
  60%    { opacity:0.8; }
  100%   { opacity:0; transform:translate(12px,-14px) scale(0.2); }
}
@keyframes sparkFly4 {
  0%,55% { opacity:0; transform:translate(0,0) scale(1); }
  60%    { opacity:0.8; }
  100%   { opacity:0; transform:translate(12px,14px) scale(0.2); }
}
.scissors-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  animation: glowPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  30%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.4); }
  60%      { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  80%      { opacity: 0.9; transform: translate(-50%, -50%) scale(1.25); }
}
.scissors-tagline {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-align: center;
  opacity: 0.7;
  text-transform: uppercase;
}

.footer-map {
  width: 100%;
  overflow: hidden;
  filter: grayscale(0.6) brightness(0.65);
  transition: filter var(--transition);
}
.footer-map:hover { filter: grayscale(0) brightness(0.85); }

.footer-bottom {
  padding: 20px 5vw;
  text-align: center;
  font-size: 0.78rem;
  color: var(--white-30);
}

/* ═══════════════════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════════════════ */
/* ─── CHATBOT FLOAT ─── */
.float-chat {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
  border: none;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.9),
    0 0 0 4px rgba(8,8,8,1),
    0 0 0 5.5px rgba(255,255,255,0.3),
    0 8px 28px rgba(0,0,0,0.75);
  z-index: 900;
  animation: pulseDoubleRing 3s ease infinite;
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-chat svg { width: 22px; height: 22px; fill: var(--gold); filter: drop-shadow(0 0 6px rgba(201,168,76,0.9)) drop-shadow(0 0 12px rgba(201,168,76,0.5)); }
.float-chat:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,1),
    0 0 0 4px rgba(8,8,8,1),
    0 0 0 6px rgba(255,255,255,0.5),
    0 10px 32px rgba(0,0,0,0.8);
}
.float-tooltip {
  position: absolute;
  left: calc(100% + 13px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: rgba(12,12,12,0.88);
  color: #fff;
  font-size: 0.67rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.float-chat:hover .float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ─── SOCIAL FAB MENU ─── */
.fab-menu {
  position: fixed;
  bottom: 100px;
  left: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fab-toggle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #080808;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.9),
    0 0 0 4px rgba(8,8,8,1),
    0 0 0 5.5px rgba(255,255,255,0.3),
    0 8px 28px rgba(0,0,0,0.75);
  position: relative;
  z-index: 2;
  animation: pulseDoubleRing 3s ease infinite;
  transition: box-shadow 0.3s;
}
.fab-toggle svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.9)) drop-shadow(0 0 12px rgba(201,168,76,0.5));
  position: absolute;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
}
.fab-icon-close { opacity: 0; transform: rotate(-45deg) scale(0.4); }
.fab-icon-open  { opacity: 1; transform: rotate(0deg) scale(1); }
.fab-menu.open .fab-toggle {
  animation: none;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,1),
    0 0 0 4px rgba(8,8,8,1),
    0 0 0 6px rgba(255,255,255,0.5),
    0 10px 32px rgba(0,0,0,0.8);
}
.fab-menu.open .fab-icon-open  { opacity: 0; transform: rotate(45deg) scale(0.4); }
.fab-menu.open .fab-icon-close { opacity: 1; transform: rotate(0deg) scale(1); }

.fab-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transform: translateY(0) scale(0.2);
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
.fab-item svg { width: 22px; height: 22px; fill: white; }

.fab-label {
  position: absolute;
  left: calc(100% + 13px);
  background: rgba(12,12,12,0.88);
  color: #fff;
  font-size: 0.67rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

/* Open states — staggered upward */
.fab-menu.open .fab-wa  { transform: translateY(-70px) scale(1);  opacity: 1; pointer-events: all; transition-delay: 0s;     }
.fab-menu.open .fab-ig  { transform: translateY(-138px) scale(1); opacity: 1; pointer-events: all; transition-delay: 0.07s;  }
.fab-menu.open .fab-map { transform: translateY(-206px) scale(1); opacity: 1; pointer-events: all; transition-delay: 0.14s; }

/* Labels slide in after buttons land */
.fab-menu.open .fab-wa  .fab-label { opacity: 1; transform: translateX(0); transition-delay: 0.2s;  }
.fab-menu.open .fab-ig  .fab-label { opacity: 1; transform: translateX(0); transition-delay: 0.27s; }
.fab-menu.open .fab-map .fab-label { opacity: 1; transform: translateX(0); transition-delay: 0.34s; }

.fab-wa  { background: #25D366; }
.fab-ig  { background: #E1306C; }
.fab-map { background: #EA4335; }
.fab-wa:hover, .fab-ig:hover, .fab-map:hover { filter: brightness(1.12); }

/* Transparent backdrop to catch outside taps */
.fab-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 899;
}
.fab-backdrop.active { display: block; }

@keyframes pulseDoubleRing {
  0%,100% {
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.9),
      0 0 0 4px rgba(8,8,8,1),
      0 0 0 5.5px rgba(255,255,255,0.3),
      0 8px 28px rgba(0,0,0,0.75);
  }
  50% {
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.9),
      0 0 0 4px rgba(8,8,8,1),
      0 0 0 9px rgba(255,255,255,0.12),
      0 8px 28px rgba(0,0,0,0.75);
  }
}

/* ═══════════════════════════════════════════════════════
   CHATBOT MODAL
═══════════════════════════════════════════════════════ */
.chatbot-modal {
  position: fixed;
  bottom: 96px;
  left: 28px;
  width: min(380px, calc(100vw - 32px));
  height: 500px;
  background: linear-gradient(160deg, #1c1c1c 0%, #141414 60%, #111 100%);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 950;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.75),
    0 0 0 1px rgba(201,168,76,0.15),
    0 0 60px rgba(201,168,76,0.04),
    inset 0 1px 0 rgba(255,255,255,0.04);
  animation: chatAppear 0.42s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: bottom left;
}
@keyframes chatAppear {
  0%   { opacity: 0; transform: scale(0.88) translateY(20px); }
  60%  { opacity: 1; transform: scale(1.012) translateY(-3px); }
  80%  { transform: scale(0.998) translateY(1px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(201,168,76,0.07) 0%, rgba(201,168,76,0.02) 60%, transparent 100%);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  position: relative;
  direction: ltr; /* always LTR — never flips with RTL chatbot lang */
  flex-shrink: 0;
}
.chatbot-header-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.chatbot-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.chatbot-header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.chatbot-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
}
.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(201,168,76,0.2), 0 0 16px rgba(201,168,76,0.3);
  animation: avatarPulse 3.5s ease-in-out infinite;
}
@keyframes avatarPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(201,168,76,0.2), 0 0 16px rgba(201,168,76,0.3); }
  50%       { box-shadow: 0 0 0 4px rgba(201,168,76,0.12), 0 0 28px rgba(201,168,76,0.45); }
}
.chatbot-title-wrap { flex: 1; }
.chatbot-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chatbot-status {
  font-size: 0.67rem;
  color: #5eda7a;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.chatbot-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5eda7a;
  box-shadow: 0 0 6px rgba(94,218,122,0.8);
  animation: statusBlink 2.5s ease-in-out infinite;
}
@keyframes statusBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(94,218,122,0.8); }
  50%       { opacity: 0.55; box-shadow: 0 0 2px rgba(94,218,122,0.3); }
}
.chatbot-close {
  color: var(--white-60);
  font-size: 0.9rem;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition);
}
.chatbot-close:hover { color: var(--white); background: var(--white-10); }

/* ── In-chatbot language switcher ── */
.cb-lang-row {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-shrink: 0;
}
.cb-lang-btn {
  font-family: 'Share Tech Mono', monospace !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.06em;
  padding: 3px 7px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(201,168,76,0.25) !important;
  background: transparent !important;
  color: var(--grey-light) !important;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease !important;
  line-height: 1.4;
  cursor: pointer;
}
.cb-lang-btn:hover {
  border-color: rgba(201,168,76,0.55) !important;
  color: var(--gold-light) !important;
  transform: translateY(-1px);
}
.cb-lang-btn.active {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%) !important;
  color: var(--black) !important;
  border-color: transparent !important;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(201,168,76,0.35);
}

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--dark-4) transparent;
}

/* Chat message bubbles */
.msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  animation: msgIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.msg-bot {
  background: linear-gradient(135deg, rgba(34,34,34,0.95) 0%, rgba(26,26,26,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--white-90);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.msg-user {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  color: var(--black);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.msg-bot strong { color: var(--gold); }

/* Quick reply buttons */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 4px 0;
  align-self: flex-start;
}
.qr-btn {
  font-size: 0.75rem;
  font-family: var(--font-body);
  background: transparent;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  border-radius: 20px;
  padding: 6px 14px;
  transition: background 0.3s cubic-bezier(0.4,0,0.2,1), color 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease, border-color 0.3s ease;
  animation: qrFadeIn 0.22s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes qrFadeIn {
  from { opacity: 0; transform: translateY(6px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.qr-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border-color: transparent;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.chatbot-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(201,168,76,0.1);
  background: linear-gradient(0deg, rgba(14,14,14,0.95) 0%, rgba(26,26,26,0.8) 100%);
  position: relative;
}
.chatbot-input-row::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}
.chatbot-input-row input {
  flex: 1;
  background: rgba(42,42,42,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  color: var(--white);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  padding: 10px 16px;
  transition: border-color 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), background 0.35s ease;
  backdrop-filter: blur(4px);
}
.chatbot-input-row input:focus {
  outline: none;
  border-color: rgba(201,168,76,0.6);
  background: rgba(50,50,50,0.8);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08), 0 0 16px rgba(201,168,76,0.1);
}
.chatbot-input-row input::placeholder { color: var(--grey); }
#chatSend {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
#chatSend:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 6px 24px rgba(201,168,76,0.5);
  filter: brightness(1.12);
}
#chatSend:active {
  transform: scale(0.95);
  box-shadow: 0 2px 8px rgba(201,168,76,0.25);
}
#chatSend svg { width: 18px; height: 18px; fill: var(--black); }

/* ── Chatbot font override: monospace AI feel ── */
.chatbot-body,
.chatbot-body .msg,
.chatbot-body .qr-btn,
.chatbot-body .cb-cal-title,
.chatbot-body .cb-cal-cell,
.chatbot-body .cb-time-slot,
.chatbot-body .cb-cal-days span,
.chatbot-body .cb-cal-nav {
  font-family: 'Share Tech Mono', monospace !important;
  font-feature-settings: "tnum";
}

/* ── AI message tags & formatting ── */
.msg-bot .cb-tag {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 6px;
  opacity: 0.85;
}
.msg-bot .cb-row {
  display: inline-block;
  min-width: 56px;
  color: var(--gold);
  opacity: 0.7;
  font-size: 0.75rem;
}
.msg-bot .cb-hint {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ── Typing indicator ── */
.chat-typing {
  display: flex !important;
  align-items: center;
  gap: 5px;
  padding: 12px 16px !important;
  width: 56px;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  animation: typingDot 1.1s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.18s; }
.chat-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: scale(0.75); opacity: 0.35; }
  40%           { transform: scale(1.1);  opacity: 1; }
}

/* ── Inline calendar ── */
.cb-calendar {
  background: rgba(20,20,20,0.97);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 12px;
  width: 100%;
  max-width: 300px;
  align-self: flex-start;
  animation: msgIn 0.28s cubic-bezier(0.16,1,0.3,1) both;
  font-family: 'Share Tech Mono', monospace !important;
}
.cb-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cb-cal-title {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.cb-cal-nav {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 4px;
  transition: background 0.2s;
  line-height: 1;
}
.cb-cal-nav:hover { background: rgba(201,168,76,0.1); }
.cb-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.cb-cal-days span {
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  padding: 3px 0;
}
.cb-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cb-cal-blank { height: 30px; }
.cb-cal-cell {
  height: 30px;
  width: 100%;
  background: none;
  border: none;
  border-radius: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.15s;
  font-family: 'Share Tech Mono', monospace !important;
}
.cb-cal-cell:hover:not(:disabled) {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  transform: scale(1.1);
}
.cb-cal-cell:active:not(:disabled) { transform: scale(0.95); }
.cb-cal-today {
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold) !important;
}
.cb-cal-disabled {
  opacity: 0.18;
  cursor: not-allowed;
}

/* ── Time grid ── */
.cb-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  width: 100%;
  animation: msgIn 0.28s cubic-bezier(0.16,1,0.3,1) both;
}
.cb-time-slot {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  padding: 7px 4px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s;
  font-family: 'Share Tech Mono', monospace !important;
  animation: msgIn 0.28s cubic-bezier(0.16,1,0.3,1) both;
  letter-spacing: 0.04em;
}
.cb-time-slot:hover {
  background: rgba(201,168,76,0.14);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold);
  transform: translateY(-2px);
}
.cb-time-slot:active { transform: scale(0.95); }

/* ═══════════════════════════════════════════════════════
   CUSTOM ALERT MODAL
═══════════════════════════════════════════════════════ */
#customAlert {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-alert-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.custom-alert-box {
  position: relative;
  background: #1A1A1A;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  max-width: 320px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 40px rgba(201,168,76,0.2);
  animation: alertAppear 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes alertAppear {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
.custom-alert-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.custom-alert-msg {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-90);
  line-height: 1.6;
  margin-bottom: 24px;
}
.custom-alert-ok {
  min-width: 120px;
  padding: 12px 32px;
}

/* ═══════════════════════════════════════════════════════
   CUSTOM SERVICE DROPDOWN
═══════════════════════════════════════════════════════ */
.cs-wrapper {
  position: relative;
  width: 100%;
}

/* Trigger button (looks like the other form inputs) */
.cs-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  color: var(--grey-light);
  font-family: 'Share Tech Mono', monospace !important;
  font-size: 0.92rem;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cs-trigger:hover,
.cs-trigger.cs-open {
  border-color: #FFFFFF;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.7),
    0 0 10px 2px rgba(255,255,255,0.45),
    0 0 22px 4px rgba(255,255,255,0.2) !important;
}
.cs-trigger-text { flex: 1; }
.cs-trigger-text.cs-has-value { color: var(--white-90); }
.cs-chevron {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.cs-trigger.cs-open .cs-chevron { transform: rotate(180deg); }
.cs-chevron svg { width: 100%; height: 100%; }

/* Dropdown panel */
.cs-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--dark-2);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.08);
  animation: csDropIn 0.22s cubic-bezier(0.4,0,0.2,1);
}
.cs-dropdown.cs-open { display: block; }

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

/* Options */
.cs-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-family: 'Share Tech Mono', monospace !important;
  font-size: 0.9rem;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  color: var(--white-60);
  cursor: pointer;
  border-bottom: 1px solid var(--white-10);
  transition: background var(--transition), color var(--transition);
}
.cs-opt:last-child { border-bottom: none; }
.cs-opt:hover {
  background: rgba(201,168,76,0.08);
  color: var(--white-90);
}
.cs-opt-placeholder {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--grey);
  cursor: default;
  padding: 10px 18px;
  border-bottom: 1px solid var(--white-10);
}
.cs-opt-placeholder:hover { background: none; color: var(--grey); }
.cs-opt-icon { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; }
.cs-opt-label { flex: 1; }

/* Selected state */
.cs-opt.cs-opt-selected {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}
.cs-opt.cs-opt-selected::after {
  content: '✦';
  font-size: 0.6rem;
  color: var(--gold);
  margin-left: auto;
  flex-shrink: 0;
}

/* ── Custom Time Picker ─────────────────────── */
.ct-wrapper { position: relative; width: 100%; }

.ct-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--dark-3); border: 1px solid var(--white-10); border-radius: var(--radius);
  color: var(--grey-light); font-family: 'Share Tech Mono', monospace !important; font-size: 0.92rem;
  font-feature-settings: "tnum"; font-variant-numeric: tabular-nums;
  padding: 14px 16px; text-align: left; cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ct-trigger:hover, .ct-trigger.ct-open { border-color: #FFFFFF; box-shadow: 0 0 0 1.5px rgba(255,255,255,0.7), 0 0 10px 2px rgba(255,255,255,0.45), 0 0 22px 4px rgba(255,255,255,0.2) !important; }

.ct-trigger-text { flex: 1; }
.ct-trigger-text.ct-has-value { color: var(--white-90); }
.ct-icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.ct-icon svg { width: 100%; height: 100%; }

.ct-panel {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 500;
  background: var(--dark-2); border: 1px solid var(--gold-dark); border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.7); overflow: hidden;
  animation: csDropIn 0.22s cubic-bezier(0.4,0,0.2,1);
}
.ct-panel.ct-open { display: block; }

.ct-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 6px; padding: 12px; max-height: 220px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--gold-dark) transparent;
}
.ct-slot {
  padding: 10px 6px; background: var(--dark-3); border: 1px solid var(--white-10);
  border-radius: 6px; color: var(--white-60); font-family: 'Share Tech Mono', monospace !important; font-size: 0.82rem;
  font-feature-settings: "tnum"; font-variant-numeric: tabular-nums;
  text-align: center; cursor: pointer; transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.ct-slot:hover { background: rgba(201,168,76,0.1); color: var(--white-90); border-color: var(--gold-dark); }
.ct-slot.ct-selected { background: rgba(201,168,76,0.15); color: var(--gold); border-color: var(--gold); font-weight: 600; }

/* ── Custom Date Picker ─────────────────────── */
.cd-wrapper { position: relative; width: 100%; }

.cd-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--dark-3); border: 1px solid var(--white-10); border-radius: var(--radius);
  color: var(--grey-light); font-family: 'Share Tech Mono', monospace !important; font-size: 0.92rem;
  font-feature-settings: "tnum"; font-variant-numeric: tabular-nums;
  padding: 14px 16px; text-align: left; cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cd-trigger:hover, .cd-trigger.cd-open { border-color: #FFFFFF; box-shadow: 0 0 0 1.5px rgba(255,255,255,0.7), 0 0 10px 2px rgba(255,255,255,0.45), 0 0 22px 4px rgba(255,255,255,0.2) !important; }
.cd-trigger-text { flex: 1; }
.cd-trigger-text.cd-has-value { color: var(--white-90); }
.cd-icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.cd-icon svg { width: 100%; height: 100%; }

.cd-panel {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 500;
  background: var(--dark-2); border: 1px solid var(--gold-dark); border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.7); overflow: hidden;
  animation: csDropIn 0.22s cubic-bezier(0.4,0,0.2,1);
}
.cd-panel.cd-open { display: block; }

.cd-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--white-10);
  background: linear-gradient(90deg, var(--dark-3), var(--dark-4));
}
.cd-month-label { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.08em; color: var(--gold); }
.cd-nav {
  width: 28px; height: 28px; border-radius: 4px; color: var(--gold); font-size: 1.2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition); background: transparent;
}
.cd-nav:hover:not(:disabled) { background: rgba(201,168,76,0.15); }
.cd-nav:disabled { color: var(--grey); cursor: not-allowed; }

.cd-weekdays {
  display: grid; grid-template-columns: repeat(7,1fr);
  padding: 8px 10px 4px; gap: 2px;
}
.cd-weekdays span {
  text-align: center; font-family: var(--font-display); font-size: 0.62rem;
  letter-spacing: 0.06em; color: var(--gold); padding: 4px 0;
}

.cd-days {
  display: grid; grid-template-columns: repeat(7,1fr);
  padding: 4px 10px 12px; gap: 3px;
}
.cd-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-family: var(--font-body); font-size: 0.82rem;
  color: var(--white-90); cursor: pointer; background: transparent; border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.cd-day:hover:not(.cd-disabled):not(.cd-selected) { background: rgba(201,168,76,0.12); color: var(--white); }
.cd-day.cd-today { border-color: var(--gold-dark); color: var(--gold); }
.cd-day.cd-selected { background: var(--gold); color: var(--black); font-weight: 700; border-color: var(--gold); }
.cd-day.cd-disabled { color: var(--grey); cursor: not-allowed; opacity: 0.35; }
.cd-day.cd-blank { background: transparent; cursor: default; border-color: transparent; }

/* ── Field Error State ──────────────────────── */
@keyframes fieldShake {
  0%,100% { transform: translateX(0); }
  15%     { transform: translateX(-7px); }
  30%     { transform: translateX(7px); }
  45%     { transform: translateX(-5px); }
  60%     { transform: translateX(5px); }
  75%     { transform: translateX(-3px); }
  90%     { transform: translateX(3px); }
}

.field-error,
.field-error.cs-trigger,
.field-error.cd-trigger,
.field-error.ct-trigger {
  border-color: #FF1A1A !important;
  box-shadow:
    0 0 0 2px rgba(255,26,26,0.6),
    0 0 8px 2px rgba(255,26,26,0.7),
    0 0 20px 4px rgba(255,26,26,0.45),
    0 0 40px 8px rgba(255,26,26,0.2) !important;
  animation: fieldShake 0.5s cubic-bezier(0.36,0.07,0.19,0.97) both;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  section { padding: 70px 5vw; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* Hide desktop lang switcher in nav when mobile */
  .nav-container .lang-switcher { display: none; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 4rem); }
  .hero-stats { gap: 20px; }
  .hero-badge { font-size: 0.6rem; letter-spacing: 0.15em; }

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

  .booking-wrapper {
    grid-template-columns: 1fr;
    overflow: hidden;
  }
  .booking-form-card {
    padding: 24px 16px;
    overflow: visible;
    min-width: 0;
  }
  .booking-info { order: 1; }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-img-frame { height: 340px; }
  .about-name { text-align: center; font-size: 2.5rem; }
  .about-text-col .section-tag { text-align: center; }
  .about-text-col .gold-divider { margin: 24px auto; }
  .about-skills { justify-content: center; }
  .about-text-col { text-align: center; }
  .about-text-col .btn { display: flex; max-width: 240px; margin: 0 auto; }

  .gallery-strip { height: 180px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 5vw 40px;
    text-align: center;
  }
  .footer-brand { align-items: center; }
  .footer-logo { justify-content: center; }
  .social-row { justify-content: center; }
  .footer-qr-col { align-items: center; }
  .footer-list li { justify-content: space-between; }

  .float-chat { left: 18px; bottom: 20px; }
  .fab-menu   { left: 18px; bottom: 88px; }
  .chatbot-modal { left: 16px; right: 16px; width: auto; bottom: 84px; }

  .float-chat,
  .fab-toggle {
    width: 44px;
    height: 44px;
  }

  .float-chat svg,
  .fab-toggle svg {
    width: 18px;
    height: 18px;
  }

  html[dir="rtl"] .about-text-col { text-align: center; }
  html[dir="rtl"] .about-name { text-align: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; }
  .stat-num { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════
   LANGUAGE ALIGNMENT — inputs & pickers
═══════════════════════════════════════════════════════ */

/* ── LTR (EN/FR): typed text goes LEFT ── */
html[dir="ltr"] .form-group input,
html[dir="ltr"] .form-group input::placeholder {
  text-align: left !important;
  direction: ltr !important;
}

/* ── RTL (AR): typed text goes RIGHT ── */
html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group input::placeholder {
  text-align: right !important;
  direction: rtl !important;
}

/* ── ALL pickers: keep font consistent in RTL ── */
html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group select,
html[dir="rtl"] .cs-trigger,
html[dir="rtl"] .cs-opt,
html[dir="rtl"] .ct-trigger,
html[dir="rtl"] .ct-slot,
html[dir="rtl"] .cd-trigger {
  font-family: 'Share Tech Mono', monospace !important;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

/* RTL: flip service dropdown options to right */
html[dir="rtl"] .cs-opt {
  flex-direction: row-reverse !important;
  text-align: right !important;
}
html[dir="rtl"] .cs-opt-label {
  text-align: right !important;
}
html[dir="rtl"] .cs-opt.cs-opt-selected::after {
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* ═══════════════════════════════════════════════════════
   PICKERS — width constrained, coordinated with inputs
═══════════════════════════════════════════════════════ */
.cs-wrapper,
.cd-wrapper,
.ct-wrapper {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.cs-trigger,
.cd-trigger,
.ct-trigger {
  display: flex !important;
  flex-direction: row !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 16px !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

/* Picker placeholder/value text */
.cs-trigger-text,
.cd-trigger-text,
.ct-trigger-text {
  flex: 1 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

/* Icon pinned right */
.cs-chevron,
.cd-icon,
.ct-icon {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin-left: 8px !important;
}

/* ═══════════════════════════════════════════════════════
   EXPANDING PICKER PANELS — stay inside form
═══════════════════════════════════════════════════════ */
.cs-dropdown,
.cd-panel,
.ct-panel {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: calc(100% + 4px) !important;
  z-index: 600 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Time grid */
.ct-grid {
  max-height: 220px !important;
  overflow-y: auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Calendar */
.cd-panel {
  max-height: 340px !important;
}

/* Service options */
.cs-opt {
  text-align: left !important;
  direction: ltr !important;
}

/* ── Green confirm button when all fields filled ── */
#bookSubmitBtn.btn-ready {
  background: #2EE86A !important;
  color: #0A0A0A !important;
  box-shadow: 0 0 0 2px rgba(46,232,106,0.3), 0 0 18px rgba(46,232,106,0.35) !important;
}
#bookSubmitBtn.btn-ready:hover {
  background: #50F080 !important;
  box-shadow: 0 0 0 2px rgba(80,240,128,0.4), 0 0 24px rgba(80,240,128,0.45) !important;
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════
   AMBIENT LOOPING ANIMATIONS
═══════════════════════════════════════════════════════ */

/* 1. Gold shimmer sweep on "WITH US" */
.hero-accent {
  position: relative;
  overflow: hidden;
}
.hero-accent::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,220,100,0.45) 50%, transparent 100%);
  animation: goldSweep 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes goldSweep {
  0%   { left: -100%; opacity: 0; }
  10%  { opacity: 1; }
  60%  { left: 160%; opacity: 1; }
  61%  { opacity: 0; }
  100% { left: 160%; opacity: 0; }
}

/* 2. Hex pattern slow breathe */
.hex-pattern {
  animation: hexBreathe 6s ease-in-out infinite;
}
@keyframes hexBreathe {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.4; }
}

/* 3. Gold particles canvas */
#gold-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

/* ── Language Switch Re-animation ── */
@keyframes langReveal {
  0%   { opacity: 0; transform: translateY(12px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
.lang-anim {
  animation: langReveal 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ── Mobile menu language switch transition ── */
@keyframes menuLangFade {
  0%   { opacity: 0; transform: translateY(8px); letter-spacing: 0.3em; }
  100% { opacity: 1; transform: translateY(0);   letter-spacing: 0.14em; }
}
.mobile-link.menu-lang-anim {
  animation: menuLangFade 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ═══════════════════════════════════════════════════════
   LOOK DIFFERENT — Static Noise Glitch (Grey)
═══════════════════════════════════════════════════════ */
.hero-en {
  display: inline-block;
  position: relative;
  animation: glitchIdle 3s ease-in-out infinite;
}

@keyframes glitchIdle {
  0%, 89%, 100% { text-shadow: none; transform: translate(0); filter: none; }
  90%  { text-shadow: -2px 0 rgba(180,180,180,0.7), 2px 0 rgba(100,100,100,0.7); transform: translate(-1px, 0); filter: brightness(1.2); }
  91%  { text-shadow: 2px 0 rgba(180,180,180,0.7), -2px 0 rgba(100,100,100,0.7); transform: translate(2px, 0);  filter: brightness(1.4); }
  92%  { text-shadow: none; transform: translate(0); filter: none; }
  93%  { text-shadow: -3px 0 rgba(180,180,180,0.6), 3px 0 rgba(100,100,100,0.6); transform: translate(-2px, 1px); filter: brightness(1.3); }
  94%  { text-shadow: none; transform: translate(1px, 0); filter: brightness(1.1); }
  95%  { text-shadow: 2px 0 rgba(180,180,180,0.8), -2px 0 rgba(100,100,100,0.8); transform: translate(-1px, -1px); filter: brightness(1.5); }
  96%  { text-shadow: none; transform: translate(0); filter: none; }
}

.hero-en::before,
.hero-en::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-en::before {
  color: rgba(200, 200, 200, 0.75);
  animation: glitchLight 3s ease-in-out infinite;
  clip-path: polygon(0 30%, 100% 30%, 100% 55%, 0 55%);
}
.hero-en::after {
  color: rgba(90, 90, 90, 0.75);
  animation: glitchDark 3s ease-in-out infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 80%, 0 80%);
}

@keyframes glitchLight {
  0%, 89%, 100% { transform: translate(0); opacity: 0; }
  90%  { transform: translate(-3px, 0);   opacity: 1; }
  91%  { transform: translate(2px, 0);    opacity: 1; }
  92%  { transform: translate(0);         opacity: 0; }
  93%  { transform: translate(-2px, 1px); opacity: 1; }
  94%  { transform: translate(0);         opacity: 0; }
  95%  { transform: translate(-3px, 0);   opacity: 1; }
  96%  { transform: translate(0);         opacity: 0; }
}
@keyframes glitchDark {
  0%, 89%, 100% { transform: translate(0); opacity: 0; }
  90%  { transform: translate(3px, 0);    opacity: 1; }
  91%  { transform: translate(-2px, 0);   opacity: 1; }
  92%  { transform: translate(0);         opacity: 0; }
  93%  { transform: translate(2px, -1px); opacity: 1; }
  94%  { transform: translate(0);         opacity: 0; }
  95%  { transform: translate(3px, 0);    opacity: 1; }
  96%  { transform: translate(0);         opacity: 0; }
}

/* ═══════════════════════════════════════════════════════
   BOOKING CONFIRMATION MODAL
═══════════════════════════════════════════════════════ */
.booking-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: bcOverlayIn 0.3s ease forwards;
}
@keyframes bcOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.booking-confirm-box {
  background: linear-gradient(160deg, #1c1c1e 0%, #141414 60%, #111 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  width: min(420px, 100%);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.1),
    0 32px 80px rgba(0,0,0,0.8),
    0 0 60px rgba(201,168,76,0.06);
  animation: bcBoxIn 0.42s cubic-bezier(0.16,1,0.3,1) forwards;
  transform-origin: center bottom;
}
@keyframes bcBoxIn {
  from { opacity:0; transform: scale(0.88) translateY(24px); }
  to   { opacity:1; transform: scale(1)    translateY(0);    }
}

/* ── Checkmark header ── */
.bc-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.bc-icon-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.bc-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: #0a0a0a;
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(201,168,76,0.5);
  animation: bcCheckPop 0.5s 0.2s cubic-bezier(0.16,1,0.3,1) both;
  position: relative;
  z-index: 1;
}
@keyframes bcCheckPop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.bc-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.35);
  animation: bcRingPulse 2.2s 0.4s ease-in-out infinite;
}
.bc-ring-2 {
  border-color: rgba(201,168,76,0.18);
  animation-delay: 0.9s;
  inset: -8px;
}
@keyframes bcRingPulse {
  0%,100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0.4; }
}
.bc-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 5px;
}
.bc-subtitle {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ── Details card ── */
.bc-details {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}
.bc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bc-row:last-child { border-bottom: none; }
.bc-label {
  font-size: 0.72rem;
  color: rgba(201,168,76,0.6);
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}
.bc-value {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--white-90);
  text-align: right;
  word-break: break-word;
}

/* ── WhatsApp note ── */
.bc-wa-note {
  font-size: 0.68rem;
  color: rgba(94,218,122,0.7);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

/* ── Close button ── */
.bc-close-btn {
  width: 100%;
  margin-bottom: 16px;
}

/* ── Brand footer ── */
.bc-brand {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: rgba(201,168,76,0.25);
}

/* ═══════════════════════════════════════════════════════
   BEFORE / AFTER GALLERY SLIDER
═══════════════════════════════════════════════════════ */
#gallery {
  background: var(--dark);
  padding: 90px 5vw 80px;
}

/* ── Stage (main large slider) ── */
.ba-stage {
  max-width: 860px;
  margin: 0 auto 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(201,168,76,0.18);
}

/* ── Shared slider base ── */
.ba-slider {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.ba-stage .ba-slider { height: 480px; }

/* ── Layers ── */
.ba-layer {
  position: absolute;
  inset: 0;
}
.ba-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.ba-before-layer {
  z-index: 1;
  filter: grayscale(0.4) brightness(0.8);
}
.ba-after-layer {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

/* ── Before / After label badges ── */
.ba-label {
  position: absolute;
  bottom: 16px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 2px;
  z-index: 4;
}
.ba-lbl-before {
  left: 16px;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.ba-lbl-after {
  right: 16px;
  background: var(--gold);
  color: var(--black);
}

/* ── Divider & handle ── */
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  will-change: left;
}
.ba-line {
  flex: 1;
  width: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.7);
}
.ba-handle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.3), 0 4px 16px rgba(0,0,0,0.5);
  cursor: ew-resize;
  pointer-events: all;
  flex-shrink: 0;
  border: none;
  padding: 0;
  transition: box-shadow 0.2s;
}
.ba-handle:hover, .ba-handle:active {
  box-shadow: 0 0 0 6px rgba(201,168,76,0.35), 0 4px 20px rgba(0,0,0,0.6);
}
.ba-handle svg {
  width: 28px;
  height: 28px;
}

/* ── Thumbnail row ── */
.ba-thumbs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.ba-thumb-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.ba-thumb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.25);
}
.ba-thumb-card.selected {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px var(--gold),
    0 0 12px rgba(201,168,76,0.8),
    0 0 28px rgba(201,168,76,0.5),
    0 0 55px rgba(201,168,76,0.25),
    0 14px 40px rgba(0,0,0,0.6);
  animation: neonPulse 2.2s ease-in-out infinite;
}
@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px var(--gold),
      0 0 10px rgba(201,168,76,0.8),
      0 0 24px rgba(201,168,76,0.45),
      0 0 50px rgba(201,168,76,0.2),
      0 14px 40px rgba(0,0,0,0.6);
  }
  50% {
    box-shadow:
      0 0 0 1px var(--gold-light),
      0 0 18px rgba(232,201,122,1),
      0 0 40px rgba(201,168,76,0.65),
      0 0 75px rgba(201,168,76,0.3),
      0 14px 40px rgba(0,0,0,0.6);
  }
}
.ba-thumb-slider {
  height: 220px;
}
.ba-thumb-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-align: center;
  padding: 12px 8px;
  background: var(--dark-2);
  margin: 0;
}

/* ── Mobile ── */
@media (max-width: 700px) {
  .ba-stage .ba-slider { height: 280px; }
  .ba-thumbs-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ba-thumb-slider { height: 200px; }
}
@media (max-width: 480px) {
  .ba-stage .ba-slider { height: 220px; }
}

/* ── Remove old gallery strip (if any remnants) ── */
.gallery-strip, .gallery-item { display: none; }
.ct-slot-taken,
.ct-slot[disabled].ct-slot-taken {
  opacity: 0.28;
  cursor: not-allowed;
  text-decoration: line-through;
  background: rgba(255,255,255,0.03) !important;
  border-color: rgba(255,255,255,0.06) !important;
  color: var(--grey) !important;
  box-shadow: none !important;
}
.cb-slot-taken,
.cb-time-slot[disabled].cb-slot-taken {
  opacity: 0.28;
  cursor: not-allowed;
  text-decoration: line-through;
  background: rgba(255,255,255,0.03) !important;
  border-color: rgba(255,255,255,0.06) !important;
  color: var(--grey-light) !important;
  box-shadow: none !important;
}
