/* ============================================================
   FIREFLYS.AGENCY — MASTER STYLESHEET
   Dark + Warm Orange Design System with Russo One Font
   ============================================================ */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Russo+One&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  /* Backgrounds */
  --bg-dark: #07080A;
  --bg-darker: #040506;
  --bg-elevated: #0C0E12;

  /* Accent — Warm Orange */
  --accent: #F39C1F;
  --accent-light: #FFC867;
  --accent-dim: rgba(243, 156, 31, 0.12);
  --accent-glow: rgba(243, 156, 31, 0.4);

  /* Text */
  --text-bright: #FFFFFF;
  --text-primary: #EAEAEA;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;

  /* Glass / Cards */
  --glass-bg: rgba(12, 14, 18, 0.4);
  --glass-border: rgba(255, 255, 255, 0.04);
  --glass-hover-bg: rgba(12, 14, 18, 0.8);
  --glass-hover-border: rgba(243, 156, 31, 0.3);

  /* Typography */
  --font-heading: 'Russo One', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --section-pad: clamp(80px, 12vh, 160px);
  --container-max: 1300px;
  --container-pad: clamp(24px, 5vw, 60px);

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body { height: auto; }
body { overflow-x: hidden; cursor: none; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
button { border: none; background: none; cursor: none; }

/* ===== CUSTOM FIREFLY CURSOR ===== */
.cursor {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px;
  background: #FFF1CD; /* Bright hot center */
  border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  /* Glowing firefly aura */
  box-shadow: 
    0 0 10px 2px rgba(243, 156, 31, 0.8),
    0 0 20px 5px rgba(243, 156, 31, 0.4);
  animation: fireflyPulse 1.5s infinite alternate ease-in-out;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}

@keyframes fireflyPulse {
  0% {
    box-shadow: 
      0 0 8px 2px rgba(243, 156, 31, 0.6),
      0 0 15px 4px rgba(243, 156, 31, 0.3);
    opacity: 0.7;
  }
  100% {
    box-shadow: 
      0 0 15px 3px rgba(243, 156, 31, 1),
      0 0 30px 8px rgba(243, 156, 31, 0.6),
      0 0 40px 10px rgba(243, 156, 31, 0.2);
    opacity: 1;
  }
}

.cursor-follower {
  position: fixed; top: 0; left: 0; width: 50px; height: 50px;
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  /* Ambient light trailing behind the firefly */
  background: radial-gradient(circle, rgba(243, 156, 31, 0.15) 0%, transparent 70%);
  border: none;
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out);
}

/* Hover States - Firefly gets "excited" */
.cursor.hover { 
  width: 12px; height: 12px; 
  background: #FFFFFF;
  box-shadow: 
    0 0 20px 5px rgba(243, 156, 31, 1),
    0 0 40px 15px rgba(243, 156, 31, 0.6);
  animation-duration: 0.5s; /* Pulses much faster on hover */
}

.cursor-follower.hover {
  width: 80px; height: 80px; 
  background: radial-gradient(circle, rgba(243, 156, 31, 0.25) 0%, transparent 70%);
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none !important; }
  button, a { cursor: pointer; }
}

/* ===== PARTICLES CANVAS ===== */
#firefly-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 5;
}

/* ===== LOADING SCREEN ===== */
.loader {
  position: fixed; inset: 0; background: var(--bg-dark);
  z-index: 10000; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 1s var(--ease-out), visibility 1s;
}

.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-fireflies { position: relative; width: 100px; height: 100px; margin-bottom: 30px; }
.loader-dot {
  position: absolute; width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--accent-glow); opacity: 0;
  animation: flyAround 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: calc(var(--i) * 0.3s);
}

@keyframes flyAround {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  20% { opacity: 1; transform: translate(calc(-50% + (Math.random() * 40px - 20px)), calc(-50% + 20px)) scale(1); }
  80% { opacity: 1; transform: translate(calc(-50% + (Math.random() * 40px - 20px)), calc(-50% - 40px)) scale(1); }
  100% { transform: translate(calc(-50% + (Math.random() * 60px - 30px)), calc(-50% - 60px)) scale(0); opacity: 0; }
}

.loader-text {
  font-family: var(--font-heading); font-size: 14px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-secondary); margin-bottom: 20px;
  animation: pulseOpacity 2s infinite alternate;
}

@keyframes pulseOpacity { 0% { opacity: 0.5; } 100% { opacity: 1; } }

.loader-progress {
  width: 200px; height: 2px; background: var(--glass-border);
  border-radius: 2px; overflow: hidden;
}
.loader-progress-bar { width: 0%; height: 100%; background: var(--accent); transition: width 0.2s var(--ease-out); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; padding: 25px 0; z-index: 100;
  transition: all 0.4s var(--ease-out); transform: translateY(-100%); opacity: 0;
}

.nav.scrolled {
  padding: 15px 0; background: rgba(7, 8, 10, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad);
  display: flex; align-items: center; justify-content: space-between;
}

/* Premium Brand Lockup */
.brand-lockup {
  display: flex; align-items: center; text-decoration: none; transition: opacity 0.3s;
}
.brand-lockup:hover { opacity: 0.85; }
.brand-logo-img { height: 70px; width: auto; object-fit: contain; transition: height 0.3s var(--ease-out); }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--text-primary); transition: color 0.3s; letter-spacing: 0.05em; }
.nav-link:hover { color: var(--accent); }

.nav-cta {
  font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.1em;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  padding: 12px 24px; border-radius: 100px; color: var(--text-bright);
  transition: all 0.3s var(--ease-out); backdrop-filter: blur(10px); text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--accent); border-color: var(--accent); color: var(--bg-darker);
  box-shadow: 0 0 20px var(--accent-glow);
}

.nav-hamburger { display: none; width: 30px; height: 20px; position: relative; z-index: 101; }
.nav-hamburger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--text-bright); transition: all 0.3s; }
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { bottom: 0; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; background: var(--bg-dark); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 40px; opacity: 0; visibility: hidden; transition: all 0.4s var(--ease-out);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-link { font-family: var(--font-heading); font-size: 32px; color: var(--text-bright); }

/* ===== LAYOUT & TYPOGRAPHY ===== */
.section { position: relative; padding: var(--section-pad) 0; z-index: 10; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }

.section-tag {
  font-family: var(--font-heading); font-size: 14px;
  letter-spacing: 0.2em; color: var(--accent);
  display: block; margin-bottom: 20px; text-transform: uppercase;
}

.section-heading {
  font-family: var(--font-heading); font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1; color: var(--text-bright);
  margin-bottom: 24px; letter-spacing: 0.05em; text-transform: uppercase;
}
.section-heading em { font-style: normal; color: var(--accent); }

.section-sub {
  font-size: clamp(16px, 2vw, 18px); color: var(--text-secondary);
  line-height: 1.6; max-width: 600px; margin-bottom: 50px;
}

/* Reveal elements */
.reveal-el { opacity: 0; transform: translateY(40px); }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px; text-transform: uppercase;
  background: var(--accent); color: var(--bg-darker);
  font-family: var(--font-heading); font-size: 14px; letter-spacing: 0.1em;
  padding: 16px 36px; border-radius: 100px; transition: all 0.4s var(--ease-out);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--accent-glow); background: var(--accent-light); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 12px; text-transform: uppercase;
  background: #111; border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-bright); font-family: var(--font-heading); font-size: 14px; letter-spacing: 0.1em;
  padding: 16px 36px; border-radius: 100px; transition: all 0.4s var(--ease-out);
}
.btn-dark:hover { background: #222; transform: translateY(-2px); border-color: rgba(255,255,255,0.3); }
.btn-dark svg { transition: transform 0.3s; }
.btn-dark:hover svg { transform: translate(2px, -2px); }

/* ============================================================
   HERO — PINNED SCROLL WITH SCI-FI LAYOUT
   ============================================================ */
.hero-wrapper {
  height: 500vh;
  position: relative; z-index: 1;
}

.hero {
  height: 100vh; width: 100%; position: sticky; top: 0; background: var(--bg-darker); overflow: hidden;
}

.hero-split-left {
  position: absolute; top: 0; left: 0; bottom: 0; width: 40%;
  background: radial-gradient(ellipse at left center, rgba(243, 156, 31, 0.12) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}

.hero-split-right {
  position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: var(--bg-darker); z-index: 0; pointer-events: none;
}

#hero-canvas {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 100vh; object-fit: cover; z-index: 1; mix-blend-mode: screen; opacity: 0.8;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}

.hero-phase {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0 var(--container-pad); opacity: 0; visibility: hidden;
}

/* Sci-Fi Layout modified for Orange Palette */
.njey-hero {
  display: flex; gap: 24px; align-items: stretch; max-width: 900px; width: 100%; margin: 0 auto;
}
.njey-accent-line {
  width: 12px; background: var(--accent); flex-shrink: 0;
}
.njey-text-group {
  display: flex; flex-direction: column; justify-content: center; text-align: left;
}
.njey-kicker {
  font-family: var(--font-heading); font-size: 14px; letter-spacing: 0.3em;
  color: var(--accent); margin-bottom: 12px;
}
.njey-title {
  font-family: var(--font-heading); font-size: clamp(48px, 10vw, 120px);
  line-height: 0.9; letter-spacing: 0.05em; color: var(--text-bright);
  text-shadow: 0 0 40px rgba(243, 156, 31, 0.2); margin-bottom: 16px;
}
.njey-sub {
  font-size: clamp(16px, 2vw, 20px); color: var(--text-primary); border-left: 2px solid rgba(255,255,255,0.2); padding-left: 16px;
}

/* Phase 2: Blocky typography matching reference image 2 */
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 900px;
  width: 100%;
  margin: 0 auto; /* To center the block itself if needed, but text is left */
}

/* Phase 3 */
.phase-cta { pointer-events: auto; }
.hero-sub {
  font-size: clamp(18px, 2vw, 24px); color: var(--text-bright);
  max-width: 700px; margin: 0 auto 40px; text-align: center; line-height: 1.5;
}
.hero-buttons { display: flex; justify-content: center; gap: 20px; }

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: opacity 0.5s; opacity: 1; /* handled by GSAP */
}
.scroll-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-secondary); }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--accent), transparent); animation: pulseLine 2s infinite; transform-origin: top; }
@keyframes pulseLine { 0% { transform: scaleY(0); opacity: 0; } 50% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1) translateY(20px); opacity: 0; } }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { background: var(--bg-dark); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-heading { font-size: clamp(48px, 6vw, 80px); margin-bottom: 40px; }
.about-desc { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; max-width: 500px; }

.about-team { margin-top: 40px; padding-top: 30px; position: relative; }
.team-line { position: absolute; top: 0; left: 0; width: 60px; height: 2px; background: var(--accent); }
.about-team p { font-size: 15px; color: var(--text-primary); }
.about-team strong { color: var(--text-bright); font-weight: 600; }

.about-visual { display: flex; justify-content: flex-end; }
.about-stats-stack { display: flex; flex-direction: column; gap: 24px; width: 100%; max-width: 400px; }

.about-stat-card {
  background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 36px 40px; border-radius: 20px; display: flex; flex-direction: column; gap: 10px;
  transition: all 0.4s var(--ease-out); position: relative; overflow: hidden;
}
.about-stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--accent); opacity: 0; transition: opacity 0.3s;
}
.about-stat-card:hover { background: rgba(255, 255, 255, 0.04); transform: translateX(-10px); }
.about-stat-card:hover::before { opacity: 1; }

.stat-number { font-family: var(--font-heading); font-size: 42px; color: var(--accent); line-height: 1; }
.stat-label { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: var(--text-primary); }

/* ============================================================
   SERVICES SECTION — 4 ITEMS
   ============================================================ */
.services { background: var(--bg-darker); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-sub { margin-left: auto; margin-right: auto; }

/* 4 columns on large screens */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.service-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  padding: 36px 30px; border-radius: 20px; transition: all 0.5s var(--ease-out);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.service-card::after {
  content: ''; position: absolute; inset: -1px; border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), transparent, transparent, var(--accent));
  opacity: 0; z-index: -1; transition: opacity 0.5s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-8px); background: var(--glass-hover-bg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(243, 156, 31, 0.1);
}
.service-card:hover::after { opacity: 0.5; }

.service-icon {
  width: 48px; height: 48px; background: rgba(243, 156, 31, 0.08);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 24px; border: 1px solid rgba(243, 156, 31, 0.15);
}
.service-number { font-family: var(--font-heading); font-size: 18px; }

.service-card h3 { font-family: var(--font-heading); font-size: 20px; color: var(--text-bright); margin-bottom: 12px; }
.service-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; margin-bottom: 30px; flex-grow: 1; }

.service-price { display: flex; align-items: flex-end; gap: 12px; padding-top: 20px; border-top: 1px solid var(--glass-border); }
.price-label { font-size: 11px; letter-spacing: 0.1em; color: var(--text-muted); padding-bottom: 2px; text-transform: uppercase; }
.price-value { font-family: var(--font-heading); font-size: 24px; color: var(--text-bright); line-height: 1; }

.price-custom { font-size: 18px; color: var(--accent); }

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio { background: var(--bg-dark); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.portfolio-card {
  background: var(--bg-elevated); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--glass-border); transition: all 0.4s var(--ease-out);
  display: flex; flex-direction: column;
}
.portfolio-card:hover {
  transform: translateY(-10px); border-color: rgba(243, 156, 31, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(243, 156, 31, 0.08);
}
.portfolio-card-image {
  height: 200px; background: #0A0B0E; display: flex; align-items: center; justify-content: center;
  padding: 30px; position: relative; overflow: hidden;
}
.portfolio-card-image img { max-width: 75%; max-height: 75%; object-fit: contain; transition: transform 0.6s var(--ease-out); }
.portfolio-card:hover .portfolio-card-image img { transform: scale(1.08); }

.portfolio-card-info { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.portfolio-card-info h3 { font-family: var(--font-heading); font-size: 20px; color: var(--text-bright); margin-bottom: 6px; }
.portfolio-card-tag { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px; }

.portfolio-btn {
  margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.1em;
  color: var(--accent); transition: all 0.3s;
}
.portfolio-btn:hover { color: var(--text-bright); transform: translateX(5px); }
.portfolio-btn svg { transition: transform 0.3s; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background: var(--bg-darker); position: relative; overflow: hidden; }
.contact::before {
  content: ''; position: absolute; bottom: 0; right: 0; width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  filter: blur(80px); pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; position: relative; z-index: 1; }

.contact-form {
  background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 50px;
  border-radius: 24px; backdrop-filter: blur(20px);
}
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.1em; color: var(--text-secondary); margin-bottom: 10px; }
.form-group input, .form-group textarea {
  width: 100%; background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 16px 20px; color: var(--text-bright); font-size: 15px;
  transition: all 0.3s; outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 4px rgba(243, 156, 31, 0.1); background: rgba(0,0,0,0.5);
}
.btn-submit { width: 100%; justify-content: center; margin-top: 10px; }

.contact-whatsapp-wrap { display: flex; flex-direction: column; gap: 30px; }
.whatsapp-card {
  background: linear-gradient(135deg, rgba(243, 156, 31, 0.1) 0%, rgba(12, 14, 18, 0.6) 100%);
  border: 1px solid rgba(243, 156, 31, 0.3); padding: 50px 40px; border-radius: 24px;
  text-align: center; backdrop-filter: blur(10px);
}
.whatsapp-icon {
  width: 70px; height: 70px; background: var(--accent); border-radius: 50%; display: flex;
  align-items: center; justify-content: center; color: var(--bg-darker); margin: 0 auto 24px;
  box-shadow: 0 10px 30px var(--accent-glow);
}
.whatsapp-icon svg { width: 34px; height: 34px; }
.whatsapp-card h3 { font-family: var(--font-heading); font-size: 22px; color: var(--text-bright); margin-bottom: 12px; }
.whatsapp-card p { color: var(--text-primary); font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: var(--bg-darker);
  font-family: var(--font-heading); font-size: 14px; letter-spacing: 0.1em; padding: 14px 32px; border-radius: 100px;
  transition: all 0.3s; margin-bottom: 16px; text-transform: uppercase;
}
.btn-whatsapp:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 10px 20px var(--accent-glow); }

.contact-info-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px;
  padding: 30px; display: flex; flex-direction: column; gap: 20px;
}
.contact-info-item { display: flex; align-items: center; gap: 16px; }
.contact-info-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.contact-info-item span,
.contact-info-item a { font-size: 15px; font-weight: 500; color: var(--text-primary); transition: color 0.3s; line-height: 1.5; }
.contact-info-item a:hover { color: var(--accent); }

/* ============================================================
   PREMIUM WIDE FOOTER
   ============================================================ */
.footer { background: var(--bg-dark); padding: 40px 0 20px; border-top: 1px solid var(--glass-border); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; margin-bottom: 30px;
}

.footer-center { display: flex; align-items: center; gap: 20px; }
.social-link {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--text-secondary); transition: all 0.3s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--accent); color: var(--bg-darker); border-color: var(--accent); box-shadow: 0 0 15px var(--accent-glow); transform: translateY(-3px); }

.btn-top {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-heading);
  font-size: 12px; letter-spacing: 0.1em; color: var(--text-bright); text-transform: uppercase;
  background: rgba(255,255,255,0.05); padding: 12px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s;
}
.btn-top:hover { background: var(--accent); color: var(--bg-darker); border-color: var(--accent); transform: translateY(-3px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; text-align: center; }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   STRICT MOBILE RESPONSIVENESS
   ============================================================ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .about-layout { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-whatsapp-wrap { flex-direction: row; }
  .whatsapp-card { flex: 1; }
  .contact-info-card { flex: 1; justify-content: center; }
  .footer-inner { flex-direction: column; align-items: center; gap: 24px; text-align: center; }
}

@media (max-width: 768px) {
  :root { --section-pad: clamp(60px, 8vh, 100px); }
  .nav { padding: 15px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  
  .brand-logo-img { height: 48px; }

  .njey-hero { flex-direction: column; gap: 12px; }
  .njey-accent-line { width: 100%; height: 8px; }
  .njey-title { font-size: 48px; }

  .hero-tagline { font-size: 32px; }

  .hero-sub { font-size: 20px; padding: 0 15px; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; gap: 15px; }
  .btn-primary, .btn-dark { width: 100%; justify-content: center; padding: 14px 24px; }

  .about-layout { grid-template-columns: 1fr; text-align: left; gap: 40px; }
  .about-heading { font-size: 48px; margin-bottom: 24px; }
  .about-visual { justify-content: flex-start; }
  .about-stats-stack { max-width: 100%; }
  .about-stat-card { padding: 24px 30px; }

  .services-header { text-align: left; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 30px; }
  
  .portfolio-grid { grid-template-columns: 1fr; gap: 20px; }
  .portfolio-card-image { height: 160px; }

  .contact-grid { gap: 40px; }
  .contact-whatsapp-wrap { flex-direction: column; gap: 20px; }
  .contact-form { padding: 30px 20px; border-radius: 16px; }
  .whatsapp-card { padding: 40px 20px; border-radius: 16px; }
  
  .footer { padding: 40px 0 20px; }
}
