/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ── Navbar Scroll State ── */
#navbar.scrolled {
  background: rgba(55, 22, 62, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* ── Geometric Background Shapes ── */
.geo-shape {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}
.geo-circle-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #F5A623 0%, transparent 70%);
  top: -100px; right: -150px;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.geo-circle-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #c052c0 0%, transparent 70%);
  bottom: 10%; left: -100px;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}
.geo-circle-3 {
  width: 200px; height: 200px;
  border: 2px solid #F5A623;
  top: 30%; left: 10%;
  border-radius: 50%;
  animation: spin 20s linear infinite;
  opacity: 0.15;
}
.geo-triangle-1 {
  width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid #F5A623;
  top: 20%; right: 15%;
  opacity: 0.06;
  animation: float 6s ease-in-out infinite;
  transform-origin: center;
}
.geo-rect-1 {
  width: 120px; height: 120px;
  border: 2px solid #c052c0;
  top: 60%; right: 8%;
  transform: rotate(45deg);
  opacity: 0.12;
  animation: spin 15s linear infinite;
}
.geo-dot-group {
  width: 100px; height: 100px;
  top: 45%; left: 5%;
  background-image: radial-gradient(circle, #F5A623 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.3;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── Marquee ── */
.marquee-track {
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Service Cards ── */
.service-card {
  transform: translateY(0);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(245, 166, 35, 0.08);
}

/* ── Gallery ── */
.gallery-item {
  cursor: pointer;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover::after {
  border-color: rgba(245, 166, 35, 0.4);
}

/* ── Testimonial Cards ── */
.testimonial-card {
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.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; }

/* ── Mobile Menu ── */
.mobile-menu-open { overflow: hidden; }
#mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #37163e; }
::-webkit-scrollbar-thumb { background: #7B2D8B; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #c052c0; }

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