/* ── Pioneer Security – Custom Styles ─────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: #0A0A0A;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Scrollbar ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: #C9A84C; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #E0C068; }

/* ── Scroll-reveal animations ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Gold gradient text ────────────────────────────────────────────────── */
.text-gold-gradient {
  background: linear-gradient(135deg, #E0C068 0%, #C9A84C 50%, #9A7030 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section label ─────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 1rem;
}

/* ── Gold divider ──────────────────────────────────────────────────────── */
.gold-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #C9A84C, #E0C068);
  margin: 1rem 0;
}

/* ── Navigation ────────────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
#main-nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.2), 0 4px 24px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}
#main-nav .nav-link {
  position: relative;
  color: #9CA3AF;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.25rem 0;
}
#main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: #C9A84C;
  transform: scaleX(0);
  transition: transform 0.2s;
}
#main-nav .nav-link:hover,
#main-nav .nav-link.active { color: #FFFFFF; }
#main-nav .nav-link:hover::after,
#main-nav .nav-link.active::after { transform: scaleX(1); }

/* Mobile menu overlay */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s;
}
#mobile-menu a:hover { color: #C9A84C; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #C9A84C, #E0C068);
  color: #0A0A0A;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.btn-gold:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover {
  border-color: #C9A84C;
  color: #C9A84C;
  background: rgba(201,168,76,0.06);
  transform: translateY(-1px);
}

/* ── Cards ─────────────────────────────────────────────────────────────── */
.card {
  background: #1E1E1E;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1);
}

/* ── Trust bar ─────────────────────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.88) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Section backgrounds ───────────────────────────────────────────────── */
.bg-radial-gold {
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.section-alt { background-color: #141414; }

/* ── Icon circle ───────────────────────────────────────────────────────── */
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.card:hover .icon-circle {
  background: rgba(201,168,76,0.18);
}

/* ── Page hero (inner pages) ───────────────────────────────────────────── */
.page-hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(180deg, #141414 0%, #0A0A0A 100%);
  border-bottom: 1px solid #2A2A2A;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Form inputs ───────────────────────────────────────────────────────── */
.form-input {
  width: 100%;
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 6px;
  padding: 0.875rem 1rem;
  color: #FFFFFF;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Inter', sans-serif;
}
.form-input:focus {
  border-color: #C9A84C;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-input::placeholder { color: #6B7280; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 0.5rem;
}
select.form-input option { background: #141414; }

/* ── Footer ────────────────────────────────────────────────────────────── */
#main-footer {
  background: #0A0A0A;
  border-top: 1px solid #2A2A2A;
}
.footer-link {
  color: #6B7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-link:hover { color: #C9A84C; }

/* ── Chatbot ───────────────────────────────────────────────────────────── */
#chatbot-btn {
  position: fixed;
  bottom: calc(1.75rem + env(safe-area-inset-bottom, 0px));
  right: 1.75rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #E0C068);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  z-index: 900;
  transition: transform 0.2s, box-shadow 0.2s;
}
#chatbot-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.6);
}
#chatbot-panel {
  position: fixed;
  bottom: calc(1.75rem + 70px);
  right: 1.75rem;
  width: 380px;
  max-width: calc(100vw - 2rem);
  max-height: 560px;
  background: #1E1E1E;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.1);
  display: flex;
  flex-direction: column;
  z-index: 900;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
}
#chatbot-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.chatbot-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #2A2A2A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #141414;
  border-radius: 16px 16px 0 0;
}
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 360px;
}
.chat-msg {
  padding: 0.625rem 0.875rem;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 85%;
}
.chat-msg.user {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.25);
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg.bot {
  background: #2A2A2A;
  color: #D1D5DB;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chatbot-input-row {
  padding: 0.75rem;
  border-top: 1px solid #2A2A2A;
  display: flex;
  gap: 0.5rem;
}
.chatbot-input-row input {
  flex: 1;
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 0.625rem 0.875rem;
  color: #FFFFFF;
  font-size: 0.875rem;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.chatbot-input-row input:focus { border-color: #C9A84C; }
.chatbot-input-row input::placeholder { color: #6B7280; }
.chatbot-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #C9A84C, #E0C068);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.chatbot-send-btn:hover { opacity: 0.85; }

/* typing indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 0.625rem 0.875rem;
  background: #2A2A2A;
  border-radius: 12px 12px 12px 4px;
  align-self: flex-start;
  width: fit-content;
}
.typing-indicator span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #9CA3AF;
  animation: bounce 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.15s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* ── Accordion (FAQ) ───────────────────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid #2A2A2A;
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  gap: 1rem;
}
.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #C9A84C;
  transition: transform 0.3s;
}
.accordion-btn.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
  color: #9CA3AF;
  line-height: 1.7;
  font-size: 0.95rem;
}
.accordion-body.open {
  max-height: 600px;
  padding-bottom: 1.25rem;
}

/* ── Calendar (booking) ────────────────────────────────────────────────── */
.cal-day {
  width: 100%; aspect-ratio: 1 / 1;
  min-height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s;
  color: #9CA3AF;
}
.cal-day:hover:not(.disabled):not(.empty) {
  border-color: rgba(201,168,76,0.4);
  color: #FFFFFF;
  background: rgba(201,168,76,0.08);
}
.cal-day.selected {
  background: linear-gradient(135deg, #C9A84C, #E0C068);
  color: #0A0A0A;
  border-color: #C9A84C;
  font-weight: 700;
}
.cal-day.today { color: #C9A84C; font-weight: 700; }
.cal-day.disabled { opacity: 0.25; cursor: not-allowed; }
.cal-day.blocked { opacity: 0.2; cursor: not-allowed; text-decoration: line-through; }
.cal-day.empty { cursor: default; }
.slot-btn {
  padding: 0.65rem 1rem;
  min-height: 44px;
  border: 1.5px solid #2A2A2A;
  border-radius: 6px;
  background: transparent;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
}
.slot-btn:hover { border-color: #C9A84C; color: #C9A84C; background: rgba(201,168,76,0.06); }
.slot-btn.selected { background: linear-gradient(135deg,#C9A84C,#E0C068); color: #0A0A0A; border-color: #C9A84C; font-weight: 700; }
.slot-btn.booked { opacity: 0.3; cursor: not-allowed; border-style: dashed; }

/* ── Toast ─────────────────────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1rem;
  left: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}
.toast {
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  max-width: 100%;
  width: fit-content;
  min-width: min(280px, 100%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: slideInRight 0.3s cubic-bezier(0.16,1,0.3,1);
  pointer-events: all;
}
.toast.success { background: #1A2A1A; border: 1px solid #3A6B3A; color: #6BCB6B; }
.toast.error { background: #2A1A1A; border: 1px solid #6B3A3A; color: #E87070; }
.toast.info { background: #1A1E2A; border: 1px solid rgba(201,168,76,0.4); color: #C9A84C; }
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ── Photo Card Services Grid ─────────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (max-width: 1023px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  text-decoration: none;
  background: #141414;
}
.svc-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.svc-card:hover .svc-card-img { transform: scale(1.07); }
.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.48) 0%,
    rgba(0,0,0,0.06) 45%,
    rgba(0,0,0,0.82) 100%
  );
  transition: background 0.45s;
}
.svc-card:hover .svc-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.22) 40%,
    rgba(0,0,0,0.95) 100%
  );
}
.svc-card-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 1.125rem 1.125rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.svc-card-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.svc-card-badge {
  font-size: 0.58rem;
  font-weight: 600;
  color: #C9A84C;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 20px;
  padding: 0.22rem 0.6rem;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-top: 2px;
}
/* Dot grid — always visible, fades out on hover */
.svc-card-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  width: 60px;
  height: 48px;
  background-image: radial-gradient(circle, rgba(201,168,76,0.6) 2px, transparent 2px);
  background-size: 12px 12px;
  pointer-events: none;
  transition: opacity 0.28s;
  z-index: 2;
}
.svc-card:hover .svc-card-dots { opacity: 0; }

/* Tags — slide up on hover */
.svc-card-hover-content {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.36s, transform 0.40s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.svc-card:hover .svc-card-hover-content { opacity: 1; transform: translateY(0); }
.svc-card-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.svc-card-tag {
  font-size: 0.64rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  background: rgba(10,10,10,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 0.25rem 0.65rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* See More — fades in bottom-right on hover */
.svc-card-see-more {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #C9A84C;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 0.42s 0.07s;
  z-index: 2;
  white-space: nowrap;
  text-decoration: none;
}
.svc-card:hover .svc-card-see-more { opacity: 1; }

/* ── Step indicator (booking) ──────────────────────────────────────────── */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1.5px solid #2A2A2A;
  color: #6B7280;
  transition: all 0.3s;
}
.step.active .step-num { background: linear-gradient(135deg,#C9A84C,#E0C068); border-color: #C9A84C; color: #0A0A0A; }
.step.done .step-num { background: #1A2A1A; border-color: #3A6B3A; color: #6BCB6B; }
.step-label { color: #6B7280; }
.step.active .step-label { color: #FFFFFF; }
.step-connector { flex: 1; height: 1px; background: #2A2A2A; margin: 0 0.5rem; min-width: 24px; }

/* ── Service page feature list ─────────────────────────────────────────── */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #1E1E1E;
}
.feature-icon {
  width: 20px; height: 20px;
  color: #C9A84C;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Stats bar ─────────────────────────────────────────────────────────── */
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #C9A84C;
}

/* ── Map container ─────────────────────────────────────────────────────── */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2A2A2A;
}
.map-container iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(0.85) contrast(1.1);
  border: none;
}

/* ── Responsive helpers ────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .stat-number { font-size: 2rem; }
  #chatbot-panel { bottom: calc(1rem + 70px + env(safe-area-inset-bottom, 0px)); right: 1rem; left: 1rem; width: auto; }
  #chatbot-btn { bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); right: 1rem; }

  /* 16px inputs stop iOS Safari from auto-zooming the page when a field is tapped */
  .form-input,
  .chatbot-input-row input { font-size: 16px; }

  /* Comfortable touch targets on the booking calendar + slots */
  .cal-day  { min-height: 42px; }
  .slot-btn { min-height: 48px; }
}

/* ── Image Reference Labels ─────────────────────────────────────────────── */
.img-label {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(201,168,76,0.95);
  color: #0A0A0A;
  font-weight: 900;
  font-size: 0.62rem;
  border-radius: 20px;
  padding: 3px 10px;
  z-index: 20;
  letter-spacing: 0.08em;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ── Google Reviews Ticker ─────────────────────────────────────────────── */
.reviews-ticker-wrap {
  overflow: hidden;
  position: relative;
}
.reviews-ticker-wrap::before,
.reviews-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-ticker-wrap::before { left: 0; background: linear-gradient(to right, #0A0A0A, transparent); }
.reviews-ticker-wrap::after  { right: 0; background: linear-gradient(to left,  #0A0A0A, transparent); }
.reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.5rem 0;
  animation: ticker-scroll 40s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  width: 320px;
  flex-shrink: 0;
  background: #1E1E1E;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 1.125rem 1.25rem;
}

/* ── Construction Radar — animated radar element (nav) ─────────────────── */
.cr-radar {
  --radar-size: 37px;
  --disc-top: #5670F0;                 /* disc blue */
  --disc-bot: #4259E2;
  --ring: rgba(255, 255, 255, 0.42);   /* light concentric rings */
  --beam: rgba(255, 255, 255, 0.55);   /* white radar sweep */
  --core: #FFFFFF;                     /* white center dot */
  position: relative;
  width: var(--radar-size);
  height: var(--radar-size);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, var(--disc-top), var(--disc-bot) 85%);
  overflow: hidden;
}
.cr-radar__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--ring);
}
.cr-radar__ring--1 { width: 30%;  height: 30%; }
.cr-radar__ring--2 { width: 58%;  height: 58%; }
.cr-radar__ring--3 { width: 86%;  height: 86%; }
.cr-radar__sweep {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    var(--beam) 0deg,
    rgba(255, 255, 255, 0.30) 34deg,
    rgba(255, 255, 255, 0.06) 60deg,
    transparent 70deg);
  animation: cr-spin 14s linear infinite;
}
.cr-radar__core {
  position: absolute;
  width: 10%;
  height: 10%;
  border-radius: 50%;
  background: var(--core);
  box-shadow: 0 0 3px 1px rgba(255, 255, 255, 0.7);
}
@keyframes cr-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .cr-radar__sweep { animation: none; } }

/* ── Brands marquee (Products & Services we provide) ───────────────────── */
.brands-marquee {
  overflow: hidden;
  position: relative;
}
.brands-marquee::before,
.brands-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.brands-marquee::before { left: 0;  background: linear-gradient(to right, #0A0A0A, transparent); }
.brands-marquee::after  { right: 0; background: linear-gradient(to left,  #0A0A0A, transparent); }
.brands-track {
  display: flex;
  align-items: center;
  gap: 3.25rem;
  width: max-content;
  padding: 0.5rem 0;
  animation: brands-scroll 90s linear infinite;
}
.brands-marquee:hover .brands-track { animation-play-state: paused; }
@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-item {
  flex-shrink: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.brand-item:hover { opacity: 1; transform: translateY(-2px); }
.brand-item img {
  max-height: 44px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  /* uniform white silhouette on the dark background */
  filter: grayscale(1) brightness(0) invert(1);
}
.brand-name {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ── API key modal ─────────────────────────────────────────────────────── */
#api-key-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
#api-key-modal.open { display: flex; }
.modal-box {
  background: #1E1E1E;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
  padding: 2rem;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.8);
}
