/* ============================================================
   ANUGRAH JAYA — Industrial Pulse
   Warm charcoal · Amber · Technical typography
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Backgrounds — warm charcoal, not cold navy */
  --bg:        #0c0b09;
  --surface:   #131210;
  --surface-2: #1a1815;
  --surface-3: #201e1a;

  /* Brand colors — Amaron green */
  --amber:      #76e039;
  --amber-dim:  #5db82c;
  --amber-glow: rgba(118, 224, 57, 0.10);
  --green:      #25d366;
  --green-dark: #1da851;
  --red:        #ef4444;

  /* Text */
  --text:   #f0ece4;
  --text-2: #a89f93;
  --text-3: #6b6358;

  /* Borders */
  --line:       rgba(240, 236, 228, 0.07);
  --line-amber: rgba(118, 224, 57, 0.22);

  /* Typography */
  --f-display: 'Barlow Condensed', sans-serif;
  --f-mono:    'Chakra Petch', monospace;
  --f-body:    'DM Sans', sans-serif;

  /* Layout */
  --nav-h:  76px;
  --max-w:  1200px;
  --radius: 10px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.28s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

a       { text-decoration: none; color: inherit; }
ul      { list-style: none; }
button  { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--amber);
  color: var(--bg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].visible { opacity: 1; transform: none; }

.services-list [data-reveal]:nth-child(2),
.products-grid [data-reveal]:nth-child(2),
.stats-grid    [data-reveal]:nth-child(2),
.branches-grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }

.services-list [data-reveal]:nth-child(3),
.products-grid [data-reveal]:nth-child(3),
.stats-grid    [data-reveal]:nth-child(3) { transition-delay: 0.16s; }

.services-list [data-reveal]:nth-child(4),
.products-grid [data-reveal]:nth-child(4),
.stats-grid    [data-reveal]:nth-child(4) { transition-delay: 0.24s; }

.products-grid [data-reveal]:nth-child(5) { transition-delay: 0.32s; }
.products-grid [data-reveal]:nth-child(6) { transition-delay: 0.40s; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  padding: 0.28rem 0.9rem;
  border: 1px solid var(--line-amber);
  border-radius: 4px;
  background: var(--amber-glow);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-header h2 em {
  font-style: normal;
  color: var(--amber);
}

.section-header p {
  color: var(--text-2);
  margin-top: 0.7rem;
  font-size: 0.925rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: padding var(--t) var(--ease),
              background var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}

#navbar.scrolled {
  padding: 0.55rem 0;
  background: rgba(12, 11, 9, 0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* — Logo — */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-mark {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--bg);
  background: var(--amber);
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -1px;
  flex-shrink: 0;
  transition: background var(--t);
}

.logo:hover .logo-mark { background: var(--amber-dim); }

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--f-mono);
  font-size: 0.5rem;
  color: var(--text-3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.18rem;
}

/* — Nav links — */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--f-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color var(--t);
}

.nav-links a:hover { color: var(--amber); }

/* — Nav CTA — */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-phone {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 0.82rem;
  transition: var(--t);
}

.btn-phone:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: var(--amber-glow);
}

.btn-wa-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: var(--green);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.84rem;
  transition: var(--t);
}

.btn-wa-nav:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) 1.75rem 6rem;
  overflow: hidden;
  background: var(--bg);
}

/* Subtle ambient glow — bottom center */
#hero::before {
  content: '';
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.055) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

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

/* Subtle grid */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(240,236,228,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,236,228,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  width: 100%;
}

/* — Status badge — */
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.38rem 1rem;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid var(--line-amber);
  border-radius: 4px;
  margin-bottom: 2.25rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: dot-blink 2s ease infinite;
  flex-shrink: 0;
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.status-bar-wrap {
  width: 60px;
  height: 5px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 3px;
  overflow: hidden;
  display: inline-block;
  flex-shrink: 0;
}

.status-bar-fill {
  display: block;
  height: 100%;
  background: var(--amber);
  border-radius: 3px;
  animation: charge 3.5s ease-in-out infinite;
}

@keyframes charge {
  0%, 100% { width: 80%; }
  50% { width: 100%; }
}

.status-pct {
  font-size: 0.65rem;
  color: var(--text-3);
}

/* — Hero title — */
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 10.5vw, 7rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: normal;
  color: var(--amber);
  display: block;
}

/* — Hero subtitle — */
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cycling {
  color: var(--amber);
  font-weight: 600;
  display: inline-block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-cycling.fade { opacity: 0; transform: translateY(5px); }

/* — CTA buttons — */
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.cta-emergency {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  background: var(--red);
  color: white;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}

.cta-emergency::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius) + 2px);
  border: 2px solid var(--red);
  opacity: 0;
  animation: emergency-ring 2.5s ease infinite;
}

@keyframes emergency-ring {
  0%   { opacity: 0.55; transform: scale(1); }
  70%  { opacity: 0; transform: scale(1.14); }
  100% { opacity: 0; transform: scale(1.14); }
}

.cta-emergency:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(239,68,68,0.35);
}

.cta-chat {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--text);
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t), box-shadow var(--t);
}

.cta-chat:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(34,197,94,0.25);
}

/* — Trust badges — */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.38rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.5px;
  transition: border-color var(--t), color var(--t);
}

.hero-trust li i { color: var(--amber); font-size: 0.68rem; }
.hero-trust li:hover { border-color: var(--line-amber); color: var(--text); }

/* — Scroll indicator — */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.35;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: line-drop 2s ease infinite;
}

@keyframes line-drop {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50% { transform: scaleY(0.4); opacity: 0.15; }
}

.hero-scroll span {
  font-family: var(--f-mono);
  font-size: 0.52rem;
  letter-spacing: 3px;
  color: var(--text-3);
}

/* ===== HAZARD DIVIDER ===== */
.hazard-divider {
  height: 18px;
  background: repeating-linear-gradient(
    -45deg,
    var(--amber) 0px,
    var(--amber) 10px,
    var(--bg) 10px,
    var(--bg) 20px
  );
  opacity: 0.4;
}

/* ===== TICKER ===== */
.ticker-strip {
  background: var(--amber);
  padding: 0.75rem 0;
  overflow: hidden;
}

.ticker-strip:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-strip:focus-within .ticker-track {
  animation-play-state: paused;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: ticker 30s linear infinite;
  will-change: transform;
}

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

.ticker-track span {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.sep {
  font-size: 0.48rem !important;
  opacity: 0.35;
  letter-spacing: 0 !important;
}

/* ===== STATS ===== */
#stats {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
  padding: 2.25rem 1rem;
  transition: background var(--t);
}

.stat-item:hover { background: var(--surface-2); }

.stat-num {
  font-family: var(--f-mono);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-family: var(--f-mono);
  font-size: 0.67rem;
  color: var(--text-3);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== SERVICES ===== */
#services {
  padding: 7rem 0;
  background: var(--bg);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-item {
  background: var(--surface);
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: background var(--t);
  position: relative;
}

.service-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-item:hover { background: var(--surface-2); }
.service-item:hover::after { transform: scaleX(1); }

.service-num {
  font-family: var(--f-mono);
  font-size: 6rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.06;
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  line-height: 1;
  letter-spacing: -5px;
  pointer-events: none;
  transition: opacity var(--t);
}

.service-item:hover .service-num { opacity: 0.12; }

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-glow);
  border: 1px solid var(--line-amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--amber);
  flex-shrink: 0;
  transition: background var(--t), border-color var(--t), color var(--t);
}

.service-item:hover .service-icon {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
}

.service-body h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.service-body p {
  color: var(--text-2);
  font-size: 0.875rem;
  line-height: 1.72;
}

/* ===== PRODUCTS ===== */
#products {
  padding: 6rem 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.products-title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

.products-title em {
  font-style: normal;
  color: var(--amber);
}

.products-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.products-flow .type-name {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 0.15rem 0.45rem;
  transition: color var(--t);
  line-height: 1.25;
  white-space: nowrap;
}

.products-flow .type-name:hover { color: var(--text); }

.products-flow .slash {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--amber);
  opacity: 0.55;
  line-height: 1.25;
  padding: 0.15rem 0.1rem;
  user-select: none;
}

/* ===== INSTAGRAM ===== */
#gallery {
  padding: 7rem 0;
  background: var(--bg);
}

.ig-block {
  display: grid;
  grid-template-columns: 3fr 2fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: border-color var(--t);
}

.ig-block:hover { border-color: var(--line-amber); }

.ig-text {
  padding: 3.5rem;
}

.ig-text h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.ig-text h2 em {
  font-style: normal;
  color: var(--amber);
}

.ig-text p {
  color: var(--text-2);
  font-size: 0.925rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 380px;
}

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.5rem;
  background: transparent;
  border: 2px solid var(--amber);
  color: var(--amber);
  border-radius: var(--radius);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--t);
}

.btn-ig:hover {
  background: var(--amber);
  color: var(--bg);
}

.ig-visual {
  border-left: 1px solid var(--line);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

.ig-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--amber-glow) 0%, transparent 65%);
  pointer-events: none;
}

.ig-icon {
  font-size: 4.5rem;
  color: var(--amber);
  opacity: 0.18;
  position: relative;
  z-index: 1;
}

.ig-handle-big {
  font-family: var(--f-display);
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 800;
  color: var(--text-3);
  letter-spacing: 1px;
  text-transform: uppercase;
  word-break: break-all;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ===== BRANCHES ===== */
#branches {
  padding: 7rem 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.branch-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: border-color var(--t), box-shadow var(--t);
}

.branch-card:hover {
  border-color: var(--line-amber);
  box-shadow: 0 0 0 1px var(--line-amber), 0 16px 40px rgba(0,0,0,0.3);
}

.branch-num {
  font-family: var(--f-mono);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.3;
  letter-spacing: -2px;
}

.branch-body h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.branch-addr {
  color: var(--text-2);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.branch-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.48rem 1.05rem;
  background: var(--amber-glow);
  border: 1px solid var(--line-amber);
  color: var(--amber);
  border-radius: 6px;
  font-family: var(--f-mono);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--t);
}

.btn-maps:hover {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
}

.btn-wa-branch {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.48rem 1.05rem;
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--green);
  border-radius: 6px;
  font-family: var(--f-mono);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--t);
}

.btn-wa-branch:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

/* ===== FOOTER ===== */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

#footer .container {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.footer-logo { margin-bottom: 1rem; }

.footer-brand p {
  color: var(--text-2);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.social-links { display: flex; gap: 0.5rem; }

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 0.9rem;
  transition: var(--t);
}

.social-links a:hover {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
}

.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.footer-col > ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col li a {
  color: var(--text-2);
  font-size: 0.875rem;
  transition: color var(--t);
}

.footer-col li a:hover { color: var(--amber); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-2);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-contact-list i {
  color: var(--amber);
  width: 14px;
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.footer-contact-list a {
  color: var(--text-2);
  transition: color var(--t);
}

.footer-contact-list a:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  color: var(--text-3);
  font-size: 0.78rem;
  font-family: var(--f-mono);
}

.footer-tag { color: var(--amber) !important; font-weight: 600; }

/* ===== FLOATING WA ===== */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 900;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.4);
  transition: transform var(--t), box-shadow var(--t), opacity var(--t);
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(34, 197, 94, 0.5);
}

.float-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: ring 2.8s ease-out infinite;
}

@keyframes ring {
  0%   { opacity: 0.6; transform: scale(1); }
  70%  { opacity: 0; transform: scale(1.42); }
  100% { opacity: 0; transform: scale(1.42); }
}

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

@media (max-width: 768px) {
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .services-list { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .nav-links     { display: none; }

  .ig-block { grid-template-columns: 1fr; }
  .ig-visual { border-left: none; border-top: 1px solid var(--line); min-height: 140px; }
  .ig-text   { padding: 2rem; }

  .btn-wa-nav span { display: none; }
  .btn-wa-nav {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .products-flow .type-name { font-size: clamp(1.5rem, 7vw, 2rem); }
  .products-flow .slash     { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .branches-grid  { grid-template-columns: 1fr; }
  .hero-cta       { flex-direction: column; align-items: stretch; }
  .cta-emergency,
  .cta-chat       { justify-content: center; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .branch-card    { flex-direction: column; }
  .float-wa       { width: 54px; height: 54px; font-size: 1.4rem; bottom: 1.5rem; right: 1.5rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
