*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #FFF8F0; color: #2A0E1A; font-family: 'DM Sans', sans-serif; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #FFF8F0; }
::-webkit-scrollbar-thumb { background: #FB761F; border-radius: 3px; }

.dot-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(110,2,64, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.orb { position: fixed; border-radius: 50%; filter: blur(110px); pointer-events: none; z-index: 0; }
.orb-1 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(255, 199, 28, 0.45) 0%, rgba(251, 118, 31, 0.18) 50%, transparent 75%); top: -180px; left: -180px; animation: driftA 22s ease-in-out infinite alternate; }
.orb-2 { width: 540px; height: 540px; background: radial-gradient(circle, rgba(214, 4, 87, 0.32) 0%, rgba(246, 46, 51, 0.15) 50%, transparent 75%); bottom: 120px; right: -160px; animation: driftB 28s ease-in-out infinite alternate; }
@keyframes driftA { from { transform: translate(0,0); } to { transform: translate(80px,120px); } }
@keyframes driftB { from { transform: translate(0,0); } to { transform: translate(-60px,-80px); } }

.grad-text {
  background: linear-gradient(95deg, #FFC71C 0%, #FB761F 28%, #F62E33 55%, #D60457 80%, #6E0240 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.glass { background: rgba(255, 255, 255, 0.78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(110,2,64, 0.08); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
  border-radius: 999px; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none;
  background: linear-gradient(95deg, #F62E33 0%, #D60457 60%, #6E0240 100%);
  color: white; position: relative; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease; text-decoration: none;
  box-shadow: 0 8px 24px -8px rgba(214, 4, 87, 0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0) 100%); transform: translateX(-100%); transition: transform 0.4s ease; }
.btn-primary:hover { transform: translateY(-1px) scale(1.02); box-shadow: 0 14px 32px -8px rgba(214, 4, 87, 0.6); }
.btn-primary:hover::after { transform: translateX(100%); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
  border-radius: 999px; font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 15px;
  cursor: pointer; background: rgba(255,255,255,0.6); border: 1px solid rgba(42, 14, 26, 0.18);
  color: #2A0E1A; transition: transform 0.2s, background 0.2s, border-color 0.2s; text-decoration: none;
  backdrop-filter: blur(8px);
}
.btn-outline:hover { transform: translateY(-1px) scale(1.02); background: #FFFFFF; border-color: rgba(214, 4, 87, 0.4); }

section { position: relative; z-index: 1; }

@property --ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes spinBorder { to { --ang: 360deg; } }

.marquee-track { display: flex; gap: 12px; animation: marqueeScroll 30s linear infinite; width: max-content; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-wrap { position: relative; overflow: hidden; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-wrap::before, .marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, #FFF8F0, transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(270deg, #FFF8F0, transparent); }

.h-scroll { display: flex; gap: 20px; overflow-x: auto; padding: 8px 48px 24px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: rgba(246,46,51,0.4) transparent; }
.h-scroll::-webkit-scrollbar { height: 4px; }
.h-scroll::-webkit-scrollbar-thumb { background: rgba(246,46,51,0.5); border-radius: 2px; }
.h-scroll-card { scroll-snap-align: start; flex-shrink: 0; }

@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.65); } }
.pulse-dot { display:inline-block; width:6px; height:6px; border-radius:50%; background:#D60457; animation:pulse-dot 2s ease-in-out infinite; vertical-align:middle; margin-right:8px; }

@keyframes fadeSlideIn { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .orb-1, .orb-2 { animation: none !important; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Brand sparkle stars */
.brand-wrap { position: relative; display: inline-flex; align-items: center; }
.brand-star { position: absolute; pointer-events: none; color: #FFC71C; filter: drop-shadow(0 0 4px rgba(255,199,28,0.7)); animation: starTwinkle 3s ease-in-out infinite; }
.brand-star.s1 { top: -8px; left: -10px; font-size: 10px; animation-delay: 0s; }
.brand-star.s2 { top: 6px; right: -14px; font-size: 8px; animation-delay: 0.6s; color: #FB761F; filter: drop-shadow(0 0 3px rgba(251,118,31,0.7)); }
.brand-star.s3 { bottom: -6px; left: 28px; font-size: 7px; animation-delay: 1.2s; color: #D60457; filter: drop-shadow(0 0 3px rgba(214,4,87,0.7)); }
.brand-star.s4 { top: -2px; right: 6px; font-size: 6px; animation-delay: 1.8s; color: #FFC71C; }
@keyframes starTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(180deg); }
}

/* Floating particle canvas */
#particle-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.45;
}

/* Tilt card effect class */
.tilt-card { transition: transform 0.18s ease, box-shadow 0.18s ease; will-change: transform; }

/* Magnetic button effect */
.magnetic { transition: transform 0.25s cubic-bezier(0.23,1,0.32,1); display: inline-flex; }

/* Glow ring on section entry */
@keyframes glowRingIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* Number ticker shimmer */
@keyframes shimmerText {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr !important; }
  .hero-visual { display: none !important; }
  .ps-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
  .stats-grid { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 1100px) { .packages-grid { grid-template-columns: repeat(2,1fr) !important; } .why-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 640px) { .packages-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .mobile-menu-btn { display: block !important; }
  .sticky-visual { display: none !important; }
  .sticky-grid { grid-template-columns: 48px 1fr !important; gap: 20px !important; }
}
