/* ============================================================
   Classic Caterers Booking System — style.css
   ============================================================ */

/* 0. CSS Variables */
:root {
  --primary:       #ff5b2e;
  --primary-dark:  #e04a20;
  --primary-light: #fff3ef;
  --black:         #111111;
  --text:          #333333;
  --muted:         #666666;
  --border:        #dddddd;
  --bg-light:      #f9f9f9;
  --white:         #ffffff;
  --success:       #22c55e;
  --error:         #ef4444;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.12);
  --font-heading:  'Kalam', cursive;
  --font-body:     'Poppins', sans-serif;
  --transition:    all 0.25s ease;
}

/* 1. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: var(--font-body); }

/* 2. Header */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: 70px;
  display: flex;
  align-items: center;
}
.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.header-brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.header-brand span { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-call {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.btn-call i { color: var(--primary); }
.btn-call:hover { color: var(--primary); }
.btn-book-now {
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-book-now:hover { background: var(--primary-dark); }

/* 3. Hero */
.hero {
  min-height: 58vh;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 50px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-hero-call {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-hero-call:hover { background: #f0f0f0; }
.btn-hero-book {
  display: flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-hero-book:hover { background: var(--primary-dark); }

/* 4. Progress Bar */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,91,46,0.45), 0 0 0 4px rgba(255,91,46,0.15); }
  70%  { box-shadow: 0 0 0 8px rgba(255,91,46,0), 0 0 0 4px rgba(255,91,46,0.15); }
  100% { box-shadow: 0 0 0 0 rgba(255,91,46,0), 0 0 0 4px rgba(255,91,46,0.15); }
}
@keyframes pop-in {
  0%   { transform: scale(0.6); opacity: 0; }
  70%  { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fill-bar {
  from { width: 0; }
}

.progress-section {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.progress-inner { max-width: 860px; margin: 0 auto; }
.steps-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
/* Base track line */
.steps-track::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 18px;
  right: 18px;
  height: 3px;
  background: #e8e8e8;
  border-radius: 2px;
  z-index: 0;
}
/* Animated fill line */
.steps-track::after {
  content: '';
  position: absolute;
  top: 19px;
  left: 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--success), var(--primary));
  border-radius: 2px;
  z-index: 0;
  width: var(--progress-fill, 0%);
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e8e8e8;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  border: 2.5px solid #e8e8e8;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.25s ease;
}
.step-item.active .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  animation: pulse-ring 1.8s ease-out infinite, pop-in 0.35s ease;
}
.step-item.completed .step-circle {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
  animation: pop-in 0.3s ease;
}
.step-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.3s ease, font-weight 0.3s ease;
}
.step-item.active .step-label {
  color: var(--primary);
  font-weight: 700;
  animation: slide-up 0.3s ease;
}
.step-item.completed .step-label { color: var(--success); }

/* 5. Form Section */
.form-section {
  padding: 40px 24px 80px;
}
.form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
  padding: 40px;
  overflow: hidden;
}

/* Step panels */
.step-panel { display: none; }
.step-panel.active { display: block; }

.step-header { margin-bottom: 28px; }
.step-header h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--black);
  margin-bottom: 6px;
}
.step-header p { color: var(--muted); font-size: 0.9rem; }

/* 6. Form Fields */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.field-row.full { grid-template-columns: 1fr; }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
}
.field-group label .req { color: var(--primary); margin-left: 2px; }
.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,91,46,0.1);
}
.field-group input.error,
.field-group textarea.error { border-color: var(--error); }
.field-error {
  font-size: 0.78rem;
  color: var(--error);
  display: none;
}
.field-error.show { display: block; }
.field-group textarea { resize: vertical; min-height: 90px; }

/* 7. Event Cards Grid */
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.event-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.event-card:hover { border-color: #ffb59e; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.event-card.selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,91,46,0.15);
}
.event-card-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.event-card-label {
  padding: 10px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--white);
  transition: var(--transition);
}
.event-card.selected .event-card-label { color: var(--primary); }
.event-card-tick {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  opacity: 0;
  transition: var(--transition);
}
.event-card.selected .event-card-tick { opacity: 1; }

/* 8. Services Checkboxes */
.services-section { margin-bottom: 24px; }
.services-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.check-item:hover { border-color: var(--primary); background: var(--primary-light); }
.check-item input[type="checkbox"] { display: none; }
.check-box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 0.65rem;
  color: var(--white);
}
.check-item input:checked ~ .check-box {
  background: var(--primary);
  border-color: var(--primary);
}
.check-item input:checked ~ .check-box::after { content: '✓'; }
.check-item input:checked ~ .check-label { color: var(--primary); font-weight: 600; }
.check-label { font-size: 0.875rem; color: var(--text); transition: var(--transition); }
.service-group { margin-bottom: 16px; }
.service-group.hidden { display: none; }

/* 9. Accordion (Menu Step) */
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item.open { border-color: var(--primary); }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
}
.accordion-item.open .accordion-header { background: var(--primary-light); }
.accordion-header-left { display: flex; align-items: center; gap: 10px; }
.accordion-icon { font-size: 1.2rem; }
.accordion-title { font-weight: 600; font-size: 0.9rem; color: var(--black); }
.accordion-header-right { display: flex; align-items: center; gap: 10px; }
.accordion-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  display: none;
}
.accordion-badge.show { display: inline-block; }
.accordion-chevron {
  color: var(--muted);
  transition: var(--transition);
  font-size: 0.85rem;
}
.accordion-item.open .accordion-chevron { transform: rotate(180deg); color: var(--primary); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-item.open .accordion-body { max-height: 2000px; }
.accordion-body-inner { padding: 16px 18px 20px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.8rem;
  user-select: none;
}
.menu-item:hover { border-color: var(--primary); background: var(--primary-light); }
.menu-item input { display: none; }
.menu-check {
  width: 16px; height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: var(--white);
  transition: var(--transition);
}
.menu-item input:checked ~ .menu-check { background: var(--primary); border-color: var(--primary); }
.menu-item input:checked ~ .menu-check::after { content: '✓'; }
.menu-item input:checked ~ .menu-name { color: var(--primary); font-weight: 600; }
.menu-name { color: var(--text); line-height: 1.3; }
.accordion-item.hidden { display: none; }

/* 10. Review / Summary */
.summary-section { margin-bottom: 24px; }
.summary-block {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
}
.summary-block-header {
  background: var(--primary);
  color: var(--white);
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.summary-block-body { padding: 16px 18px; }
.summary-row {
  display: flex;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-key { font-weight: 600; color: var(--black); min-width: 110px; }
.summary-val { color: var(--text); }
.summary-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.summary-tag {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}
.menu-summary-cat { margin-bottom: 10px; }
.menu-summary-cat-name {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--black);
  margin-bottom: 4px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.menu-summary-items { font-size: 0.82rem; color: var(--text); line-height: 1.6; }

/* 11. Navigation Buttons */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}
.btn-back {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-back:hover { border-color: var(--primary); color: var(--primary); }
.btn-next {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 32px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-left: auto;
}
.btn-next:hover { background: var(--primary-dark); }
.btn-submit {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 36px;
  background: var(--success);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-left: auto;
}
.btn-submit:hover { background: #16a34a; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* 12. Success Screen */
/* ── Success Screen ──────────────────────────────────────────── */
@keyframes card-enter {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes check-pop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.18); }
  80%  { transform: scale(0.94); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes ring-expand {
  0%   { transform: scale(0.5); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}

.success-screen {
  display: none;
  padding: 48px 16px 64px;
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 60%);
  min-height: 60vh;
  align-items: center;
  justify-content: center;
}
.success-screen.show {
  display: flex;
}

.success-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(255,91,46,0.12), 0 2px 16px rgba(0,0,0,0.07);
  max-width: 540px;
  width: 100%;
  overflow: hidden;
  animation: card-enter 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

/* Brand strip */
.success-brand-strip {
  background: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
}
.success-strip-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 2px;
  flex-shrink: 0;
}
.success-brand-strip span {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* Body */
.success-body {
  padding: 40px 36px 36px;
  text-align: center;
}

/* Animated check */
.success-check-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--success);
  animation: ring-expand 2s ease-out infinite;
}
.success-ring-2 { animation-delay: 0.7s; }
.success-icon {
  width: 72px; height: 72px;
  background: var(--success);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  animation: check-pop 0.6s cubic-bezier(0.22,1,0.36,1) 0.15s both;
  box-shadow: 0 6px 24px rgba(34,197,94,0.35);
}

.success-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 10px;
}
.success-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.success-subtitle strong { color: var(--black); }

/* Summary chips */
.success-summary {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.summary-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: #fff5f2;
  border: 1.5px solid #ffd4c8;
  border-radius: 12px;
  padding: 10px 16px;
  min-width: 90px;
}
.summary-chip .chip-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.summary-chip .chip-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
}

.success-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 24px;
}

/* Contact */
.success-contact {
  background: var(--primary-light);
  border: 1.5px solid #ffd4c8;
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 20px;
}
.success-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  flex-wrap: wrap;
}
.success-contact-row i { font-size: 1rem; }
.success-contact-row a { color: var(--primary); text-decoration: none; }
.success-contact-row a:hover { text-decoration: underline; }
.sc-sep { color: var(--muted); font-weight: 400; }
.success-contact-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
  text-align: center;
}

/* Social chips */
.success-social {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}
.social-chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.social-chip .fa-instagram { color: #E1306C; }
.social-chip .fa-facebook-f { color: #1877F2; }
.social-chip .fa-youtube { color: #FF0000; }

/* Buttons */
.success-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.btn-pdf {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  transition: var(--transition);
  min-width: 170px;
  justify-content: center;
}
.btn-pdf:hover:not(:disabled) { background: var(--primary-dark); transform: translateY(-1px); }
.btn-pdf:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-home {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--text);
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: 2px solid var(--border);
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-home:hover { border-color: var(--primary); color: var(--primary); }

.success-email-note {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.success-email-note i { color: var(--success); }

/* 13. Footer */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  padding: 48px 24px 28px;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-logo img { height: 56px; width: auto; object-fit: contain; }
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
}
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 20px; }
.footer-address { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.footer-phones {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-phones a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 6px;
}
.footer-socials { display: flex; gap: 16px; justify-content: center; margin-bottom: 28px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--primary); color: var(--primary); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* 14. Spinner / Loading */
.spinner { display: inline-block; }
.spinner::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Honeypot */
.hp-field { display: none !important; }

/* General error alert */
.step-error-msg {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--error);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: none;
}
.step-error-msg.show { display: block; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1023px) {
  .event-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-grid  { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .form-container { padding: 24px 16px; border-radius: var(--radius-md); }
  .field-row { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid  { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .header-brand { display: none; }
  .step-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    z-index: 500;
    margin-top: 0;
  }
  .form-section { padding-bottom: 100px; }
  .step-label { display: none; }
}
@media (max-width: 479px) {
  .hero-title { font-size: 2rem; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .success-body { padding: 28px 20px 28px; }
  .success-brand-strip { padding: 12px 18px; }
  .success-brand-strip span { font-size: 0.85rem; }
  .success-buttons { flex-direction: column; align-items: stretch; }
  .btn-pdf, .btn-home { justify-content: center; }
  .success-social { gap: 8px; }
  .social-chip { font-size: 0.78rem; padding: 6px 12px; }
  .success-summary { gap: 8px; }
  .summary-chip { min-width: 80px; padding: 8px 12px; }
}
