
:root {
  --bg: #0A0A0A;
  --surface: #121212;
  --primary: #F4C542;
  --secondary: #FFD95A;
  --border: rgba(244,197,66,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* Glassmorphism */
.glass {
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
}

.glass-card {
  background: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: rgba(244, 197, 66, 0.4);
  box-shadow: 0 0 40px rgba(244, 197, 66, 0.1), 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(-8px);
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, #F4C542 0%, #FFD95A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow Effects */
.glow-primary {
  box-shadow: 0 0 20px rgba(244, 197, 66, 0.3);
}

.glow-text {
  text-shadow: 0 0 40px rgba(244, 197, 66, 0.5);
}

/* Animated Underline */
.nav-link {
  position: relative;
  overflow: hidden;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::after {
  transform: translateX(0);
}

/* 3D Tilt Card */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.tilt-inner {
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
}

/* Mouse Follow Light */
.mouse-light {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,197,66,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* Loader */
.loader-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(244,197,66,0.2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.loader-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  animation: loadProgress 1.5s ease-out forwards;
}
@keyframes loadProgress {
  to { width: 100%; }
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delay { animation: float 6s ease-in-out 2s infinite; }
.animate-float-delay-2 { animation: float 6s ease-in-out 4s infinite; }

/* Pulse Glow */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(244,197,66,0.2); }
  50% { box-shadow: 0 0 40px rgba(244,197,66,0.4); }
}
.pulse-glow { animation: pulseGlow 3s ease-in-out infinite; }

/* Scroll Indicator */
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
}
.scroll-indicator { animation: scrollBounce 2s ease-in-out infinite; }

/* Gradient Motion */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gradient-motion {
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
}

/* Timeline */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .timeline-line { left: 20px; }
}

/* Testimonial Slider */
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Counter */
.counter-value {
  font-variant-numeric: tabular-nums;
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #F4C542 0%, #FFD95A 100%);
  color: #0A0A0A;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 197, 66, 0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  border: 1px solid var(--border);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(244, 197, 66, 0.05);
  box-shadow: 0 0 20px rgba(244, 197, 66, 0.1);
}

/* Hero Canvas */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Particle Overlay */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

/* Mobile Menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active {
  transform: translateX(0);
}

/* Section Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* Form Input */
.form-input {
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid var(--border);
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  width: 100%;
  transition: all 0.3s;
  outline: none;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(244, 197, 66, 0.1);
}
.form-input::placeholder { color: rgba(255,255,255,0.4); }

/* Service Card Icon */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(244,197,66,0.15), rgba(255,217,90,0.05));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
}
.glass-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
  transform: scale(1.1) rotate(5deg);
}

/* Image Mask */
.img-mask {
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* Parallax Container */
.parallax-slow { will-change: transform; }
.parallax-fast { will-change: transform; }

/* Responsive Typography */
@media (max-width: 640px) {
  .hero-title { font-size: 2.5rem !important; line-height: 1.1 !important; }
}

:root {
  --bg: #0A0A0A;
  --surface: #121212;
  --primary: #F4C542;
  --secondary: #FFD95A;
  --border: rgba(244,197,66,0.15);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.glass {
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
}
.glass-card {
  background: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
  border-color: rgba(244, 197, 66, 0.4);
  box-shadow: 0 0 40px rgba(244, 197, 66, 0.1), 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(-8px);
}
.text-gradient {
  background: linear-gradient(135deg, #F4C542 0%, #FFD95A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glow-text { text-shadow: 0 0 40px rgba(244, 197, 66, 0.5); }
.nav-link { position: relative; overflow: hidden; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::after { transform: translateX(0); }
.tilt-card { transform-style: preserve-3d; perspective: 1000px; }
.tilt-inner { transition: transform 0.1s ease-out; transform-style: preserve-3d; }
.mouse-light {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,197,66,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.loader-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(244,197,66,0.2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.loader-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  animation: loadProgress 1.5s ease-out forwards;
}
@keyframes loadProgress { to { width: 100%; } }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delay { animation: float 6s ease-in-out 2s infinite; }
.animate-float-delay-2 { animation: float 6s ease-in-out 4s infinite; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(244,197,66,0.2); }
  50% { box-shadow: 0 0 40px rgba(244,197,66,0.4); }
}
.pulse-glow { animation: pulseGlow 3s ease-in-out infinite; }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
}
.scroll-indicator { animation: scrollBounce 2s ease-in-out infinite; }
.btn-primary {
  background: linear-gradient(135deg, #F4C542 0%, #FFD95A 100%);
  color: #0A0A0A;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 197, 66, 0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-outline {
  border: 1px solid var(--border);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(244, 197, 66, 0.05);
  box-shadow: 0 0 20px rgba(244, 197, 66, 0.1);
}
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active { transform: translateX(0); }
.reveal { opacity: 0; transform: translateY(40px); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(244,197,66,0.15), rgba(255,217,90,0.05));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
}
.glass-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
  transform: scale(1.1) rotate(5deg);
}
.counter-value { font-variant-numeric: tabular-nums; }
@media (max-width: 640px) {
  .hero-title { font-size: 2.5rem !important; line-height: 1.1 !important; }
}
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50;
  padding-top: 12px;
}
.mega-trigger:hover .mega-dropdown,
.mega-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  min-width: 420px;
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.mega-item:hover {
  background: rgba(244,197,66,0.08);
  border-color: var(--border);
}
.mega-item.active {
  background: rgba(244,197,66,0.12);
  border-color: rgba(244,197,66,0.3);
}
.mega-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(244,197,66,0.15), rgba(255,217,90,0.05));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.mega-item:hover .mega-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
}
.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-accordion-content.open { max-height: 500px; }
.mobile-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  color: white;
  font-size: 1.125rem;
}
.mobile-accordion-btn i { transition: transform 0.3s; }
.mobile-accordion-btn.open i { transform: rotate(180deg); }
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .timeline-line { left: 20px; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(244,197,66,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(255,217,90,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

