/* ─── Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ─── Animated cursor on hero heading ──────────────── */
.hero-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: #fff;
  margin-left: 6px;
  vertical-align: middle;
  border-radius: 2px;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}


/* ─── Sticky navbar shadow on scroll ───────────────── */
#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

/* ─── Active nav link indicator ────────────────────── */
.nav-link.active {
  color: #f5c518;
  font-weight: 700;
}

/* ─── Custom scroll-bar ─────────────────────────────── */
::-webkit-scrollbar               { width: 6px; }
::-webkit-scrollbar-track         { background: #f1f1f1; }
::-webkit-scrollbar-thumb         { background: #f5c518; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover   { background: #e0b000; }

/* ─── WhatsApp button slow pulse ───────────────────── */
@keyframes pulse-slow {
  0%, 100% { box-shadow: 0 0 0 0   rgba(37,211,102,.5); }
  70%       { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}
.animate-pulse-slow {
  animation: pulse-slow 2.5s ease-out infinite;
}

/* ─── Phone icon bounce on hero CTA ────────────────── */
@keyframes bounce-x {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(4px); }
}
.animate-bounce-x {
  animation: bounce-x 1.2s ease-in-out infinite;
}

/* ─── Fade-in on scroll (JS adds .visible) ─────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Service card accent on hover ─────────────────── */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f5c51808 0%, #f5c51800 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}
.service-card:hover::before {
  opacity: 1;
}

/* ─── Gallery lightbox ──────────────────────────────── */
#lightbox {
  animation: fade-in 0.2s ease;
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── Form input date placeholder fix ──────────────── */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}

/* ─── Responsive tweaks ─────────────────────────────── */
