/* ============================================
   SK AGENCY — GLOBAL CSS — DARK THEME
   Premium Edition with Luxestay-inspired animations
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES — DARK THEME
   ============================================ */
:root {
  /* Brand Colors */
  --purple:        #9b5de5;
  --pink:          #d400ff;
  --magenta:       #c084fc;
  --accent-glow:   #7c3aed;

  /* Dark Theme Backgrounds */
  --dark:          #050508;
  --dark2:         #0c0c14;
  --dark3:         #111120;
  --dark4:         #18182a;
  --dark5:         #1e1e32;

  /* Light accents on dark */
  --light-bg:      #0f0f1e;
  --card-bg:       rgba(20, 20, 38, 0.85);
  --card-bg-solid: #13132a;

  /* Text */
  --text:          #f0eeff;
  --text-muted:    #8b8aaa;
  --text-faint:    #5a5a7a;
  --white:         #ffffff;

  /* Borders */
  --border:        rgba(155, 93, 229, 0.18);
  --border-light:  rgba(155, 93, 229, 0.08);
  --border-glow:   rgba(155, 93, 229, 0.4);

  /* Gradients */
  --gradient:      linear-gradient(135deg, #7c3aed 0%, #d400ff 100%);
  --gradient-r:    linear-gradient(135deg, #d400ff 0%, #7c3aed 100%);
  --gradient-dark: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(212,0,255,0.08));
  --gradient-glow: linear-gradient(135deg, rgba(124,58,237,0.6), rgba(212,0,255,0.6));
  --gradient-text: linear-gradient(135deg, #a78bfa, #e879f9, #d400ff);

  /* Layout */
  --radius:        20px;
  --radius-lg:     32px;
  --radius-sm:     12px;
  --transition:    0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: 0.2s cubic-bezier(0.23, 1, 0.32, 1);

  /* Typography */
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body{
Overflow-x : hidden;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
img  { max-width: 100%; display: block; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 6.5vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4.5vw, 3.8rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { line-height: 1.75; color: var(--text-muted); }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 110px 0; }

.section-label {
  display: inline-block;
  background: var(--gradient);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  position: relative;
  overflow: hidden;
}

.section-label::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  animation: labelShine 3s ease-in-out infinite;
}

@keyframes labelShine {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.section-title { margin-bottom: 56px; line-height: 1.1; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: white;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(124,58,237,0);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-r);
  opacity: 0;
  transition: var(--transition);
  border-radius: 999px;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: 999px;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: var(--transition);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover::after  { opacity: 0.8; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(124,58,237,0.5), 0 0 30px rgba(212,0,255,0.3);
}

.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--magenta);
  padding: 13px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-glow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.btn-ghost:hover::before { opacity: 1; }
.btn-ghost:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(124,58,237,0.4);
}

.btn-ghost span { position: relative; z-index: 1; }

.btn-large { padding: 18px 48px; font-size: 1.1rem; }

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(155,93,229,0.15), 0 8px 32px rgba(0,0,0,0.4);
  padding: 14px 48px;
}

/* Animated underline on scrolled nav */
.nav.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0.3;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  z-index: 2;
}

.logo-sk {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gradientShift 4s ease infinite;
}

.logo-dot { color: var(--pink); font-size: 1rem; animation: blink 2s ease-in-out infinite; }

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.35s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--magenta);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 100px 48px 48px;
  transform: translateY(-100%);
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
  display: inline-block;
}

.mobile-menu a:hover { color: var(--text); }

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: var(--gradient);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
}

.marquee-strip::before { left: 0; background: linear-gradient(to right, rgba(124,58,237,0.8), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left, rgba(212,0,255,0.8), transparent); }

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-track .dot { color: rgba(255,255,255,0.4); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark2);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0.6;
}

/* Ambient glow in footer */
.footer::after {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.08), transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.footer-brand p {
  color: var(--text-faint);
  margin: 16px 0 24px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.social-links { display: flex; gap: 12px; }

.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  background: var(--dark3);
}

.social-links a:hover {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124,58,237,0.4);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--magenta);
  transform: translateX(4px);
}

.footer-col li { color: var(--text-faint); font-size: 0.88rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  color: var(--text-faint);
  font-size: 0.78rem;
  position: relative;
  z-index: 1;
}

.footer-bottom p { font-size: 0.82rem; color: var(--text-faint) ;text-align: center;align-items: center;padding-left: 40%; }

/* ============================================
   HERO BADGE (shared)
   ============================================ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.12);
  border: 1px solid var(--border-glow);
  color: var(--magenta);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge::before {
  content: '●';
  color: var(--pink);
  animation: blink 1.5s ease-in-out infinite;
  font-size: 0.6rem;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(155,93,229,0); }
  50%       { box-shadow: 0 0 20px rgba(155,93,229,0.25); }
}

/* ============================================
   SCROLL REVEAL (upgraded for dark)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   CURSOR GLOW EFFECT (luxury touch)
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: 0.1s ease;
}

/* ============================================
   ORBs GLOBAL STYLE (dark theme)
   ============================================ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
  animation: orbFloat 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.06); }
}

/* ============================================
   GRID LINES OVERLAY
   ============================================ */
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* ============================================
   ANIMATED BACKGROUND MESH
   ============================================ */
.bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124,58,237,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212,0,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(168,85,247,0.05) 0%, transparent 50%);
  pointer-events: none;
  animation: meshPulse 8s ease-in-out infinite;
}

@keyframes meshPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

/* ============================================
   GLOW CARD COMPONENT
   ============================================ */
.glow-card {
  position: relative;
  background: var(--card-bg-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--gradient);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.glow-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--card-bg-solid);
  border-radius: calc(var(--radius) - 1px);
  z-index: 0;
}

.glow-card > * { position: relative; z-index: 1; }

.glow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(124,58,237,0.2), 0 0 0 1px rgba(155,93,229,0.3);
}

.glow-card:hover::before { opacity: 1; }

/* ============================================
   SHIMMER LOADING EFFECT
   ============================================ */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ============================================
   FLOATING ANIMATION KEYFRAMES
   ============================================ */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes floatRotate {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}

@keyframes scaleBreath {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}

/* ============================================
   CTA SECTION (global reusable)
   ============================================ */
.cta-section {
  background: var(--dark2);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(124,58,237,0.15), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(212,0,255,0.1), transparent 60%);
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.2;
}

.cta-orb1 { width: 500px; height: 500px; background: var(--purple); top: -150px; left: -150px; animation: orbFloat 10s ease-in-out infinite; }
.cta-orb2 { width: 400px; height: 400px; background: var(--pink);   bottom: -150px; right: -150px; animation: orbFloat 12s ease-in-out infinite reverse; }

.cta-content { position: relative; z-index: 2; }
.cta-content h2 { color: var(--text); margin-bottom: 20px; }
.cta-content p  { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; }

/* ============================================
   STAT NUMBERS
   ============================================ */
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gradientShift 4s ease infinite;
  line-height: 1;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: rgba(124,58,237,0.35);
  color: var(--text);
}

/* ============================================
   FOCUS STYLES (accessibility)
   ============================================ */
:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================
   RESPONSIVE — GLOBAL
   ============================================ */
@media (max-width: 1024px) {
  .nav { padding: 18px 32px; }
  .nav.scrolled { padding: 12px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 24px;
  }
  .mobile-menu { padding: 90px 24px 48px; }
  .mobile-menu a { font-size: 1.6rem; }
  .cta-section { padding: 80px 0; }
  .cta-content h2 { font-size: clamp(1.6rem, 7vw, 2.8rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { padding: 20px 16px; }
  .section { padding: 64px 0; }
  .nav { padding: 14px 16px; }
  .nav.scrolled { padding: 10px 16px; }
  .mobile-menu { padding: 80px 20px 40px; }
  .mobile-menu a { font-size: 1.4rem; }
}