/* 207 Barbershop — Visual Identity System */
:root {
  --red: #E8222A;
  --red-dark: #C41A20;
  --red-light: #FF4B52;
  --red-glow: rgba(232, 34, 42, 0.15);
  --black: #0A0A0A;
  --black-card: #111111;
  --black-soft: #181818;
  --black-lighter: #1a1a1a;
  --gray-dark: #2a2a2a;
  --gray: #666;
  --gray-light: #999;
  --white: #ffffff;
  --white-off: #f0f0f0;
  --white-dim: rgba(255, 255, 255, 0.6);
  --white-muted: rgba(255, 255, 255, 0.35);
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== GRAIN OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding 0.3s, background 0.3s;
}

nav.scrolled {
  padding: 14px 40px;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo .num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--white);
  background: var(--red);
  padding: 2px 10px;
  border-radius: 6px;
  transform: rotate(-2deg);
  display: inline-block;
}

.nav-logo .name {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--white-dim);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600 !important;
  transition: transform 0.2s, background 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: scale(1.05);
  background: var(--red-dark) !important;
  box-shadow: 0 4px 20px rgba(232, 34, 42, 0.35);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}

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

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  background: url('../photos/hero-bg.png') center/cover no-repeat;
}

/* Dark overlay so text stays readable */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.85) 0%,
      rgba(10, 10, 10, 0.7) 50%,
      rgba(10, 10, 10, 0.9) 100%);
  z-index: 0;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--white-muted);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  position: relative;
  display: inline-block;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-title .big-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(100px, 18vw, 200px);
  line-height: 0.9;
  color: var(--white);
  position: relative;
}

.hero-title .big-num::before {
  content: '207';
  position: absolute;
  top: 6px;
  left: 6px;
  color: var(--red);
  z-index: -1;
  opacity: 0.5;
}

.hero-title .strike {
  position: absolute;
  left: -5%;
  right: -5%;
  top: 48%;
  height: 6px;
  background: var(--red);
  border-radius: 3px;
}

.hero-barbershop {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(20px, 4vw, 42px);
  letter-spacing: 10px;
  margin-top: 8px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-barbershop span {
  display: inline-block;
  border-bottom: 3px solid var(--red);
  padding-bottom: 4px;
}

.hero-tagline {
  margin-top: 30px;
  font-size: 16px;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-tagline .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.hero-btn {
  margin-top: 50px;
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 18px 48px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeUp 0.8s ease 0.4s both;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.hero-btn:hover::before {
  transform: translateX(100%);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232, 34, 42, 0.4);
}

/* ===== SECTIONS GENERAL ===== */
section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 50px;
  line-height: 1.1;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s,
    box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(232, 34, 42, 0.2), 0 0 30px rgba(232, 34, 42, 0.08);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}

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

/* Service Card Images */
.service-img {
  margin: -32px -28px 20px -28px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  aspect-ratio: 16 / 10;
}

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

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

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232, 34, 42, 0.08);
  border: 1px solid rgba(232, 34, 42, 0.15);
  color: var(--red);
  margin-bottom: 16px;
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-price {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 20px;
  color: var(--red);
}

/* ===== BOOKING SECTION ===== */
#book {
  max-width: 900px;
}

.booking-container {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.booking-steps {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-step {
  flex: 1;
  padding: 18px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--white-muted);
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
}

.booking-step.active {
  color: var(--white);
}

.booking-step.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.booking-step .step-num {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  margin-right: 8px;
  transition: background 0.3s, transform 0.3s;
}

.booking-step.active .step-num {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1);
}

.booking-step.completed .step-num {
  background: var(--red);
  color: var(--white);
}

.booking-body {
  padding: 40px;
  min-height: 420px;
}

/* Step 1: Service selection */
.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.service-option {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-option:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  transform: translateX(4px);
}

.service-option.selected {
  border-color: var(--red);
  background: var(--red-glow);
  box-shadow: 0 0 20px rgba(232, 34, 42, 0.1);
}

.service-option .svc-name {
  font-weight: 600;
  font-size: 15px;
}

.service-option .svc-detail {
  font-size: 12px;
  color: var(--white-muted);
  margin-top: 4px;
}

.service-option .svc-price {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--red);
  font-size: 16px;
}

/* Step 2: Calendar */
.calendar-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.calendar {
  background: var(--black-lighter);
  border-radius: var(--radius);
  padding: 24px;
}

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

.cal-header h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.cal-nav {
  display: flex;
  gap: 8px;
}

.cal-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: none;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav button:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(232, 34, 42, 0.08);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.cal-day-label {
  font-size: 11px;
  color: var(--white-muted);
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 0;
}

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

.cal-day:hover:not(.disabled):not(.empty) {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.cal-day.selected {
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(232, 34, 42, 0.3);
}

.cal-day.today {
  border: 1px solid var(--red);
  color: var(--red);
}

.cal-day.disabled {
  color: rgba(255, 255, 255, 0.12);
  cursor: default;
}

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

/* Time slots */
.time-slots h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.time-slots .date-display {
  font-size: 13px;
  color: var(--white-muted);
  margin-bottom: 20px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px;
}

.slots-grid::-webkit-scrollbar {
  width: 4px;
}

.slots-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.time-slot {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  transition: all 0.2s;
  background: none;
  color: var(--white-dim);
}

.time-slot:hover:not(.unavailable) {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.time-slot.selected {
  border-color: var(--red);
  background: var(--red-glow);
  color: var(--white);
  box-shadow: 0 0 12px rgba(232, 34, 42, 0.15);
}

.time-slot.unavailable {
  opacity: 0.25;
  cursor: default;
  text-decoration: line-through;
}

/* Step 3: Details form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white-muted);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: var(--black-lighter);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 34, 42, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Booking summary */
.booking-summary {
  background: var(--black-lighter);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.summary-item {
  flex: 1;
  min-width: 150px;
}

.summary-item .label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.summary-item .value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.summary-item .value.red {
  color: var(--red);
}

/* Next/Prev buttons */
.booking-footer {
  padding: 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-back {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white-dim);
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-back:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-next {
  background: var(--red);
  border: none;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-next::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-next:hover:not(:disabled)::before {
  transform: translateX(100%);
}

.btn-next:hover:not(:disabled) {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 34, 42, 0.35);
}

.btn-next:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
  box-shadow: none;
}

/* Confirmation screen */
.confirmation {
  text-align: center;
  padding: 60px 20px;
}

.confirmation .check-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 40px rgba(232, 34, 42, 0.3);
}

.confirmation .check-icon::after {
  content: '✓';
  color: white;
  font-size: 36px;
  font-weight: 700;
}

.confirmation h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 12px;
}

.confirmation p {
  color: var(--white-dim);
  font-size: 15px;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left .fl-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 8px;
}

.footer-left .fl-addr {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.5;
}

.footer-right {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-right a {
  color: var(--white-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
  position: relative;
}

.footer-right a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s;
}

.footer-right a:hover {
  color: var(--white);
}

.footer-right a:hover::after {
  width: 100%;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white-muted);
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  color: var(--red);
  background: rgba(232, 34, 42, 0.1);
  border-color: rgba(232, 34, 42, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 34, 42, 0.2);
}

.social-icon::after {
  display: none !important;
}

.footer-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white-dim) !important;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-phone:hover {
  color: var(--red) !important;
}

.footer-phone::after {
  display: none !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }

  nav.scrolled {
    padding: 12px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 150;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .nav-toggle {
    display: flex;
  }

  section {
    padding: 60px 16px;
    overflow-x: hidden;
  }

  #book {
    padding-left: 8px;
    padding-right: 8px;
  }

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

  .service-card {
    padding: 24px 20px;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .booking-container {
    border-radius: 12px;
  }

  .booking-body {
    padding: 16px 10px;
  }

  /* ===== MOBILE CALENDAR: Full-width, big targets ===== */
  .calendar-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .calendar {
    padding: 12px 8px;
    border-radius: 16px;
    background: var(--black-soft);
  }

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

  .cal-header h3 {
    font-size: 20px;
  }

  .cal-nav button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .cal-grid {
    gap: 6px;
  }

  .cal-day {
    width: 100%;
    height: 44px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    aspect-ratio: unset;
  }

  .cal-day.selected {
    box-shadow: 0 0 20px rgba(232, 34, 42, 0.4);
    transform: scale(1.05);
  }

  .cal-day-label {
    font-size: 12px;
    padding: 6px 0;
  }

  /* ===== MOBILE TIME SLOTS: Bottom Sheet ===== */
  .time-slots {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--black-card);
    border-radius: 24px 24px 0 0;
    padding: 0 20px 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    max-height: 70vh;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .time-slots.sheet-open {
    transform: translateY(0);
  }

  /* Drag handle */
  .time-slots::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 12px auto 16px;
    flex-shrink: 0;
  }

  .time-slots h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 4px;
  }

  .time-slots .date-display {
    text-align: center;
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--red-light);
    font-weight: 500;
  }

  /* Overlay behind bottom sheet */
  .sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .sheet-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .time-slot {
    padding: 16px 8px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .time-slot.selected {
    box-shadow: 0 0 20px rgba(232, 34, 42, 0.3);
    transform: scale(1.03);
  }

  /* ===== Step indicator pills on mobile ===== */
  .booking-steps {
    overflow-x: auto;
    gap: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .booking-steps::-webkit-scrollbar {
    display: none;
  }

  .booking-step {
    white-space: nowrap;
    padding: 14px 16px;
    font-size: 11px;
    flex: 1;
    justify-content: center;
  }

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

  .booking-footer {
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 60px));
  }

  footer {
    padding: 40px 20px;
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Selection color */
::selection {
  background: var(--red);
  color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hidden {
  display: none !important;
}

/* ===== STICKY MOBILE BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  justify-content: space-around;
  align-items: center;
  transition: transform 0.3s ease;
}

.mobile-bar.bar-hidden {
  transform: translateY(100%);
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 10px;
  transition: transform 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.mobile-bar-btn:active {
  transform: scale(0.92);
}

.call-btn {
  color: #4ade80;
}

.call-btn:active {
  background: rgba(74, 222, 128, 0.1);
}

.book-btn {
  color: var(--white);
  background: var(--red);
  border-radius: 12px;
  padding: 10px 24px;
  box-shadow: 0 4px 15px rgba(232, 34, 42, 0.3);
}

.book-btn:active {
  background: var(--red-dark);
  transform: scale(0.95);
}

.map-btn {
  color: #60a5fa;
}

.map-btn:active {
  background: rgba(96, 165, 250, 0.1);
}

/* ===== TOUCH FEEDBACK ===== */
.touch-active {
  transform: scale(0.97) !important;
  opacity: 0.85;
  transition: transform 0.1s, opacity 0.1s !important;
}

/* Prevent text selection on interactive elements for mobile */
.service-card,
.service-option,
.slot,
.booking-step,
.btn-next,
.btn-back,
.mobile-bar-btn {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* Larger tap targets on mobile */
@media (max-width: 768px) {
  .mobile-bar {
    display: flex;
  }

  footer {
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
  }

  .service-option {
    padding: 18px 20px;
    min-height: 64px;
  }

  .slot {
    padding: 14px 10px;
    min-height: 48px;
    font-size: 14px;
  }

  .btn-next,
  .btn-back {
    padding: 16px 28px;
    font-size: 15px;
    min-height: 50px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
    /* Prevents iOS zoom on focus */
    padding: 14px 16px;
  }

  .cal-grid button {
    min-height: 44px;
    min-width: 44px;
  }

  /* Swipe hint animation */
  .booking-container::after {
    content: '← swipe to navigate →';
    display: block;
    text-align: center;
    color: var(--white-muted);
    font-size: 11px;
    letter-spacing: 1px;
    padding: 8px 0 0;
    opacity: 0;
    animation: swipeHint 4s ease 2s forwards;
  }

  @keyframes swipeHint {
    0% {
      opacity: 0;
    }

    20% {
      opacity: 0.6;
    }

    80% {
      opacity: 0.6;
    }

    100% {
      opacity: 0;
    }
  }

  /* Phone link styles */
  .footer-phone {
    color: #4ade80 !important;
    font-weight: 600;
  }
}