/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}
@keyframes float-delay {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.03); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delay { animation: float-delay 8s ease-in-out infinite; }

/* ── Navbar ── */
#navbar { background: transparent; }
#navbar.scrolled {
  background: rgba(39, 16, 35, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 47, 91, 0.5);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* ── Mobile Menu ── */
.menu-line { transition: all 0.3s ease; }
#menuBtn.active .menu-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#menuBtn.active .menu-line:nth-child(2) { opacity: 0; }
#menuBtn.active .menu-line:nth-child(3) { width: 6px; transform: rotate(-45deg) translate(3px, -3px); }

/* ── Service Cards ── */
.service-card {
  background: linear-gradient(135deg, rgba(107,47,91,0.3) 0%, rgba(56,24,49,0.5) 100%);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  box-shadow: 0 20px 60px rgba(245, 166, 35, 0.12), 0 0 0 1px rgba(245, 166, 35, 0.3);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 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; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Form Styles ── */
select option { background: #271023; color: #e0d0e8; }

/* ── Selection ── */
::selection { background: rgba(245, 166, 35, 0.3); color: #fff; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #271023; }
::-webkit-scrollbar-thumb { background: #6B2F5B; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #F5A623; }
