:root {
  --bg: #faf8f3;
  --bg-elev: #ffffff;
  --text: #131514;
  --muted: #5f6563;
  --gold: #e3b54a; /* ambre chaud pour les accents */
  --gold-600: #c79a34;
  --gold-700: #a57f22;
  --border: #e6e3dd;
  --accent: #e3b54a;
  --teal: #1f6d68; /* bleu canard inspiré des murs/barres */
  --teal-600: #15514d;
  --teal-700: #0f3a37;
  --teal-100: #e6f0ef;
}

/* Force reload - fond blanc pur */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji';
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main { background: var(--bg); }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; }
.brand-mark { width: 36px; height: 36px; }
.brand-mark.small { width: 28px; height: 28px; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; letter-spacing: 0.06em; text-transform: uppercase; }
.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.nav a:hover::before {
  left: 100%;
}

.nav a:nth-child(1) {
  background: linear-gradient(135deg, var(--gold), var(--gold-600));
  color: white;
  box-shadow: 0 4px 15px rgba(201,170,113,0.3);
}

.nav a:nth-child(1):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,170,113,0.4);
}

.nav a:nth-child(2) {
  background: linear-gradient(135deg, var(--teal), var(--teal-600));
  color: white;
  box-shadow: 0 4px 15px rgba(31,109,104,0.3);
}

.nav a:nth-child(2):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31,109,104,0.4);
}

.nav-link, .nav-cta { color: var(--text); text-decoration: none; font-weight: 500; opacity: 0.9; }
.nav-cta { padding: 10px 16px; border: 1px solid var(--gold-600); border-radius: 999px; color: var(--gold-700); background: linear-gradient(180deg, #fff, #fff); transition: background 200ms ease, color 200ms ease; }
.nav-cta:hover { background: var(--gold); color: #0a0a0a; }

/* Hero */
.hero { position: relative; min-height: 92vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* overlay réchauffé (ambre + léger teal) pour rappeler les suspensions et l’ambiance */
.hero-overlay { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(31,109,104,0.15) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.55) 100%),
  radial-gradient(1000px 600px at 50% 20%, rgba(227,181,74,0.20), transparent 70%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 0 80px; transform: translateX(-3%); }
.hero-title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(56px, 10vw, 120px); letter-spacing: 0.08em; text-transform: uppercase; margin: 0; text-shadow: 0 4px 20px rgba(0,0,0,0.8); }
.hero-subtitle { margin: 0 0 28px; font-size: clamp(20px, 3vw, 28px); color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.6); font-weight: 500; }
.hero-actions { display: flex; gap: 12px; justify-content: center; }
.hero-meta { margin-top: 18px; color: #f1f1f1; display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; }
.hero-contact { color: #ffffff; text-decoration: none; opacity: 0.9; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.dot { color: var(--gold); opacity: 0.8; }
.hero-noise { pointer-events: none; position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: overlay; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23n)" opacity="0.6"/></svg>'); z-index: 1; }

.shimmer { background: linear-gradient(110deg, rgba(255,255,255,0.06), rgba(212,175,55,0.8), rgba(255,255,255,0.06)); -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% 100%; animation: shine 6s ease-in-out infinite; }
@keyframes shine { 0%{ background-position: 0% 50%; } 50%{ background-position: 100% 50%; } 100%{ background-position: 0% 50%; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 600; letter-spacing: 0.02em; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease; border: 1px solid transparent; position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 500ms ease; }
.btn:hover::before { left: 100%; }
.btn-primary { background: linear-gradient(180deg, var(--accent), var(--gold)); color: #0a0a0a; box-shadow: 0 6px 24px rgba(227,181,74,0.28), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(227,181,74,0.38); }
.btn-ghost { color: #ffffff; border-color: var(--teal-600); background: var(--teal); }
.btn-ghost:hover { background: var(--teal-600); transform: translateY(-2px); }

/* Sections */
.section { padding: 80px 0; position: relative; background: var(--bg); }
.section-head { text-align: center; margin-bottom: 28px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 48px); margin: 0 0 8px; letter-spacing: 0.06em; color: var(--teal); }
.section-desc { margin: 0; color: var(--muted); }

/* Section Ambiance centrée */
#ambiance {
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

#ambiance .container {
  max-width: 800px;
}

#ambiance .section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 20px;
}

/* Section Horaires d'ouverture */
#horaires {
  text-align: center;
  background: var(--bg);
}

.horaires-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.jour {
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jour:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.jour-nom {
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
}

.horaires {
  color: var(--teal);
  font-weight: 600;
  font-size: 15px;
}

.horaires.ferme {
  color: var(--muted);
  font-style: italic;
}

/* Séparateur avec cloche */
.section-separator {
  text-align: center;
  padding: 20px 0;
  background: var(--bg);
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.section-separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 400px;
  height: 1px;
  background: var(--border);
  z-index: 1;
}

.bell-icon {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: white;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin: 0 auto;
}

.bell-icon svg {
  display: block;
  animation: bellRing 3s ease-in-out infinite;
}

@keyframes bellRing {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
  20%, 40%, 60%, 80% { transform: rotate(5deg); }
}

/* Menu */
.menu-categories { display: grid; gap: 32px; margin-top: 24px; }
.menu-category { background: linear-gradient(180deg, #ffffff, #ffffff); border: 1px solid var(--border); border-left: 4px solid var(--teal); border-radius: 14px; padding: 24px; transform: translateY(20px); opacity: 0; transition: transform 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 800ms ease, box-shadow 400ms ease; box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.menu-category.show { transform: translateY(0); opacity: 1; box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.menu-category:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.10); }
.category-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin: 0 0 16px; color: var(--teal); letter-spacing: 0.06em; text-transform: uppercase; position: relative; }
.category-title::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 60px; height: 2px; background: linear-gradient(90deg, var(--teal), transparent); }
.menu-items { display: grid; gap: 16px; }
.menu-item { border-bottom: 1px solid rgba(31,109,104,0.12); padding-bottom: 12px; transform: translateX(-10px); opacity: 0; transition: transform 600ms ease, opacity 600ms ease; }
.menu-category.show .menu-item { transform: translateX(0); opacity: 1; }
.menu-item:nth-child(1) { transition-delay: 100ms; }
.menu-item:nth-child(2) { transition-delay: 200ms; }
.menu-item:nth-child(3) { transition-delay: 300ms; }
.menu-item:nth-child(4) { transition-delay: 400ms; }
.menu-item:nth-child(5) { transition-delay: 500ms; }
.menu-item:last-child { border-bottom: none; padding-bottom: 0; }
.menu-item:hover { transform: translateX(4px); }
.item-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 4px; }
.item-header h4 { margin: 0; font-size: 16px; font-weight: 600; letter-spacing: 0.02em; transition: color 200ms ease; }
.menu-item:hover .item-header h4 { color: var(--teal); }
.price { color: var(--gold-700); font-weight: 700; font-size: 16px; white-space: nowrap; transition: transform 200ms ease; }
.menu-item:hover .price { transform: scale(1.04); }
.item-desc { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.4; }
.menu-actions { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 24px; }
.card { background: linear-gradient(180deg, rgba(201,170,113,0.08), rgba(10,10,10,0.6)); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transform: translateY(8px); opacity: 0; transition: transform 600ms ease, opacity 600ms ease, box-shadow 400ms ease; box-shadow: 0 10px 40px rgba(0,0,0,0.25); }
.card.show { transform: translateY(0); opacity: 1; }
.card-media { aspect-ratio: 3/2; background: #0b0b0b; position: relative; }
.card-body { padding: 14px 14px 18px; }
.card-title { margin: 0 0 6px; font-size: 18px; letter-spacing: 0.02em; }
.card-text { margin: 0; color: var(--muted); font-size: 14px; }

/* Galerie */
.gallery-grid { columns: 2 320px; column-gap: 18px; }
.gallery-grid canvas { width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--border); margin-bottom: 18px; box-shadow: 0 10px 40px rgba(0,0,0,0.25); opacity: 0; transform: translateY(8px); transition: opacity 600ms ease, transform 600ms ease; }
.gallery-grid canvas.show { opacity: 1; transform: translateY(0); }

/* Reservation */
.form { display: grid; gap: 12px; margin-top: 16px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.form-full { display: block; }
.form label span { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form input, .form textarea { width: 100%; background: #ffffff; border: 1px solid var(--border); color: var(--text); padding: 12px 14px; border-radius: 12px; outline: none; transition: border-color 160ms ease, box-shadow 160ms ease; }
.form input:focus, .form textarea:focus { border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(31,109,104,0.15); }
select { width: 100%; background: #ffffff; border: 1px solid var(--border); color: var(--text); padding: 12px 14px; border-radius: 12px; outline: none; }
select:focus { border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(31,109,104,0.15); }
.help { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.form-actions .btn { flex: 1; min-width: 200px; color: white; }
.form-legal { margin: 6px 0 0; color: var(--muted); font-size: 12px; }
.form-actions .btn-primary { background: linear-gradient(180deg, var(--gold), var(--gold-600)); }

/* Footer */
.site-footer { 
  border-top: 1px solid var(--border); 
  background: var(--teal); 
  margin-top: 40px; 
  color: white;
}

.footer-inner { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; gap: 18px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-copy { margin: 4px 0 0; color: rgba(255,255,255,0.8); font-size: 14px; }
.footer-contact { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-contact a { color: white; opacity: 0.9; text-decoration: none; }
.footer-contact a:hover { opacity: 1; }
.footer-sub { border-top: 1px solid rgba(255,255,255,0.2); background: var(--teal-600); }
.footer-sub p { margin: 0; padding: 14px 0; color: rgba(255,255,255,0.7); font-size: 13px; text-align: center; }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px); background: linear-gradient(180deg, rgba(201,170,113,0.16), rgba(10,10,10,0.85)); border: 1px solid var(--gold-600); color: var(--text); padding: 12px 16px; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.4); opacity: 0; pointer-events: none; transition: opacity 240ms ease, transform 240ms ease; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Reveal on scroll */
.reveal { visibility: hidden; }

/* Ambiance cards */
.amb-card { background: #ffffff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transform: translateY(8px); opacity: 0; transition: transform 600ms ease, opacity 600ms ease; }
.amb-card.show { transform: translateY(0); opacity: 1; }

/* --- Bouton flottant de réservation --- */
.floating-reserve-btn {
  position: fixed;
  right: 20px;
  bottom: 27px;
  background: var(--teal);
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(31,109,104,0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  white-space: nowrap;
}

.floating-reserve-btn:hover {
  background: var(--teal-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(31,109,104,0.4);
}

.floating-reserve-btn:active {
  transform: translateY(0);
}

/* --- Pop-up de réservation avec calendrier --- */
.reservation-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 450px;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.reservation-modal.show {
  display: block;
}

.modal-content {
  background: var(--teal);
  color: white;
  border-radius: 20px 0 0 20px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal-body {
  padding: 20px;
}

.welcome-text {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.contact-info, .closing-text {
  font-size: 14px;
  margin: 5px 0;
  opacity: 0.9;
}

.guests-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.guests-icon {
  font-size: 20px;
}

.guests-text {
  font-weight: 600;
  flex: 1;
}

.guests-dropdown {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.guests-dropdown option {
  background: var(--teal);
  color: white;
}

.separator {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.calendar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.calendar-icon {
  font-size: 18px;
}

.today-text {
  font-weight: 600;
  font-size: 16px;
}

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

.nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.current-month {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.calendar-grid {
  margin-bottom: 20px;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}

.weekdays span {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
  padding: 8px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.calendar-day.other-month {
  opacity: 0.3;
}

.calendar-day.available {
  background: rgba(255, 255, 255, 0.1);
}

.calendar-day.available:hover {
  background: rgba(255, 255, 255, 0.2);
}

.calendar-day.selected {
  background: white;
  color: var(--teal);
  font-weight: 600;
}

.calendar-day.unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.time-slot {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 12px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.time-slot:hover {
  background: rgba(255, 255, 255, 0.2);
}

.time-slot.selected {
  background: white;
  color: var(--teal);
  font-weight: 600;
}

.reservation-footer {
  text-align: center;
  margin-top: 20px;
}

.reservation-footer p {
  margin: 5px 0;
  font-size: 12px;
  opacity: 0.8;
}

.powered-by {
  font-weight: 600;
}

/* --- Système par étapes --- */
.reservation-step {
  display: none;
}

.reservation-step.active {
  display: block;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.step-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.btn-back {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.3);
}

.form-section {
  margin: 25px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
}

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

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
  background: var(--teal);
  color: white;
}

.step-actions {
  margin-top: 30px;
  text-align: center;
}

.btn-next,
.btn-confirm {
  background: white;
  color: var(--teal);
  border: none;
  padding: 14px 28px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 200px;
}

.btn-next:hover,
.btn-confirm:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
}

.btn-confirm:disabled {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  transform: none;
}

.btn-confirm:disabled:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: none;
}

@media (max-width: 720px) {
  .hero-inner { padding: 100px 0 60px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .modal-content {
    margin: 10px;
    max-height: 95vh;
  }
  
  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}



