/* ==========================================================
   SHAZNATION — SPA STYLESHEET
   Theme is locked: black bg, neon green / orange / blue accents,
   Poppins font, glass cards, 3D wireframe background.
   Each section below is scoped by its own class prefix so it
   can be edited independently without affecting others.
   ========================================================== */

:root {
  --shaz-green: #a4ff00;
  --shaz-orange: #ff3c30;
  --shaz-blue: #0099ff;
  --shaz-white: #ffffff;
  --dark-bg: #000000;
  --shaz-surface: #0a0a0a;
  --shaz-surface-2: #111111;
  --shaz-muted: #888888;
  --shaz-muted-2: #666666;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; }
body { background: var(--dark-bg); color: var(--shaz-white); overflow-x: hidden; }

.green { color: var(--shaz-green); }

/* --- 3D WAVE BACKGROUND (signature element) --- */
#bg-container { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1; background: #000; }
#wave-canvas { display: block; width: 100%; height: 100%; }

/* ==========================================================
   HEADER / NAVBAR
   ========================================================== */
.site-header { position: relative; z-index: 1000; }

.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 12px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(164,255,0,0.08);
  transition: background 0.3s, border-color 0.3s;
}
.card-logo-wrap { width: 100%; height: 240px; border-bottom: 1px solid rgba(164,255,0,0.15); overflow: hidden; background: #000; display: flex; align-items: center; justify-content: center; padding: 18px; }
.card-logo-wrap img { max-width: 80%; max-height: 80%; width: auto; height: auto; object-fit: contain; display: block; transition: transform 0.4s ease; }
.card:hover .card-logo-wrap img { transform: scale(1.08); }
.navbar.scrolled { background: rgba(0,0,0,0.85); border-bottom-color: rgba(164,255,0,0.18); }

.logo { display: flex; align-items: center; }
.logo img { height: 90px !important; width: auto !important; max-width: 200px; display: block; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.25s, background 0.25s;
  position: relative;
  white-space: nowrap;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--shaz-green);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links li a:hover { color: var(--shaz-green); background: rgba(164,255,0,0.05); }
.nav-links li a:hover::after { width: 60%; }
.nav-links li a.active { color: var(--shaz-green); }
.nav-links li a.active::after { width: 60%; }

.nav-links li.nav-cta a {
  color: #000;
  background: var(--shaz-green);
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 700;
}
.nav-links li.nav-cta a:hover { background: #c8ff3a; color: #000; }
.nav-links li.nav-cta a::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--shaz-green); border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }



@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 75%; max-width: 300px; height: 100vh;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(164,255,0,0.1);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 30px;
    gap: 6px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links li a { font-size: 14px; padding: 12px 16px; display: block; width: 100%; }
  .nav-links li.nav-cta { margin-top: 16px; }
  .nav-links li.nav-cta a { text-align: center; display: block; }
}

/* ==========================================================
   SHARED SECTION HELPERS
   ========================================================== */
.section-eyebrow {
  color: var(--shaz-green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.section-eyebrow.center { text-align: center; }
.section-title {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
  z-index: 10;
}
.section-subtitle {
  text-align: center;
  color: var(--shaz-muted);
  font-size: 14px;
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.7;
  position: relative;
  z-index: 10;
}

/* ==========================================================
   SECTION 1 — HERO
   ========================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 8% 80px;
  position: relative;
}
.hero-eyebrow {
  color: var(--shaz-muted-2);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title { font-size: clamp(35px, 8vw, 80px); font-weight: 800; text-transform: uppercase; line-height: 0.95; }
.hero-tagline { margin-top: 22px; opacity: 0.65; letter-spacing: 3px; font-size: 14px; }
.hero-tagline .dot { color: var(--shaz-green); margin: 0 4px; }

.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 36px; }

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(164,255,0,0.4);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--shaz-green);
  animation: scrollCue 1.6s infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ==========================================================
   SECTION 2 — ABOUT
   ========================================================== */
.about-section {
  display: flex;
  flex-wrap: wrap;
  padding: 100px 8%;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 10;
}
.about-text { flex: 1; min-width: 320px; }
.about-text h2 { font-size: 36px; margin-bottom: 20px; text-transform: uppercase; }
.about-text p { color: #aaa; line-height: 1.8; font-size: 15px; margin-bottom: 14px; }

.about-chips { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.chip {
  background: rgba(164,255,0,0.05);
  border: 1px solid rgba(164,255,0,0.15);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  min-width: 110px;
}
.chip strong { color: var(--shaz-green); font-size: 20px; }
.chip span { color: var(--shaz-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.video-box {
  flex: 1;
  min-width: 320px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(164,255,0,0.15);
  box-shadow: 0 0 40px rgba(164,255,0,0.08);
  position: relative;
}
.about-video { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; display: block; }

/* ==========================================================
   SHARED — BUTTONS
   ========================================================== */
.btn {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid var(--shaz-green);
  color: var(--shaz-green);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn:hover { background: var(--shaz-green); color: #000; transform: translateY(-2px); }

.btn-solid { background: var(--shaz-green); color: #000; padding: 13px 34px; border-radius: 50px; }
.btn-solid:hover { background: #c8ff3a; }
.btn-outline { background: transparent; color: var(--shaz-white); border-color: rgba(255,255,255,0.25); padding: 13px 34px; border-radius: 50px; }
.btn-outline:hover { border-color: var(--shaz-green); color: var(--shaz-green); background: transparent; transform: translateY(-2px); }

/* ==========================================================
   SECTION 3 — DIVISIONS (IMPROVED)
   ========================================================== */
/* ==========================================================
   /* ==========================================================
   SECTION 3 — DIVISIONS
   ========================================================== */
.divisions-section {
  padding: 100px 8%;
  position: relative;
  z-index: 10;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
  align-items: stretch;
}

.card {
  background: #0a0a0a;
  border: 1px solid rgba(164, 255, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.45s ease,
              box-shadow 0.45s ease;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--shaz-green);
  box-shadow: 0 20px 40px rgba(164, 255, 0, 0.15),
              0 0 0 1px rgba(164, 255, 0, 0.2);
}

/* Sheen effect on hover */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(164, 255, 0, 0.08), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 2;
}

.card:hover::before {
  left: 130%;
}

/* ---- Logo area — big, clean, no crop ---- */
.card-logo-wrap {
  width: 100%;
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 0px;
  overflow: hidden;
}

.card-logo-wrap img {
  width: 95%;
  height: 95%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.card:hover .card-logo-wrap img {
  transform: scale(2.08);
}

/* ---- Card body / text ---- */
.card-body {
  padding: 26px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  background: linear-gradient(180deg, rgba(20,20,20,0.6), rgba(10,10,10,0.9));
}

.card-body p {
  font-size: 14px;
  color: #999;
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 92%;
  font-weight: 400;
}

.card-btn {
  margin-top: auto;
  display: inline-block;
  padding: 10px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--shaz-green);
  border: 1.5px solid var(--shaz-green);
  border-radius: 8px;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);   /* poora card zoom, translateY hata diya */
  border-color: var(--shaz-green);
  box-shadow: 0 20px 40px rgba(164, 255, 0, 0.15),
              0 0 0 1px rgba(164, 255, 0, 0.2);
}

.card-btn:hover {
  background: var(--shaz-green);
  color: #000;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .division-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .divisions-section { padding: 80px 6%; }
  .division-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .card-logo-wrap { padding: 6px; }
  .card-body { padding: 22px 20px 26px; }
  .card-body p { font-size: 13.5px; }
}

@media (max-width: 560px) {
  .divisions-section { padding: 70px 5%; }
  .division-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card-logo-wrap { aspect-ratio: 16 / 10; }
  .card-btn { padding: 9px 26px; font-size: 12px; }
}
/* ==========================================================
   SECTION 4 — WHY SHAZNATION
   ========================================================== */
.why-section { padding: 100px 8%; position: relative; z-index: 10; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 50px;
}
.why-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 30px 24px;
  transition: 0.3s;
}
.why-card:hover { border-color: rgba(164,255,0,0.25); transform: translateY(-6px); }
.why-icon { width: 42px; height: 42px; margin-bottom: 18px; }
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 { font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.why-card p { font-size: 13px; color: var(--shaz-muted); line-height: 1.6; }

/* ==========================================================
   SECTION 5 — PROCESS / ECOSYSTEM FLOW
   ========================================================== */
.process-section { padding: 100px 8%; position: relative; z-index: 10; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 60px;
}
.process-step { text-align: center; padding: 34px 22px; }
.process-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: 0.3s;
}
.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(164,255,0,0.25);
  background: rgba(164,255,0,0.03);
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -10px;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
@media (max-width: 900px) {
  .process-step:not(:last-child)::after { display: none; }
  .process-step { margin-bottom: 30px; }
}
.process-num { font-size: 40px; font-weight: 800; display: block; margin-bottom: 10px; opacity: 0.9; }
.process-step h3 { font-size: 16px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--shaz-muted); line-height: 1.6; }

/* ==========================================================
   SECTION 6 — UPCOMING FEATURES
   ========================================================== */
.features-section { padding: 100px 8%; position: relative; z-index: 10; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 50px;
}
.f-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(0,153,255,0.1); padding: 28px 20px; border-radius: 12px; transition: 0.3s; }
.f-card:hover { border-color: rgba(0,153,255,0.35); transform: translateY(-4px); }
.f-icon { width: 30px; height: 30px; color: var(--shaz-blue); margin-bottom: 14px; }
.f-icon svg { width: 100%; height: 100%; }
.f-card h4 { color: var(--shaz-blue); margin-bottom: 10px; font-size: 14px; text-transform: uppercase; }
.f-card p { font-size: 12px; color: #666; line-height: 1.5; }

/* ==========================================================
   SECTION 7 — COMMUNITY / BUILT FOR
   ========================================================== */
.community-section { padding: 100px 8%; position: relative; z-index: 10; }
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.community-card {
  text-align: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 34px 22px;
  transition: 0.3s;
}
.community-card:hover { transform: translateY(-6px); border-color: rgba(164,255,0,0.2); }
.community-icon { width: 40px; height: 40px; margin: 0 auto 16px; }
.community-icon svg { width: 100%; height: 100%; }
.community-card h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.community-card p { font-size: 13px; color: var(--shaz-muted); line-height: 1.6; }

/* ==========================================================
   SECTION 8 — FAQ
   ========================================================== */
.faq-section { padding: 100px 8% 120px; position: relative; z-index: 10; }
.faq-list { max-width: 720px; margin: 50px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.015); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--shaz-white);
  padding: 20px 22px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-icon { color: var(--shaz-green); font-size: 20px; font-weight: 400; transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 22px; }
.faq-item.open .faq-answer { max-height: 220px; padding: 0 22px 20px; }
.faq-answer p { font-size: 13px; color: var(--shaz-muted); line-height: 1.7; }

/* ==========================================================
   SECTION 9 — CONTACT / CTA
   ========================================================== */
.contact-section {
  text-align: center;
  padding: 110px 8% 90px;
  position: relative;
  z-index: 10;
}
.contact-title { font-size: clamp(24px, 5vw, 40px); margin-bottom: 15px; text-transform: uppercase; }
.contact-subtitle { color: #666; font-size: 14px; max-width: 480px; margin: 0 auto; }
.email-btn {
  display: inline-block;
  padding: 15px 45px;
  background: var(--shaz-blue);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0,153,255,0.3);
  margin-top: 26px;
  transition: 0.3s;
}
.email-btn:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(0,153,255,0.5); }

/* ==========================================================
   FOOTER
   ========================================================== */
/* .site-footer {
  background: rgba(0,0,0,0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 8% 30px;
  position: relative;
  z-index: 10;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);

}

.footer-logo-box {
  height: 40px;
  width: auto;        
  display: flex;
  align-items: center;
  margin-bottom: 12px;
} 
  */

  /* ===== FOOTER CUSTOM STYLES ===== */
/* ===== FOOTER CUSTOM STYLES ===== */
/* ===== FOOTER CUSTOM STYLES ===== */
/* ===== FOOTER CUSTOM STYLES ===== */
.site-footer {
  background: var(--shaz-dark, #000);
  border-top: 1px solid rgba(164, 255, 0, 0.15);
  padding: 50px 30px 25px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr; /* Symmetrical equal distribution */
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Brand & Logo Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: px;
  margin-bottom: 0;
}

/* Big and bold logo icon box */
.footer-logo-box {
  width: 120px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; 
}

.footer-logo-box >img {
  width: 100%;
  height: 100%;
   object-fit: contain;
  display: block; 
  position: relative;
  left: 15px;
}

/* Logo Text (Text next to logo icon) */
.footer-logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
  white-space: nowrap;
}

/* Link Columns Alignment */
.footer-links,
.footer-social {
  padding-top: 4px;
}

.footer-links h5,
.footer-social h5 {
  color: var(--shaz-green, #a4ff00);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: 600;
  line-height: 1;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--shaz-orange, #ff3c30);
  transform: translateX(3px);
}

/* Social Icons - Strictly Single Line */
.social-icons {
  display: flex;
  gap: 8px; /* Slightly tighter gap to guarantee single line fit */
  flex-wrap: nowrap; /* Prevents icons from moving to second line */
  align-items: center;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(164, 255, 0, 0.3);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: var(--shaz-green, #a4ff00);
  border-color: var(--shaz-green, #a4ff00);
  color: #000;
}

/* Copyright Section */
.copyright {
  color: rgba(255, 255, 255, 0.5) !important;
  text-align: center;
  font-size: 13px;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
.footer-logo { height: 44px; width: auto; object-fit: contain; margin-bottom: 12px; }
.footer-brand p { color: var(--shaz-muted-2); font-size: 12px; letter-spacing: 1px; }
.footer-links h5, .footer-social h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--shaz-muted); margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: var(--shaz-green); }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: 0.25s;
}
.social-icons a svg { width: 16px; height: 16px; }
.social-icons a:hover { border-color: var(--shaz-green); color: var(--shaz-green); transform: translateY(-3px); }
.copyright { margin-top: 30px; color: #333; font-size: 11px; text-align: center; }

/* ==========================================================
   SCROLL REVEAL (lightweight, respects reduced motion)
   ========================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
}
