/* ═══════════════════════════════════════════════════════
   AADHIL SIGNS — Premium Signage Website
   Design: Bold black/white with electric purple accents
   Font: Syne (display) + DM Sans (body)
   ═══════════════════════════════════════════════════════ */

/* ── RESET & ROOT VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:       #7C3AED;
  --purple-light: #A78BFA;
  --purple-dark:  #4C1D95;
  --purple-glow:  rgba(124, 58, 237, 0.35);
  --black:        #080808;
  --dark:         #0F0F0F;
  --dark-2:       #181818;
  --dark-3:       #222222;
  --white:        #F9F9F9;
  --grey:         #888888;
  --grey-light:   #C8C8C8;
  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition:   0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:       16px;
  --radius-sm:    8px;
  --radius-lg:    28px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 4px; }

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--purple);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-trail {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--purple-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, opacity 0.3s;
  opacity: 0.5;
}
body:hover .cursor { opacity: 1; }
.cursor.hover { width: 20px; height: 20px; background: var(--purple-light); }
.cursor-trail.hover { width: 54px; height: 54px; opacity: 0.25; }

/* ── NOISE OVERLAY ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ── NAVIGATION ── */
/* GLASS NAVBAR */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;

  padding: 18px 40px;

  /* GLASS EFFECT */
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.65),
    rgba(10, 10, 10, 0.15)
  );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(124, 58, 237, 0.15);

  transition: all 0.4s ease;
}

/* SCROLL STATE (slightly stronger) */
.nav.scrolled {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.92),
    rgba(10, 10, 10, 0.55)
  );

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  padding: 14px 40px;

  border-bottom: 1px solid rgba(124, 58, 237, 0.25);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: clamp(42px, 5vw, 64px);  /* bigger but responsive */
  width: auto;
  object-fit: contain;
}
.logo-fallback {
  display: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-fallback span { color: var(--purple); }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-light);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--purple-light); }

.nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 0 24px var(--purple-glow);
  transition: box-shadow var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.6) !important;
  transform: translateY(-1px) !important;
  background: rgba(255,255,255,0.06) !important;
}
.nav-cta:hover { background: var(--purple-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── SECTION BASICS ── */
.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.section--dark { background: var(--dark); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(124, 58, 237, 0.10);
  border: 1px solid rgba(124, 58, 237, 0.28);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-header { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--white);
}
.section-title em {
  font-style: normal;
  color: var(--purple-light);
  position: relative;
}
.section-sub {
  margin-top: 16px;
  color: var(--grey);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── REVEAL ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  min-height: 52px;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 0 30px var(--purple-glow);
}
.btn-primary:hover {
  background: var(--purple-light);
  box-shadow: 0 0 50px rgba(167, 139, 250, 0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--purple-light);
  color: var(--purple-light);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  filter: saturate(0.7) brightness(0.35);
}
.hero-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(76,29,149,0.25) 50%,
    rgba(10,10,10,0.9) 100%
  );
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(167,139,250,0.15) 0%, transparent 70%);
  bottom: 0; right: 10%;
  animation-delay: -4s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-30px) translateX(20px); }
  66% { transform: translateY(20px) translateX(-15px); }
}

/* Scanline */
.scanline {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  top: 0;
  animation: scanDown 6s linear infinite;
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}
@keyframes scanDown {
  0% { top: 0; opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { top: 100%; opacity: 0; }
}

/* Floating text elements */
.float-el {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  color: rgba(124, 58, 237, 0.18);
  pointer-events: none;
  z-index: 1;
  letter-spacing: 0.1em;
  animation: floatEl 15s ease-in-out infinite;
}
.float-el-1 { font-size: 4rem; top: 12%; left: 5%; animation-delay: 0s; }
.float-el-2 { font-size: 3rem; top: 70%; left: 8%; animation-delay: -3s; }
.float-el-3 { font-size: 6rem; top: 20%; right: 8%; animation-delay: -6s; color: rgba(167,139,250,0.1); }
.float-el-4 { font-size: 2.5rem; bottom: 15%; right: 5%; animation-delay: -9s; }
@keyframes floatEl {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
  50% { transform: translateY(-20px) rotate(3deg); opacity: 1; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  padding-top: 80px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
  50% { box-shadow: 0 0 0 8px rgba(124,58,237,0); }
}
.hero-title {
  font-family: 'Syne', sans-serif; /* kept as original */
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.title-line { display: block; }
.title-line--accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--purple-light);
  text-shadow: 0 0 60px rgba(124,58,237,0.4);
  animation: glowText 4s ease-in-out infinite;
}
@keyframes glowText {
  0%, 100% { text-shadow: 0 0 40px rgba(124,58,237,0.3); }
  50% { text-shadow: 0 0 80px rgba(167,139,250,0.6), 0 0 120px rgba(124,58,237,0.3); }
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(250,250,250,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--purple-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--grey);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  color: rgba(249,249,249,0.68);
  margin-bottom: 20px;
}
.about-text strong { color: var(--white); }
.mission-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 32px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius);
  padding: 24px;
}
.mission-icon {
  font-size: 1.5rem;
  color: var(--purple-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.mission-block strong { display: block; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple-light); margin-bottom: 8px; }
.mission-block p { color: rgba(250,250,250,0.65); font-size: 0.95rem; line-height: 1.65; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.value-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(124,58,237,0.15);
}
.value-icon {
  font-size: 1.4rem;
  color: var(--purple-light);
  margin-bottom: 12px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-card p { font-size: 0.875rem; color: var(--grey); line-height: 1.6; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  cursor: none;
}
.service-card:hover {
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 20px 60px rgba(124,58,237,0.12);
}
.service-card:hover .card-glow { opacity: 1; }
.service-icon {
  width: 48px; height: 48px;
  color: var(--purple-light);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p { font-size: 0.875rem; color: var(--grey); line-height: 1.7; }
.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(124,58,237,0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

/* 3D Tilt */
.tilt-card { transform-style: preserve-3d; }

/* ── EQUIPMENT ── */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.equip-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.equip-card:hover {
  border-color: var(--purple);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(124,58,237,0.15);
}
.equip-card--wide {
  grid-column: span 4;
  display: grid;
  grid-template-columns: auto auto 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.equip-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.equip-visual {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(76,29,149,0.3));
  border-radius: var(--radius-sm);
  border: 1px solid rgba(124,58,237,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.equip-shape {
  position: absolute;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(167,139,250,0.2), transparent 60%);
}
.equip-abbr {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--purple-light);
  position: relative;
  z-index: 1;
}
.equip-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.equip-card p { font-size: 0.875rem; color: var(--grey); line-height: 1.65; margin-bottom: 16px; }
.equip-caps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.equip-caps li {
  font-size: 0.8rem;
  color: rgba(250,250,250,0.5);
  padding-left: 16px;
  position: relative;
}
.equip-caps li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  color: var(--purple);
  top: 1px;
}

/* ── PROJECTS ── */
.project-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--grey-light);
  cursor: none;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--purple); color: var(--white); }
.filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  box-shadow: 0 0 20px var(--purple-glow);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), opacity 0.4s, transform 0.4s;
  cursor: none;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.4);
}
.project-card.hidden { opacity: 0; transform: scale(0.95); pointer-events: none; }
.project-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--dark-3);
  position: relative;
}
.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-img-wrap img { transform: scale(1.06); }
.project-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ph-color, #4C1D95), rgba(10,10,10,0.8));
  position: relative;
}
.project-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.05), transparent 60%);
}
.project-img-placeholder span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 16px;
}
.project-info { padding: 24px; }
.project-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(124,58,237,0.12);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.project-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.project-info p { font-size: 0.875rem; color: var(--grey); line-height: 1.6; }

/* ── TESTIMONIALS ── */
/* ── TESTIMONIALS STABLE SHUFFLE STACK - POLISHED ── */
.testimonials-track-wrap {
  position: relative;
  width: min(760px, 100%);
  height: 455px;
  margin: 0 auto;
  overflow: visible;
  perspective: 1400px;
}

.testimonials-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform: none !important;
  transition: none !important;
}

.testi-card {
  position: absolute;
  top: 55px;
  left: 50%;
  width: min(700px, 92vw);
  min-height: 330px;
  padding: 42px 42px 34px;
  border-radius: 30px;
  opacity: 0;
  pointer-events: none;
  transform-origin: top center;
  transform: translateX(-50%) scale(0.8);
  filter: blur(1px);
  border: 1px solid rgba(167,139,250,0.34);
  background:
    linear-gradient(135deg, rgba(118,65,220,0.95), rgba(25,24,33,1) 34%, rgba(11,11,14,1) 100%);
  box-shadow:
    0 34px 95px rgba(0,0,0,0.58),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
}

/* Hide text on background cards */
.testi-card:not(.active-card) .testi-stars,
.testi-card:not(.active-card) blockquote,
.testi-card:not(.active-card) .testi-author {
  opacity: 0;
  visibility: hidden;
}

/* Visible edge-only stacked cards */
.testi-card.stack-card-1 {
  opacity: 1;
  z-index: 9;
  filter: blur(0);
  transform: translateX(-50%) translateY(-28px) scale(0.95) rotate(-3deg);
  background: linear-gradient(135deg, #3b177b, #15151d 45%, #09090b);
}

.testi-card.stack-card-2 {
  opacity: 1;
  z-index: 8;
  filter: blur(0);
  transform: translateX(-50%) translateY(-55px) scale(0.9) rotate(4deg);
  background: linear-gradient(135deg, #2b105f, #121219 45%, #08080a);
}

.testi-card.stack-card-3 {
  opacity: 1;
  z-index: 7;
  filter: blur(0);
  transform: translateX(-50%) translateY(-80px) scale(0.85) rotate(-5deg);
  background: linear-gradient(135deg, #221047, #101016 45%, #070709);
}

.testi-card.stack-card-4 {
  opacity: 1;
  z-index: 6;
  filter: blur(0);
  transform: translateX(-50%) translateY(-102px) scale(0.8) rotate(5deg);
  background: linear-gradient(135deg, #190b34, #0d0d12 45%, #060607);
}

.testi-card.active-card {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
  filter: blur(0);
  transform: translateX(-50%) translateY(0) scale(1) rotate(0deg);
}

/* Text styling */
.testi-stars {
  display: inline-flex;
  color: #FBBF24;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.3);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.testi-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  line-height: 1.35;
  font-weight: 800;
  color: rgba(255,255,255,0.96);
  max-width: 620px;
  margin-bottom: 34px;
  letter-spacing: -0.03em;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.testi-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: white;
  box-shadow: 0 0 28px rgba(124,58,237,0.5);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: white;
  margin-bottom: 4px;
}

.testi-author span {
  display: block;
  font-size: 0.72rem;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Center buttons */
.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-top: 8px;
}

.testi-btn,
.testi-arrow {
  position: static !important;
  transform: none !important;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(167,139,250,0.55);
  background: radial-gradient(circle at 30% 25%, #A78BFA, #7C3AED 45%, #4C1D95);
  color: white;
  font-size: 2.35rem;
  font-weight: 900;
  z-index: 20;
  cursor: pointer;
  box-shadow:
    0 0 45px rgba(124,58,237,0.65),
    0 18px 45px rgba(0,0,0,0.45);
  transition: 0.3s ease;
}

.testi-btn:hover,
.testi-arrow:hover {
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow:
    0 0 75px rgba(167,139,250,0.95),
    0 24px 60px rgba(0,0,0,0.55);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.testi-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.25);
  transition: 0.3s ease;
}

.testi-dot.active {
  width: 34px;
  background: var(--purple-light);
}
/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250,250,250,0.65);
  margin: 20px 0 36px;
  max-width: 400px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple-light);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-item strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple-light); margin-bottom: 4px; }
.contact-item span { font-size: 0.9rem; color: var(--grey-light); }

/* Contact Form */
.contact-form {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group--full { grid-column: span 2; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.6);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group select { cursor: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,250,250,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
  max-width: 280px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul,
.footer-services ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--grey);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--purple-light); }
.footer-services li { font-size: 0.875rem; color: var(--grey); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.825rem; color: rgba(250,250,250,0.35); }
.footer-tagline { color: var(--purple-light) !important; font-weight: 600; }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--purple);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: none;
  z-index: 800;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--purple-glow);
}
.back-top.visible { opacity: 1; transform: none; }
.back-top:hover { box-shadow: 0 0 36px rgba(124,58,237,0.6); transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-card--wide { grid-column: span 2; grid-template-columns: auto auto 1fr; }
}
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .testi-card { min-width: calc(50% - 12px); }
}
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 32px;
    gap: 6px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(124,58,237,0.2);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; padding: 12px 16px; width: 100%; }

  .hero-content { padding: 0 24px; padding-top: 100px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }

  .section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .equip-card--wide { grid-column: span 1; grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .testi-card { min-width: calc(100% - 0px); }
  .testi-arrow--prev { left: 0; }
  .testi-arrow--next { right: 0; }

  .contact-form { grid-template-columns: 1fr; padding: 32px 24px; }
  .form-group--full { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .float-el { display: none; }
  .cursor, .cursor-trail { display: none; }
  body { cursor: auto; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.8rem, 10vw, 4rem); }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
}
/* ═══════════════════════════════════════════════════
   TESTIMONIALS FINAL TWEAK (TEXT + BUTTON + CLEAN)
   ═══════════════════════════════════════════════════ */

/* Smaller clean text */
.testi-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.45;
  font-weight: 700;
  color: rgba(255,255,255,0.94);
  max-width: 610px;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.testi-stars {
  font-size: 0.78rem;
  padding: 6px 13px;
  margin-bottom: 18px;
}

.testi-author {
  gap: 13px;
  padding-top: 18px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  font-size: 0.78rem;
}

.testi-author strong {
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.testi-author span {
  font-size: 0.65rem;
}

/* Center buttons */
.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: -8px;
  position: relative;
  z-index: 30;
}

/* Smaller premium buttons */
.testi-btn,
.testi-arrow {
  position: static !important;
  transform: none !important;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(167,139,250,0.55);
  background: radial-gradient(circle at 30% 25%, #A78BFA, #7C3AED 48%, #4C1D95);
  color: white;
  font-size: 1.55rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    0 0 28px rgba(124,58,237,0.55),
    0 12px 28px rgba(0,0,0,0.35);
  transition: 0.3s ease;
}

.testi-btn:hover,
.testi-arrow:hover {
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow:
    0 0 48px rgba(167,139,250,0.85),
    0 18px 40px rgba(0,0,0,0.45);
}

/* Dots spacing fix */
.testi-dots {
  margin-top: 18px;
}
/* REMOVE WHITE LINE UNDER TESTIMONIALS */
.testimonials::before,
.testimonials::after {
  display: none !important;
  content: none !important;
}

.testimonials {
  border-bottom: none !important;
}

.section::after {
  display: none !important;
}

/* Safety: remove any accidental divider */
hr {
  display: none;
  opacity: 0;
}
.testi-controls {
  width: 100%;
  justify-content: center;
  transform: translateX(0);
}
.testi-card.active-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  background: radial-gradient(circle, rgba(124,58,237,0.35), transparent);
  filter: blur(20px);
  z-index: -1;
}
@keyframes shuffleNext {
  45% {
    transform: translateX(calc(-50% + 70px)) translateY(-110px) scale(0.96) rotate(8deg);
  }
}
.testi-dot {
  opacity: 0.4;
}

.testi-dot.active {
  opacity: 1;
  box-shadow: 0 0 12px rgba(167,139,250,0.7);
}
.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}
.project-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark-3);
}

.project-img-wrap img,
.project-img-placeholder {
  width: 100%;
  height: 100%;
}

.project-img-wrap img {
  display: block;
  object-fit: cover;
}

.project-img-placeholder {
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ph-color, #4C1D95), rgba(10,10,10,0.85));
}

.project-img-placeholder span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}
.project-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: 0.4s ease;
}

.project-card:hover .project-img-wrap::after {
  opacity: 1;
}
.project-card:hover img {
  transform: scale(1.08);
}

.project-card {
  transition: all 0.3s ease;
}
/* Smooth project filter animation */
.projects-grid {
  transition: height 0.45s ease;
}

.project-card {
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
  will-change: opacity, transform;
}

.project-card.filter-hide {
  opacity: 0;
  transform: scale(0.92) translateY(18px);
  filter: blur(4px);
  pointer-events: none;
}

.project-card.filter-show {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}
/* PROJECT CARD THROW ANIMATION */
.projects-grid {
  position: relative;
}

.project-card {
  transition:
    opacity 0.65s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s ease;
  transform-origin: center;
  will-change: transform, opacity, filter;
}

.project-card.project-stacked {
  opacity: 0;
  transform:
    translateY(80px)
    scale(0.72)
    rotate(var(--stack-rotate, -8deg));
  filter: blur(6px);
}

.project-card:nth-child(2).project-stacked {
  --stack-rotate: 7deg;
}

.project-card:nth-child(3).project-stacked {
  --stack-rotate: -4deg;
}

.project-card:nth-child(4).project-stacked {
  --stack-rotate: 5deg;
}

.project-card:nth-child(5).project-stacked {
  --stack-rotate: -7deg;
}

.project-card:nth-child(6).project-stacked {
  --stack-rotate: 4deg;
}

.project-card.project-thrown {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  filter: blur(0);
}

.project-card.project-hidden {
  opacity: 0;
  transform: translateY(90px) scale(0.65) rotate(10deg);
  filter: blur(8px);
  pointer-events: none;
}
/* ── PROJECT SCROLL ANIMATION ── */
.project-card {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(6px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease,
    box-shadow 0.4s ease;
}

/* When visible (scroll reveal) */
.project-card.reveal-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Subtle glow on hover */
.project-card:hover {
  box-shadow: 0 25px 70px rgba(124,58,237,0.25);
  transform: translateY(-6px) scale(1.02);
}

/* FILTER ANIMATION */
.project-card.filter-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.project-card.filter-hide {
  opacity: 0;
  transform: translateY(25px) scale(0.95);
  filter: blur(4px);
  pointer-events: none;
}
/* CLEAN PROJECT FILTER ANIMATION */
.projects-grid {
  transition: height 0.45s ease;
}

.project-card {
  transition:
    opacity 0.38s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.38s ease,
    box-shadow 0.35s ease;
}

.project-card.filter-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.project-card.filter-hide {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  filter: blur(4px);
  pointer-events: none;
}
/* FIX: prevent project card text area stretching during filter animation */
.project-card {
  overflow: hidden;
  min-height: 100%;
}

.project-info {
  min-height: 155px;
}

/* smoother stable card hiding */
.project-card.filter-hide {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  filter: blur(4px);
  pointer-events: none;
}

/* prevent grey text area jump */
.project-card.filter-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
/* FIX: Equal height cards (prevents jumping) */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image stays fixed */
.project-img-wrap {
  flex-shrink: 0;
}

/* Info section grows evenly */
.project-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px; /* key fix */
}
/* FINAL PROJECT CARD SIZE FIX */
.projects-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  align-items: stretch;
}

.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.project-img-wrap {
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
}

.project-info {
  flex: 1;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.project-info p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr !important;
  }
}
.project-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.project-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(124,58,237,0.25);
}
/* Icespot-only height glitch fix */
.icespot-card {
  height: auto !important;
  min-height: 0 !important;
  max-height: 100% !important;
}

.icespot-card .project-info {
  height: 145px !important;
  min-height: 145px !important;
  max-height: 145px !important;
  flex: 0 0 145px !important;
  overflow: hidden !important;
}

.icespot-card .project-img-wrap {
  flex: 0 0 auto !important;
}

.icespot-card.filter-show,
.icespot-card.filter-hide {
  height: auto !important;
}
/* ═══════════════════════════════════════════════════
   PREMIUM EQUIPMENT MARQUEE
   ═══════════════════════════════════════════════════ */

.equipment-marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 20px 0 40px;
}

.equipment-marquee-wrap::before,
.equipment-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.equipment-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}

.equipment-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

.equipment-marquee {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: equipmentScroll 120s linear infinite;
}

.equipment-marquee-wrap:hover .equipment-marquee {
  animation-play-state: paused;
}

@keyframes equipmentScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.equipment-card {
  width: 360px;
  flex-shrink: 0;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(124,58,237,0.25), transparent 40%),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(167,139,250,0.2);
  box-shadow:
    0 25px 70px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.07);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.equipment-card:hover {
  transform: translateY(-10px) scale(1.025);
  border-color: rgba(167,139,250,0.55);
  box-shadow:
    0 35px 90px rgba(124,58,237,0.25),
    0 0 45px rgba(167,139,250,0.18);
}

.equipment-img {
  height: 230px;
  overflow: hidden;
  background: #111;
}

.equipment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: brightness(0.85) saturate(0.9);
}

.equipment-card:hover .equipment-img img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}

.equipment-content {
  padding: 26px 24px 28px;
}

.equipment-content span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(124,58,237,0.16);
  border: 1px solid rgba(167,139,250,0.24);
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 15px;
}

.equipment-content h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
}

.equipment-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(250,250,250,0.65);
}

@media (max-width: 768px) {
  .equipment-card {
    width: 290px;
  }

  .equipment-img {
    height: 190px;
  }

  .equipment-marquee {
    animation-duration: 22s;
  }
}
/* Equipment marquee speed + faded edges fix */
.equipment-marquee {
  animation-duration: 14s !important; /* lower = faster */
}

.equipment-marquee-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.equipment-marquee-wrap::before,
.equipment-marquee-wrap::after {
  display: none !important;
}
/* ═══════════════════════════════════════════════════
   PREMIUM OUR SERVICES UI UPGRADE
   Paste at bottom of style.css
   ═══════════════════════════════════════════════════ */

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

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(124,58,237,0.18), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(167,139,250,0.12), transparent 38%);
  pointer-events: none;
}

.services-grid {
  position: relative;
  z-index: 2;
  gap: 24px;
}

.service-card {
  min-height: 275px;
  padding: 34px 28px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.025)),
    radial-gradient(circle at top left, rgba(124,58,237,0.18), transparent 42%);
  border: 1px solid rgba(167,139,250,0.18);
  box-shadow:
    0 22px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(0);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.12) 40%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.service-card:hover::before {
  transform: translateX(120%);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.025);
  border-color: rgba(167,139,250,0.55);
  box-shadow:
    0 34px 90px rgba(124,58,237,0.22),
    0 0 50px rgba(167,139,250,0.16),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.service-icon {
  width: 58px;
  height: 58px;
  padding: 13px;
  border-radius: 18px;
  color: var(--purple-light);
  background:
    radial-gradient(circle at 30% 20%, rgba(167,139,250,0.35), rgba(124,58,237,0.12));
  border: 1px solid rgba(167,139,250,0.25);
  box-shadow: 0 0 28px rgba(124,58,237,0.22);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;
}

.service-card:hover .service-icon {
  transform: rotate(-6deg) scale(1.08);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), rgba(124,58,237,0.3));
  box-shadow: 0 0 42px rgba(167,139,250,0.42);
}

.service-card h3 {
  font-size: 1.08rem;
  line-height: 1.32;
  margin-top: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(250,250,250,0.64);
}

.service-card .card-glow {
  opacity: 1;
  background:
    radial-gradient(circle at 20% 0%, rgba(167,139,250,0.12), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(124,58,237,0.1), transparent 35%);
}

/* Soft stagger animation when section appears */
.services .service-card {
  animation: serviceFloatIn 0.8s ease both;
}

.services .service-card:nth-child(1) { animation-delay: 0.05s; }
.services .service-card:nth-child(2) { animation-delay: 0.10s; }
.services .service-card:nth-child(3) { animation-delay: 0.15s; }
.services .service-card:nth-child(4) { animation-delay: 0.20s; }
.services .service-card:nth-child(5) { animation-delay: 0.25s; }
.services .service-card:nth-child(6) { animation-delay: 0.30s; }
.services .service-card:nth-child(7) { animation-delay: 0.35s; }
.services .service-card:nth-child(8) { animation-delay: 0.40s; }

@keyframes serviceFloatIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Responsive polish */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    min-height: auto;
    padding: 30px 24px;
  }
}
/* BIG FOOTER LOGO */
.footer-logo {
  height: 90px;   /* bigger than header */
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(124,58,237,0.3));
  transition: 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(167,139,250,0.6));
}

/* HEADER LOGO — restored to original proportions */
.nav-inner {
  min-height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.logo-text {
  display: inline-flex;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-text span {
  color: var(--purple-light);
  margin-left: 5px;
}

.nav.scrolled .logo-img {
  height: 40px;
}

.nav.scrolled .logo-text {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .logo-img {
    height: 44px;
  }
  .logo-text {
    font-size: 1.05rem;
  }
  .nav-inner {
    min-height: 64px;
  }
}
/* PREMIUM HEADER — consolidated, no conflicts */
.nav-inner {
  min-height: 72px;
}
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.logo-text span {
  color: var(--purple-light);
  margin-left: 5px;
}
.nav.scrolled .logo-img {
  height: 40px;
}
.nav.scrolled .logo-text {
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .logo-img {
    height: 44px;
  }
  .logo-text {
    font-size: 1.05rem;
  }
  .nav-inner {
    min-height: 64px;
  }
}
/* NAVBAR BACKGROUND FIX (SCROLL) */
.nav.scrolled {
  background: rgba(10, 10, 15, 0.75); /* dark but not pure black */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(167,139,250,0.15);

  /* subtle purple glow */
  box-shadow: 
    0 8px 30px rgba(0,0,0,0.4),
    0 0 20px rgba(124,58,237,0.15);
}
/* logo filter removed — keep natural brightness */
.logo-img {
  transition: opacity 0.3s ease;
}
/* nav scrolled gradient removed — use original glass style */
/* ═══════════════════════════════════════════════════
   PREMIUM ABOUT SECTION - 3D SCROLL UI
   Paste at bottom of style.css
   ═══════════════════════════════════════════════════ */

.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(124,58,237,0.16), transparent 32%),
    radial-gradient(circle at 85% 70%, rgba(167,139,250,0.10), transparent 36%),
    var(--black);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent, rgba(255,255,255,0.025), transparent);
  pointer-events: none;
}

.about-grid {
  perspective: 1200px;
}

.about-left {
  transform-style: preserve-3d;
  animation: aboutTextReveal 1s ease both;
}

.about-right {
  transform-style: preserve-3d;
  animation: aboutCardsReveal 1.1s ease both;
}

.about-text {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(250,250,250,0.74);
}

.about-text strong {
  color: var(--purple-light);
  text-shadow: 0 0 18px rgba(167,139,250,0.35);
}

.mission-block {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    radial-gradient(circle at top left, rgba(124,58,237,0.24), transparent 42%);
  border: 1px solid rgba(167,139,250,0.22);
  box-shadow:
    0 25px 70px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateZ(20px);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.mission-block:hover {
  transform: translateY(-6px) translateZ(40px);
  box-shadow:
    0 35px 90px rgba(124,58,237,0.20),
    0 0 45px rgba(167,139,250,0.14);
}

.mission-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-120%);
  transition: transform 0.85s ease;
}

.mission-block:hover::after {
  transform: translateX(120%);
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.025)),
    radial-gradient(circle at top left, rgba(124,58,237,0.18), transparent 42%);
  border: 1px solid rgba(167,139,250,0.18);
  border-radius: 24px;
  box-shadow:
    0 22px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: rotateX(0deg) rotateY(0deg) translateY(0);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.value-card:hover::before {
  transform: translateX(120%);
}

.value-card:hover {
  transform: translateY(-12px) rotateX(4deg) rotateY(-4deg) scale(1.025);
  border-color: rgba(167,139,250,0.55);
  box-shadow:
    0 35px 90px rgba(124,58,237,0.22),
    0 0 50px rgba(167,139,250,0.16);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(167,139,250,0.35), rgba(124,58,237,0.12));
  border: 1px solid rgba(167,139,250,0.25);
  box-shadow: 0 0 28px rgba(124,58,237,0.22);
}

.value-card h3 {
  font-size: 1.08rem;
  margin-top: 18px;
  color: var(--white);
}

.value-card p {
  color: rgba(250,250,250,0.64);
  line-height: 1.7;
}

/* Scroll entrance */
.about .reveal-up {
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  filter: blur(8px);
}

.about .reveal-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes aboutTextReveal {
  from {
    opacity: 0;
    transform: translateX(-40px) rotateY(8deg);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0);
    filter: blur(0);
  }
}

@keyframes aboutCardsReveal {
  from {
    opacity: 0;
    transform: translateX(40px) rotateY(-8deg);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0);
    filter: blur(0);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .value-card {
    min-height: 160px;
  }
}
/* ═══════════════════════════════════════════════════
   FLOATING ANIMATION (PREMIUM SUBTLE)
   ═══════════════════════════════════════════════════ */

/* Base floating animation */
@keyframes floatSoft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Value cards floating (different timing = natural feel) */
.value-card:nth-child(1) {
  animation: floatSoft 6s ease-in-out infinite;
}
.value-card:nth-child(2) {
  animation: floatSoft 7s ease-in-out infinite;
}
.value-card:nth-child(3) {
  animation: floatSoft 6.5s ease-in-out infinite;
}
.value-card:nth-child(4) {
  animation: floatSoft 7.5s ease-in-out infinite;
}

/* Mission block floating */
.mission-block {
  animation: floatSoft 8s ease-in-out infinite;
}

/* Optional: slight hover override (stronger lift) */
.value-card:hover,
.mission-block:hover {
  animation: none;
  transform: translateY(-12px) scale(1.03);
}
.value-card:nth-child(odd) {
  transform: translateZ(20px);
}

.value-card:nth-child(even) {
  transform: translateZ(40px);
}
/* ═══════════════════════════════════════════════════
   PREMIUM HERO AESTHETIC UPGRADE
   ═══════════════════════════════════════════════════ */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(124,58,237,0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(167,139,250,0.18), transparent 45%),
    #050507;
}

/* smoother overlay */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(5,5,7,0.2),
    rgba(5,5,7,0.85)
  );
}

/* improve background image depth */
.hero-img {
  filter: brightness(0.7) contrast(1.1) saturate(1.1);
  transform: scale(1.05);
}

/* floating glow orbs stronger */
.orb {
  filter: blur(60px);
  opacity: 0.6;
}

/* premium title */
.hero-title {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

/* glow text */
.title-line--accent {
  background: linear-gradient(90deg, #a78bfa, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(124,58,237,0.4);
}

/* subtitle softer */
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

/* CTA buttons more premium */
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  box-shadow: 0 10px 40px rgba(124,58,237,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(167,139,250,0.5);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
}

/* stats refinement */
.hero-stats {
  opacity: 0.85;
}

.stat-num {
  font-size: 1.6rem;
  color: var(--purple-light);
}

/* scroll hint cleaner */
.hero-scroll-hint {
  opacity: 0.6;
}
/* Floating hero text */
.hero-content {
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.05),
    transparent
  );
  animation: heroSweep 8s linear infinite;
}

@keyframes heroSweep {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}
/* FIX SERVICE DROPDOWN TEXT VISIBILITY */
select {
  background: var(--dark-2);
  color: white;
}

select option {
  background: #111;
  color: white;
}

/* ═══════════════════════════════════════════════════
   SMARTPHONE + GOLDEN RATIO VISUAL OPTIMIZATION
   Paste at the VERY BOTTOM of style.css
   ═══════════════════════════════════════════════════ */

:root {
  --phi-1: 0.618rem;
  --phi-2: 1rem;
  --phi-3: 1.618rem;
  --phi-4: 2.618rem;
  --phi-5: 4.236rem;
}

/* Global mobile smoothness */
* {
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* Disable custom cursor on touch devices */
@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto !important;
  }

  .cursor,
  .cursor-trail {
    display: none !important;
  }

  a,
  button,
  .btn,
  .filter-btn,
  .service-card,
  .project-card {
    cursor: pointer !important;
  }
}

/* Smoother animation globally */
.reveal-up {
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
}

.reveal-up:not(.visible) {
  filter: blur(6px);
}

.reveal-up.visible {
  filter: blur(0);
}

/* Better mobile navbar */
@media (max-width: 900px) {
  .nav {
    padding: 12px 18px !important;
  }

  .nav.scrolled {
    padding: 10px 18px !important;
    background: rgba(10, 10, 10, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15) !important;
    box-shadow: none !important;
  }

  .nav-inner {
    min-height: 64px !important;
    gap: 12px;
  }

  .logo-img {
    height: 44px !important;
  }

  .logo-text {
    font-size: 1rem !important;
    line-height: 1;
  }

  .nav-toggle {
    display: flex !important;
    z-index: 1002;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 280px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 60px 32px;
    border-radius: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links.open {
    right: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-link {
    display: flex;
    align-items: center;
    padding: 13px 16px;
    font-size: 0.95rem;
    border-radius: 14px;
    width: 100%;
    min-height: 52px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }
}

/* Hero smartphone golden ratio */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 70px;
  }

  .hero-img {
    object-position: center;
    filter: brightness(0.55) contrast(1.08) saturate(1.05);
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(5,5,7,0.22) 0%,
      rgba(5,5,7,0.74) 52%,
      rgba(5,5,7,0.96) 100%
    ) !important;
  }

  .hero-content {
    padding: 0 24px;
    padding-top: 120px;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(3rem, 15vw, 4.236rem) !important;
    line-height: 0.96;
    margin-bottom: 18px;
  }

  .title-line--accent {
    -webkit-text-stroke: 1px var(--purple-light);
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.618;
    max-width: 92%;
    margin-bottom: 28px;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 34px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-num {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.64rem;
  }

  .stat-divider {
    height: 34px;
  }

  .float-el {
    font-size: 2.2rem !important;
    opacity: 0.45;
  }

  .hero-scroll-hint {
    display: none;
  }
}

/* Sections golden ratio spacing */
@media (max-width: 768px) {
  .section {
    padding: 82px 0;
  }

  .container {
    padding: 0 22px;
  }

  .section-header {
    margin-bottom: 44px;
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 3.236rem);
    line-height: 1.05;
  }

  .section-sub {
    font-size: 0.95rem;
    line-height: 1.618;
  }
}

/* About mobile layout */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 42px;
  }

  .about-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .mission-block {
    padding: 22px;
    border-radius: 22px;
  }

  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .value-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 22px;
  }
}

/* Services mobile */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    min-height: auto;
    padding: 26px 22px;
    border-radius: 24px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
  }

  .service-card h3 {
    font-size: 1.02rem;
  }

  .service-card p {
    font-size: 0.88rem;
    line-height: 1.65;
  }
}

/* Equipment marquee mobile */
@media (max-width: 768px) {
  .equipment-marquee-wrap {
    padding: 12px 0 30px;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
    );
  }

  .equipment-marquee {
    gap: 18px;
    animation-duration: 75s !important;
  }

  .equipment-card {
    width: min(78vw, 310px) !important;
    border-radius: 24px;
  }

  .equipment-img {
    height: 185px !important;
  }

  .equipment-content {
    padding: 22px 20px 24px;
  }

  .equipment-content h3 {
    font-size: 1.02rem;
  }

  .equipment-content p {
    font-size: 0.84rem;
  }
}

/* Projects mobile */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .project-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 34px;
    scrollbar-width: none;
  }

  .project-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
    padding: 9px 18px;
    font-size: 0.78rem;
  }

  .projects-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .project-card {
    border-radius: 24px;
  }

  .project-img-wrap {
    aspect-ratio: 1.618 / 1;
  }

  .project-info {
    padding: 20px;
    min-height: auto !important;
  }

  .project-info h3 {
    font-size: 1.1rem;
  }

  .project-info p {
    font-size: 0.86rem;
  }
}

/* Testimonials mobile */
@media (max-width: 768px) {
  .testimonials-track-wrap {
    width: 100%;
    height: 430px;
  }

  .testi-card {
    width: min(92vw, 360px);
    min-height: 300px;
    top: 56px;
    padding: 30px 24px;
    border-radius: 26px;
  }

  .testi-card blockquote {
    font-size: clamp(0.95rem, 4.2vw, 1.08rem) !important;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .testi-stars {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-bottom: 18px;
  }

  .testi-avatar {
    width: 44px;
    height: 44px;
    font-size: 0.78rem;
  }

  .testi-author strong {
    font-size: 0.9rem;
  }

  .testi-author span {
    font-size: 0.65rem;
  }

  .testi-arrow {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.6rem !important;
  }

  .testi-dots {
    margin-top: 14px;
  }
}

/* Contact form mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 44px;
  }

  .contact-intro {
    font-size: 0.98rem;
    line-height: 1.618;
  }

  .contact-item {
    padding: 18px;
    border-radius: 20px;
  }

  .contact-form {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 52px;
    font-size: 16px; /* prevents iPhone zoom */
  }

  select,
  select option {
    color: #fff !important;
    background: #111 !important;
  }
}

/* Footer mobile */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 36px;
    text-align: left;
  }

  .footer-logo {
    height: 80px !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Floating buttons mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 18px;
    bottom: 18px;
    font-size: 24px;
  }

  .back-top {
    right: 18px;
    bottom: 86px;
  }
}

/* Reduce heavy effects on low-power phones */
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .service-card,
  .project-card,
  .value-card,
  .equipment-card,
  .testi-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .orb {
    filter: blur(50px);
  }
}
/* MOBILE HERO CROP + TITLE FIX */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    overflow: hidden;
  }

  .hero-img {
    object-position: 82% center !important;
    transform: scale(1.02) !important;
  }

  .hero-content {
    padding-inline: 24px !important;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.65rem, 14vw, 4rem) !important;
    line-height: 0.98 !important;
    max-width: 100%;
  }

  .title-line {
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero-sub {
    max-width: 92%;
    font-size: 0.98rem !important;
  }
}

@media (max-width: 430px) {
  .hero-img {
    object-position: 88% center !important;
  }

  .hero-title {
    font-size: clamp(2.45rem, 13vw, 3.65rem) !important;
  }
}

@media (max-width: 390px) {
  .hero-img {
    object-position: 95% center !important;
  }

  .hero-title {
    font-size: clamp(2.25rem, 12.6vw, 3.35rem) !important;
  }
}
/* FINAL MOBILE HERO ALIGNMENT FIX */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 120px 22px 60px !important;
    margin: 0 auto;
    text-align: left;
    transform: none !important;
  }

  .hero-badge {
    margin-bottom: 18px;
  }

  .hero-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.35rem, 11.4vw, 3.35rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em;
    margin-bottom: 22px;
    overflow: visible;
  }

  .title-line {
    display: block;
    white-space: nowrap;
    width: fit-content;
    max-width: 90%;
  }


  .hero-sub {
    max-width: 92%;
    font-size: clamp(0.92rem, 3.9vw, 1rem) !important;
    line-height: 1.62;
    margin-bottom: 28px;
  }

  .hero-actions {
    width: 100%;
    gap: 12px;
    margin-bottom: 34px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
    justify-content: center;
  }

  .hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    align-items: start;
  }

  .stat {
    min-width: 0;
  }

  .stat-num {
    font-size: clamp(1.25rem, 6vw, 1.65rem) !important;
  }

  .stat-label {
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero-content {
    padding-inline: 18px !important;
  }

  .hero-title {
    font-size: clamp(2.15rem, 10.7vw, 3.05rem) !important;
    letter-spacing: -0.06em;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: clamp(2rem, 10.2vw, 2.85rem) !important;
  }

  .hero-sub {
    max-width: 96%;
  }
}
.title-line--accent {
  background: linear-gradient(90deg, #a78bfa, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  display: inline;
}
/* Scroll-synced premium hero glow */
.title-line--accent {
  --heroGlow: 0.35;
  --heroShift: 0%;

  background: linear-gradient(
    90deg,
    #a78bfa 0%,
    #7c3aed 45%,
    #c4b5fd 75%,
    #a78bfa 100%
  );
  background-size: 180% 100%;
  background-position: var(--heroShift) center;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  display: inline-block;
  padding-right: 0.22em;
  overflow: visible;

  filter: drop-shadow(0 0 calc(18px * var(--heroGlow)) rgba(167,139,250,0.75));
}
/* ═══════════════════════════════════════════════════
   PREMIUM VISUAL ENHANCEMENTS — AADHIL SIGNS UPGRADE
   ═══════════════════════════════════════════════════ */

/* ── IMPROVED HERO TYPOGRAPHY ── */
.hero-title {
  font-size: clamp(3rem, 7.5vw, 6.5rem) !important;
  letter-spacing: -0.045em !important;
  line-height: 1.0 !important;
}

/* Smoother hero badge */
.hero-badge {
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
}

/* ── IMPROVED VALUE CARDS ── */
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ── IMPROVED PROJECT INFO ── */
.project-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.25;
}

/* ── FOOTER TYPOGRAPHY ── */
.footer-brand p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.72;
  max-width: 280px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(249,249,249,0.5);
  margin-bottom: 20px;
}

/* ── CONTACT FORM IMPROVEMENTS ── */
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(249,249,249,0.55);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-size: 15px; /* prevent iOS zoom */
  line-height: 1.5;
  border-radius: 10px;
  padding: 15px 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(124,58,237,0.7);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

/* ── MOBILE NAV TOUCH IMPROVEMENTS ── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle:active {
    background: rgba(255,255,255,0.08);
  }
  .nav-link {
    font-size: 1.05rem;
    padding: 14px 18px;
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    border-radius: 12px;
  }
  .nav-cta {
    margin-top: 8px;
    min-height: 52px !important;
    justify-content: center;
    display: flex !important;
    align-items: center !important;
  }
}

/* ── MOBILE SECTION SPACING ── */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  .about-grid { gap: 40px; }
  .values-grid { gap: 12px; }
  .value-card { padding: 22px 18px; }
  .services-grid { gap: 14px; }
  .service-card { padding: 26px 20px; }
  .service-icon { width: 40px; height: 40px; margin-bottom: 16px; }
}

/* ── MOBILE ABOUT TEXT ── */
@media (max-width: 768px) {
  .about-text {
    font-size: 0.97rem;
    line-height: 1.78;
  }
  .mission-block {
    padding: 20px 18px;
    gap: 14px;
  }
  .mission-block p {
    font-size: 0.9rem;
    line-height: 1.65;
  }
}

/* ── MOBILE SECTION TITLES ── */
@media (max-width: 480px) {
  .section-title {
    font-size: clamp(1.75rem, 7.5vw, 2.4rem) !important;
    letter-spacing: -0.03em;
    line-height: 1.12;
  }
  .section-sub {
    font-size: 0.88rem;
    line-height: 1.7;
  }
}

/* ── MOBILE BUTTON IMPROVEMENT ── */
@media (max-width: 768px) {
  .btn {
    min-height: 54px;
    padding: 15px 28px;
    font-size: 0.92rem;
  }
  .btn--full {
    width: 100%;
    justify-content: center;
  }
  .filter-btn {
    min-height: 44px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
}

/* ── 3D TILT — DESKTOP ONLY ── */
@media (hover: hover) and (pointer: fine) {
  .tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
  }
  .value-card {
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  }
  .value-card:hover {
    transform: translateY(-5px) perspective(600px) rotateX(2deg);
    box-shadow: 0 20px 50px rgba(124,58,237,0.18);
  }
  .equipment-card:hover {
    transform: translateY(-10px) perspective(600px) rotateY(-2deg) scale(1.02);
  }
}

/* Disable 3D on touch/mobile */
@media (hover: none) {
  .tilt-card:hover,
  .value-card:hover,
  .equipment-card:hover {
    transform: none !important;
  }
  .project-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  body { cursor: auto !important; }
  .cursor, .cursor-trail { display: none !important; }
}

/* ── PREMIUM CARD GLOW IMPROVEMENT ── */
.service-card {
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124,58,237,0.45);
    box-shadow: 0 20px 55px rgba(124,58,237,0.14), 0 0 0 1px rgba(124,58,237,0.12);
  }
}

/* ── IMPROVED STAT LABELS MOBILE ── */
@media (max-width: 360px) {
  .stat-num {
    font-size: 1.15rem !important;
  }
  .stat-label {
    font-size: 0.58rem;
    line-height: 1.25;
  }
}

/* ── PREVENT HORIZONTAL SCROLL ── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.hero, .equipment-marquee-wrap {
  max-width: 100vw;
}

/* ── IMPROVED SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--purple-dark), var(--purple-light)); }

/* ── WHATSAPP BUTTON — TOUCH FRIENDLY ── */
.whatsapp-float {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
}

/* ── BACK-TO-TOP — TOUCH FRIENDLY ── */
.back-top {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* ── LAZY IMAGE FADE-IN ── */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* ── MOBILE 360px FINE TUNE ── */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero-content {
    padding-inline: 16px !important;
  }
  .contact-form {
    padding: 20px 16px !important;
  }
  .testi-card {
    padding: 28px 18px !important;
  }
}

/* ── NAVBAR SCROLL — original glass style restored ── */
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  border-bottom: 1px solid rgba(124, 58, 237, 0.15) !important;
  box-shadow: none !important;
}

/* ── IMPROVED HERO SUB TEXT ── */
.hero-sub {
  font-size: clamp(0.93rem, 1.4vw, 1.1rem) !important;
  line-height: 1.75 !important;
  color: rgba(249,249,249,0.68) !important;
  letter-spacing: 0.01em;
}

/* ── IMPROVED HERO STATS ── */
.stat-label {
  font-size: 0.7rem;
  color: rgba(136,136,136,0.85);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1.3;
}

/* ── STAGGER ENTRANCE FOR SERVICE CARDS ── */
.services-grid .service-card:nth-child(1) { transition-delay: 0ms; }
.services-grid .service-card:nth-child(2) { transition-delay: 60ms; }
.services-grid .service-card:nth-child(3) { transition-delay: 120ms; }
.services-grid .service-card:nth-child(4) { transition-delay: 180ms; }
.services-grid .service-card:nth-child(5) { transition-delay: 240ms; }
.services-grid .service-card:nth-child(6) { transition-delay: 300ms; }
.services-grid .service-card:nth-child(7) { transition-delay: 360ms; }

/* ── EQUIPMENT CARD CONTENT TYPOGRAPHY ── */
.equipment-content span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 600;
}
.equipment-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.equipment-content p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--grey);
}

/* ── TESTIMONIALS BLOCKQUOTE MOBILE ── */
@media (max-width: 600px) {
  .testi-card blockquote {
    font-size: clamp(0.98rem, 4vw, 1.1rem) !important;
    line-height: 1.55 !important;
    letter-spacing: -0.015em !important;
  }
}

/* ── PERFORMANCE: reduce paint on orbs ── */
.orb { will-change: transform; contain: layout style; }

/* ── REDUCED MOTION RESPECT ── */
@media (prefers-reduced-motion: reduce) {
  .orb, .scanline, .float-el, .equipment-marquee {
    animation: none !important;
  }
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║          GOD LEVEL ENHANCEMENTS — AADHIL SIGNS               ║
   ║  Additive only. Zero layout changes. Pure visual elevation.  ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ── 1. ROOT ENHANCEMENTS ── */
:root {
  --glow-xs:  0 0 12px rgba(124,58,237,0.25);
  --glow-sm:  0 0 24px rgba(124,58,237,0.35);
  --glow-md:  0 0 48px rgba(124,58,237,0.45);
  --glow-lg:  0 0 80px rgba(124,58,237,0.5);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── 2. PREMIUM PAGE LOAD OVERLAY ── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.page-loader.done {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.25em;
  color: var(--white);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
  animation: loaderFadeUp 0.6s var(--ease-out-expo) 0.1s forwards;
}
.loader-wordmark span { color: var(--purple-light); }
.loader-bar-track {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeUp 0.4s ease 0.4s forwards;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  border-radius: 2px;
  animation: loaderProgress 1.1s var(--ease-out-expo) 0.5s forwards;
  box-shadow: 0 0 12px var(--purple);
}
@keyframes loaderFadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes loaderProgress {
  to { width: 100%; }
}

/* ── 3. ENHANCED HERO — GRADIENT MESH BG ── */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(124,58,237,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(167,139,250,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(76,29,149,0.12) 0%, transparent 50%);
  pointer-events: none;
  animation: meshShift 16s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.04); }
}

/* ── 4. HERO TITLE — CHAR SPLIT ANIMATION ── */
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotateX(-40deg);
  transform-origin: bottom center;
  animation: charRise 0.7s var(--ease-out-expo) both;
}
@keyframes charRise {
  to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

/* ── 5. HERO BADGE — SHIMMER ── */
.hero-badge {
  position: relative;
  overflow: hidden;
}
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: badgeShimmer 3.5s ease-in-out infinite;
}
@keyframes badgeShimmer {
  0%   { left: -60%; }
  60%  { left: 110%; }
  100% { left: 110%; }
}

/* ── 6. SECTION TRANSITION — GRADIENT DIVIDERS ── */
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(124,58,237,0.35) 30%,
    rgba(167,139,250,0.5) 50%,
    rgba(124,58,237,0.35) 70%,
    transparent 100%);
  pointer-events: none;
}
.section--dark::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(124,58,237,0.2) 30%,
    rgba(167,139,250,0.3) 50%,
    rgba(124,58,237,0.2) 70%,
    transparent 100%);
}

/* ── 7. ABOUT SECTION — FLOATING MESH BG ── */
.about {
  background:
    radial-gradient(ellipse 60% 50% at 5% 40%, rgba(124,58,237,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 95% 60%, rgba(167,139,250,0.07) 0%, transparent 50%),
    var(--black);
}

/* ── 8. SECTION TITLE — ANIMATED UNDERLINE ON REVEAL ── */
.section-title em {
  position: relative;
  display: inline-block;
}
.section-title em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  border-radius: 2px;
  transition: width 0.9s var(--ease-out-expo) 0.3s;
  box-shadow: 0 0 8px var(--purple-glow);
}
.section-header.visible .section-title em::after,
.about-left .reveal-up.visible ~ .reveal-up .section-title em::after,
.contact-left .reveal-up.visible .section-title em::after {
  width: 100%;
}
/* Trigger when parent reveal becomes visible */
.reveal-up.visible .section-title em::after {
  width: 100%;
}

/* ── 9. VALUE CARDS — INNER GLOW + NUMBER ── */
.value-card {
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at top left, rgba(124,58,237,0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.value-card:hover::before { opacity: 1; }

.value-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: inline-block;
  transition: transform 0.4s var(--ease-spring), filter 0.4s ease;
  filter: drop-shadow(0 0 0px var(--purple-light));
}
.value-card:hover .value-icon {
  transform: scale(1.2) rotate(8deg);
  filter: drop-shadow(0 0 10px var(--purple-light));
}

/* ── 10. SERVICE CARDS — BEAM LIGHT ON HOVER ── */
.service-card::before {
  content: '';
  position: absolute;
  top: -2px; left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-light), var(--purple), var(--purple-light), transparent);
  transition: width 0.5s var(--ease-out-expo);
  border-radius: 0 0 4px 4px;
  z-index: 2;
}
.service-card:hover::before { width: 80%; }

.service-icon {
  transition: transform 0.4s var(--ease-spring), color 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.12) translateY(-2px);
  color: #c4b5fd;
}

/* ── 11. PROJECT CARDS — OVERLAY REVEAL ── */
.project-card {
  position: relative;
}
.project-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 35%,
    rgba(10,10,10,0.9) 100%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}
.project-card:hover .project-img-wrap::before { opacity: 1; }

.project-info {
  position: relative;
}
.project-info::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0%;
  background: linear-gradient(to bottom, var(--purple-light), var(--purple));
  border-radius: 0 3px 3px 0;
  transition: height 0.5s var(--ease-out-expo);
}
.project-card:hover .project-info::before { height: 100%; }

/* ── 12. FILTER BUTTONS — ACTIVE GLOW + RIPPLE ── */
.filter-btn {
  position: relative;
  overflow: hidden;
}
.filter-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.filter-btn:active::after {
  transform: scale(1);
  opacity: 1;
  transition: 0s;
}
.filter-btn.active {
  box-shadow:
    0 0 20px rgba(124,58,237,0.4),
    0 0 40px rgba(124,58,237,0.2),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* ── 13. EQUIPMENT CARDS — PREMIUM SHINE ── */
.equipment-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-15deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.equipment-card:hover::after {
  left: 120%;
}

/* ── 14. TESTIMONIAL CARDS — PREMIUM BORDER GLOW ── */
.testi-card.active-card {
  box-shadow:
    0 34px 95px rgba(0,0,0,0.58),
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 1px rgba(167,139,250,0.2),
    0 0 60px rgba(124,58,237,0.15);
}

/* ── 15. CONTACT FORM — FOCUS BEAM ── */
.form-group {
  position: relative;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  box-shadow:
    0 0 0 3px rgba(124,58,237,0.12),
    0 0 20px rgba(124,58,237,0.08);
  background: rgba(124,58,237,0.04);
}
.form-group label {
  transition: color 0.3s ease;
}
.form-group:focus-within label {
  color: var(--purple-light);
}

/* ── 16. BUTTON — RIPPLE + MAGNETIC FEEL ── */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::before { opacity: 1; }

.btn-primary {
  box-shadow:
    0 0 30px var(--purple-glow),
    0 4px 20px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  box-shadow:
    0 0 50px rgba(167,139,250,0.5),
    0 8px 30px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-3px) scale(1.02);
}
.btn-primary:active {
  transform: translateY(0) scale(0.99);
  transition: transform 0.1s ease;
}

.btn-ghost {
  position: relative;
  overflow: hidden;
}
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.btn-ghost:hover::before { opacity: 1; }
.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(167,139,250,0.4);
}

/* ── 17. NAV LINKS — HOVER UNDERLINE SLIDE ── */
.nav-link {
  position: relative;
}
.nav-link:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--purple-light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-link:not(.nav-cta):hover::after,
.nav-link.active:not(.nav-cta)::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── 18. FOOTER — TOP GLOW LINE ── */
.footer {
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(124,58,237,0.5) 25%,
    rgba(167,139,250,0.8) 50%,
    rgba(124,58,237,0.5) 75%,
    transparent 100%);
  box-shadow: 0 0 20px rgba(124,58,237,0.4);
}

/* ── 19. WHATSAPP FLOAT — PREMIUM PULSE RING ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 900;
  text-decoration: none;
  box-shadow:
    0 4px 20px rgba(37,211,102,0.4),
    0 0 0 0 rgba(37,211,102,0.3);
  animation: waPulse 2.5s ease-out infinite;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow:
    0 8px 30px rgba(37,211,102,0.5),
    0 0 0 8px rgba(37,211,102,0.08);
}
@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.35); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ── 20. BACK TO TOP — ELEVATED ── */
.back-top {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow:
    0 0 20px var(--purple-glow),
    inset 0 1px 0 rgba(255,255,255,0.15);
  font-size: 1rem;
  letter-spacing: 0;
}
.back-top.visible {
  animation: backTopIn 0.5s var(--ease-spring) forwards;
}
@keyframes backTopIn {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to   { opacity: 1; transform: none; }
}
.back-top:hover {
  box-shadow:
    0 0 40px rgba(124,58,237,0.65),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-4px) scale(1.08);
}

/* ── 21. SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple-dark), var(--purple), var(--purple-light));
  z-index: 9999;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px var(--purple), 0 0 20px rgba(124,58,237,0.4);
  transition: width 0.05s linear;
  pointer-events: none;
}

/* ── 22. MAGNETIC CURSOR UPGRADE ── */
.cursor {
  mix-blend-mode: normal;
  width: 8px; height: 8px;
  background: var(--purple-light);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}
.cursor-trail {
  border-color: rgba(167,139,250,0.6);
  width: 32px; height: 32px;
}
.cursor.hover {
  width: 16px; height: 16px;
  background: #fff;
  mix-blend-mode: difference;
}
.cursor-trail.hover {
  width: 52px; height: 52px;
  border-color: rgba(167,139,250,0.3);
}
/* Cursor dot when over links/CTA */
.cursor.on-cta {
  width: 20px; height: 20px;
  background: var(--purple-light);
  box-shadow: 0 0 14px rgba(167,139,250,0.8);
}

/* ── 23. SECTION AMBIENT LIGHTS ── */
.services.section--dark {
  background:
    radial-gradient(ellipse 55% 50% at 100% 0%, rgba(124,58,237,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 0% 100%, rgba(76,29,149,0.06) 0%, transparent 50%),
    var(--dark);
}
.projects.section--dark {
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(124,58,237,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 100% 80%, rgba(167,139,250,0.05) 0%, transparent 50%),
    var(--dark);
}
.contact.section--dark {
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(124,58,237,0.1) 0%, transparent 55%),
    var(--dark);
}

/* ── 24. HERO STATS — ANIMATED BORDER ── */
.stat {
  position: relative;
  padding: 10px 16px;
  border-radius: 12px;
  transition: background 0.3s ease;
}
.stat:hover {
  background: rgba(124,58,237,0.08);
}
.stat-num {
  background: linear-gradient(135deg, #fff 30%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

/* ── 25. CONTACT INFO ITEMS — HOVER LIFT ── */
.contact-item {
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease-spring);
}
.contact-item:hover {
  background: rgba(124,58,237,0.06);
  border-color: rgba(124,58,237,0.25);
  transform: translateX(6px);
}
.contact-icon {
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.contact-item:hover .contact-icon {
  background: rgba(124,58,237,0.2);
  box-shadow: 0 0 16px rgba(124,58,237,0.3);
}

/* ── 26. REVEAL-UP — UPGRADED with blur ── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition:
    opacity 0.75s var(--ease-out-expo),
    transform 0.75s var(--ease-out-expo),
    filter 0.6s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* ── 27. EQUIPMENT MARQUEE — CARD GLOW IMAGE ── */
.equipment-img {
  position: relative;
  overflow: hidden;
}
.equipment-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 50%);
  pointer-events: none;
}
.equipment-img img {
  transition: transform 0.6s ease;
}
.equipment-card:hover .equipment-img img {
  transform: scale(1.06);
}

/* ── 28. FOOTER LINKS — HOVER ARROW ── */
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, width 0.3s ease;
  color: var(--purple-light);
}
.footer-links a:hover {
  color: var(--purple-light);
  gap: 6px;
}
.footer-links a:hover::before {
  opacity: 1;
  width: 14px;
}

/* ── 29. SECTION-TAG — ANIMATED DOT ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
  animation: tagDot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes tagDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

/* ── 30. ENHANCED NOISE — SUBTLER + ANIMATED ── */
.noise-overlay {
  opacity: 0.025;
  animation: noiseShift 8s steps(2) infinite;
}
@keyframes noiseShift {
  0%   { background-position: 0 0; }
  25%  { background-position: 50px 25px; }
  50%  { background-position: 100px 0; }
  75%  { background-position: 25px 75px; }
  100% { background-position: 0 0; }
}

/* ── MOBILE — disable heavy extras ── */
@media (max-width: 768px) {
  .page-loader .loader-wordmark { font-size: 1.2rem; }
  .contact-item:hover { transform: translateX(3px); }
  .hero::before { animation: none; }
  .stat-num {
    -webkit-text-fill-color: var(--purple-light);
    background: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .hero::before,
  .hero-badge::after,
  .whatsapp-float,
  .loader-bar,
  .section-tag::before,
  .noise-overlay,
  .hero-title .char { animation: none !important; }
  .reveal-up { filter: none !important; }
}
/* FINAL HEADER STYLE - SAME AS REFERENCE FILE */

/* Header before scrolling */
.nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  padding: 20px 40px !important;
  background: transparent !important;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  border-bottom: none !important;
  box-shadow: none !important;

  transition:
    background 0.45s ease,
    padding 0.45s ease,
    border-color 0.45s ease,
    backdrop-filter 0.45s ease;
}

/* Header after scrolling */
.nav.scrolled {
  padding: 14px 40px !important;

  background: rgba(10, 10, 10, 0.92) !important;

  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;

  border-bottom: 1px solid rgba(124, 58, 237, 0.15) !important;

  box-shadow: none !important;
}

/* Header inner spacing */
.nav-inner {
  max-width: 1400px;
  min-height: auto !important;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Bigger logo */
.logo-img {
  height: 62px !important;
  width: auto;
  object-fit: contain;
}

/* Shrink logo on scroll */
.nav.scrolled .logo-img {
  height: 52px !important;
}

/* Logo + text alignment */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-text span {
  color: var(--purple-light);
  margin-left: 5px;
}

/* Mobile same style */
@media (max-width: 768px) {
  .nav {
    padding: 16px 24px !important;
    background: transparent !important;
    border-bottom: none !important;
  }

  .nav.scrolled {
    padding: 12px 24px !important;
    background: rgba(10, 10, 10, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15) !important;
  }

  .logo-img {
    height: 50px !important;
  }

  .nav.scrolled .logo-img {
    height: 44px !important;
  }

  .logo-text {
    font-size: 1rem !important;
  }
}
/* PREMIUM SCROLLING TEXT MARQUEE */
.marquee-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 22px 0;
  background:
    linear-gradient(90deg, rgba(124,58,237,0.10), rgba(10,10,10,0.92), rgba(124,58,237,0.10));
  border-top: 1px solid rgba(167,139,250,0.16);
  border-bottom: 1px solid rgba(167,139,250,0.16);
}

.marquee-section::before,
.marquee-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 130px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
  will-change: transform;
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase;
}

.marquee-dot {
  color: var(--purple-light);
  font-size: 1.2rem;
  text-shadow: 0 0 18px rgba(167,139,250,0.8);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-section {
    padding: 16px 0;
  }

  .marquee-track {
    gap: 18px;
    animation-duration: 40s;
  }

  .marquee-section::before,
  .marquee-section::after {
    width: 60px;
  }

  .marquee-item {
    font-size: clamp(0.95rem, 5vw, 1.35rem);
  }
}

/* REDUCE CARD SIZE (KEEP IMAGE RATIO PERFECT) */

/* Grid tighter */
.projects-grid {
  gap: 20px; /* smaller spacing */
}

/* Smaller card */
.project-card {
  max-width: 320px;   /* adjust size here */
  margin: 0 auto;     /* center cards nicely */
}

/* Maintain same ratio */
.project-img-wrap {
  aspect-ratio: 16 / 9;  /* keep original ratio */
  overflow: hidden;
  border-radius: 18px;
}

/* Image fits perfectly */
.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* keeps it premium */
  object-position: center;
}

@media (max-width: 768px) {
  .project-card {
    max-width: 100%;
  }

  .projects-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .equipment-card {
    flex: 0 0 260px;
    width: 260px;
  }

  .equipment-img {
    height: 180px;
  }

  .equipment-marquee {
    gap: 18px;
    animation-duration: 100s;
  }
}
.equipment-marquee {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: equipmentScroll 100s linear infinite;
}

@keyframes equipmentScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .equipment-marquee {
    gap: 18px;
    animation-duration: 130s;
  }
}
/* 20% zoom-in for Etch Cut and Bodor Laser */
.equipment-img img[src*="etch-cut-machine"],
.equipment-img img[src*="bodor-laser"] {
  object-fit: contain;
  transform: scale(1.8);
  object-position: center;
  padding: 0;
}
/* Balanced Premium Equipment scroll speed */
.equipment-marquee {
  animation-duration: 35s !important;
}

@media (max-width: 768px) {
  .equipment-marquee {
    animation-duration: 35s !important;
  }
}
/* ═══════════════ MINIMAL LUXURY SERVICES ═══════════════ */

.luxury-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(245px, auto);
  gap: 18px;
}

.lux-service-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    rgba(15, 15, 15, 0.88);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 24px 60px rgba(0,0,0,0.22);
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;
}

.lux-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(167,139,250,0.14), transparent 38%),
    radial-gradient(circle at 85% 90%, rgba(124,58,237,0.10), transparent 42%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.lux-service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.7), transparent);
  opacity: 0.35;
}

.lux-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(167,139,250,0.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 34px 85px rgba(0,0,0,0.36),
    0 0 42px rgba(124,58,237,0.11);
}

.lux-service-card:hover::before {
  opacity: 1;
}

.lux-featured {
  grid-column: span 2;
  grid-row: span 1;
  background:
    linear-gradient(145deg, rgba(124,58,237,0.22), rgba(255,255,255,0.025) 48%, rgba(15,15,15,0.95)),
    rgba(15, 15, 15, 0.92);
}

.lux-tall {
  grid-row: span 2;
  min-height: 508px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.06), rgba(124,58,237,0.13), rgba(15,15,15,0.95)),
    rgba(15, 15, 15, 0.92);
}

.lux-wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(167,139,250,0.12), rgba(15,15,15,0.96)),
    rgba(15, 15, 15, 0.92);
}

.lux-service-no {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.12em;
}

.lux-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--purple-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(167,139,250,0.13), rgba(124,58,237,0.05));
  border: 1px solid rgba(167,139,250,0.18);
}

.lux-icon svg {
  width: 25px;
  height: 25px;
}

.lux-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(167,139,250,0.82);
}

.lux-service-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 360px;
  margin-bottom: 14px;
}

.lux-service-card p {
  position: relative;
  z-index: 1;
  max-width: 390px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(249,249,249,0.58);
}

.lux-featured h3,
.lux-wide h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  max-width: 520px;
}

.lux-featured p,
.lux-wide p {
  max-width: 540px;
}

.lux-tall h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
}

.lux-tall p {
  max-width: 310px;
}

/* Responsive */
@media (max-width: 1100px) {
  .luxury-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lux-featured,
  .lux-wide {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .luxury-services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .lux-featured,
  .lux-wide,
  .lux-tall {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .luxury-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lux-featured,
  .lux-wide,
  .lux-tall {
    grid-column: span 1;
    min-height: 245px;
  }

  .lux-service-card {
    padding: 24px;
    border-radius: 20px;
  }

  .lux-service-card h3,
  .lux-featured h3,
  .lux-wide h3,
  .lux-tall h3 {
    font-size: 1.18rem;
  }

  .lux-service-card p {
    font-size: 0.86rem;
  }
}

/* Fix WhatsApp + Back-to-top button overlap on mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 54px !important;
    height: 54px !important;
    right: 18px !important;
    bottom: 88px !important;
    font-size: 24px !important;
    z-index: 950 !important;
  }

  .back-top {
    width: 46px !important;
    height: 46px !important;
    right: 22px !important;
    bottom: 24px !important;
    z-index: 940 !important;
  }
}


/* MOBILE FIX — reduce "Your Brand" width */
@media (max-width: 768px) {

  .title-line--accent {
    font-size: 0.88em;
    letter-spacing: -0.03em;
  }

}
