:root {
  --gold: #c9a227;
  --gold-light: #f0c040;
  --gold-bright: #ffe066;
  --gold-dark: #7a5c00;
  --black: #000000;
  --deep: #050508;
  --glass: rgba(255,255,255,0.03);
  --glass-border: rgba(201,162,39,0.25);
  --glass-border-bright: rgba(240,192,64,0.6);
  --text: #e8dcc0;
  --text-muted: rgba(232,220,192,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 38px; height: 38px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width 0.25s, height 0.25s, opacity 0.2s;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,5,8,0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(240,192,64,0.5);
  box-shadow: 0 0 16px rgba(240,192,64,0.6), 0 0 32px rgba(201,162,39,0.3);
}
.cursor-logo-img {
  width: 28px; height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(240,192,64,0.9));
  transition: transform 0.2s;
}
.cursor:hover .cursor-logo-img { transform: scale(1.15); }
.cursor-ring {
  position: fixed;
  width: 60px; height: 60px;
  border: 1px solid rgba(240,192,64,0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: left 0.12s ease, top 0.12s ease, width 0.3s, height 0.3s;
}

/* Background */
.bg-grid {
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%); top: -200px; left: -200px; animation: orbFloat1 12s ease-in-out infinite; }
.orb2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(240,192,64,0.08) 0%, transparent 70%); bottom: -100px; right: -100px; animation: orbFloat2 15s ease-in-out infinite; }
.orb3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(122,92,0,0.1) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: orbFloat3 10s ease-in-out infinite; }
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(60px,40px) scale(1.1)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,-60px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.15)} }

/* Line Ripple Background */
#lineRippleBg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: screen;
}
#lineRippleBg svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
@media (max-width: 768px) {
  #lineRippleBg { opacity: 0.35; }
}

/* Navigation */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: rgba(5,5,8,0.6);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  animation: navSlide 0.8s ease forwards;
}
@keyframes navSlide { from{transform:translateY(-100%)} to{transform:translateY(0)} }

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem; font-weight: 900;
  letter-spacing: 6px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-bright), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: logoShimmer 4s linear infinite;
  background-size: 300% 300%;
}
@keyframes logoShimmer {
  0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%}
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(232,220,192,0.75);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(240,192,64,0.1));
  border: 1px solid var(--glass-border-bright);
  border-radius: 2px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  opacity: 0; transition: opacity 0.3s;
}
.nav-cta:hover { color: var(--deep); }
.nav-cta:hover::before { opacity: 1; }
.nav-cta span { position: relative; z-index: 1; }

/* Hero */














.btn-primary, .btn-ghost {
  padding: 1.1rem 3rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: none;
  transition: all 0.3s;
  position: relative; overflow: hidden;
  display: inline-block;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--deep);
  border: none;
  box-shadow: 0 0 30px rgba(201,162,39,0.4), 0 0 60px rgba(201,162,39,0.2);
}
.btn-primary:hover {
  box-shadow: 0 0 50px rgba(201,162,39,0.7), 0 0 100px rgba(201,162,39,0.4);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--glass-border-bright);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(201,162,39,0.1);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

/* 3D Floating Badge */

@keyframes float3d {
  0%,100%{transform:translateY(0) rotateY(0) rotateX(5deg)}
  33%{transform:translateY(-15px) rotateY(15deg) rotateX(5deg)}
  66%{transform:translateY(8px) rotateY(-10deg) rotateX(5deg)}
}

.hologram-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringPulse 2s ease-in-out infinite;
  pointer-events: none;
}
.ring1 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%,-50%); border-color: rgba(201,162,39,0.15); animation-delay: 0s; }
.ring2 { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%,-50%); border-color: rgba(201,162,39,0.1); animation-delay: 0.5s; }
.ring3 { width: 700px; height: 700px; top: 50%; left: 50%; transform: translate(-50%,-50%); border-color: rgba(201,162,39,0.06); animation-delay: 1s; }
@keyframes ringPulse {
  0%,100%{transform:translate(-50%,-50%) scale(1); opacity:1}
  50%{transform:translate(-50%,-50%) scale(1.05); opacity:0.5}
}

@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* Stats Strip */
.stats-strip {
  position: relative; z-index: 10;
  background: rgba(5,5,8,0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 2rem 5%;
  display: flex; justify-content: center; gap: 0;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 200%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  animation: scanLine 3s linear infinite;
}
@keyframes scanLine { to { left: 100%; } }

.stat-item {
  flex: 1; max-width: 200px;
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid var(--glass-border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

/* Section Common */
section { position: relative; z-index: 10; }

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 7px; text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 1rem; font-weight: 400;
  color: var(--text-muted);
  max-width: 600px; margin: 1.5rem auto 0;
  letter-spacing: 1px; line-height: 1.8;
}

/* Services */
.services { padding: 8rem 5%; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 2.5rem;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240,192,64,0.06), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.service-card:hover { border-color: var(--glass-border-bright); transform: translateY(-8px) scale(1.01); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,162,39,0.1); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { left: 150%; }

.card-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 4px;
  color: rgba(201,162,39,0.3);
  margin-bottom: 1.5rem;
}
.card-icon {
  width: 64px; height: 64px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: visible;
}
.card-icon svg { width: 100%; height: 100%; }
.card-icon .sticker-fallback {
  position: relative;
  z-index: 1;
}
.card-icon .sticker-canvas {
  z-index: 2;
}
.card-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.2);
  animation: iconPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes iconPulse {
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(1.1);opacity:0.5}
}
.card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.card-desc {
  font-size: 0.9rem; font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.card-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.card-list li {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
  transition: color 0.3s;
}
.card-list li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.service-card:hover .card-list li { color: var(--text); }

.section-hint {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold, #c9a227);
  opacity: 0.7;
}

/* Premium Services — floating hover preview popup (image follows cursor) */
.card-preview-popup {
  position: fixed;
  top: 0; left: 0;
  width: 260px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -60%) scale(0.9);
  transition: opacity 0.35s cubic-bezier(0.23,1,0.32,1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.55), 0 0 40px rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.35);
}
.card-preview-popup.active {
  opacity: 1;
}
.card-preview-popup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-preview-popup::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.85) 100%);
}
.card-preview-popup-label {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 1;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-light, #f0c040);
}
@media (hover: none), (max-width: 900px) {
  .card-preview-popup { display: none !important; }
}

/* Cursor click ripple effect */
.cursor-click-ring {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(240,192,64,0.8);
  transform: translate(-50%, -50%) scale(0.5);
  pointer-events: none;
  z-index: 9998;
  opacity: 1;
  animation: cursorClickRing 0.55s cubic-bezier(0.23,1,0.32,1) forwards;
}
@keyframes cursorClickRing {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(4.5); opacity: 0; }
}
@media (hover: none) {
  .cursor-click-ring { display: none !important; }
}

/* Holographic Separator */
.holo-sep {
  position: relative; z-index: 10;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 20%, var(--gold-bright) 50%, var(--gold-dark) 80%, transparent 100%);
  overflow: hidden;
}
.holo-sep::after {
  content: '';
  position: absolute; top: -2px; left: -100%;
  width: 60%; height: 6px;
  background: linear-gradient(90deg, transparent, white, transparent);
  animation: scanLine 2.5s ease-in-out infinite;
  opacity: 0.8;
}

/* Featured Work */
.featured-work { padding: 8rem 5%; }

.work-live-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.work-live-card {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 2.25rem;
  text-decoration: none;
  cursor: none;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.work-live-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.work-live-card:hover {
  border-color: var(--glass-border-bright);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,162,39,0.1);
}
.work-live-card:hover::before { opacity: 1; }

.work-live-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,162,39,0.08);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}
.work-live-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.work-live-body { position: relative; z-index: 1; }
.work-live-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.6rem;
}
.work-live-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.work-live-desc {
  font-size: 0.9rem; font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.work-live-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold-light);
  transition: gap 0.3s, color 0.3s;
}
.work-live-card:hover .work-live-link { gap: 0.85rem; color: var(--gold-bright); }
.work-live-link svg { flex-shrink: 0; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.work-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  cursor: none;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.work-card:hover {
  border-color: var(--glass-border-bright);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,162,39,0.1);
}
.work-card-media { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.work-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.work-card:hover .work-card-media img { transform: scale(1.08); }
.work-card-body { padding: 1.5rem; }
.work-card-tag {
  display: block;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold, #c9a227);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}
.work-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--text);
}

@media (max-width: 768px) {
  .work-live-grid { grid-template-columns: 1fr; }
  .work-live-card { flex-direction: column; }
}

/* Process */
/* ══════════════════════════════════════════
   PROCESS SECTION — ANIMATED
══════════════════════════════════════════ */
.process { padding: 8rem 5%; position: relative; overflow: hidden; }

.process-track-wrap {
  position: absolute;
  top: 50%; left: 5%; right: 5%;
  height: 2px;
  pointer-events: none;
}
#processCanvas {
  position: absolute; top: -60px; left: 0; right: 0;
  width: 100%; height: 120px;
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.proc-card {
  text-align: center;
  padding: 0;
  position: relative;
  cursor: default;
  transition: all 0.4s;
}
.proc-card:hover { transform: translateY(-8px); }

/* Icon ring stack */
.proc-icon-ring {
  position: relative;
  width: 90px; height: 90px;
  margin: 0 auto 1.8rem;
}
.proc-ring-outer, .proc-ring-mid {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.2);
}
.proc-ring-outer {
  inset: -16px;
  animation: procRingOuter 4s ease-in-out infinite;
}
.proc-ring-mid {
  inset: -8px;
  animation: procRingMid 3s ease-in-out infinite;
}
.proc-card:nth-child(1) .proc-ring-outer { animation-delay: 0s; }
.proc-card:nth-child(2) .proc-ring-outer { animation-delay: 0.5s; }
.proc-card:nth-child(3) .proc-ring-outer { animation-delay: 1s; }
.proc-card:nth-child(4) .proc-ring-outer { animation-delay: 1.5s; }
@keyframes procRingOuter {
  0%,100%{transform:scale(1);opacity:0.4;border-color:rgba(201,162,39,0.2)}
  50%{transform:scale(1.12);opacity:0;border-color:rgba(240,192,64,0.4)}
}
@keyframes procRingMid {
  0%,100%{transform:scale(1);opacity:0.6}
  50%{transform:scale(1.08);opacity:0.2}
}

.step-node {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.04));
  border: 1px solid rgba(201,162,39,0.5);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 20px rgba(201,162,39,0.15), inset 0 0 20px rgba(201,162,39,0.05);
  transition: all 0.4s;
  z-index: 1;
}
.proc-card:hover .step-node {
  border-color: var(--gold-bright);
  box-shadow: 0 0 40px rgba(201,162,39,0.4), 0 0 80px rgba(201,162,39,0.15);
  background: linear-gradient(135deg, rgba(201,162,39,0.25), rgba(201,162,39,0.08));
}
.step-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem; font-weight: 900;
  color: #f0c040;
  text-shadow: 0 0 20px rgba(240,192,64,0.8);
}

/* Connector line between steps */
.proc-connector {
  display: none;
}

/* Card body */
.proc-body {
  padding: 0 0.5rem;
}
.proc-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.5rem; font-weight: 700;
  letter-spacing: 4px;
  color: rgba(201,162,39,0.5);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.proc-card:hover .proc-badge { color: var(--gold-bright); }

.step-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  transition: all 0.3s;
  text-shadow: 0 0 15px rgba(201,162,39,0.3);
}
.proc-card:hover .step-title {
  color: var(--gold-bright);
  text-shadow: 0 0 25px rgba(240,192,64,0.6);
}
.step-desc {
  font-size: 0.88rem; font-weight: 400;
  color: rgba(232,220,192,0.65);
  line-height: 1.75; margin-bottom: 1rem;
}

.proc-tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center;
}
.proc-tags li {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 1px;
  color: rgba(201,162,39,0.7);
  background: rgba(201,162,39,0.07);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 2px;
  padding: 0.2rem 0.6rem;
  transition: all 0.3s;
}
.proc-card:hover .proc-tags li {
  background: rgba(201,162,39,0.12);
  border-color: rgba(201,162,39,0.4);
  color: #f0c040;
}

/* Background glow per card */
.proc-glow-bg {
  position: absolute; inset: 0;
  border-radius: 8px;
  opacity: 0;
  background: radial-gradient(circle at 50% 30%, rgba(201,162,39,0.08) 0%, transparent 70%);
  transition: opacity 0.4s;
  pointer-events: none;
}
.proc-card:hover .proc-glow-bg { opacity: 1; }

@media(max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-track-wrap { display: none; }
}
@media(max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* About / CTA */
.about { padding: 8rem 5%; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media(max-width:768px){ .about-inner { grid-template-columns: 1fr; gap: 3rem; } }

.about-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  display: flex; align-items: center; justify-content: center;
}
#missionCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
}
.mission-center-orb {
  position: absolute;
  width: 30%; height: 30%;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.mission-orb-glow {
  position: absolute; inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,192,64,0.45) 0%, rgba(201,162,39,0.18) 40%, transparent 70%);
  animation: missionGlowPulse 3s ease-in-out infinite;
}
.mission-orb-glow-2 {
  inset: -50px;
  background: radial-gradient(circle, rgba(240,192,64,0.15) 0%, rgba(201,162,39,0.05) 50%, transparent 70%);
  animation: missionGlowPulse 4s ease-in-out infinite reverse;
}
@keyframes missionGlowPulse {
  0%,100%{transform:scale(0.9);opacity:0.6} 50%{transform:scale(1.25);opacity:1}
}
.mission-logo-center {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(40,28,0,0.95), rgba(5,5,8,0.98));
  border: 1px solid rgba(201,162,39,0.4);
  box-shadow:
    0 0 30px rgba(240,192,64,0.5),
    0 0 70px rgba(201,162,39,0.3),
    inset 0 0 30px rgba(201,162,39,0.08);
  display: flex; align-items: center; justify-content: center;
  animation: orbBreath 4s ease-in-out infinite;
  overflow: hidden;
}
@keyframes orbBreath {
  0%,100%{transform:scale(1)} 50%{transform:scale(1.07)}
}
.mission-logo-img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(240,192,64,0.9)) drop-shadow(0 0 20px rgba(201,162,39,0.6));
  animation: logoSpin 0s linear infinite, logoGlow 3s ease-in-out infinite;
}
@keyframes logoGlow {
  0%,100%{filter:drop-shadow(0 0 8px rgba(240,192,64,0.8)) drop-shadow(0 0 20px rgba(201,162,39,0.5))}
  50%{filter:drop-shadow(0 0 16px rgba(255,224,102,1)) drop-shadow(0 0 40px rgba(240,192,64,0.8)) drop-shadow(0 0 60px rgba(201,162,39,0.4))}
}

.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
}

.about-content { }
.about-content p {
  font-size: 1rem; font-weight: 400;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 1.5rem;
}

.features-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.feature-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 2px;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
}
.feature-text {
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1px;
  color: var(--text);
}

/* Testimonials */
.testimonials { padding: 8rem 5%; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: -10px; left: 1rem;
  font-family: 'Cinzel', serif;
  font-size: 5rem; font-weight: 900;
  color: rgba(201,162,39,0.1);
  line-height: 1;
}
.testimonial-card:hover { border-color: var(--glass-border-bright); transform: translateY(-4px); }
.testimonial-text {
  font-size: 0.9rem; font-weight: 400;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  color: var(--deep);
}
.author-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
}
.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.stars {
  color: var(--gold-bright);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
  padding: 8rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glass {
  max-width: 860px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, rgba(5,5,8,0.7) 50%, rgba(201,162,39,0.08) 100%);
  border: 1px solid var(--glass-border-bright);
  border-radius: 8px;
  padding: 6rem 5rem;
  backdrop-filter: blur(40px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(201,162,39,0.08), inset 0 0 60px rgba(201,162,39,0.03);
}
.cta-glass::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.cta-glass::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  filter: drop-shadow(0 0 30px rgba(201,162,39,0.3));
}
.cta-sub {
  font-size: 1.15rem; font-weight: 400;
  color: rgba(232,220,192,0.7);
  letter-spacing: 1.5px;
  margin-bottom: 3rem;
  line-height: 2;
}
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer {
  position: relative; z-index: 10;
  background: rgba(5,5,8,0.95);
  border-top: 1px solid var(--glass-border-bright);
  padding: 6rem 5% 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}
@media(max-width:900px){ .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media(max-width:768px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.footer-brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem; font-weight: 900;
  letter-spacing: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: 0.95rem; font-weight: 400;
  color: rgba(232,220,192,0.65);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.footer-contact-links {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.contact-link-item {
  display: flex; align-items: center; gap: 0.85rem;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
  group: true;
}
.contact-link-item:hover { transform: translateX(6px); }
.contact-icon-wrap {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.contact-icon-wrap svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.contact-icon-wrap::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 8px;
}
/* Facebook */
.fb-icon { background: rgba(24,119,242,0.15); border: 1px solid rgba(24,119,242,0.3); color: #4a9eff; }
.fb-icon::before { background: rgba(24,119,242,0.25); }
.contact-link-item:hover .fb-icon { box-shadow: 0 0 20px rgba(24,119,242,0.4); border-color: rgba(24,119,242,0.6); }
.contact-link-item:hover .fb-icon::before { opacity: 1; }
/* Instagram */
.ig-icon { background: rgba(225,48,108,0.12); border: 1px solid rgba(225,48,108,0.3); color: #f06292; }
.ig-icon::before { background: linear-gradient(45deg,rgba(255,100,0,0.2),rgba(225,48,108,0.2),rgba(130,80,255,0.2)); }
.contact-link-item:hover .ig-icon { box-shadow: 0 0 20px rgba(225,48,108,0.4); border-color: rgba(225,48,108,0.6); }
.contact-link-item:hover .ig-icon::before { opacity: 1; }
/* WhatsApp */
.wa-icon { background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3); color: #4cde80; }
.wa-icon::before { background: rgba(37,211,102,0.25); }
.contact-link-item:hover .wa-icon { box-shadow: 0 0 20px rgba(37,211,102,0.4); border-color: rgba(37,211,102,0.6); }
.contact-link-item:hover .wa-icon::before { opacity: 1; }
/* Email */
.em-icon { background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.3); color: var(--gold-light); }
.em-icon::before { background: rgba(201,162,39,0.2); }
.contact-link-item:hover .em-icon { box-shadow: 0 0 20px rgba(201,162,39,0.4); border-color: var(--gold); }
.contact-link-item:hover .em-icon::before { opacity: 1; }
.contact-link-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: rgba(232,220,192,0.7);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.contact-link-item:hover .contact-link-text { color: var(--text); }

.footer-col-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col-title::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.footer-links a {
  font-size: 1rem; font-weight: 500;
  color: rgba(232,220,192,0.7);
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 1px;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-links a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a:hover::before { width: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(201,162,39,0.2);
  padding-top: 2.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-size: 0.85rem; font-weight: 500;
  color: rgba(232,220,192,0.45); letter-spacing: 1px;
}
.footer-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem; font-weight: 600;
  color: rgba(201,162,39,0.55);
  letter-spacing: 4px;
}
.footer-sitemap-link {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-sitemap-link:hover { color: var(--gold-light); }

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Particle canvas */
#particles { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

/* Mobile nav toggle */
@media(max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .features-list { grid-template-columns: 1fr; }
  .cta-glass { padding: 3rem 2rem; }
}

/* Holographic shimmer on cards */
@keyframes holoShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.holo-text {
  background: linear-gradient(135deg, #c9a227, #ffe066, #f0c040, #7a5c00, #c9a227, #ffe066);
  background-size: 400% 400%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: holoShimmer 5s ease infinite;
}

/* Loading screen */
.loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
  transition: opacity 1s, visibility 1s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo-wrap {
  margin-bottom: 1.5rem;
}
.loader-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900;
  letter-spacing: 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-bright), var(--gold));
  background-size: 300% 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoShimmer 3s linear infinite;
  margin-bottom: 1.2rem;
}
.loader-typing {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  min-height: 1.8em;
  margin-bottom: 2.5rem;
  text-align: center;
}
.loader-cursor {
  display: inline-block;
  width: 2px; height: 1em;
  background: var(--gold-bright);
  margin-left: 3px;
  vertical-align: middle;
  animation: cursorBlink 0.7s step-end infinite;
}
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }
.loader-bar {
  width: 240px; height: 1px;
  background: rgba(201,162,39,0.15);
  position: relative; overflow: hidden;
}
.loader-bar-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
  animation: loaderFill 1.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes loaderFill { from{width:0%} to{width:100%} }

/* Nav contact icons */
.nav-contact-icons {
  display: flex; align-items: center; gap: 6px;
}
.nav-divider-v {
  width: 1px; height: 24px;
  background: var(--glass-border-bright);
  margin: 0 6px;
}
.nav-icon-btn {
  width: 34px; height: 34px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
  position: relative;
  overflow: hidden;
}
.nav-icon-btn::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-fb { background: rgba(24,119,242,0.12); border: 1px solid rgba(24,119,242,0.25); color: #5aadff; }
.nav-fb::before { background: rgba(24,119,242,0.25); }
.nav-fb:hover { box-shadow: 0 0 16px rgba(24,119,242,0.5); transform: translateY(-2px) scale(1.1); border-color: rgba(24,119,242,0.6); }
.nav-fb:hover::before { opacity: 1; }
.nav-ig { background: rgba(225,48,108,0.12); border: 1px solid rgba(225,48,108,0.25); color: #f478aa; }
.nav-ig::before { background: linear-gradient(45deg,rgba(255,100,0,0.2),rgba(225,48,108,0.2)); }
.nav-ig:hover { box-shadow: 0 0 16px rgba(225,48,108,0.5); transform: translateY(-2px) scale(1.1); border-color: rgba(225,48,108,0.6); }
.nav-ig:hover::before { opacity: 1; }
.nav-wa { background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.25); color: #4cde80; }
.nav-wa::before { background: rgba(37,211,102,0.25); }
.nav-wa:hover { box-shadow: 0 0 16px rgba(37,211,102,0.5); transform: translateY(-2px) scale(1.1); border-color: rgba(37,211,102,0.6); }
.nav-wa:hover::before { opacity: 1; }
.nav-em { background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.25); color: var(--gold-light); }
.nav-em::before { background: rgba(201,162,39,0.2); }
.nav-em:hover { box-shadow: 0 0 16px rgba(201,162,39,0.5); transform: translateY(-2px) scale(1.1); border-color: var(--gold); }
.nav-em:hover::before { opacity: 1; }
.nav-icon-btn svg { position: relative; z-index: 1; }
@media(max-width:900px){ .nav-contact-icons { display: none; } }





/* ══════════════════════════════════════════
   HERO 3D — FULL OVERHAUL
══════════════════════════════════════════ */
.hero {
  position: relative; z-index: 10;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 5% 80px;
  overflow: hidden;
  perspective: 1000px;
  background: radial-gradient(ellipse at 50% 40%, rgba(40,28,0,0.6) 0%, rgba(5,5,8,0) 70%);
}

/* Animated 3D floor grid */
.hero-floor-grid {
  position: absolute;
  bottom: 0; left: -50%; right: -50%;
  height: 55%;
  background-image:
    linear-gradient(rgba(201,162,39,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(600px) rotateX(70deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 80%);
  animation: gridScroll 8s linear infinite;
}
@keyframes gridScroll {
  from { background-position: 0 0; }
  to   { background-position: 0 80px; }
}

.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(5,5,8,0.75) 100%);
  pointer-events: none; z-index: 1;
}

#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* Content wrapper */
.hero-content-3d {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; align-items: center;
  transform-style: preserve-3d;
}

/* Tagline */
.hero-tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.6rem, 1.1vw, 0.85rem); font-weight: 700;
  letter-spacing: 10px; text-transform: uppercase;
  color: #f0c040;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
  text-shadow: 0 0 20px rgba(240,192,64,0.9);
  padding: 0.6rem 2.5rem;
  border: 1px solid rgba(240,192,64,0.4);
  border-radius: 2px;
  background: rgba(201,162,39,0.07);
  backdrop-filter: blur(12px);
  display: inline-block;
}
.hero-tagline::before, .hero-tagline::after {
  content: '◆'; margin: 0 1rem;
  font-size: 0.45rem; vertical-align: middle; color: #f0c040;
}

/* Logo */
.hero-logo-wrap {
  position: relative;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.45s forwards;
}
.hero-logo-glow {
  position: absolute; inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.35) 0%, transparent 70%);
  animation: logoPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes logoPulse {
  0%,100%{transform:scale(1);opacity:0.7} 50%{transform:scale(1.2);opacity:1}
}
.hero-logo-img {
  width: min(520px, 80vw);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(201,162,39,0.8)) drop-shadow(0 0 80px rgba(201,162,39,0.4));
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%,100%{transform:translateY(0) rotateX(3deg)} 50%{transform:translateY(-14px) rotateX(-3deg)}
}



/* Subtitle */
.hero-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 6px; text-transform: uppercase;
  color: #e8dcc0;
  margin-top: 1.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}
.hero-subtitle em {
  color: #ffe066; font-style: normal; font-weight: 700;
  text-shadow: 0 0 20px rgba(255,224,102,1), 0 0 50px rgba(201,162,39,0.6);
}

/* Divider */
.hero-divider {
  width: 320px; height: 1px;
  background: linear-gradient(90deg, transparent, #ffe066, #f0c040, #ffe066, transparent);
  margin: 2rem auto;
  opacity: 0; animation: fadeIn 1s 1s forwards;
  box-shadow: 0 0 14px rgba(240,192,64,0.7);
}

/* CTA */
.hero-cta-group {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
  margin-top: 1.5rem;
  opacity: 0; animation: fadeUp 0.9s 1.1s forwards;
}

/* ── 3D FLOATING SIDE CARDS ── */
.hero-3d-left, .hero-3d-right {
  position: absolute; top: 50%;
  display: flex; flex-direction: column; gap: 1.2rem;
  z-index: 6;
}
.hero-3d-left { left: 2%; transform: translateY(-50%); }
.hero-3d-right { right: 2%; transform: translateY(-50%); }

.hero-float-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
  backdrop-filter: blur(20px);
  min-width: 180px;
  position: relative; overflow: hidden;
  cursor: default;
  transform-style: preserve-3d;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-float-card:hover {
  transform: translateY(-6px) rotateX(-4deg) rotateY(4deg) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(201,162,39,0.2);
  border-color: rgba(201,162,39,0.6);
}
.hfc-anim-1 { animation: hfc1 7s ease-in-out infinite; }
.hfc-anim-2 { animation: hfc2 8s ease-in-out infinite; }
.hfc-anim-3 { animation: hfc3 6.5s ease-in-out infinite; }
.hfc-anim-4 { animation: hfc4 7.5s ease-in-out infinite; }
@keyframes hfc1 { 0%,100%{transform:translateY(0)   rotateX(4deg)  rotateY(-6deg)} 50%{transform:translateY(-14px) rotateX(-3deg) rotateY(5deg)} }
@keyframes hfc2 { 0%,100%{transform:translateY(-8px) rotateX(-3deg) rotateY(5deg)}  50%{transform:translateY(6px)   rotateX(4deg)  rotateY(-5deg)} }
@keyframes hfc3 { 0%,100%{transform:translateY(0)   rotateX(-4deg) rotateY(6deg)}  50%{transform:translateY(-12px) rotateX(3deg)  rotateY(-4deg)} }
@keyframes hfc4 { 0%,100%{transform:translateY(-6px) rotateX(3deg)  rotateY(-5deg)} 50%{transform:translateY(8px)   rotateX(-4deg) rotateY(6deg)} }

/* Glass shine sweep */
.hfc-shine {
  position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-20deg);
  animation: shineSweep 5s ease-in-out infinite;
}
.hfc-anim-2 .hfc-shine { animation-delay: 1.5s; }
.hfc-anim-3 .hfc-shine { animation-delay: 3s; }
@keyframes shineSweep { 0%,60%,100%{left:-100%} 30%{left:150%} }

.hfc-icon {
  width: 36px; height: 36px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.hfc-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #f0c040; letter-spacing: 1px;
  margin-bottom: 0.2rem;
}
.hfc-sub {
  font-size: 0.75rem; font-weight: 500;
  color: rgba(232,220,192,0.6);
  letter-spacing: 0.5px;
}

.hero-stat-card {
  background: linear-gradient(135deg, rgba(201,162,39,0.14), rgba(201,162,39,0.04));
  border: 1px solid rgba(201,162,39,0.45);
  border-radius: 10px; padding: 1.4rem 1.8rem;
  backdrop-filter: blur(20px);
  text-align: center; min-width: 160px;
  position: relative; overflow: hidden;
}
.hsc-ring {
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.15);
  animation: hscRing 3s ease-in-out infinite;
}
@keyframes hscRing { 0%,100%{transform:scale(0.9);opacity:0.5} 50%{transform:scale(1.1);opacity:1} }
.hsc-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem; font-weight: 900;
  color: #f0c040;
  text-shadow: 0 0 20px rgba(240,192,64,0.8);
  line-height: 1;
}
.hsc-num span { font-size: 1.3rem; }
.hsc-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  color: rgba(232,220,192,0.6);
  letter-spacing: 2px; text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeIn 1s 2.5s forwards; z-index: 6;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, #f0c040, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%{transform:scaleY(0);transform-origin:top;opacity:1}
  45%{transform:scaleY(1);transform-origin:top;opacity:1}
  55%{transform:scaleY(1);transform-origin:bottom;opacity:1}
  100%{transform:scaleY(0);transform-origin:bottom;opacity:0}
}
.scroll-indicator span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem; font-weight: 700;
  letter-spacing: 5px; color: rgba(240,192,64,0.6);
}

@media(max-width:1100px){ .hero-3d-left,.hero-3d-right { display: none; } }
@media(max-width:768px) { .hero-logo-img { width: min(220px,70vw); } .hero-title-3d::before,.ht-layer{font-size:clamp(2.5rem,12vw,5rem);} }

.loader-logo-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.loader-logo-glow {
  position: absolute; inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.4) 0%, transparent 70%);
  animation: loaderGlowPulse 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes loaderGlowPulse { 0%,100%{transform:scale(0.8);opacity:0.5} 50%{transform:scale(1.2);opacity:1} }
@keyframes loaderLogoFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-10px) scale(1.03)} }

/* Hero icon logo */
.hero-icon-logo-wrap {
  position: relative;
  margin-bottom: 0.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
}
.hero-icon-glow {
  position: absolute; inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.35) 0%, transparent 70%);
  animation: logoPulse 3s ease-in-out infinite;
  pointer-events: none;
}
.hero-icon-img {
  width: min(160px, 30vw);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(201,162,39,0.9)) drop-shadow(0 0 60px rgba(201,162,39,0.5));
  animation: logoFloat 5s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — FULL
══════════════════════════════════════════ */

/* Hide cursor on touch devices */
@media (hover: none) {
  .cursor, .cursor-ring { display: none !important; }
  body { cursor: auto !important; }
  * { cursor: auto !important; }
}

@media (max-width: 1100px) {
  .hero-3d-left, .hero-3d-right { display: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-contact-icons { display: none; }

  /* Mobile hamburger hint */
  nav { padding: 0 4%; }
  .nav-cta { font-size: 0.6rem; padding: 0.45rem 1rem; letter-spacing: 1px; }
}

@media (max-width: 768px) {
  /* ── NAV ── */
  nav { height: 60px; }
  .nav-logo img { height: 28px !important; }

  /* ── HERO ── */
  .hero { padding: 80px 4% 100px; min-height: 100svh; }
  .hero-tagline {
    font-size: 0.55rem;
    letter-spacing: 5px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 1.5rem;
  }
  .hero-tagline::before, .hero-tagline::after { margin: 0 0.5rem; }
  .hero-icon-img { width: min(110px, 28vw) !important; }
  .hero-logo-img { width: min(300px, 82vw) !important; }
  .hero-subtitle {
    font-size: clamp(0.8rem, 3.5vw, 1.1rem);
    letter-spacing: 3px;
  }
  .hero-divider { width: 200px; }
  .hero-cta-group { flex-direction: column; align-items: center; gap: 0.9rem; }
  .btn-primary, .btn-ghost { padding: 0.9rem 2rem; font-size: 0.65rem; }

  /* ── STATS ── */
  .stats-strip {
    flex-wrap: wrap;
    padding: 1.5rem 4%;
    gap: 0;
  }
  .stat-item {
    flex: 0 0 50%;
    max-width: 50%;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem;
  }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--glass-border); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(3) { border-right: 1px solid var(--glass-border); }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.6rem; }

  /* ── SERVICES ── */
  .services { padding: 5rem 4%; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 2rem 1.5rem; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }

  /* ── PROCESS ── */
  .process { padding: 5rem 4%; }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .process-steps::before { display: none; }

  /* ── ABOUT ── */
  .about { padding: 5rem 4%; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { display: none; }
  .features-list { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  /* ── TESTIMONIALS ── */
  .testimonials { padding: 5rem 4%; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* ── CTA ── */
  .cta-section { padding: 5rem 4%; }
  .cta-glass { padding: 3rem 1.8rem; }
  .cta-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .cta-sub { font-size: 0.95rem; letter-spacing: 1px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 0.9rem; }

  /* ── FOOTER ── */
  footer { padding: 4rem 4% 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom {
    flex-direction: column; text-align: center; gap: 0.5rem;
  }

  /* ── FLOAT BAR ── */
  .float-social-bar {
    left: auto; right: 0; top: auto; bottom: 0;
    flex-direction: row;
    transform: none !important;
    width: 100%;
    animation: slideUpBar 0.8s 2s both !important;
    z-index: 5000;
  }
  @keyframes slideUpBar { from{transform:translateY(100%)} to{transform:translateY(0)} }
  .float-social-btn {
    width: 25% !important; height: 52px;
    border-radius: 8px 8px 0 0 !important;
    border-right: none !important;
    border-top: 1px solid transparent !important;
    flex: 1; justify-content: center;
  }
  .float-social-btn:hover { width: 25% !important; }
  .float-label { display: none !important; }
  .float-social-btn svg { margin-left: 0 !important; }
}

@media (max-width: 480px) {
  .hero-tagline { font-size: 0.5rem; letter-spacing: 4px; }
  .hero-subtitle { font-size: 0.75rem; letter-spacing: 2px; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .features-list { grid-template-columns: 1fr; }
  .section-eyebrow { font-size: 0.6rem; letter-spacing: 4px; }
  .services-grid { grid-template-columns: 1fr; }
  .card-title { font-size: 1.1rem; }
  .stat-num { font-size: 1.4rem; }
}

/* Fix hologram rings on mobile */
@media (max-width: 768px) {
  .hologram-ring.ring2 { width: 300px; height: 300px; }
  .hologram-ring.ring3 { width: 420px; height: 420px; }
}

/* Prevent horizontal overflow everywhere */
* { max-width: 100%; }
a, button { pointer-events: auto !important; }
img { max-width: 100%; height: auto; }

/* Service card images */
.card-img-wrap {
  position: relative;
  width: calc(100% + 5rem);
  margin: -2.5rem -2.5rem 2rem -2.5rem;
  height: 200px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
  display: block;
}
.service-card:hover .card-img { transform: scale(1.08); }
.card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,8,0) 0%,
    rgba(5,5,8,0.3) 60%,
    rgba(5,5,8,0.9) 100%
  );
  pointer-events: none;
}
/* Gold scan line on hover */
.card-img-wrap::after {
  content: '';
  position: absolute; top: -100%; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240,192,64,0.8), transparent);
  transition: top 0.5s ease;
  pointer-events: none;
}
.service-card:hover .card-img-wrap::after { top: 110%; }
.card-img-badge {
  position: absolute; top: 1rem; left: 1.2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-bright);
  background: rgba(5,5,8,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  text-shadow: 0 0 10px rgba(240,192,64,0.6);
}
@media(max-width: 768px) {
  .card-img-wrap {
    width: calc(100% + 3rem);
    margin: -2rem -1.5rem 1.5rem -1.5rem;
    height: 170px;
  }
}

/* ══════════════════════════════════════════
   ABOUT / MISSION — PROFESSIONAL REDESIGN
══════════════════════════════════════════ */
.about {
  padding: 8rem 5%;
  position: relative;
  overflow: hidden;
}

/* Floating background particles */
.about-bg-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.about-bg-particles span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.15), transparent);
  animation: particleDrift linear infinite;
}
.about-bg-particles span:nth-child(1){width:200px;height:200px;top:10%;left:5%;animation-duration:18s;animation-delay:0s;}
.about-bg-particles span:nth-child(2){width:120px;height:120px;top:60%;left:15%;animation-duration:22s;animation-delay:3s;}
.about-bg-particles span:nth-child(3){width:80px;height:80px;top:30%;right:10%;animation-duration:15s;animation-delay:1s;}
.about-bg-particles span:nth-child(4){width:160px;height:160px;top:75%;right:20%;animation-duration:25s;animation-delay:5s;}
.about-bg-particles span:nth-child(5){width:60px;height:60px;top:50%;left:50%;animation-duration:12s;animation-delay:2s;}
.about-bg-particles span:nth-child(6){width:100px;height:100px;top:20%;right:35%;animation-duration:20s;animation-delay:7s;}
.about-bg-particles span:nth-child(7){width:140px;height:140px;top:80%;left:40%;animation-duration:17s;animation-delay:4s;}
.about-bg-particles span:nth-child(8){width:90px;height:90px;top:5%;left:55%;animation-duration:28s;animation-delay:9s;}
@keyframes particleDrift {
  0%{transform:translateY(0) scale(1);opacity:0}
  10%{opacity:1}
  90%{opacity:1}
  100%{transform:translateY(-80px) scale(1.2);opacity:0}
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative; z-index: 1;
}

/* ── Visual (Left) ── */
.about-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  display: flex; align-items: center; justify-content: center;
}

/* Decorative corner brackets */
.mission-frame-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(201,162,39,0.15);
  pointer-events: none;
}
.ring-a { inset: -10px; animation: frameSpin 40s linear infinite; }
.ring-b { inset: -24px; border-style: dotted; border-color: rgba(201,162,39,0.08); animation: frameSpin 60s linear infinite reverse; }
@keyframes frameSpin { from{transform:rotate(0)} to{transform:rotate(360deg)} }

.mission-frame-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: rgba(201,162,39,0.5);
  border-style: solid;
  pointer-events: none;
}
.c1{top:8px;left:8px;border-width:2px 0 0 2px;}
.c2{top:8px;right:8px;border-width:2px 2px 0 0;}
.c3{bottom:8px;left:8px;border-width:0 0 2px 2px;}
.c4{bottom:8px;right:8px;border-width:0 2px 2px 0;}

#missionCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.mission-center-orb {
  position: absolute;
  width: 30%; height: 30%;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.mission-orb-glow {
  position: absolute; inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,192,64,0.45) 0%, rgba(201,162,39,0.18) 40%, transparent 70%);
  animation: missionGlowPulse 3s ease-in-out infinite;
}
.mission-orb-glow-2 {
  inset: -55px;
  background: radial-gradient(circle, rgba(240,192,64,0.12) 0%, transparent 70%);
  animation: missionGlowPulse 4.5s ease-in-out infinite reverse;
}
@keyframes missionGlowPulse {
  0%,100%{transform:scale(0.9);opacity:0.6} 50%{transform:scale(1.25);opacity:1}
}
.mission-logo-center {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(35,24,0,0.96), rgba(5,5,8,0.98));
  border: 1px solid rgba(201,162,39,0.45);
  box-shadow: 0 0 30px rgba(240,192,64,0.5), 0 0 70px rgba(201,162,39,0.25), inset 0 0 25px rgba(201,162,39,0.08);
  display: flex; align-items: center; justify-content: center;
  animation: orbBreath 4s ease-in-out infinite;
  overflow: hidden;
}
@keyframes orbBreath { 0%,100%{transform:scale(1)} 50%{transform:scale(1.07)} }
.mission-logo-img {
  width: 72%; height: 72%; object-fit: contain;
  animation: logoGlow 3s ease-in-out infinite;
}
@keyframes logoGlow {
  0%,100%{filter:drop-shadow(0 0 8px rgba(240,192,64,0.8)) drop-shadow(0 0 20px rgba(201,162,39,0.5))}
  50%{filter:drop-shadow(0 0 18px rgba(255,224,102,1)) drop-shadow(0 0 45px rgba(240,192,64,0.8))}
}

/* Floating data chips */
.mission-chip {
  position: absolute;
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(5,5,8,0.8);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  color: #f0c040; letter-spacing: 1px;
  backdrop-filter: blur(12px);
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 10px rgba(201,162,39,0.1);
  white-space: nowrap;
}
.chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #f0c040;
  box-shadow: 0 0 6px currentColor;
  flex-shrink: 0;
  animation: chipDot 2s ease-in-out infinite;
}
@keyframes chipDot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:0.7} }
.chip-1 { top: 8%; right: 2%; animation: chipFloat1 6s ease-in-out infinite; }
.chip-2 { bottom: 18%; left: 0; animation: chipFloat2 7s ease-in-out infinite; }
.chip-3 { bottom: 5%; right: 8%; animation: chipFloat3 5.5s ease-in-out infinite; }
@keyframes chipFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes chipFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes chipFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── Content (Right) ── */
.about-content-inner {
  display: flex; flex-direction: column; gap: 0;
}
.about-title { line-height: 1.15 !important; }
.about-title-accent {
  background: linear-gradient(135deg, #ffe066, #f0c040, #c9a227);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(240,192,64,0.4));
}
.about-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, #f0c040, transparent);
  margin: 1.5rem 0;
  box-shadow: 0 0 10px rgba(240,192,64,0.5);
}
.about-para {
  font-size: 1rem; font-weight: 400;
  color: rgba(232,220,192,0.72);
  line-height: 1.95;
  margin-bottom: 1rem;
}
.features-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin: 1.5rem 0 2rem;
}
.feature-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: rgba(201,162,39,0.04);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 6px;
  transition: all 0.35s;
  cursor: default;
}
.feature-item:hover {
  background: rgba(201,162,39,0.09);
  border-color: rgba(201,162,39,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 15px rgba(201,162,39,0.1);
}
.feature-icon-box {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 6px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.feature-item:hover .feature-icon-box {
  background: rgba(201,162,39,0.18);
  border-color: rgba(201,162,39,0.5);
  box-shadow: 0 0 12px rgba(201,162,39,0.3);
}
.feature-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: #f0c040; letter-spacing: 1px;
  margin-bottom: 0.1rem;
}
.feature-sub {
  font-size: 0.75rem; font-weight: 400;
  color: rgba(232,220,192,0.5);
  letter-spacing: 0.5px;
}
.about-cta-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
  border: 1px solid rgba(201,162,39,0.45);
  border-radius: 3px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #f0c040;
  text-decoration: none; cursor: none;
  transition: all 0.35s;
  align-self: flex-start;
  position: relative; overflow: hidden;
}
.about-cta-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240,192,64,0.08), transparent);
  transition: left 0.5s;
  transform: skewX(-20deg);
}
.about-cta-btn:hover { background: rgba(201,162,39,0.2); border-color: #f0c040; box-shadow: 0 0 30px rgba(201,162,39,0.25); transform: translateY(-2px); }
.about-cta-btn:hover::before { left: 150%; }
.about-cta-btn svg { transition: transform 0.3s; }
.about-cta-btn:hover svg { transform: translateX(5px); }
.about-cta-btn { cursor: pointer !important; }

@media(max-width:768px){
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 340px; margin: 0 auto; display: flex !important; }
  .chip-2 { left: -5px; font-size: 0.7rem; }
  .features-list { grid-template-columns: 1fr; }
  .about-cta-btn { align-self: center; }
}

/* Contact method cards in CTA */
.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0 0;
  text-align: left;
}
.contact-method-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
}
.contact-method-card::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240,192,64,0.06), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s;
}
.contact-method-card:hover { border-color: rgba(201,162,39,0.55); background: rgba(201,162,39,0.07); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,0.4), 0 0 20px rgba(201,162,39,0.1); }
.contact-method-card:hover::before { left: 150%; }
.cmc-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.em-bg  { background: rgba(201,162,39,0.15); color: #f0c040; border: 1px solid rgba(201,162,39,0.3); }
.wa-bg  { background: rgba(37,211,102,0.15); color: #4cde80; border: 1px solid rgba(37,211,102,0.3); }
.ig-bg  { background: rgba(225,48,108,0.15); color: #f478aa; border: 1px solid rgba(225,48,108,0.3); }
.fb-bg  { background: rgba(24,119,242,0.15); color: #5aadff; border: 1px solid rgba(24,119,242,0.3); }
.contact-method-card:hover .cmc-icon { transform: scale(1.1); box-shadow: 0 0 15px currentColor; }
.cmc-info { flex: 1; }
.cmc-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(232,220,192,0.5);
  margin-bottom: 0.2rem;
}
.cmc-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  color: #e8dcc0; letter-spacing: 0.5px;
}
.contact-method-card:hover .cmc-value { color: #f0c040; }
.cmc-arrow {
  font-size: 1.1rem;
  color: rgba(201,162,39,0.4);
  transition: all 0.3s;
  font-family: monospace;
}
.contact-method-card:hover .cmc-arrow { color: #f0c040; transform: translateX(4px); }
@media(max-width: 600px) {
  .contact-methods { grid-template-columns: 1fr; }
  .cta-glass { padding: 2.5rem 1.5rem; }
}

/* ===== merged block ===== */

/* ===== PROFESSIONAL REDESIGN UPGRADE ===== */
body{
background:
radial-gradient(circle at top left, rgba(201,162,39,0.15), transparent 30%),
radial-gradient(circle at bottom right, rgba(240,192,64,0.12), transparent 35%),
#050508 !important;
}

.hero{
position:relative;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(135deg, rgba(255,255,255,0.03), transparent 40%);
pointer-events:none;
}

.section-title,
.cta-title,
.showcase-title{
letter-spacing:2px;
}

.service-card,
.testimonial-card,
.proc-card,
.cta-glass{
box-shadow:0 15px 50px rgba(0,0,0,0.45);
}

.service-card:hover{
transform:translateY(-12px) scale(1.02);
}

.nav-logo,
.footer-brand-name{
filter:drop-shadow(0 0 18px rgba(240,192,64,0.4));
}

.btn-primary{
border-radius:50px !important;
padding:1rem 2.5rem !important;
}

.btn-ghost{
border-radius:50px !important;
}

.hero-subtitle{
max-width:900px;
line-height:1.7;
}

.professional-banner{
padding:22px;
margin:40px auto 0;
max-width:1100px;
border:1px solid rgba(240,192,64,0.25);
background:linear-gradient(135deg, rgba(201,162,39,0.08), rgba(255,255,255,0.02));
backdrop-filter:blur(20px);
border-radius:18px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.prof-box{
padding:22px;
border-radius:16px;
background:rgba(255,255,255,0.02);
border:1px solid rgba(255,255,255,0.06);
transition:0.4s ease;
}

.prof-box:hover{
transform:translateY(-8px);
border-color:rgba(240,192,64,0.4);
box-shadow:0 15px 40px rgba(201,162,39,0.15);
}

.prof-box h3{
font-family:'Orbitron',sans-serif;
font-size:1rem;
color:#ffe066;
margin-bottom:10px;
letter-spacing:2px;
}

.prof-box p{
color:rgba(232,220,192,0.75);
line-height:1.8;
font-size:0.95rem;
}

footer{
background:linear-gradient(180deg,#07070b,#020203);
}

@media(max-width:768px){
.hero{
padding-top:140px !important;
}
.professional-banner{
grid-template-columns:1fr;
}
}

/* ══════════════════════════════════════════
   PREMIUM SERVICES — IMAGE SLIDER
══════════════════════════════════════════ */
.card-img-wrap { touch-action: pan-y; }

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.23,1,0.32,1);
  will-change: transform;
}
.slider-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(5,5,8,0.55);
  border: 1px solid rgba(201,162,39,0.35);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s, border-color 0.3s, transform 0.15s;
}
.card-img-wrap:hover .slider-arrow { opacity: 1; }
.slider-arrow:hover { background: rgba(201,162,39,0.3); border-color: var(--gold-bright); }
.slider-arrow:active { transform: translateY(-50%) scale(0.88); }
.slider-arrow.prev { left: 0.6rem; }
.slider-arrow.next { right: 0.6rem; }
.slider-arrow svg { width: 13px; height: 13px; }
.slider-arrow svg path { stroke: var(--gold-light); }

.slider-dots {
  position: absolute;
  bottom: 0.7rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.4rem;
  z-index: 6;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(232,220,192,0.4);
  cursor: none;
  transition: all 0.3s;
  border: none; padding: 0;
}
.slider-dot.active {
  background: var(--gold-bright);
  width: 16px; border-radius: 3px;
  box-shadow: 0 0 8px rgba(240,192,64,0.6);
}

.slider-count {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: rgba(5,5,8,0.6);
  border: 1px solid rgba(201,162,39,0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  z-index: 6;
}

@media(max-width:768px) {
  .slider-arrow { opacity: 1; width: 26px; height: 26px; }
}


/* ══════════════════════════════════════════
   SLIDER CAPTION — synced sliding label
══════════════════════════════════════════ */
.slider-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 0.75rem;
  z-index: 6;
  height: 18px;
  overflow: hidden;
  pointer-events: none;
}
.slider-caption-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.55s cubic-bezier(0.23,1,0.32,1);
}
.caption-item {
  height: 18px;
  line-height: 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #FFFFFFDD;
  text-shadow: 0 1px 6px rgba(0,0,0,0.65);
  white-space: nowrap;
}

@media(max-width:768px) {
  .slider-caption { left: 1rem; bottom: 0.6rem; }
}

/* ===== merged block ===== */

.float-social-bar {
  position: fixed;
  left: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 5000;
  display: flex; flex-direction: column; gap: 4px;
  animation: slideInBar 0.8s 2s both;
}
@keyframes slideInBar { from{transform:translateY(-50%) translateX(-100%)} to{transform:translateY(-50%) translateX(0)} }

.float-social-btn {
  display: flex; align-items: center;
  width: 48px; height: 48px;
  border-radius: 0 8px 8px 0;
  text-decoration: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.23,1,0.32,1);
  backdrop-filter: blur(12px);
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.float-social-btn:hover { width: 200px; }

/* Colors per platform */
.float-social-btn         { background: rgba(24,119,242,0.18); border-color: rgba(24,119,242,0.4); color: #5aadff; }
.float-social-btn.ig      { background: rgba(225,48,108,0.18); border-color: rgba(225,48,108,0.4); color: #f478aa; }
.float-social-btn.wa      { background: rgba(37,211,102,0.18); border-color: rgba(37,211,102,0.4); color: #4cde80; }
.float-social-btn.em      { background: rgba(201,162,39,0.18); border-color: rgba(201,162,39,0.4); color: var(--gold-light); }

.float-social-btn:hover   { background: rgba(24,119,242,0.32); box-shadow: 4px 0 20px rgba(24,119,242,0.3); }
.float-social-btn.ig:hover{ background: rgba(225,48,108,0.32); box-shadow: 4px 0 20px rgba(225,48,108,0.3); }
.float-social-btn.wa:hover{ background: rgba(37,211,102,0.32); box-shadow: 4px 0 20px rgba(37,211,102,0.3); }
.float-social-btn.em:hover{ background: rgba(201,162,39,0.3);  box-shadow: 4px 0 20px rgba(201,162,39,0.3); }

.float-social-btn svg {
  width: 20px; height: 20px;
  min-width: 20px;
  margin-left: 14px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.float-social-btn:hover svg { transform: scale(1.15); }

.float-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  margin-left: 10px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s 0.1s, transform 0.25s 0.1s;
}
.float-social-btn:hover .float-label { opacity: 1; transform: translateX(0); }

/* Pulse animation on the icon area */
.float-social-btn::after {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 48px; height: 100%;
  border-radius: 0 6px 6px 0;
  animation: floatPulse 3s ease-in-out infinite;
}
.float-social-btn       ::after { box-shadow: inset 0 0 0 1px rgba(24,119,242,0.3); }
.float-social-btn.ig    ::after { box-shadow: inset 0 0 0 1px rgba(225,48,108,0.3); }
.float-social-btn.wa    ::after { box-shadow: inset 0 0 0 1px rgba(37,211,102,0.3); }
.float-social-btn.em    ::after { box-shadow: inset 0 0 0 1px rgba(201,162,39,0.3); }
@keyframes floatPulse {
  0%,100%{opacity:0} 50%{opacity:1}
}

@media(max-width:768px) {
  .float-social-bar {
    left: auto; right: 0; top: auto; bottom: 0;
    flex-direction: row;
    transform: none;
    width: 100%;
    animation: slideUpBar 0.8s 2s both;
  }
  @keyframes slideUpBar { from{transform:translateY(100%)} to{transform:translateY(0)} }
  .float-social-btn {
    width: 25%; height: 52px;
    border-radius: 8px 8px 0 0;
    border-right: none; border-top: 1px solid transparent;
    flex: 1;
    justify-content: center;
  }
  .float-social-btn:hover { width: 25%; }
  .float-label { display: none; }
  .float-social-btn svg { margin-left: 0; }
}

/* ===== merged block ===== */

/* ---------- Core glass tokens ---------- */
:root{
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.28);
  --glass-border-bright: rgba(255,255,255,0.55);
  --glass-blur: blur(28px) saturate(180%);
  --glass-sheen: linear-gradient(165deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.08) 35%, rgba(255,255,255,0.02) 60%, rgba(255,255,255,0.05) 100%);
  --glass-hi: inset 0 1px 1px rgba(255,255,255,0.55), inset 0 -1px 1px rgba(0,0,0,0.18);
  --glass-shadow: 0 12px 40px rgba(0,0,0,0.40), 0 2px 8px rgba(0,0,0,0.25);
}

/* extra ambient color so the glass has something colorful to bend/refract */
.orb3{ background: radial-gradient(circle, rgba(120,170,255,0.10) 0%, transparent 70%) !important; }

/* ---------- Navigation bar ---------- */
nav{
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)), rgba(8,9,14,0.55);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 8px 30px rgba(0,0,0,0.25);
}

/* ---------- Buttons → glass pills ---------- */
.btn-primary{
  background: var(--glass-sheen), linear-gradient(135deg, rgba(201,162,39,0.85), rgba(240,192,64,0.75));
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: var(--glass-hi), 0 10px 34px rgba(201,162,39,0.35), 0 0 50px rgba(201,162,39,0.18);
  color: #1a1304;
}
.btn-primary:hover{
  box-shadow: var(--glass-hi), 0 16px 46px rgba(201,162,39,0.5), 0 0 70px rgba(240,192,64,0.3);
}
.btn-ghost{
  background: var(--glass-sheen), rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-hi);
}
.btn-ghost:hover{
  background: var(--glass-sheen), rgba(255,255,255,0.10);
  border-color: var(--glass-border-bright);
}
.nav-cta{
  background: var(--glass-sheen), rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: var(--glass-hi);
  border-radius: 100px;
}
.nav-cta:hover::before{ opacity: 0.85; }
.about-cta-btn{
  background: var(--glass-sheen), rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 100px;
  box-shadow: var(--glass-hi);
}
.about-cta-btn:hover{ background: var(--glass-sheen), rgba(255,255,255,0.12); }

/* ---------- Service cards / testimonials / proc-card → frosted glass panels ---------- */
.service-card,
.testimonial-card{
  background: var(--glass-sheen), var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 26px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-hi), var(--glass-shadow);
}
.service-card:hover,
.testimonial-card:hover{
  border-color: var(--glass-border-bright);
  background: var(--glass-sheen), rgba(255,255,255,0.12);
  box-shadow: var(--glass-hi), 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,162,39,0.12);
}
.card-img-wrap{ border-radius: 20px 20px 0 0; }
.card-img-badge,
.slider-count{
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  box-shadow: var(--glass-hi);
}
.slider-arrow{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}
.slider-arrow:hover{ background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.6); }

/* ---------- Process step nodes ---------- */
.step-node{
  background: var(--glass-sheen), rgba(255,255,255,0.08);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-hi), 0 10px 30px rgba(0,0,0,0.3);
}
.proc-card:hover .step-node{
  background: var(--glass-sheen), rgba(255,255,255,0.14);
  border-color: var(--glass-border-bright);
  box-shadow: var(--glass-hi), 0 14px 40px rgba(201,162,39,0.25);
}

/* ---------- About: feature items, mission center ---------- */
.feature-item{
  background: var(--glass-sheen), rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--glass-hi);
}
.feature-item:hover{
  background: var(--glass-sheen), rgba(255,255,255,0.10);
  border-color: var(--glass-border-bright);
}
.feature-icon-box{
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.feature-item:hover .feature-icon-box{ background: rgba(255,255,255,0.18); }
.mission-chip{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: var(--glass-hi), 0 6px 20px rgba(0,0,0,0.3);
}
.mission-logo-center{
  background: radial-gradient(circle at 38% 32%, rgba(255,255,255,0.16), rgba(20,16,8,0.55) 60%, rgba(5,5,8,0.85));
  border: 1px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(6px);
  box-shadow: var(--glass-hi), 0 0 40px rgba(240,192,64,0.35), 0 0 80px rgba(201,162,39,0.18);
}

/* ---------- CTA glass panel ---------- */
.cta-glass{
  background: var(--glass-sheen), linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(10,10,14,0.55) 55%, rgba(255,255,255,0.05) 100%);
  border: 1px solid var(--glass-border-bright);
  border-radius: 32px;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow: var(--glass-hi), 0 30px 80px rgba(0,0,0,0.45);
}
.contact-method-card{
  background: var(--glass-sheen), rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-hi);
}
.contact-method-card:hover{
  background: var(--glass-sheen), rgba(255,255,255,0.11);
  border-color: var(--glass-border-bright);
}
.cmc-icon{ backdrop-filter: blur(10px) saturate(160%); border-radius: 14px; }

/* ---------- Professional banner boxes ---------- */
.professional-banner{
  background: var(--glass-sheen), rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  box-shadow: var(--glass-hi), var(--glass-shadow);
}
.prof-box{
  background: var(--glass-sheen), rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  box-shadow: var(--glass-hi);
}
.prof-box:hover{
  background: var(--glass-sheen), rgba(255,255,255,0.10);
  border-color: var(--glass-border-bright);
}

/* ---------- Stats strip ---------- */
.stats-strip{
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)), rgba(8,9,14,0.45);
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

/* ---------- Footer & small icon chips → glass ---------- */
footer{
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(6,7,11,0.92));
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border-bright);
}
.contact-icon-wrap,
.nav-icon-btn,
.cmc-icon{ backdrop-filter: blur(12px) saturate(160%); }

.float-social-btn{ backdrop-filter: blur(18px) saturate(180%); -webkit-backdrop-filter: blur(18px) saturate(180%); }
.float-social-btn::after{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.35); }

/* ---------- Hero tagline pill ---------- */
.hero-tagline{
  background: var(--glass-sheen), rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(170%);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  border-radius: 100px;
  box-shadow: var(--glass-hi);
}

/* ---------- Nav links → iOS segmented glass pills ---------- */
.nav-links{
  gap: 0.3rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 5px;
  backdrop-filter: blur(10px);
}
.nav-links li{ display:flex; }
.nav-links a{
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  letter-spacing: 2px;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.nav-links a::after{ display:none; content:none; }
.nav-links a:hover{
  background: rgba(255,255,255,0.10);
  color: var(--text);
}
.nav-links a.nav-link-active{
  background: var(--glass-sheen), rgba(255,255,255,0.16);
  border: 1px solid var(--glass-border-bright);
  color: var(--gold-bright);
  box-shadow: var(--glass-hi), 0 4px 14px rgba(0,0,0,0.25);
}

/* ---------- Back to top button ---------- */
.back-to-top{
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass-sheen), rgba(255,255,255,0.10);
  border: 1px solid var(--glass-border-bright);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-hi), 0 10px 30px rgba(0,0,0,0.4);
  color: var(--gold-bright);
  cursor: none;
  z-index: 4000;
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.23,1,0.32,1), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.back-to-top svg{ position: relative; z-index: 1; }
.back-to-top.visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover{
  background: var(--glass-sheen), rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.7);
  box-shadow: var(--glass-hi), 0 14px 40px rgba(201,162,39,0.25);
  transform: translateY(-3px) scale(1.05);
}
@media(hover:none){ .back-to-top{ cursor: pointer; } }
@media(max-width:768px){
  .back-to-top{ right: 1rem; bottom: 70px; width: 44px; height: 44px; }
}

/* ---------- Cursor ring → glass ---------- */
.cursor{
  background: var(--glass-sheen), rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(10px) saturate(170%);
}

@media(max-width:768px){
  .service-card, .testimonial-card{ border-radius: 20px; }
  .cta-glass{ border-radius: 24px; }
  .professional-banner{ border-radius: 22px; }
}

/* ══ HAMBURGER BUTTON ══ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
  z-index: 1100;
  flex-shrink: 0;
}
.hamburger:hover {
  background: rgba(240,192,64,0.15);
  border-color: var(--glass-border-bright);
}
.ham-line {
  display: block;
  width: 20px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), opacity 0.25s;
  transform-origin: center;
}
.hamburger.open .ham-line:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2){ opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ══ MOBILE MENU OVERLAY ══ */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(5,5,8,0.97);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 80px 2rem 120px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.23,1,0.32,1);
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  width: 100%;
  max-width: 320px;
}
.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  transition: color 0.3s;
  position: relative;
}
.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 30px; height: 1px;
  background: var(--gold-light);
  transition: transform 0.3s ease;
}
.mobile-nav-link:hover { color: var(--gold-bright); }
.mobile-nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

.mobile-social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.25rem;
}
.mobile-cta {
  margin-top: 0.5rem;
  padding: 0.9rem 2.5rem !important;
  font-size: 0.72rem !important;
  letter-spacing: 2px !important;
  cursor: pointer !important;
}

/* ══ SHOW HAMBURGER ══ */
@media(max-width: 900px) {
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}
@media(max-width: 768px) {
  body.menu-open { overflow: hidden; }
}
@media(max-width: 480px) {
  .hero-tagline::before, .hero-tagline::after { display: none; }
  .footer-brand-name { letter-spacing: 3px; }
}
/* ══════════════════════════════════════════
   PORTFOLIO SHOWCASE — ROUND CAROUSEL
   ══════════════════════════════════════════ */
.showcase-header { text-align: center; max-width: 640px; margin: 5rem auto 3rem; }
.showcase-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin: 0.75rem 0;
}
.round-carousel-wrap {
  --carousel-scale: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.round-carousel-scene {
  width: 300px;
  height: 381px;
  transform: scale(var(--carousel-scale));
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  touch-action: none;
  cursor: grab;
}
.round-carousel-scene:active { cursor: grabbing; }
.round-carousel-ring {
  position: relative;
  width: 300px;
  height: 381px;
  transform-style: preserve-3d;
}
.round-carousel-tilt {
  transform-style: preserve-3d;
}
.round-carousel-face {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,162,39,0.25);
}
@media (max-width: 900px) {
  .round-carousel-wrap { height: 360px; }
  .round-carousel-scene { --carousel-scale: 0.78; }
}
@media (max-width: 560px) {
  .round-carousel-wrap { height: 300px; }
  .round-carousel-scene { --carousel-scale: 0.6; }
}

/* ---------------------------------------------------------------------- */
/* Mesh Heading — WebGL2 warpable-mesh gold text hover effect applied to   */
/* hero/section titles. See mesh-heading.js.                              */
/* ---------------------------------------------------------------------- */
.mesh-heading {
  position: relative;
}
.mesh-heading-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
}
/* Only hide the real text once a canvas has actually mounted — if JS fails
   or is disabled, the heading stays fully visible and accessible. */
.mesh-heading.mh-active .mesh-heading-text {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .mesh-heading.mh-active .mesh-heading-text {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .mesh-heading.mh-active .mesh-heading-canvas {
    display: none;
  }
}

/* ---------------------------------------------------------------------- */
/* Text Wave Marquee — looping service list scrolling along a sine wave.  */
/* See text-wave-marquee.js.                                              */
/* ---------------------------------------------------------------------- */
.wave-marquee {
  width: 100%;
  height: 64px;
  margin: 1.75rem 0 0;
  overflow: hidden;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.wave-marquee svg text {
  fill: var(--gold-light);
}
@media (max-width: 720px) {
  .wave-marquee {
    height: 48px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wave-marquee { display: none; }
}
