/* ===== Base & Utilities ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ===== Floating Background Shapes ===== */
.floating-shape {
  position: absolute;
  opacity: 0.12;
  pointer-events: none;
  animation: floatShape 8s ease-in-out infinite;
}
.shape-circle-1 {
  width: 80px; height: 80px;
  background: #F59E0B;
  border-radius: 50%;
  animation-delay: 0s;
}
.shape-circle-2 {
  width: 120px; height: 120px;
  background: #5B2C6F;
  border-radius: 50%;
  animation-delay: -2s;
}
.shape-square-1 {
  width: 60px; height: 60px;
  background: #F59E0B;
  border-radius: 12px;
  animation-delay: -4s;
  transform: rotate(45deg);
}
.shape-triangle {
  width: 0; height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid #5B2C6F;
  animation-delay: -1s;
  opacity: 0.08;
}
.shape-circle-3 {
  width: 50px; height: 50px;
  background: #F59E0B;
  border-radius: 50%;
  animation-delay: -3s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===== Hero Geometric Shapes ===== */
.geo-shape {
  position: absolute;
  pointer-events: none;
}
.geo-circle {
  border-radius: 50%;
}
.geo-circle-1 {
  width: 300px; height: 300px;
  border: 3px solid rgba(251, 211, 77, 0.3);
  top: 10%; left: -5%;
  animation: geoFloat 12s ease-in-out infinite;
}
.geo-circle-2 {
  width: 150px; height: 150px;
  background: rgba(251, 211, 77, 0.15);
  top: 60%; right: 5%;
  animation: geoFloat 8s ease-in-out infinite reverse;
}
.geo-square {
  border-radius: 24px;
}
.geo-square-1 {
  width: 100px; height: 100px;
  background: rgba(251, 211, 77, 0.2);
  bottom: 15%; left: 8%;
  transform: rotate(30deg);
  animation: geoFloat 10s ease-in-out infinite;
}
.geo-square-2 {
  width: 60px; height: 60px;
  border: 2px solid rgba(255,255,255,0.2);
  top: 20%; right: 12%;
  transform: rotate(15deg);
  animation: geoFloat 7s ease-in-out infinite reverse;
}
.geo-ring {
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}
.geo-ring-1 {
  width: 200px; height: 200px;
  top: 40%; left: 15%;
  animation: geoFloat 14s ease-in-out infinite;
}
.geo-triangle {
  width: 0; height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 87px solid rgba(251, 211, 77, 0.25);
  top: 70%; right: 15%;
  animation: geoFloat 9s ease-in-out infinite reverse;
}
.geo-dots {
  background-image: radial-gradient(circle, rgba(251,211,77,0.4) 2px, transparent 2px);
  background-size: 16px 16px;
  width: 120px; height: 120px;
  bottom: 25%; left: 25%;
  animation: geoFloat 11s ease-in-out infinite;
}
.geo-circle-3 {
  width: 180px; height: 180px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: geoFloat 13s ease-in-out infinite reverse;
}
.geo-square-3 {
  width: 80px; height: 80px;
  background: rgba(251,211,77,0.15);
  border-radius: 16px;
  transform: rotate(45deg);
  animation: geoFloat 9s ease-in-out infinite;
}
.geo-ring-2 {
  width: 250px; height: 250px;
  border: 2px solid rgba(255,255,255,0.08);
  animation: geoFloat 16s ease-in-out infinite;
}
.geo-dots-2 {
  background-image: radial-gradient(circle, rgba(255,255,255,0.3) 2px, transparent 2px);
  background-size: 20px 20px;
  width: 100px; height: 100px;
  animation: geoFloat 10s ease-in-out infinite reverse;
}

@keyframes geoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-15px) rotate(3deg) scale(1.03); }
  66% { transform: translateY(8px) rotate(-2deg) scale(0.97); }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fadeInUp 0.7s ease-out both;
}
.animation-delay-100 { animation-delay: 0.1s; }
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-300 { animation-delay: 0.3s; }
.animation-delay-400 { animation-delay: 0.4s; }

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Navbar Scroll State ===== */
.navbar-scrolled {
  background: rgba(255, 251, 245, 0.95) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(91, 44, 111, 0.08);
}
.navbar-scrolled .nav-link { color: #4a2460 !important; }

/* ===== Service Cards ===== */
.service-card { cursor: default; }

/* ===== Reason Cards ===== */
.reason-card { cursor: default; }

/* ===== Review Cards ===== */
.review-card { cursor: default; }

/* ===== Mobile Menu ===== */
.mobile-link { transition: all 0.2s ease; }

/* ===== Selection ===== */
::selection { background: #F59E0B; color: #1a0d24; }

/* ===== Custom scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fef3c7; }
::-webkit-scrollbar-thumb { background: #5B2C6F; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #4a2460; }
