/* FadesTuning — style.css */

:root {
  --bg:      #080808;
  --bg2:     #0f0f0f;
  --bg3:     #141414;
  --card:    #111111;
  --accent:  #dc2626;
  --accent2: #ef4444;
  --gold:    #c9a84c;
  --text:    #f2f2f2;
  --muted:   #777;
  --muted2:  #444;
  --border:  rgba(255,255,255,0.07);
  --radius:  6px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900; font-size: 1.3rem; letter-spacing: .04em;
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

.nav-toggle-cb { display: none; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 910; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-btn {
  background: var(--accent) !important; color: #fff !important;
  padding: .5rem 1.3rem; border-radius: var(--radius);
  font-size: .74rem !important;
  transition: background .2s !important;
}
.nav-btn:hover { background: var(--accent2) !important; }

.nav-btn-outline {
  border: 1px solid var(--border) !important; color: var(--text) !important;
  padding: .5rem 1.3rem; border-radius: var(--radius);
  font-size: .74rem !important;
  transition: border-color .2s, color .2s !important;
}
.nav-btn-outline:hover { border-color: var(--accent) !important; color: var(--accent) !important; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: var(--radius);
  font-family: inherit; font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all .25s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,38,38,.35); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ── FORMS ────────────────────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: .73rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .45rem;
}
.label-hint { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); border-radius: var(--radius);
  font-family: inherit; font-size: .9rem; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}
.form-group input[disabled] { opacity: .45; cursor: not-allowed; }
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group small { display: block; margin-top: .3rem; font-size: .75rem; color: var(--muted); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.alert {
  padding: .8rem 1rem; border-radius: var(--radius);
  font-size: .85rem; margin-bottom: 1.2rem; line-height: 1.5;
}
.alert-error   { background: rgba(220,50,50,.1);  border: 1px solid rgba(220,50,50,.3);  color: #f07070; }
.alert-success { background: rgba(50,190,90,.1);  border: 1px solid rgba(50,190,90,.3);  color: #5de898; }
.alert-info    { background: rgba(220,38,38,.08);  border: 1px solid rgba(220,38,38,.22);  color: var(--accent2); }

/* ── SECTIONS ─────────────────────────────────────────── */
.section { padding: 5.5rem 4rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: block; font-size: .7rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .7rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1; letter-spacing: .02em; margin-bottom: 1rem;
}
.section-sub { color: var(--muted); font-size: 1rem; font-weight: 300; line-height: 1.75; max-width: 500px; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(220,38,38,.11) 0%, transparent 65%),
    radial-gradient(ellipse 40% 70% at 15% 85%, rgba(201,168,76,.05) 0%, transparent 55%),
    linear-gradient(170deg, #080808 0%, #0c0c0c 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 55px 55px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,.7) 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,.7) 0%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 920px; padding: 0 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.28);
  color: var(--accent2); padding: .4rem 1.1rem; border-radius: 30px;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 2rem; animation: fadeUp .9s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 1.8s infinite;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 13vw, 10rem);
  line-height: .9; letter-spacing: .02em; margin-bottom: 1.5rem;
  animation: fadeUp .9s .12s ease both;
}
.hero-title .hl { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 540px;
  margin: 0 auto 2.8rem; line-height: 1.75; font-weight: 300;
  animation: fadeUp .9s .24s ease both;
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .9s .36s ease both;
}
.hero-stats {
  display: flex; gap: 3.5rem; justify-content: center;
  margin-top: 4.5rem; flex-wrap: wrap;
  animation: fadeUp .9s .5s ease both;
}
.stat-num { font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: .35rem; }

/* ── SERVICES ─────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-top: 3.5rem;
}
.service-card {
  background: var(--card); padding: 2.2rem 1.8rem;
  position: relative; overflow: hidden; transition: background .3s;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.service-card:hover { background: #181818; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 46px; height: 46px; border-radius: 8px; flex-shrink: 0;
  background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.4rem;
}
.service-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .6rem; }
.service-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.service-price { margin-top: 1.4rem; font-family: 'Orbitron', sans-serif; font-size: .88rem; color: var(--gold); }

/* ── GALLERY ──────────────────────────────────────────── */
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1.5rem; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px; gap: 10px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; background: var(--bg3); }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .3s; filter: brightness(.8) saturate(.85); }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-size: .8rem; font-weight: 600; letter-spacing: .05em; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; color: rgba(255,255,255,.25); font-size: .75rem;
  letter-spacing: .1em; text-transform: uppercase;
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; margin-top: 3rem; }
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem; position: relative;
  transition: border-color .3s, transform .3s;
}
.testi-card:hover { border-color: rgba(220,38,38,.28); transform: translateY(-4px); }
.testi-quote { position: absolute; top: 1.2rem; right: 1.4rem; font-family: Georgia, serif; font-size: 3.5rem; color: rgba(220,38,38,.1); line-height: 1; }
.testi-stars { color: var(--gold); font-size: .82rem; letter-spacing: .12em; margin-bottom: .9rem; }
.testi-text { font-size: .9rem; color: #bbb; line-height: 1.7; font-style: italic; margin-bottom: 1.4rem; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .82rem;
}
.testi-name { font-weight: 600; font-size: .88rem; }
.testi-car { font-size: .76rem; color: var(--muted); margin-top: .1rem; }

/* ── CTA STRIP ────────────────────────────────────────── */
.cta-strip {
  background: var(--accent); padding: 3.5rem 4rem; text-align: center;
}
.cta-strip h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; letter-spacing: .04em; margin-bottom: .8rem;
}
.cta-strip p {
  font-size: 1rem; opacity: .85; margin-bottom: 2rem;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.cta-strip-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-btn-white {
  background: #fff; color: var(--accent); font-weight: 700;
  padding: .85rem 2rem; border-radius: var(--radius);
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  transition: opacity .2s;
}
.cta-btn-white:hover { opacity: .88; }
.cta-btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  font-weight: 700; padding: .85rem 2rem; border-radius: var(--radius);
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  transition: border-color .2s;
}
.cta-btn-outline:hover { border-color: #fff; }

/* ── AUTH PAGES ───────────────────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 6rem 1.5rem 3rem;
  background: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(220,38,38,.07) 0%, transparent 60%), var(--bg);
}
.auth-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 3rem 2.5rem;
  width: 100%; max-width: 440px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: fadeUp .5s ease;
}
.auth-logo { font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 1.05rem; margin-bottom: .3rem; text-align: center; }
.auth-logo span { color: var(--accent); }
.auth-card h1 { font-size: 1.7rem; font-weight: 600; margin-bottom: .3rem; text-align: center; }
.auth-card .sub { font-size: .85rem; color: var(--muted); text-align: center; margin-bottom: 2rem; }
.auth-switch { text-align: center; margin-top: 1.3rem; font-size: .85rem; color: var(--muted); }
.auth-switch a { color: var(--accent); }
.auth-switch a:hover { text-decoration: underline; }

/* ── DASHBOARD ────────────────────────────────────────── */
.dash-page { padding-top: 72px; min-height: 100vh; }
.dash-hero {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-bottom: 1px solid var(--border);
  padding: 3rem 4rem 2.5rem;
}
.dash-greeting { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; margin-bottom: .4rem; }
.dash-name { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; line-height: 1; }
.dash-name span { color: var(--accent); }
.dash-nav {
  display: flex; overflow-x: auto;
  border-bottom: 1px solid var(--border);
  padding: 0 4rem; background: var(--bg2);
  scrollbar-width: none;
}
.dash-nav::-webkit-scrollbar { display: none; }
.dash-nav a {
  display: inline-block; padding: 1rem 1.4rem; white-space: nowrap;
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); border-bottom: 2px solid transparent;
  transition: all .2s;
}
.dash-nav a:hover { color: var(--text); }
.dash-nav a.active { color: var(--text); border-bottom-color: var(--accent); }
.dash-count { color: var(--accent); }
.dash-content { padding: 3rem 4rem; max-width: 1100px; }

.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2.5rem; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.stat-card-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.stat-card-val { font-family: 'Orbitron', sans-serif; font-size: 1.9rem; font-weight: 700; }
.val-accent { color: var(--accent); }
.val-gold   { color: var(--gold); }

.appt-card {
  background: var(--card); border: 1px solid rgba(220,38,38,.22);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; max-width: 640px; margin-bottom: 2.5rem;
}
.appt-card-title { font-weight: 600; font-size: 1rem; margin-bottom: .25rem; }
.appt-card-date  { font-size: .84rem; color: var(--muted); }

.data-table-wrap { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; min-width: 500px; }
.data-table th {
  text-align: left; font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  padding: .9rem 1.1rem; border-bottom: 1px solid var(--border); white-space: nowrap;
}
.data-table td { padding: 1rem 1.1rem; font-size: .87rem; border-bottom: 1px solid rgba(255,255,255,.03); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,.015); }
.td-notes { max-width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--muted); }

.badge {
  display: inline-block; padding: .22rem .65rem; border-radius: 20px;
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.badge-pending     { background: rgba(255,200,50,.1);  border: 1px solid rgba(255,200,50,.25); color: #f5c842; }
.badge-scheduled   { background: rgba(201,168,76,.1);  border: 1px solid rgba(201,168,76,.3);  color: var(--gold); }
.badge-in-progress { background: rgba(220,38,38,.12);   border: 1px solid rgba(220,38,38,.3);    color: var(--accent2); }
.badge-in_progress { background: rgba(220,38,38,.12);   border: 1px solid rgba(220,38,38,.3);    color: var(--accent2); }
.badge-completed   { background: rgba(50,190,90,.1);   border: 1px solid rgba(50,190,90,.3);   color: #5de898; }
.badge-cancelled   { background: rgba(150,150,150,.1); border: 1px solid rgba(150,150,150,.2); color: #888; }

.section-heading    { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.4rem; }
.section-heading-sm { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }

/* ── CONTACT ──────────────────────────────────────────── */
.page-top { padding-top: 72px; background: var(--bg); min-height: 80vh; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.contact-form-col {}
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 8px; flex-shrink: 0;
  background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-info-text strong { display: block; font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }
.contact-info-text span { font-size: .92rem; }

/* ── FOOTER ───────────────────────────────────────────── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 4rem 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo { font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 1.15rem; margin-bottom: 1rem; }
.footer-logo span { color: var(--accent); }
.footer-brand p { font-size: .84rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: .6rem; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; color: var(--muted);
  transition: border-color .2s, color .2s;
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: .86rem; color: #999; margin-bottom: .55rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); margin-top: 3rem;
  padding: 1.4rem 0; display: flex; justify-content: space-between;
  font-size: .78rem; color: var(--muted2);
}

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  /* Push hamburger to the far right */
  .nav-hamburger {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 1001;
  }

  /* Hamburger → X animation when checked */
  .nav-toggle-cb:checked ~ .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle-cb:checked ~ .nav-hamburger span:nth-child(2) {
    opacity: 0; transform: scaleX(0);
  }
  .nav-toggle-cb:checked ~ .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Full-screen overlay */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 5.5rem 2.5rem 3rem;
    gap: 0;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-toggle-cb:checked ~ .nav-links { display: flex; }

  .nav-links a {
    font-size: 1.2rem;
    padding: .8rem 0;
    color: var(--text);
    width: 100%;
    border-bottom: 1px solid var(--border);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .nav-links a:last-child { border-bottom: none; }

  /* Reset pill button styles inside the mobile menu */
  .nav-links .nav-btn,
  .nav-links .nav-btn-outline {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--border) !important;
    border-radius: 0 !important;
    padding: .8rem 0 !important;
    font-size: 1.2rem !important;
    color: var(--text) !important;
    margin-top: 0;
    width: 100%;
  }
  .nav-links .nav-btn { color: var(--accent) !important; }

  .section { padding: 4rem 1.5rem; }
  .cta-strip { padding: 3rem 1.5rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
  .gallery-item { height: 180px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .dash-hero  { padding: 2rem 1.5rem; }
  .dash-nav   { padding: 0 1.5rem; }
  .dash-content { padding: 2rem 1.5rem; }

  .hero-stats { gap: 1.8rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .auth-card { padding: 2rem 1.5rem; }
  .hero-title { font-size: clamp(3.5rem, 18vw, 6rem); }
}

/* Service free badge */
.service-price-free {
  color: #5de898 !important;
  font-family: 'Orbitron', sans-serif;
  font-size: .88rem;
  letter-spacing: .04em;
}

/* Remove footer socials if empty */
.footer-socials:empty { display: none; }

/* ── Announcement ticker ─────────────────────────────── */
/* When ticker present, nav shifts down 36px (handled in admin.css via :has) */
/* Fallback for browsers without :has support */
.has-ticker #mainNav { top: 36px; }
.has-ticker .dash-page { padding-top: 108px; }

/* ── Booking form ─────────────────────────────────────── */
.book-form { max-width: 640px; }

.book-section-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent);
  margin: 1.8rem 0 .8rem; padding-bottom: .4rem;
  border-bottom: 1px solid rgba(220,38,38,.2);
}
.book-section-label:first-child { margin-top: 0; }


@media (max-width: 600px) {
  .book-form { max-width: 100%; }
}

