/* ════════════════════════════════════════════════════════════
   SAFEWAY ELECTRICS — PREMIUM STYLESHEET v2
   ════════════════════════════════════════════════════════════ */

/* ── Custom Properties ──────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-base:    #04080f;
  --bg-1:       #070d1a;
  --bg-2:       #0a1120;
  --bg-3:       #0e1628;
  --bg-card:    #0d1526;
  --bg-card-h:  #121d34;

  /* Accents */
  --yellow:       #FFD100;
  --yellow-light: #FFE55A;
  --yellow-dark:  #C9A500;
  --yellow-rgb:   255, 209, 0;
  --yellow-glow:  rgba(255, 209, 0, 0.12);
  --yellow-glow2: rgba(255, 209, 0, 0.22);

  --blue:     #5B8FF9;
  --blue-rgb: 91, 143, 249;
  --green:    #22c55e;

  /* Text */
  --white:    #F0F4FF;
  --grey-100: #C8D2EC;
  --grey-300: #8A97BC;
  --grey-500: #50607E;
  --grey-700: #2A3550;

  /* Fonts */
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  /* Shape */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.6);
  --shadow-yellow: 0 8px 40px rgba(var(--yellow-rgb), 0.35);
  --shadow-blue:   0 8px 40px rgba(var(--blue-rgb), 0.25);

  /* Motion */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:         0.28s;

  --max-w: 1200px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: rgba(var(--yellow-rgb), 0.25); color: var(--white); }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 110px 0; }

/* ── Section Header ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(var(--yellow-rgb), 0.1), rgba(var(--yellow-rgb), 0.05));
  border: 1px solid rgba(var(--yellow-rgb), 0.3);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--yellow);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 18px;
}
.section-sub {
  color: var(--grey-300);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}
/* Gradient text utility */
.grad-text {
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow) 50%, #FF9A3C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--yellow-light), var(--yellow) 60%, #FFA500);
  color: #0a0e1a;
  box-shadow: 0 4px 20px rgba(var(--yellow-rgb), 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-yellow);
  filter: brightness(1.06);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: rgba(var(--yellow-rgb), 0.6);
  color: var(--yellow);
  background: rgba(var(--yellow-rgb), 0.06);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
  filter: brightness(1.08);
}

.btn-nav {
  background: var(--yellow);
  color: var(--bg-base) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  box-shadow: 0 3px 14px rgba(var(--yellow-rgb), 0.25);
}
.btn-nav:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}
.btn-full { width: 100%; justify-content: center; }
.highlight { color: var(--yellow); }

/* ════════════════════════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--t) var(--ease);
}
.site-header.scrolled {
  background: rgba(4, 8, 15, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 48px rgba(0,0,0,0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo-link { display: flex; align-items: center; }
.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05) drop-shadow(0 2px 8px rgba(var(--yellow-rgb), 0.2));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--grey-300);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--t) var(--ease);
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  color: var(--yellow);
  background: rgba(var(--yellow-rgb), 0.07);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
  transform-origin: center;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 30% -10%, rgba(30, 55, 120, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 40%, rgba(var(--yellow-rgb), 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(4, 10, 30, 0.9) 0%, transparent 80%),
    linear-gradient(160deg, #060e20 0%, var(--bg-base) 100%);
  z-index: 0;
}
.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 120% 60% at 50% 0%, black 30%, transparent 100%);
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.orb1 {
  width: 700px; height: 500px;
  background: rgba(var(--yellow-rgb), 0.055);
  top: -200px; left: 30%;
  transform: translateX(-50%);
}
.orb2 {
  width: 500px; height: 500px;
  background: rgba(var(--blue-rgb), 0.07);
  top: 10%; right: -150px;
}
.orb3 {
  width: 350px; height: 350px;
  background: rgba(30, 60, 160, 0.12);
  bottom: -80px; left: -80px;
}

/* Lightning */
.lightning-container {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.lightning {
  position: absolute;
  width: 1.5px;
  background: linear-gradient(to bottom, transparent, var(--yellow-light), rgba(var(--yellow-rgb), 0.3), transparent);
  opacity: 0;
  animation: lightningFlash 7s infinite;
  border-radius: 2px;
}
.l1 { height: 200px; top: 3%; left: 12%; animation-delay: 0s; }
.l2 { height: 150px; top: 8%; left: 68%; animation-delay: 2.8s; }
.l3 { height: 240px; top: 2%; left: 42%; animation-delay: 5.2s; }
@keyframes lightningFlash {
  0%,88%,100% { opacity:0; transform:scaleY(1); }
  90% { opacity:0.9; transform:scaleY(1); }
  92% { opacity:0.15; }
  94% { opacity:0.85; }
  96% { opacity:0; }
}

/* Hero layout */
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-left { max-width: 640px; }

/* Hero text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(var(--yellow-rgb), 0.12), rgba(var(--yellow-rgb), 0.06));
  border: 1px solid rgba(var(--yellow-rgb), 0.35);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 30px;
  letter-spacing: 0.03em;
  box-shadow: 0 0 24px rgba(var(--yellow-rgb), 0.08);
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(var(--yellow-rgb),0.6); }
  50%      { box-shadow: 0 0 0 5px rgba(var(--yellow-rgb),0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
  color: var(--white);
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow) 45%, #FF9A3C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--grey-300);
  max-width: 560px;
  margin-bottom: 42px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  backdrop-filter: blur(12px);
  max-width: 560px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  margin: 0 4px;
}

/* Mascot */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-mascot-wrap {
  position: relative;
  width: 440px;
  max-width: 100%;
  overflow: visible;
}
.mascot-glow {
  position: absolute;
  inset: -5% -5%;
  background: radial-gradient(ellipse 72% 85% at 50% 52%,
    rgba(20, 36, 80, 0.95) 0%,
    rgba(12, 20, 50, 0.75) 38%,
    rgba(6, 12, 30, 0.4) 60%,
    transparent 78%
  );
  z-index: 0;
  pointer-events: none;
}
.hero-mascot {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  filter:
    drop-shadow(0 40px 80px rgba(var(--yellow-rgb), 0.15))
    drop-shadow(0 10px 30px rgba(0,0,0,0.7));
  -webkit-mask-image: radial-gradient(ellipse 88% 92% at 50% 44%, black 42%, rgba(0,0,0,0.9) 56%, rgba(0,0,0,0.5) 70%, transparent 86%);
  mask-image: radial-gradient(ellipse 88% 92% at 50% 44%, black 42%, rgba(0,0,0,0.9) 56%, rgba(0,0,0,0.5) 70%, transparent 86%);
  animation: mascotFloat 4.5s ease-in-out infinite;
}
@keyframes mascotFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--grey-700);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--grey-700), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
.services {
  background: var(--bg-1);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--yellow-rgb), 0.25), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card with gradient border trick */
.service-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  overflow: hidden;
  /* Gradient border via box-shadow + outline */
  border: 1px solid rgba(255,255,255,0.06);
}
/* Ghost number watermark */
.service-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -12px; right: 16px;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  transition: color var(--t) var(--ease);
  user-select: none;
}
/* Animated top glow line on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(var(--yellow-rgb), 0.2);
  border-color: rgba(var(--yellow-rgb), 0.2);
  background: var(--bg-card-h);
}
.service-card:hover::after { opacity: 1; }
.service-card:hover::before { color: rgba(var(--yellow-rgb), 0.06); }

.service-card.featured {
  background: linear-gradient(145deg, #0f1d3a 0%, #142040 100%);
  border-color: rgba(var(--yellow-rgb), 0.3);
  box-shadow: 0 0 0 1px rgba(var(--yellow-rgb), 0.12), inset 0 0 60px rgba(var(--yellow-rgb), 0.03);
}
.service-card.featured::after { opacity: 0.7; }

.featured-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--yellow-light), var(--yellow));
  color: var(--bg-base);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(var(--yellow-rgb), 0.4);
}

.service-icon-wrap { margin-bottom: 22px; }
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(145deg, rgba(var(--yellow-rgb), 0.12), rgba(var(--yellow-rgb), 0.06));
  border: 1px solid rgba(var(--yellow-rgb), 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--yellow);
  transition: all var(--t) var(--ease-spring);
}
.service-card:hover .service-icon {
  background: var(--yellow);
  color: var(--bg-base);
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
  transform: scale(1.1) rotate(-3deg);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.service-card > p {
  color: var(--grey-300);
  font-size: 0.875rem;
  margin-bottom: 22px;
  line-height: 1.7;
}
.service-list { display: flex; flex-direction: column; gap: 7px; }
.service-list li {
  color: var(--grey-500);
  font-size: 0.83rem;
  padding-left: 16px;
  position: relative;
  transition: color var(--t) var(--ease);
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.6;
}
.service-card:hover .service-list li { color: var(--grey-300); }

/* ════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════ */
.about {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(var(--blue-rgb), 0.06), transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { display: flex; justify-content: center; }
.about-graphic {
  position: relative;
  width: 320px; height: 320px;
}
.electric-circle {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ec1 {
  width: 290px; height: 290px;
  border: 1px solid rgba(var(--yellow-rgb), 0.1);
  background: radial-gradient(circle, rgba(var(--yellow-rgb), 0.03), transparent 70%);
  animation: circleRotate 22s linear infinite;
}
.ec2 {
  width: 200px; height: 200px;
  border: 1.5px dashed rgba(var(--yellow-rgb), 0.18);
  animation: circleRotate 14s linear infinite reverse;
}
/* Pulsing ring */
.ec1::after {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(var(--yellow-rgb), 0.06);
  border-radius: 50%;
  animation: ringPulse 3s ease-out infinite;
}
@keyframes ringPulse {
  0%   { opacity:1; transform:scale(1); }
  100% { opacity:0; transform:scale(1.35); }
}
@keyframes circleRotate {
  to { transform: translate(-50%,-50%) rotate(360deg); }
}
.about-icon-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  background: linear-gradient(145deg, var(--yellow-light), var(--yellow) 60%, #FF9A3C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--bg-base);
  box-shadow: 0 0 60px rgba(var(--yellow-rgb), 0.55), 0 0 120px rgba(var(--yellow-rgb), 0.2);
}
.floating-badge {
  position: absolute;
  background: rgba(var(--bg-card), 0.95);
  background: linear-gradient(135deg, #111e36, #0d1828);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.floating-badge i { color: var(--yellow); }
.fb1 { top: 8px; right: -24px; animation: floatBadge 3.2s ease-in-out infinite; }
.fb2 { bottom: 36px; left: -28px; animation: floatBadge 3.2s ease-in-out infinite 1.1s; }
.fb3 { bottom: -14px; right: 8px; animation: floatBadge 3.2s ease-in-out infinite 2.2s; }
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.about-text .section-tag { margin-bottom: 14px; }
.about-text .section-title { text-align: left; margin-bottom: 18px; }
.about-lead {
  font-size: 1.08rem;
  color: var(--grey-100);
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.7;
}
.about-text > p {
  color: var(--grey-300);
  margin-bottom: 36px;
  font-size: 0.93rem;
  line-height: 1.8;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 38px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  transition: all var(--t) var(--ease);
}
.value-item:hover {
  background: rgba(var(--yellow-rgb), 0.04);
  border-color: rgba(var(--yellow-rgb), 0.15);
  transform: translateX(4px);
}
.value-icon {
  width: 40px; height: 40px;
  background: var(--yellow-glow);
  border: 1px solid rgba(var(--yellow-rgb), 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--t) var(--ease-spring);
}
.value-item:hover .value-icon {
  background: var(--yellow);
  color: var(--bg-base);
  transform: scale(1.1);
}
.value-item strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 3px;
  color: var(--white);
}
.value-item p { color: var(--grey-300); font-size: 0.84rem; margin: 0; }

/* ════════════════════════════════════════════════════════════
   CREDENTIALS
   ════════════════════════════════════════════════════════════ */
.credentials {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.credentials::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 300px;
  background: radial-gradient(ellipse, rgba(var(--yellow-rgb), 0.05), transparent 70%);
  pointer-events: none;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.cred-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.cred-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.cred-card:hover {
  border-color: rgba(var(--yellow-rgb), 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(var(--yellow-rgb), 0.1);
  background: var(--bg-card-h);
}
.cred-card:hover::before { opacity: 1; }
.cred-icon {
  width: 66px; height: 66px;
  background: linear-gradient(145deg, rgba(var(--yellow-rgb), 0.12), rgba(var(--yellow-rgb), 0.05));
  border: 1px solid rgba(var(--yellow-rgb), 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow);
  margin: 0 auto 22px;
  transition: all var(--t) var(--ease-spring);
}
.cred-card:hover .cred-icon {
  background: var(--yellow);
  color: var(--bg-base);
  box-shadow: var(--shadow-yellow);
  transform: scale(1.1);
}
.cred-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.cred-card p {
  color: var(--grey-300);
  font-size: 0.83rem;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════ */
.process {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(var(--blue-rgb), 0.04), transparent 70%);
  pointer-events: none;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--yellow-rgb), 0.3) 20%, rgba(var(--yellow-rgb), 0.3) 80%, transparent);
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-num {
  width: 72px; height: 72px;
  background: linear-gradient(145deg, rgba(var(--yellow-rgb), 0.14), rgba(var(--yellow-rgb), 0.06));
  border: 1.5px solid rgba(var(--yellow-rgb), 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yellow);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  background-clip: padding-box;
  box-shadow: 0 0 30px rgba(var(--yellow-rgb), 0.1);
  transition: all var(--t) var(--ease-spring);
}
.process-step:hover .step-num {
  background: var(--yellow);
  color: var(--bg-base);
  box-shadow: var(--shadow-yellow);
  transform: scale(1.1);
  border-color: var(--yellow);
}
/* Remove old connector */
.step-connector { display: none; }
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.process-step p {
  color: var(--grey-300);
  font-size: 0.86rem;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(var(--yellow-rgb), 0.04), transparent 70%);
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
  align-items: start;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  transition: all var(--t) var(--ease);
  overflow: hidden;
}
.testi-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--yellow-rgb), 0.4), transparent);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.testi-card:hover {
  border-color: rgba(var(--yellow-rgb), 0.18);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  background: var(--bg-card-h);
}
.testi-card:hover::before { opacity: 1; }
.testi-card.featured-testi {
  background: linear-gradient(145deg, #101f3c, #152440);
  border-color: rgba(var(--yellow-rgb), 0.3);
  box-shadow: 0 0 0 1px rgba(var(--yellow-rgb), 0.1), 0 20px 50px rgba(0,0,0,0.4);
  transform: scale(1.04);
}
.testi-card.featured-testi:hover { transform: scale(1.04) translateY(-6px); }

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(var(--yellow-rgb), 0.12);
  margin-bottom: -16px;
  display: block;
  font-weight: 900;
  letter-spacing: -0.05em;
  user-select: none;
}
.testi-stars {
  color: var(--yellow);
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testi-card > p {
  color: var(--grey-100);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 26px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--yellow), #FF9A3C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--bg-base);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(var(--yellow-rgb), 0.3);
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--grey-500);
}
.review-cta { text-align: center; }

/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 50%; right: -120px;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(var(--yellow-rgb), 0.05), transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-info .section-tag { margin-bottom: 14px; display: block; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-info > p {
  color: var(--grey-300);
  margin-bottom: 38px;
  font-size: 0.95rem;
  line-height: 1.75;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all var(--t) var(--ease);
  color: var(--white);
}
a.contact-item:hover {
  border-color: rgba(var(--yellow-rgb), 0.25);
  background: rgba(var(--yellow-rgb), 0.04);
  transform: translateX(5px);
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--yellow-glow);
  border: 1px solid rgba(var(--yellow-rgb), 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all var(--t) var(--ease-spring);
}
a.contact-item:hover .contact-icon {
  background: var(--yellow);
  color: var(--bg-base);
  border-color: var(--yellow);
  transform: scale(1.1);
}
.contact-icon.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: var(--green);
  border-color: rgba(37, 211, 102, 0.2);
}
a.contact-item:hover .contact-icon.whatsapp {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.contact-item > div:last-child span {
  display: block;
  font-size: 0.72rem;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 1px;
  font-weight: 600;
}
.contact-item > div:last-child strong {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 600;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-300);
  font-size: 0.95rem;
  transition: all var(--t) var(--ease-spring);
}
.social-links a:hover {
  background: var(--yellow);
  color: var(--bg-base);
  border-color: var(--yellow);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 20px rgba(var(--yellow-rgb), 0.35);
}

/* Form */
.contact-form-wrap {
  background: linear-gradient(145deg, #0c1526, #101c32);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow) 30%, rgba(var(--yellow-rgb), 0.5) 70%, transparent);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--grey-300);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--t) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-700);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(var(--yellow-rgb), 0.6);
  background: rgba(var(--yellow-rgb), 0.04);
  box-shadow: 0 0 0 3px rgba(var(--yellow-rgb), 0.08);
}
.form-group textarea { resize: vertical; }
.form-group select option {
  background: #0e1628;
  color: var(--white);
}
.form-note {
  text-align: center;
  font-size: 0.77rem;
  color: var(--grey-500);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-note::before {
  content: '\f023';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--yellow);
  opacity: 0.7;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-base);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 88px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0.4;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 60px;
  padding-bottom: 64px;
}
.footer-logo {
  height: 48px; width: auto;
  margin-bottom: 22px;
  filter: brightness(1.05) drop-shadow(0 2px 10px rgba(var(--yellow-rgb), 0.15));
}
.footer-brand p {
  color: var(--grey-500);
  font-size: 0.86rem;
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 280px;
}
.footer-links h5,
.footer-contact h5 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey-300);
  margin-bottom: 22px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links ul a {
  color: var(--grey-500);
  font-size: 0.875rem;
  transition: all var(--t) var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links ul a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--yellow);
  transition: width var(--t) var(--ease);
}
.footer-links ul a:hover {
  color: var(--yellow);
  padding-left: 4px;
}
.footer-links ul a:hover::before { width: 10px; }
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--grey-500);
}
.footer-contact li i {
  color: var(--yellow);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  opacity: 0.8;
}
.footer-contact a { color: var(--grey-500); transition: color var(--t) var(--ease); }
.footer-contact a:hover { color: var(--yellow); }
.license-badges {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.license-badges span {
  background: rgba(var(--yellow-rgb), 0.08);
  border: 1px solid rgba(var(--yellow-rgb), 0.2);
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 26px 0;
  text-align: center;
}
.footer-bottom p { color: var(--grey-700); font-size: 0.78rem; line-height: 2; }
.footer-lic { font-size: 0.72rem !important; }

/* ════════════════════════════════════════════════════════════
   FLOATING CTA
   ════════════════════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
  opacity: 0;
  transform: translateY(24px);
  transition: all var(--t) var(--ease-out);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: all var(--t) var(--ease-spring);
  white-space: nowrap;
}
.phone-float {
  background: linear-gradient(135deg, var(--yellow-light), var(--yellow));
  color: var(--bg-base);
}
.phone-float:hover {
  transform: scale(1.07) translateY(-2px);
  box-shadow: var(--shadow-yellow);
}
.whatsapp-float {
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: white;
}
.whatsapp-float:hover {
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.45);
}
.float-btn i { font-size: 1.1rem; }

/* ════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1160px) {
  .hero-content { grid-template-columns: 1fr 400px; }
  .hero-mascot-wrap { width: 380px; }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { gap: 52px; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { order: -1; justify-content: center; }
  .hero-mascot-wrap { width: 260px; margin: 0 auto; }
  .hero-left { max-width: 100%; }
  .hero-stats { max-width: 100%; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card.featured-testi { transform: scale(1); }
  .testi-card.featured-testi:hover { transform: translateY(-6px); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 76px 0; }
  .container { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(4, 8, 15, 0.97);
    backdrop-filter: blur(24px);
    padding: 20px;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; width: 100%; border-radius: var(--radius-sm); }
  .hamburger { display: flex; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat { min-width: 80px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .floating-cta { bottom: 20px; right: 18px; }
  .float-btn span { display: none; }
  .float-btn { padding: 15px; }
  .float-btn i { font-size: 1.25rem; }
}
@media (max-width: 520px) {
  .cred-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .hero-title { font-size: 2.6rem; }
}

/* ════════════════════════════════════════════════════════════
   ABOUT — REAL PHOTO
   ════════════════════════════════════════════════════════════ */
.about-img-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}
.about-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease);
}
.about-img-wrap:hover .about-photo { transform: scale(1.04); }
.about-img-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(4, 8, 15, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(var(--yellow-rgb), 0.3);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}
.about-img-badge i { color: var(--yellow); font-size: 0.75rem; }
.about-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(4,8,15,0.9) 0%, rgba(4,8,15,0.6) 50%, transparent 100%);
  padding: 32px 24px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--grey-100);
  font-size: 0.88rem;
  font-weight: 600;
}
.about-img-overlay i { color: var(--yellow); font-size: 1.1rem; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   GALLERY — MASONRY + FILTER + LIGHTBOX
   ════════════════════════════════════════════════════════════ */
.gallery { background: var(--bg-2); }

/* ── Filter Tabs ── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.gf-btn {
  padding: 10px 22px;
  border: 1.5px solid rgba(255,209,0,0.25);
  background: rgba(255,209,0,0.05);
  color: rgba(255,255,255,0.6);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: inherit;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.gf-btn:hover {
  border-color: rgba(255,209,0,0.6);
  color: var(--yellow);
  background: rgba(255,209,0,0.08);
}
.gf-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--bg-base);
}

/* ── Masonry Grid ── */
.gallery-masonry {
  columns: 4 230px;
  column-gap: 14px;
}
.gm-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
}
.gm-item img {
  width: 100%;
  display: block;
  transition: transform 0.55s var(--ease);
  vertical-align: top;
}
.gm-item:hover img { transform: scale(1.06); }
.gm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,8,15,0.9) 0%, rgba(4,8,15,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.gm-item:hover .gm-overlay { opacity: 1; }
.gm-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--bg-base);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  width: fit-content;
}
.gm-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  background: rgba(4,8,15,0.5);
  padding: 6px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.gm-item.filter-hidden {
  display: none;
}

/* ── Gallery Count ── */
.gallery-count {
  text-align: center;
  margin-top: 32px;
  color: rgba(255,255,255,0.3);
  font-size: 0.83rem;
  letter-spacing: 0.05em;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,8,15,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.lb-inner {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 960px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 60px 72px 32px;
}
#lb-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.85);
  display: block;
}
.lb-caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lb-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--bg-base);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
}
#lb-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
}
.lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s;
}
.lb-close:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.6);
}
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,209,0,0.12);
  border: 1.5px solid rgba(255,209,0,0.35);
  color: var(--yellow);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-prev:hover, .lb-next:hover {
  background: var(--yellow);
  color: var(--bg-base);
}

/* Responsive */
@media (max-width: 1100px) {
  .gallery-masonry { columns: 3 200px; }
}
@media (max-width: 700px) {
  .gallery-masonry { columns: 2 140px; column-gap: 10px; }
  .gm-item { margin-bottom: 10px; }
  .gm-overlay { opacity: 1; }
  .gallery-filters { gap: 7px; }
  .gf-btn { padding: 8px 14px; font-size: 0.76rem; }
  .lb-inner { padding: 56px 16px 24px; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
}
@media (max-width: 420px) {
  .gallery-masonry { columns: 1; }
}

/* ════════════════════════════════════════════════════════════
   MASCOT ANIMATIONS — ELECTRIC EDITION
   ════════════════════════════════════════════════════════════ */

/* Pronounced sway with tilt */
.hero-mascot {
  animation: mascotSway 4.5s ease-in-out infinite !important;
  transform-origin: 50% 95%;
}
@keyframes mascotSway {
  0%   { transform: translateY(0px)    rotate(0deg)    scale(1);    }
  20%  { transform: translateY(-10px)  rotate(1.2deg)  scale(1.01); }
  50%  { transform: translateY(-22px)  rotate(0deg)    scale(1.02); }
  80%  { transform: translateY(-10px)  rotate(-1.2deg) scale(1.01); }
  100% { transform: translateY(0px)    rotate(0deg)    scale(1);    }
}

/* Yellow aura that pulses behind the character */
.mascot-aura {
  position: absolute;
  inset: 5% 10%;
  background: radial-gradient(ellipse 60% 70% at 50% 55%,
    rgba(255,209,0,0.28) 0%,
    rgba(255,180,0,0.12) 45%,
    transparent 72%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: auraPulse 4.5s ease-in-out infinite;
}
@keyframes auraPulse {
  0%,100% { opacity: 0.7; transform: scale(1);    filter: blur(20px); }
  50%      { opacity: 1;   transform: scale(1.22); filter: blur(28px); }
}

/* Ground glow — wide ellipse under feet */
.mascot-ground-glow {
  position: absolute;
  bottom: -1%;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(255,209,0,0.7) 0%, rgba(255,180,0,0.25) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(9px);
  pointer-events: none;
  z-index: 5;
  animation: groundPulse 4.5s ease-in-out infinite;
}
@keyframes groundPulse {
  0%,100% { opacity: 0.8;  transform: translateX(-50%) scaleX(1)    scaleY(1);    }
  50%      { opacity: 1;    transform: translateX(-50%) scaleX(0.68) scaleY(0.6);  }
}

/* Floating ⚡ bolt icons — hard-coded positions via modifier classes */
.mascot-bolt-icon {
  position: absolute;
  font-size: 1.5rem;
  pointer-events: none;
  z-index: 6;
  animation: boltIconFlash linear infinite;
  filter: drop-shadow(0 0 8px rgba(255,209,0,1)) drop-shadow(0 0 18px rgba(255,150,0,0.7));
  user-select: none;
  line-height: 1;
}
.mbi-1 { top:  8%; left: 80%; animation-duration: 2.2s; animation-delay: 0s;    }
.mbi-2 { top: 18%; left:  4%; animation-duration: 1.8s; animation-delay: 0.7s;  }
.mbi-3 { top: 62%; left: 87%; animation-duration: 2.5s; animation-delay: 1.3s;  }
.mbi-4 { top: 72%; left:  2%; animation-duration: 2.0s; animation-delay: 0.4s;  }
@keyframes boltIconFlash {
  0%,28%,100% { opacity: 0; transform: scale(0.3) translateY(0);     }
  33%          { opacity: 1; transform: scale(1.5) translateY(-4px);  }
  52%          { opacity: 1; transform: scale(1.1) translateY(-12px); }
  78%          { opacity: 0; transform: scale(0.4) translateY(-22px); }
}

/* Ring burst emanating from character centre */
.mascot-ring-burst {
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border: 2px solid rgba(255,209,0,0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 6;
  animation: ringBurst 3s ease-out infinite;
}
@keyframes ringBurst {
  0%      { opacity: 0.9; transform: translate(-50%,-50%) scale(0.3); }
  80%     { opacity: 0;   transform: translate(-50%,-50%) scale(2.4); }
  100%    { opacity: 0;   transform: translate(-50%,-50%) scale(2.4); }
}

/* Spark particles — rectangular glowing arcs */
.mascot-spark {
  position: absolute;
  pointer-events: none;
  z-index: 7;
  box-shadow: 0 0 8px 2px rgba(255,209,0,0.9), 0 0 16px rgba(255,150,0,0.5);
  animation: sparkShoot linear forwards;
}
@keyframes sparkShoot {
  0%   { transform: translate(0,0) rotate(var(--rot,0deg)) scaleX(1); opacity: 1; }
  50%  { opacity: 1; }
  100% { transform: translate(var(--dx),var(--dy)) rotate(var(--rot,0deg)) scaleX(0.1); opacity: 0; }
}

/* Trail sparks — longer vertical streaks rising upward */
.mascot-spark-trail {
  position: absolute;
  width: 2px;
  height: 20px;
  background: linear-gradient(to top, rgba(255,209,0,1), rgba(255,255,255,0.8), transparent);
  border-radius: 2px;
  pointer-events: none;
  z-index: 7;
  box-shadow: 0 0 10px 2px rgba(255,209,0,0.8), 0 0 20px rgba(255,180,0,0.4);
  animation: trailShoot ease-out forwards;
}
@keyframes trailShoot {
  0%   { transform: translate(0,0) scaleY(1); opacity: 1; }
  100% { transform: translate(var(--dx),var(--dy)) scaleY(0.1); opacity: 0; }
}
