/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background: #0f0f0f;
  color: #eee;
}
img {
  display: block;
  max-width: 100%;
}
.mobile-br {
  display: none;
}
h1,
h2,
h3 {
  font-weight: 700;
}
p {
  font-weight: 400;
}

/* ===================== FADE-IN ANIMATIONS ===================== */
.fade-in {
  animation: fadeInUp 0.8s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== SECTION HEADER ===================== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 12px;
}
.section-header h2 {
  margin-bottom: 0;
  margin-top: 0;
}
.section-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  opacity: 0.5;
  filter: brightness(0) invert(1);
}
@media (max-width: 500px) {
  .section-icon { width: 30px; height: 30px; opacity: 0.35; }
}

/* ===================== NAVBAR ===================== */
.nav {
  position: sticky;
  top: 0;
  background: #0a0a0a;
  padding: 15px 20px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(200,20,20,0.4);
}
.nav-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-text {
  font-weight: bold;
  font-size: 18px;
  color: white;
  position: relative;
  transition: color 0.2s;
}
.logo-text:hover { color: #c8141e; }
.logo-text::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0%; height: 2px;
  background: #c8141e;
  transition: width 0.2s;
}
.logo:hover .logo-text::after { width: 100%; }
.nav-links a {
  margin-left: 20px;
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0%; height: 2px;
  background: #c8141e;
  transition: width 0.2s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: white; }

/* ===================== HERO ===================== */
header {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.8)), url("images/hero.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}
.hero-content { max-width: 800px; }
header h1 {
  font-size: 57px;
  color: white;
  margin-bottom: 18px;
  margin-top: 0;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}
.subtitle { font-size: 20px; opacity: 0.85; color: white; }
header p { font-size: 17px; color: white; }
.hero-buttons {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.hero-note { margin-top: 12px; font-size: 14px; opacity: 0.7; }
.hero-info-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
}
.hero-info-divider { opacity: 0.3; }

/* ===================== BUTTONS ===================== */
.btn {
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
  display: inline-block;
}
.btn.primary {
  background: #c8141e;
  color: white;
  box-shadow: 0 4px 12px rgba(200,20,30,0.35);
  animation: pulse 2s infinite;
}
.btn.primary:hover {
  box-shadow: 0 6px 18px rgba(200,20,30,0.5);
  transform: translateY(-2px);
}
.btn.secondary { border: 2px solid white; color: white; }
.btn:hover { transform: translateY(-2px); opacity: 0.9; }
.hero-buttons .btn.primary { padding: 16px 36px; font-size: 16px; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200,20,30,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(200,20,30,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,20,30,0); }
}

/* ===================== SECTIONS ===================== */
section {
  padding: 110px 20px;
  border-top: 1px solid #1f1f1f;
}
section:nth-of-type(even) { background: #111; }
section:nth-of-type(odd) { background: #0f0f0f; }
section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 0;
  color: white;
}
section h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: -8px;
  width: 60px; height: 3px;
  background: #c8141e;
  border-radius: 2px;
}
.container { max-width: 1100px; margin: auto; }
.note { margin-top: 15px; font-size: 14px; opacity: 0.5; color: #aaa; }

/* ===================== SERVICES ===================== */
.services { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  padding: 20px 22px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.service::before {
  content: "";
  position: absolute;
  left: 0; top: 15px; bottom: 15px;
  width: 4px;
  background: #c8141e;
  border-radius: 2px;
  opacity: 0.9;
}
.service:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.35); border-color: #333; }
.service div { display: flex; flex-direction: column; padding-left: 10px; }
.service strong { font-size: 15px; color: white; }
.service p { margin: 4px 0 0; font-size: 13px; opacity: 0.5; color: #aaa; }
.service > span { font-size: 16px; font-weight: bold; color: #c8141e; white-space: nowrap; min-width: 80px; text-align: right; }
.vip-service {
  background: linear-gradient(135deg, #1a0a0a, #2a1010);
  border-color: rgba(200,20,30,0.4);
  cursor: pointer;
}
.vip-service::before { background: #c8141e; opacity: 1; }
.vip-hint { margin: 6px 0 0 !important; font-size: 12px !important; color: #ff9090 !important; opacity: 0.8 !important; letter-spacing: 0.3px; }
.vip-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.vip-right > span { font-size: 16px; font-weight: bold; color: #c8141e; white-space: nowrap; }
.vip-badge {
  background: #c8141e !important; color: white !important; font-size: 11px !important;
  font-weight: 700 !important; padding: 2px 8px !important; border-radius: 20px !important;
  letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap;
}
@keyframes vipPulse {
  0% { box-shadow: 0 0 0 0 rgba(200,20,30,0.6); border-color: #c8141e; }
  50% { box-shadow: 0 0 0 10px rgba(200,20,30,0); border-color: #c8141e; }
  100% { box-shadow: 0 0 0 0 rgba(200,20,30,0); border-color: rgba(200,20,30,0.4); }
}
.vip-service.highlight-pulse { animation: vipPulse 1.5s ease; }

/* ===================== SERVICES TOGGLE ===================== */
.services-toggle {
  background: transparent; border: 1px solid #c8141e; color: #c8141e;
  padding: 12px 20px; border-radius: 8px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; text-align: center; width: 100%;
  margin-top: 14px; font-family: "Inter", sans-serif;
}
.services-toggle:hover { background: #c8141e; color: white; }
.services-hidden {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease;
  opacity: 0;
}
.services-hidden.open { max-height: 1200px; opacity: 1; }
.services-hidden .services { padding-top: 14px; }

/* ===================== ABOUT ===================== */
.about { background: #111 !important; padding: 110px 20px; }
.about-content { display: flex; align-items: stretch; gap: 48px; flex-wrap: wrap; }
.about-image {
  flex: 1.2; min-width: 250px; position: relative;
  border-radius: 12px; overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%; min-height: 400px; object-fit: cover;
  border-radius: 12px; border: 1px solid #2a2a2a;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  display: block; transition: transform 0.4s ease;
}
.about-image img:hover { transform: scale(1.02); }
.about-image-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: white; font-size: 14px; font-weight: 600;
  padding: 40px 20px 16px; letter-spacing: 0.3px; text-align: right;
}
.about-quote {
  margin: 22px 0 0; padding: 0; border: none;
  font-family: Georgia, serif; font-style: italic;
  font-size: 17px; color: #c8141e; line-height: 1.5; letter-spacing: 0.3px;
}
.about-stats {
  display: flex; gap: 0; margin: 22px 0;
  border-top: 1px solid #2a2a2a; border-bottom: 1px solid #2a2a2a; padding: 18px 0;
}
.about-stat {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 4px; border-right: 1px solid #2a2a2a;
}
.about-stat:last-child { border-right: none; }
.stat-icon { font-size: 18px; }
.stat-number { font-size: 18px; font-weight: 700; color: white; }
.stat-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; text-align: center; }
.about-text {
  flex: 0.8; min-width: 250px; background: #1a1a1a;
  padding: 32px; border-radius: 12px; border: 1px solid #2a2a2a;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2); position: relative; transition: all 0.3s ease;
}
.about-text::before {
  content: ""; position: absolute; left: 0; top: 20px; bottom: 20px;
  width: 4px; background: #c8141e; border-radius: 2px;
}
.about-text:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(0,0,0,0.3); }
.about-text h2 { color: white; }
.about-text p { color: #ccc; }

/* ===================== GALLERY ===================== */
.gallery { text-align: center; background: #0a0a0a !important; color: #fff; padding: 110px 20px; }
.gallery-grid { max-width: 1200px; margin: auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.gallery-header-inline { grid-column: 1/-1; display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; text-align: left; }
.gallery-header-inline h2 { margin: 0; }
.gallery-sub { display: block; margin-top: 16px; font-size: 14px; opacity: 0.4; letter-spacing: 0.5px; font-weight: 400; }
.gallery-item { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; border: 1px solid #1a1a1a; transition: border-color 0.3s; }
.gallery-item:hover { border-color: #c8141e; }
.gallery-img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.35s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; }
.gallery-overlay span { font-size: 28px; opacity: 0; transform: scale(0.7); transition: opacity 0.3s ease, transform 0.3s ease; }
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.45); }
.gallery-item:hover .gallery-overlay span { opacity: 1; transform: scale(1); }
.gallery-insta-cta { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.gallery-insta-cta p { font-size: 14px; opacity: 0.4; margin: 0; }
.insta-follow-btn {
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: white; padding: 10px 24px; border-radius: 50px; font-size: 14px; font-weight: bold;
  text-decoration: none; transition: transform 0.2s, opacity 0.2s; display: inline-block;
}
.insta-follow-btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* ===================== LIGHTBOX ===================== */
.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 3000; align-items: center; justify-content: center; padding: 20px; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: 8px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 25px; font-size: 36px; color: white; cursor: pointer; line-height: 1; opacity: 0.8; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }

/* ===================== REVIEWS + CONTACT ===================== */
#reviews-contact { background: #111 !important; }
.rc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.rc-left h2, .rc-right h2 { margin-bottom: 8px; }
.reviews-rating-line { margin: 0 0 24px; font-size: 14px; color: #888; }
.reviews-grid { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.review-card {
  background: #1a1a1a; border-radius: 12px; border: 1px solid #2a2a2a;
  padding: 20px; display: flex; flex-direction: column; gap: 10px;
  transition: all 0.25s ease; position: relative; box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.review-card::before { content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 4px; background: #c8141e; border-radius: 2px; }
.review-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.35); border-color: #333; }
.review-card-stars { color: #fbbc05; font-size: 16px; letter-spacing: 2px; }
.review-card-text { margin: 0; font-size: 14px; color: #ccc; line-height: 1.65; }
.review-card-footer { display: flex; align-items: center; gap: 10px; border-top: 1px solid #2a2a2a; padding-top: 10px; }
.review-avatar { width: 34px; height: 34px; border-radius: 50%; background: #c8141e; color: white; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px; flex-shrink: 0; }
.review-card-footer strong { display: block; color: white; font-size: 13px; }
.review-card-source { font-size: 11px; color: #666; }
.review-google-g { width: 18px; height: 18px; margin-left: auto; flex-shrink: 0; }
.google-reviews-card {
  background: #1a1a1a; border-radius: 12px; border: 1px solid #2a2a2a;
  padding: 18px; box-shadow: 0 8px 20px rgba(0,0,0,0.2); transition: all 0.25s ease;
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.google-reviews-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: #4285f4; border-radius: 12px 12px 0 0; }
.google-reviews-card:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
.google-reviews-top { display: flex; align-items: center; gap: 12px; }
.google-g { width: 36px; height: 36px; flex-shrink: 0; }
.google-reviews-info strong { font-size: 14px; color: white; display: block; }
.google-reviews-info p { margin: 2px 0 0; font-size: 12px; color: #888; }
.google-reviews-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.google-btn-read { padding: 9px 16px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 13px; background: #c8141e; color: white; transition: transform 0.2s, opacity 0.2s; white-space: nowrap; }
.google-btn-read:hover { opacity: 0.85; transform: translateY(-1px); }
.google-btn-write { padding: 9px 16px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 13px; border: 1px solid #333; color: #ccc; transition: transform 0.2s, opacity 0.2s, border-color 0.2s; white-space: nowrap; }
.google-btn-write:hover { border-color: #4285f4; color: #4285f4; transform: translateY(-1px); }

/* ===================== CONTACT ===================== */
.contact-sub { margin: 0 0 24px; opacity: 0.6; color: #aaa; font-size: 14px; }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 10px;
  padding: 14px 16px; transition: all 0.25s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.contact-info-item:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); border-color: #333; }
.contact-info-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; color: white; font-size: 14px; margin-bottom: 4px; }
.contact-info-item p { margin: 2px 0 0; font-size: 13px; color: #aaa; opacity: 0.8; }
.contact-info-item a { color: #c8141e; text-decoration: none; font-weight: bold; }
.contact-info-item a:hover { text-decoration: underline; }
.contact-map { border-radius: 10px; overflow: hidden; border: 1px solid #2a2a2a; }
.contact-map iframe { width: 100%; height: 220px; border: 0; display: block; }
.trust { margin-top: 16px; font-size: 13px; opacity: 0.4; color: #aaa; }

/* ===================== SOCIAL CARD IN CONTACT ===================== */
.contact-social-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 16px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.contact-social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  border-color: #333;
}
.contact-social-label {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin: 0 0 12px 0;
}
.contact-social-buttons {
  display: flex;
  gap: 10px;
}
.contact-social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  color: white;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  justify-content: center;
}
.contact-social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.social-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.contact-social-insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 3px 10px rgba(220,39,67,0.3);
}
.contact-social-insta:hover {
  box-shadow: 0 6px 18px rgba(220,39,67,0.45);
}
.contact-social-fb {
  background: #1877f2;
  box-shadow: 0 3px 10px rgba(24,119,242,0.3);
}
.contact-social-fb:hover {
  box-shadow: 0 6px 18px rgba(24,119,242,0.45);
}

/* ===================== FOOTER ===================== */
footer { text-align: center; padding: 24px 10px; background: #050505; color: #555; font-size: 14px; border-top: 1px solid rgba(200,20,20,0.4); }
footer p { margin: 5px 0; font-size: 13px; }
footer a { color: #c8141e; text-decoration: none; }
.demo-note { margin-top: 12px !important; color: #c8141e !important; opacity: 0.8 !important; font-size: 12px !important; font-style: italic; }

/* ===================== BOOKING MODAL ===================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (min-width: 600px) {
  .modal-overlay {
    align-items: center;
    padding: 20px;
  }
}
.booking-modal-content {
  background: #141414;
  border-radius: 20px 20px 0 0;
  padding: 0;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.6);
  animation: slideUpModal 0.3s ease;
  border: 1px solid #2a2a2a;
  max-height: 92vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 600px) {
  .booking-modal-content {
    border-radius: 20px;
    animation: modalIn 0.25s ease;
    max-height: 88vh;
  }
}
@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.close-modal {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 26px; cursor: pointer;
  color: #555; line-height: 1; transition: color 0.2s;
  z-index: 10;
}
.close-modal:hover { color: #ccc; }

/* ===================== BOOKING APP STYLES ===================== */
#bookingApp {
  font-family: "Inter", sans-serif;
  color: #eee;
}
.bk-header {
  padding: 24px 20px 0;
  border-bottom: 1px solid #222;
  padding-bottom: 16px;
  margin-bottom: 0;
}
.bk-header h3 {
  margin: 0 0 4px;
  font-size: 20px;
  color: white;
  font-weight: 700;
  padding-right: 30px;
}
.bk-header p {
  margin: 0;
  font-size: 13px;
  color: #666;
}
.bk-steps {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 20px;
  background: #0f0f0f;
  border-bottom: 1px solid #1f1f1f;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bk-steps::-webkit-scrollbar { display: none; }
.bk-step {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.bk-step-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  border: 2px solid #333;
  color: #555;
  transition: all 0.2s;
  flex-shrink: 0;
}
.bk-step-dot.active { border-color: #c8141e; color: #c8141e; }
.bk-step-dot.done { background: #c8141e; border-color: #c8141e; color: white; }
.bk-step-label {
  font-size: 11px;
  color: #444;
  white-space: nowrap;
  transition: color 0.2s;
}
.bk-step-label.active { color: #c8141e; }
.bk-step-label.done { color: #888; }
.bk-step-line { width: 20px; height: 1px; background: #222; margin: 0 4px; flex-shrink: 0; }
.bk-step-line.done { background: #c8141e; }
.bk-body { padding: 20px; }

/* Step 1 — Services */
.bk-service-grid { display: flex; flex-direction: column; gap: 10px; }
.bk-service-item {
  display: flex; align-items: center; gap: 14px;
  background: #1a1a1a; border: 1.5px solid #2a2a2a;
  border-radius: 10px; padding: 14px 16px;
  cursor: pointer; transition: all 0.15s ease;
  position: relative;
}
.bk-service-item::before {
  content: ""; position: absolute; left: 0; top: 12px; bottom: 12px;
  width: 3px; background: #c8141e; border-radius: 2px; opacity: 0;
  transition: opacity 0.15s;
}
.bk-service-item:hover { border-color: #444; transform: translateX(2px); }
.bk-service-item.selected { border-color: #c8141e; background: rgba(200,20,30,0.08); }
.bk-service-item.selected::before { opacity: 1; }
.bk-service-emoji { font-size: 22px; flex-shrink: 0; }
.bk-service-info { flex: 1; }
.bk-service-name { font-weight: 600; font-size: 14px; color: white; margin-bottom: 2px; }
.bk-service-meta { font-size: 12px; color: #888; }
.bk-service-price { font-weight: 700; font-size: 14px; color: #c8141e; white-space: nowrap; }

/* Step 2 — Calendar */
.bk-calendar { background: #1a1a1a; border-radius: 12px; border: 1px solid #2a2a2a; overflow: hidden; }
.bk-cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid #222;
}
.bk-cal-nav-btn {
  background: #222; border: none; color: white; cursor: pointer;
  width: 30px; height: 30px; border-radius: 6px; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s; font-family: "Inter", sans-serif;
}
.bk-cal-nav-btn:hover { background: #333; }
.bk-cal-month { font-weight: 600; font-size: 14px; color: white; }
.bk-cal-days-header {
  display: grid; grid-template-columns: repeat(7,1fr);
  padding: 10px 12px 4px; text-align: center;
}
.bk-cal-day-name { font-size: 10px; font-weight: 600; color: #555; letter-spacing: 0.05em; }
.bk-cal-grid {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: 2px; padding: 4px 12px 14px;
}
.bk-cal-cell {
  aspect-ratio: 1; border-radius: 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.12s; position: relative;
}
.bk-cal-cell:hover:not(.disabled):not(.sunday) { background: rgba(200,20,30,0.15); }
.bk-cal-cell.selected { background: #c8141e !important; }
.bk-cal-cell.disabled { opacity: 0.25; cursor: not-allowed; pointer-events: none; }
.bk-cal-cell.sunday { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
.bk-cal-cell.today .bk-day-num { text-decoration: underline; text-underline-offset: 2px; }
.bk-day-num { font-size: 13px; color: #eee; line-height: 1; }
.bk-cal-cell.selected .bk-day-num { color: white; font-weight: 700; }
.bk-cal-cell.sunday .bk-day-num { color: #c8141e; }
.bk-cal-dot { width: 4px; height: 4px; border-radius: 50%; background: #c8141e; margin-top: 2px; }
.bk-cal-cell.selected .bk-cal-dot { background: rgba(255,255,255,0.6); }
.bk-cal-legend {
  display: flex; gap: 14px; padding: 10px 16px;
  border-top: 1px solid #1f1f1f; font-size: 11px; color: #555;
}

/* Step 3 — Time */
.bk-time-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.bk-time-btn {
  padding: 11px 6px; border-radius: 8px; font-size: 13px; font-weight: 500;
  border: 1.5px solid #2a2a2a; background: #1a1a1a; color: #eee;
  cursor: pointer; transition: all 0.15s; font-family: "Inter", sans-serif;
  text-align: center;
}
.bk-time-btn:hover:not(:disabled) { border-color: #c8141e; background: rgba(200,20,30,0.1); }
.bk-time-btn.selected { background: #c8141e; border-color: #c8141e; color: white; }
.bk-time-btn:disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }
.bk-time-info { margin-top: 12px; font-size: 12px; color: #555; }

/* Step 4 — Confirm */
.bk-summary {
  background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 10px;
  padding: 16px; margin-bottom: 16px;
}
.bk-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; border-bottom: 1px solid #222; gap: 12px;
}
.bk-summary-row:last-child { border-bottom: none; }
.bk-summary-label { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 0.06em; }
.bk-summary-val { font-size: 14px; font-weight: 600; color: white; text-align: right; }
.bk-field { margin-bottom: 12px; }
.bk-field label { display: block; font-size: 12px; color: #888; margin-bottom: 6px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.bk-field input {
  width: 100%; padding: 12px 14px;
  background: #1a1a1a; border: 1.5px solid #2a2a2a;
  border-radius: 8px; color: white; font-size: 14px;
  font-family: "Inter", sans-serif; outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.bk-field input:focus { border-color: #c8141e; }
.bk-field input::placeholder { color: #555; }

/* Buttons */
.bk-btn-primary {
  width: 100%; padding: 15px; border-radius: 10px;
  background: #c8141e; color: white; border: none;
  font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: "Inter", sans-serif; transition: all 0.2s;
  margin-top: 4px;
}
.bk-btn-primary:hover:not(:disabled) { background: #a01015; transform: translateY(-1px); }
.bk-btn-primary:disabled { background: #2a2a2a; color: #555; cursor: not-allowed; transform: none; }
.bk-btn-back {
  background: none; border: none; color: #888; cursor: pointer;
  font-size: 13px; padding: 0; margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
  font-family: "Inter", sans-serif; transition: color 0.15s;
}
.bk-btn-back:hover { color: #eee; }

/* Step 5 — Done */
.bk-done {
  text-align: center;
  padding: 32px 20px;
}
.bk-done-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #c8141e; display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
  box-shadow: 0 0 0 8px rgba(200,20,30,0.15);
}
.bk-done h3 { margin: 0 0 6px; font-size: 22px; color: white; }
.bk-done-date { color: #c8141e; font-weight: 700; font-size: 16px; margin: 12px 0; }
.bk-done-info { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 10px; padding: 14px 16px; margin: 16px 0; text-align: left; }
.bk-done-info p { margin: 4px 0; font-size: 13px; color: #888; }
.bk-done-new { margin-top: 16px; background: transparent; border: 1.5px solid #c8141e; color: #c8141e; padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: "Inter", sans-serif; transition: all 0.2s; width: 100%; }
.bk-done-new:hover { background: #c8141e; color: white; }

/* Loading state */
.bk-loading { text-align: center; padding: 32px 20px; color: #888; font-size: 14px; }
.bk-error { background: rgba(200,20,30,0.1); border: 1px solid rgba(200,20,30,0.3); border-radius: 8px; padding: 12px 14px; font-size: 13px; color: #ff9090; margin-bottom: 12px; }

/* ===================== MODAL (legacy — kept for safety) ===================== */
.modal-content {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 35px 30px;
  max-width: 400px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  animation: modalIn 0.25s ease;
  border: 1px solid #2a2a2a;
}

/* ===================== STICKY BAR (mobile) ===================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1500;
  background: #0a0a0a;
  border-top: 1px solid #1f1f1f;
  height: 60px;
  transition: transform 0.3s ease;
}
.sticky-item {
  display: flex; align-items: center; justify-content: center;
  flex: 1; height: 100%; text-decoration: none; color: white;
  font-size: 14px; font-weight: 600; transition: background 0.2s;
}
.sticky-item:hover { background: rgba(255,255,255,0.05); }
.sticky-item.highlight { background: #c8141e; color: white; }
.sticky-item.highlight:hover { background: #a01015; }

/* ===================== DESKTOP FLOATING BUTTON ===================== */
.desktop-float-btn {
  display: none;
  position: fixed; bottom: 32px; right: 32px;
  z-index: 1500; background: #c8141e; color: white;
  font-weight: 700; font-size: 14px; padding: 14px 22px;
  border-radius: 50px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(200,20,30,0.5);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
  animation: pulse 2s infinite;
}
.desktop-float-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(200,20,30,0.65); }
.desktop-float-btn.hidden { opacity: 0; pointer-events: none; }

/* ===================== HAMBURGER ===================== */
.menu-toggle { display: none; font-size: 26px; cursor: pointer; color: white; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .rc-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 60px; right: 0; background: #0a0a0a;
    width: 100%; display: flex; flex-direction: column; align-items: center;
    gap: 15px; padding: 20px 0; transform: translateY(-200%);
    transition: transform 0.3s ease; border-bottom: 1px solid #1f1f1f;
  }
  .nav-links.active { transform: translateY(0); }
  .nav-links a { margin: 0; font-size: 18px; }
  .about-content { flex-direction: column; text-align: center; }
  .about-text { order: 1; }
  .about-image { order: 2; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .google-reviews-card { flex-direction: column; align-items: flex-start; }
  .google-reviews-actions { width: 100%; }
  .google-btn-read, .google-btn-write { flex: 1; text-align: center; }
  .mobile-sticky-bar { display: flex; }
  .desktop-float-btn { display: none !important; }
  /* Booking on mobile */
  .bk-time-grid { grid-template-columns: repeat(3,1fr); }
}
@media (min-width: 769px) {
  .desktop-float-btn { display: block; }
}
@media (max-width: 650px) {
  header h1 { font-size: 36px; white-space: normal; }
}
@media (max-width: 600px) {
  .mobile-br { display: block; }
  header { padding: 60px 15px; min-height: 75vh; }
  header h1 { font-size: 26px; white-space: nowrap; }
  .gallery-img { height: 160px; }
  .btn { padding: 10px 14px; font-size: 13px; }
  .hero-buttons { flex-direction: column; gap: 8px; align-items: center; }
  .hero-buttons .btn { width: 80%; max-width: 320px; text-align: center; padding: 14px 32px; font-size: 15px; }
  section { padding: 70px 20px; }
  .about { padding: 70px 20px; }
  .gallery { padding: 70px 20px; }
  .bk-time-grid { grid-template-columns: repeat(3,1fr); }
  .contact-social-btn { font-size: 12px; padding: 10px 10px; }
}
@media (max-width: 500px) {
  .service { flex-direction: column; align-items: flex-start; gap: 10px; }
  .service > span { min-width: unset; text-align: right; align-self: flex-end; }
  .vip-right { flex-direction: row; align-items: center; align-self: flex-end; }
}
@media (max-width: 400px) {
  .contact-social-btn span { display: none; }
}
