:root {
  --bg-dark: #080b12;
  --bg-card: #101624;
  --bg-card-hover: #172033;
  --border-color: #1e293b;
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-glow: rgba(245, 158, 11, 0.25);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --success: #10b981;
  --danger: #ef4444;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

.hidden {
  display: none !important;
}

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

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

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

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ШАПКА */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 18, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo-link {
  display: inline-block;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--gold-primary);
  margin-top: 3px;
  text-transform: uppercase;
}

/* ДЕСКТОПНАЯ НАВИГАЦИЯ */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--gold-primary);
}

.nav-btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.nav-master-btn {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid #3b82f6;
  color: #60a5fa !important;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  transition: all 0.2s;
}

.nav-master-btn:hover {
  background: #3b82f6;
  color: #fff !important;
}

.nav-admin-btn {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary) !important;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  transition: all 0.2s;
}

.nav-admin-btn:hover {
  background: var(--gold-primary);
  color: #000 !important;
}

/* МОБИЛЬНЫЕ КНОПКИ В ШАПКЕ */
.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.mob-btn {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.mob-btn-master {
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid #3b82f6;
  color: #93c5fd;
}

.mob-btn-admin {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
}

/* МОБИЛЬНАЯ СТИКИ-НАВИГАЦИЯ */
.mobile-quick-nav {
  display: none;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 8px 16px 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 8px;
}

.mobile-quick-nav::-webkit-scrollbar {
  display: none;
}

.quick-nav-track {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}

.q-pill {
  background: #111726;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.q-pill:hover, .q-pill:active {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-primary);
  color: #fff;
}

.q-pill-accent {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(245, 158, 11, 0.1));
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, #1a253d 0%, #080b12 70%);
  border-bottom: 1px solid var(--border-color);
  padding: 70px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* КНОПКИ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #000;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn-gold {
  background: var(--gold-primary);
  color: #000;
}

.btn-gold:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: var(--text-muted);
}

.btn-block { width: 100%; }
.btn-sm { padding: 9px 14px; font-size: 0.84rem; }

/* СЕКЦИИ */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 45px; }
.section-tag {
  color: var(--gold-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  margin-top: 6px;
  color: #fff;
}
.section-desc { color: var(--text-muted); margin-top: 8px; font-size: 1.05rem; }

/* ТАБЫ УСЛУГ */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.srv-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.srv-tab-btn.active, .srv-tab-btn:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

/* СЕТКА УСЛУГ */
.price-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.price-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-img-wrap {
  position: relative;
  height: 180px;
  background: #141c2e;
}

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

.price-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.price-cat-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.8);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.price-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.price-title { font-size: 1.1rem; color: #fff; }
.price-cost { font-size: 1.3rem; font-weight: 800; color: var(--gold-primary); }
.price-dur { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
.price-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.5; }

/* МАСТЕРА — ИДЕАЛЬНОЕ ВЫРАВНИВАНИЕ И БЕЗ ИСКАЖЕНИЯ ФОТО */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1240px;
  margin: 0 auto;
  gap: 24px;
  align-items: stretch;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  border-color: rgba(245, 158, 11, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.team-photo-wrap {
  position: relative;
  height: 330px;
  background: #111726;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* Идеальное центрирование лиц и причесок мастеров */
  display: block;
  background-color: #111726;
}

.team-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.8);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
}

.team-exp-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(16, 22, 36, 0.9);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--border-color);
}

.team-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-name { font-size: 1.25rem; color: #fff; margin-bottom: 4px; }
.team-role { color: var(--gold-primary); font-weight: 600; font-size: 0.88rem; margin-bottom: 10px; }
.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.team-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.spec-chip {
  background: #0d1322;
  border: 1px solid var(--border-color);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.team-actions {
  margin-top: auto;
  padding-top: 10px;
}

.team-actions .btn {
  width: 100%;
}

/* ПОРТФОЛИО ДО / ПОСЛЕ — ИДЕАЛЬНОЕ ВЫРАВНИВАНИЕ */
.portfolio-landing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.landing-work-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.work-photos-split {
  display: flex;
  height: 220px;
  position: relative;
}

.photo-box {
  flex: 1;
  position: relative;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.badge-after {
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.work-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.work-cat-tag { font-size: 0.8rem; color: var(--gold-primary); margin-bottom: 6px; }
.work-card-title { font-size: 1.05rem; color: #fff; margin-bottom: 8px; }
.work-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.4;
  flex-grow: 1;
}

.work-card-body .btn {
  margin-top: auto;
}

/* ВИДЖЕТ БРОНИРОВАНИЯ */
.booking-section { background: #07090f; padding: 80px 0; }
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.wizard-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.step-item { display: flex; align-items: center; gap: 10px; opacity: 0.45; }
.step-item.active { opacity: 1; }
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.step-item.active .step-num {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 12px var(--gold-glow);
}
.step-label { font-weight: 600; font-size: 0.92rem; }
.step-line { flex: 1; height: 2px; background: var(--border-color); margin: 0 15px; }

.wizard-content { min-height: 320px; }
.wizard-content.hidden { display: none; }

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

.step-title { font-size: 1.3rem; color: #fff; margin-bottom: 16px; }

.wizard-cat-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.w-chip {
  background: #0a0e17;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.w-chip.active, .w-chip:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.selected-service-banner {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--gold-primary);
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  color: #fff;
}

.btn-change-inline {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-change-inline:hover {
  background: var(--gold-primary);
  color: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.service-select-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #0a0e17;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-select-card:hover { border-color: rgba(245, 158, 11, 0.5); }
.service-select-card.selected { border-color: var(--gold-primary); background: rgba(245, 158, 11, 0.08); }

.card-cat-pill {
  font-size: 0.72rem;
  background: #1e293b;
  padding: 2px 8px;
  border-radius: 12px;
  color: var(--text-muted);
}

.card-check { display: none; color: var(--gold-primary); font-weight: 900; font-size: 1.2rem; }
.service-select-card.selected .card-check, .master-select-card.selected .card-check { display: block; }

.masters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.master-select-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0a0e17;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  opacity: 1 !important;
  transition: all 0.2s ease;
}

.master-select-card:hover {
  border-color: rgba(245, 158, 11, 0.6);
  background: #0f1523;
}

.master-select-card.selected {
  border-color: var(--gold-primary);
  background: rgba(245, 158, 11, 0.12);
  box-shadow: 0 0 16px var(--gold-glow);
}

.master-avatar { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-color); }
.any-avatar { display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: #131a29; border-color: var(--gold-primary); }
.master-name { font-weight: 700; color: #fff; }
.master-role { font-size: 0.8rem; color: var(--gold-primary); }
.master-rating { font-size: 0.75rem; color: var(--text-muted); }

.alert-empty {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--danger);
  border-radius: 8px;
  color: #fca5a5;
  font-size: 0.88rem;
  text-align: center;
}

/* ДАТА И СЛОТЫ */
.datetime-layout { display: grid; grid-template-columns: 300px 1fr; gap: 28px; margin-bottom: 28px; }
.custom-date-input {
  width: 100%;
  background: #0a0e17;
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 1rem;
  outline: none;
}
.custom-date-input:focus { border-color: var(--gold-primary); }
.date-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; }

.slots-header { display: flex; justify-content: space-between; align-items: center; }
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 10px; margin-top: 8px; }

.slot-btn {
  background: #0a0e17;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 12px 0;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.slot-btn:hover:not(:disabled) { border-color: var(--gold-primary); color: var(--gold-primary); }
.slot-btn.selected { background: var(--gold-primary); color: #000; border-color: var(--gold-primary); }
.slot-btn:disabled { opacity: 0.25; cursor: not-allowed; text-decoration: line-through; }

/* ШАГ 4 */
.summary-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 24px; }
.booking-summary-card { background: #0a0e17; border: 1px solid var(--border-color); border-radius: var(--radius); padding: 24px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.95rem; }
.summary-divider { height: 1px; background: var(--border-color); margin: 16px 0; }
.total-price { color: var(--gold-light); font-size: 1.3rem; font-weight: 800; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-input {
  width: 100%;
  background: #0a0e17;
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  outline: none;
}
.form-input:focus { border-color: var(--gold-primary); }
.form-policy { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.4; }

.step-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

/* СЕКЦИЯ КОНТАКТОВ */
.contacts-section {
  background: #090c14;
  border-top: 1px solid var(--border-color);
  padding: 80px 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.contact-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.contact-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.gold-link {
  color: var(--gold-primary);
  text-decoration: none;
}

.gold-link:hover {
  text-decoration: underline;
}

.contacts-footer-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* МОДАЛКА */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal.hidden { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(6px); }
.modal-card {
  position: relative;
  z-index: 2;
  background: #141c2e;
  border: 1px solid var(--gold-primary);
  border-radius: 16px;
  padding: 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
}
.modal-icon { font-size: 3rem; margin-bottom: 12px; }
.modal-title { font-family: var(--font-heading); color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.modal-text { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.modal-details { background: #0a0e17; border-radius: 8px; padding: 16px; text-align: left; font-size: 0.9rem; margin-bottom: 24px; }

/* ФУТЕР */
.footer {
  background: #05070a;
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-cabinet-links {
  display: flex;
  gap: 12px;
}

.footer-cab-btn {
  background: #101624;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  transition: all 0.2s;
}

.footer-cab-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

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

/* ПЛАВАЮЩАЯ КНОПКА ЗАПИСИ ДЛЯ СМАРТФОНОВ (УМНАЯ ЛОГИКА) */
.mobile-floating-booking-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #000;
  text-align: center;
  padding: 15px 20px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.98rem;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
  letter-spacing: 0.5px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(80px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.mobile-floating-booking-btn.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* МОБИЛЬНАЯ АДАПТАЦИЯ ДЛЯ СМАРТФОНОВ */
@media (max-width: 900px) {
  .nav { display: none; }
  .header-mobile-actions { display: flex; }
  .mobile-quick-nav { display: block; }
  .mobile-floating-booking-btn { display: flex; align-items: center; justify-content: center; gap: 8px; }
  .hero-title { font-size: 2.1rem; }
  .datetime-layout, .summary-layout { grid-template-columns: 1fr; }
  .wizard-steps { flex-wrap: wrap; gap: 10px; }
  .step-line { display: none; }
  .price-list-grid, .portfolio-landing-grid, .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
