/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* ── Geometric background shapes ── */
.geo-shape {
  position: absolute;
  pointer-events: none;
}

.shape-circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,112,102,0.12) 0%, transparent 70%);
  top: -100px;
  right: -150px;
}

.shape-circle-2 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,112,102,0.08) 0%, transparent 70%);
  bottom: 10%;
  left: -100px;
}

.shape-rect-1 {
  width: 200px;
  height: 200px;
  background: rgba(249,112,102,0.06);
  border: 2px solid rgba(249,112,102,0.15);
  border-radius: 32px;
  top: 30%;
  left: 5%;
  transform: rotate(15deg);
}

.shape-dots {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  background-image: radial-gradient(circle, rgba(249,112,102,0.4) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.6;
}

/* ── Floating stat cards ── */
.floating-card {
  animation: float 4s ease-in-out infinite;
}

.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: 1.3s; }
.card-3 { animation-delay: 2.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Service cards ── */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ── Nav scroll state ── */
nav.scrolled {
  background: rgba(16, 16, 24, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-top: 0;
  padding-bottom: 0;
}

nav.scrolled .py-4 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile menu ── */
.mobile-link {
  transition: color 0.2s;
}
.mobile-link:hover {
  color: #F97066;
}

/* ── Selection ── */
::selection {
  background: rgba(249,112,102,0.3);
  color: #fff;
}
