/* GPK Theme — Main Stylesheet */
/* PT Global Pesta Kreasindo — The House of Events */


:root {
  --red:        #C41E1E;
  --red-dark:   #9B1515;
  --red-bright: #E8302E;
  --red-pale:   #FDE8E8;
  --black:      #0D0D0D;
  --charcoal:   #1C1C1C;
  --graphite:   #2A2A2A;
  --smoke:      #444444;
  --ash:        #6B6B6B;
  --silver:     #ABABAB;
  --mist:       #DEDEDE;
  --fog:        #F2F0EC;
  --white:      #FAFAF9;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
  --spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.7;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196,30,30,0.2);
  transition: height 0.3s var(--ease);
}
nav.scrolled { height: 62px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.6); text-decoration: none;
  letter-spacing: 0.3px; transition: color 0.2s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: 13px; font-weight: 600;
  background: var(--red); color: #fff;
  padding: 11px 28px; border-radius: 2px;
  text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.2s var(--spring);
}
.nav-cta:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,30,30,0.4);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 60px 80px;
  gap: 60px;
  position: relative; overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 45%, rgba(196,30,30,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 15% 75%, rgba(196,30,30,0.08) 0%, transparent 50%);
}
.hero-line {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(196,30,30,0.3) 30%, rgba(196,30,30,0.3) 70%, transparent);
}
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 12px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--red); flex-shrink: 0;
}
.hero-logo-display {
  margin-bottom: 32px;
}
.hero-logo-display img {
  height: 100px; width: auto;
  filter: drop-shadow(0 4px 24px rgba(196,30,30,0.3));
}
.hero-h {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: 2px;
  color: #fff; line-height: 0.95;
  margin-bottom: 8px;
}
.hero-h span { color: var(--red); }
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic; font-weight: 700;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero-sub {
  font-size: 14px; font-weight: 300;
  color: var(--silver); line-height: 1.9;
  max-width: 460px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-red {
  background: var(--red); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 14px 36px; border-radius: 2px;
  text-decoration: none; letter-spacing: 0.3px;
  transition: all 0.25s var(--spring);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-red:hover {
  background: var(--red-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196,30,30,0.45);
}
.btn-ghost {
  color: rgba(255,255,255,0.55);
  font-size: 14px; font-weight: 400;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px; letter-spacing: 0.3px;
  transition: all 0.2s;
}
.btn-ghost:hover { color: #fff; border-color: #fff; }

/* hero right - 4 division cards */
.hero-right { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; }
.hdiv {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,30,30,0.15);
  border-left: 3px solid var(--red);
  border-radius: 3px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: all 0.25s var(--ease);
  animation: slideR 0.6s var(--ease) both;
  cursor: pointer;
  text-decoration: none;
}
.hdiv:nth-child(1) { animation-delay: 0.3s; }
.hdiv:nth-child(2) { animation-delay: 0.45s; }
.hdiv:nth-child(3) { animation-delay: 0.6s; }
.hdiv:nth-child(4) { animation-delay: 0.75s; }
@keyframes slideR {
  from { opacity:0; transform: translateX(32px); }
  to   { opacity:1; transform: translateX(0); }
}
.hdiv:hover {
  background: rgba(196,30,30,0.1);
  border-color: rgba(196,30,30,0.4);
  transform: translateX(-5px);
}
.hdiv-num {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 1px;
  color: var(--red); opacity: 0.5; min-width: 30px;
}
.hdiv-info { flex: 1; }
.hdiv-name { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.hdiv-tag { font-size: 11px; color: var(--silver); font-weight: 300; font-style: italic; }
.hdiv-arr { color: var(--red); opacity: 0.5; font-size: 20px; transition: opacity 0.2s; }
.hdiv:hover .hdiv-arr { opacity: 1; }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--red);
  overflow: hidden; white-space: nowrap; padding: 11px 0;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mitem {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 32px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.mdot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.4); flex-shrink: 0;
}

/* ── STATS ── */
.stats-bar { background: var(--charcoal); }
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat {
  padding: 44px 36px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.stat:last-child { border-right: none; }
.stat::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.4s var(--ease);
}
.stat:hover { background: rgba(196,30,30,0.05); }
.stat:hover::after { transform: scaleX(1); }
.stat-n {
  font-family: var(--font-display);
  font-size: 56px; letter-spacing: 2px;
  color: #fff; line-height: 1; margin-bottom: 6px;
}
.stat-n span { color: var(--red); }
.stat-l { font-size: 12px; color: var(--ash); letter-spacing: 0.5px; }

/* ── SECTION ── */
section { padding: 100px 60px; }
.container { max-width: 1200px; margin: 0 auto; }
.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--red); display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px;
  background: var(--red); flex-shrink: 0;
}
.sec-h {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 60px);
  letter-spacing: 1.5px;
  color: var(--black); line-height: 0.95;
  margin-bottom: 16px;
}
.sec-h em { color: var(--red); font-style: normal; }
.sec-sub {
  font-size: 15px; font-weight: 300;
  color: var(--ash); max-width: 500px; line-height: 1.85;
}

/* ── ABOUT ── */
.about-bg { background: var(--fog); padding: 100px 60px; }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  width: 100%; aspect-ratio: 3/4;
  background: var(--graphite);
  border-radius: 3px; overflow: hidden;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.about-frame::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 35% 50%, rgba(196,30,30,0.22), transparent 55%),
    linear-gradient(to bottom, transparent 40%, rgba(13,13,13,0.6));
}
.about-frame-logo {
  position: relative; z-index: 1;
  opacity: 0.15;
}
.about-frame-logo img { width: 160px; filter: brightness(10); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--red); border-radius: 3px;
  padding: 22px 26px; text-align: center;
  box-shadow: 0 8px 32px rgba(196,30,30,0.4);
}
.about-badge-n {
  font-family: var(--font-display);
  font-size: 44px; letter-spacing: 2px;
  color: #fff; line-height: 1;
}
.about-badge-t { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 3px; }
.about-stripe {
  position: absolute; top: 20px; left: -12px;
  width: 4px; height: 72px;
  background: linear-gradient(to bottom, var(--red), transparent);
  border-radius: 2px;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 44px; letter-spacing: 1px;
  line-height: 0.95; margin-bottom: 20px;
}
.about-text h2 em { color: var(--red); font-style: italic; font-family: var(--font-serif); }
.about-text p {
  font-size: 14px; font-weight: 300;
  color: var(--smoke); line-height: 1.9; margin-bottom: 14px;
}
.pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 28px;
}
.pil {
  background: var(--white);
  border-left: 3px solid var(--red);
  padding: 16px 18px;
  transition: transform 0.25s var(--spring), box-shadow 0.25s;
}
.pil:hover { transform: translateX(4px); box-shadow: 2px 0 0 var(--red); }
.pil-t { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.pil-s { font-size: 12px; font-weight: 300; color: var(--ash); line-height: 1.55; }

/* ── DIVISI ── */
.divisi-section { background: var(--white); }
.div-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.div-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 4px; padding: 44px 40px;
  position: relative; overflow: hidden;
  transition: all 0.35s var(--ease); cursor: default;
}
.div-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red), var(--red-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.div-card:hover {
  border-color: rgba(196,30,30,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(196,30,30,0.1);
}
.div-card:hover::before { transform: scaleX(1); }
.div-bgn {
  position: absolute; bottom: 12px; right: 20px;
  font-family: var(--font-display);
  font-size: 110px; letter-spacing: 2px;
  color: var(--fog); line-height: 1;
  user-select: none; pointer-events: none;
  transition: color 0.3s;
}
.div-card:hover .div-bgn { color: var(--red-pale); }
.div-hdr { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.div-ic {
  width: 50px; height: 50px;
  background: var(--black);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--spring);
}
.div-card:hover .div-ic { background: var(--red); transform: rotate(-6deg) scale(1.1); }
.div-ic svg { width: 22px; height: 22px; stroke: var(--red); stroke-width: 1.5; fill: none; transition: stroke 0.3s; }
.div-card:hover .div-ic svg { stroke: #fff; }
.div-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red); background: var(--red-pale);
  padding: 5px 12px; border-radius: 20px;
}
.div-name {
  font-family: var(--font-display);
  font-size: 30px; letter-spacing: 1px;
  color: var(--black); margin-bottom: 12px; line-height: 1;
}
.div-desc {
  font-size: 14px; font-weight: 300;
  color: var(--ash); line-height: 1.8; margin-bottom: 22px;
}
.div-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.div-tag {
  font-size: 11px; font-weight: 500;
  color: var(--smoke); background: var(--fog);
  border: 1px solid var(--mist);
  padding: 5px 12px; border-radius: 20px;
  transition: all 0.2s;
}
.div-card:hover .div-tag { border-color: rgba(196,30,30,0.2); }
.div-link {
  font-size: 12px; font-weight: 600;
  color: var(--red); text-decoration: none;
  letter-spacing: 1px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.div-link:hover { gap: 14px; }

/* ── PORTFOLIO ── */
.porto-section { background: var(--black); padding: 100px 60px; }
.porto-section .sec-h { color: #fff; }
.porto-section .sec-sub { color: var(--ash); }
.porto-grid {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-template-rows: 280px 200px;
  gap: 10px;
}
.pcard {
  background: var(--graphite);
  border-radius: 4px; overflow: hidden;
  position: relative; display: flex;
  flex-direction: column; justify-content: flex-end;
  transition: transform 0.4s var(--ease);
}
.pcard:hover { transform: scale(1.025); z-index: 3; }
.pcard:nth-child(1) { grid-column: span 7; }
.pcard:nth-child(2) { grid-column: span 5; }
.pcard:nth-child(3) { grid-column: span 4; }
.pcard:nth-child(4) { grid-column: span 4; }
.pcard:nth-child(5) { grid-column: span 4; }
.pcard-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 30%, rgba(196,30,30,0.18), transparent 60%);
}
.pcard-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, transparent 50%);
}
.pcard-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 13px; font-style: italic;
  color: rgba(255,255,255,0.12);
}
.pcard-info { position: relative; z-index: 2; padding: 18px 22px; }
.pcard-cat {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 4px;
}
.pcard-title {
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: 0.5px; color: #fff; line-height: 1.1;
}
.porto-cta { text-align: center; margin-top: 44px; }

/* ── PROCESS ── */
.process-section { background: var(--fog); padding: 100px 60px; }
.step-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.step-grid::before {
  content: '';
  position: absolute; top: 34px; left: 56px; right: 56px; height: 2px;
  background: linear-gradient(to right, var(--red), rgba(196,30,30,0.2));
}
.step { padding: 0 20px; text-align: center; position: relative; }
.step-circle {
  width: 68px; height: 68px;
  background: var(--white); border: 2px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 2;
  transition: all 0.3s var(--spring);
}
.step-circle:hover { background: var(--red); transform: scale(1.12); }
.step-n {
  font-family: var(--font-display);
  font-size: 26px; letter-spacing: 1px;
  color: var(--red); transition: color 0.3s;
}
.step-circle:hover .step-n { color: #fff; }
.step-t { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.step-s { font-size: 12px; font-weight: 300; color: var(--ash); line-height: 1.7; }

/* ── CLIENTS ── */
.clients-section { background: var(--white); padding: 80px 60px; }
.clients-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1px; background: var(--mist);
  border: 1px solid var(--mist); border-radius: 4px; overflow: hidden;
}
.client-box {
  background: var(--white); height: 84px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.client-box:hover { background: var(--fog); }
.client-ph { font-size: 11px; color: var(--mist); font-weight: 500; }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--black); padding: 100px 60px; }
.testi-section .sec-h { color: #fff; }
.testi-section .sec-sub { color: var(--ash); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,30,30,0.2);
  border-radius: 4px; padding: 36px;
  position: relative; overflow: hidden;
  transition: all 0.3s var(--ease);
}
.tcard::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--red), transparent);
}
.tcard:hover { background: rgba(196,30,30,0.08); border-color: rgba(196,30,30,0.4); transform: translateY(-4px); }
.tcard-q {
  font-family: var(--font-serif); font-size: 60px; font-weight: 700;
  color: var(--red); line-height: 1; opacity: 0.35; margin-bottom: 4px;
}
.tcard-text {
  font-family: var(--font-serif); font-size: 18px; font-style: italic;
  color: #fff; line-height: 1.65; margin-bottom: 24px;
}
.tcard-author { display: flex; align-items: center; gap: 14px; }
.tcard-ava {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: #fff;
}
.tcard-name { font-size: 14px; font-weight: 600; color: #fff; }
.tcard-role { font-size: 12px; color: var(--ash); font-weight: 300; }

/* ── CTA ── */
.cta-section {
  background: var(--red); padding: 100px 60px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-glyph {
  position: absolute; right: 60px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 220px; letter-spacing: -8px;
  color: rgba(0,0,0,0.1); line-height: 1; pointer-events: none;
}
.cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: 52px; letter-spacing: 1.5px;
  color: #fff; line-height: 0.95; margin-bottom: 16px;
}
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; font-weight: 300; margin-bottom: 28px; }
.cta-contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.cta-contacts a {
  font-size: 13px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 2px;
  transition: border-color 0.2s;
}
.cta-contacts a:hover { border-color: #fff; }
.cta-form { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px; padding: 13px 16px;
  font-family: var(--font-body); font-size: 14px; font-weight: 300;
  color: #fff; outline: none; transition: all 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(255,255,255,0.7); background: rgba(0,0,0,0.2);
}
.form-group select option { background: var(--red-dark); color: #fff; }
.form-group textarea { resize: none; height: 90px; }
.btn-black {
  background: var(--black); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 14px 36px; border-radius: 3px; border: none; cursor: pointer;
  letter-spacing: 0.5px; align-self: flex-start;
  transition: all 0.25s var(--spring);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-black:hover { background: var(--graphite); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }

/* ── FOOTER ── */
footer { background: var(--black); padding: 72px 60px 32px; border-top: 1px solid rgba(196,30,30,0.2); }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px;
}
.footer-logo-img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-desc { font-size: 13px; font-weight: 400; color: var(--silver); line-height: 1.85; margin-bottom: 16px; max-width: 280px; }
.footer-tagline-txt {
  font-family: var(--font-serif); font-size: 16px; font-style: italic; font-weight: 700; color: var(--red);
}
.fcol-title {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.fcol ul { list-style: none; }
.fcol li { margin-bottom: 10px; }
.fcol a { font-size: 13px; font-weight: 400; color: var(--silver); text-decoration: none; transition: color 0.2s; }
.fcol a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.fcopy { font-size: 12px; color: var(--silver); font-weight: 400; }
.fsoc { display: flex; gap: 16px; }
.fsoc a { font-size: 12px; color: var(--silver); text-decoration: none; transition: color 0.2s; }
.fsoc a:hover { color: var(--red); }

/* ── ANIM ── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(26px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp 0.65s var(--ease) both; }
.hero-eyebrow { animation-delay: 0.05s; }
.hero-logo-display { animation-delay: 0.15s; }
.hero-h { animation-delay: 0.25s; }
.hero-tagline { animation-delay: 0.35s; }
.hero-sub { animation-delay: 0.45s; }
.hero-actions { animation-delay: 0.55s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  /* ── NAV MOBILE ── */
  nav {
    padding: 0 16px;
    height: 60px;
    flex-wrap: nowrap;
  }
  .nav-links { display: none; }
  .nav-logo-text .nlt-main { font-size: 13px; letter-spacing: 0.5px; }
  .nav-logo-text .nlt-sub { font-size: 8px; }
  .nav-right {
    display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  }
  .nav-wa { display: none; }
  .nav-cta {
    font-size: 12px; padding: 8px 14px;
    white-space: nowrap;
  }

  /* ── HERO MOBILE ── */
  section { padding: 64px 20px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 20px 56px;
    min-height: auto;
  }
  .hero-right { display: none; }
  .hero-h { font-size: 44px; letter-spacing: 0; }
  .hero-tagline { font-size: 16px; }
  .hero-sub { font-size: 14px; margin-bottom: 32px; }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .btn-red { width: 100%; justify-content: center; font-size: 14px; padding: 14px 24px; }
  .btn-ghost { font-size: 14px; }

  /* ── HERO CONTACT STRIP MOBILE ── */
  .hero-contact-strip {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    width: 100%;
  }
  .hero-wa-link {
    width: 100%; justify-content: center; font-size: 14px;
  }
  .hero-tel-link { font-size: 13px; }

  /* ── FLOATING WA MOBILE ── */
  .wa-float {
    bottom: 16px; right: 16px;
    padding: 12px 16px; font-size: 13px;
  }

  /* ── MARQUEE MOBILE ── */
  .marquee-wrap { padding: 10px 0; }
  .mitem { font-size: 11px; padding: 0 20px; }

  /* ── STATS MOBILE ── */
  .stats-section { padding: 0 20px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 16px; }
  .stat-num { font-size: 40px; }

  /* ── CONTACT BAR MOBILE ── */
  .contact-bar { padding: 0 16px; }
  .contact-bar-inner {
    flex-direction: column;
    height: auto; padding: 12px 0;
    gap: 10px; align-items: flex-start;
  }
  .cbar-left { flex-direction: column; gap: 8px; }
  .cbar-item span { display: block; font-size: 12px; }
  .cbar-wa { font-size: 12px; align-self: flex-start; }

  /* ── ABOUT MOBILE ── */
  .about-bg { padding: 64px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { display: none; }
  .about-content { padding-left: 0; }
  .about-content h2 { font-size: 32px; }
  .pillars { grid-template-columns: 1fr; }

  /* ── DIVISI MOBILE ── */
  .div-grid { grid-template-columns: 1fr; }
  .div-card { padding: 28px 24px; }
  .div-name { font-size: 24px; }

  /* ── PORTFOLIO MOBILE ── */
  .porto-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 8px; }
  .pcard { grid-column: span 1 !important; aspect-ratio: 16/9; }

  /* ── PROCESS MOBILE ── */
  .process-section { padding: 64px 20px; }
  .step-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .step-grid::before { display: none; }

  /* ── CLIENTS MOBILE ── */
  .clients-section { padding: 56px 20px; }
  .clients-grid { grid-template-columns: repeat(2,1fr); }

  /* ── TESTIMONIALS MOBILE ── */
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .tcard { padding: 28px 24px; }
  .tcard-text { font-size: 16px; }

  /* ── CTA MOBILE ── */
  .cta-section { padding: 64px 20px; }
  .cta-section::after { display: none; }
  .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-text h2 { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .btn-black { width: 100%; justify-content: center; }

  /* ── CTA CONTACT DETAILS MOBILE ── */
  .cta-contact-details { gap: 12px; }
  .cdi-value { font-size: 13px; }

  /* ── FOOTER MOBILE ── */
  footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .fsoc { justify-content: center; }
}

/* ── EXTRA SMALL (< 480px) ── */
@media (max-width: 480px) {
  nav { padding: 0 14px; height: 56px; }
  .nlt-main { font-size: 12px !important; }
  .nav-cta { font-size: 11px; padding: 7px 12px; }
  .hero { padding: 76px 16px 48px; }
  .hero-h { font-size: 38px; }
  .stat-num { font-size: 36px; }
  .stat { padding: 24px 10px; }
  .step-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── LOGO TEXT REPLACEMENT ── */
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  background: var(--red); border-radius: 5px;
  padding: 6px 10px;
  font-family: var(--font-display);
  font-size: 18px; letter-spacing: 1px;
  line-height: 1; display: flex; gap: 0;
}
.nlm-g { color: #fff; }
.nlm-pk { color: rgba(255,255,255,0.75); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nlt-main { font-family: var(--font-display); font-size: 16px; letter-spacing: 1px; color: #fff; }
.nlt-sub { font-size: 9px; font-weight: 400; color: var(--red); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }

/* hero wordmark */
.hero-logo-display { margin-bottom: 28px; }
.hero-wordmark { display: inline-flex; align-items: center; }
.hwm-emblem {
  font-family: var(--font-display);
  font-size: 64px; letter-spacing: 4px;
  background: var(--red);
  color: #fff;
  padding: 12px 28px; border-radius: 6px;
  line-height: 1;
  box-shadow: 0 8px 32px rgba(196,30,30,0.4);
}

/* footer logo */
.footer-logo-mark {
  font-family: var(--font-display);
  font-size: 36px; letter-spacing: 2px;
  display: inline-flex; align-items: center;
  background: var(--red); border-radius: 5px;
  padding: 8px 16px; line-height: 1; margin-bottom: 10px;
}
.flm-g { color: #fff; }
.flm-pk { color: rgba(255,255,255,0.7); }
.footer-logo-sub {
  font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--silver); margin-bottom: 12px;
}

/* about frame logo watermark */
.afl-text {
  font-family: var(--font-display);
  font-size: 80px; letter-spacing: 4px;
  color: rgba(196,30,30,0.2); line-height: 1;
}

/* ── CLEAN NAV LOGO (text only) ── */
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nlt-main {
  font-family: var(--font-display);
  font-size: 17px; letter-spacing: 2px;
  color: #fff;
}
.nlt-sub {
  font-size: 9px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); margin-top: 1px;
}
/* footer brand name */
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: 2px;
  color: #fff; margin-bottom: 12px;
}

/* ── FLOATING WA BUTTON ── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 22px; border-radius: 50px;
  text-decoration: none; font-size: 14px; font-weight: 600;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
  background: #1ebe5d;
}
.wa-float svg { flex-shrink: 0; }

/* ── NAV WA LINK ── */
.nav-wa {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500;
  color: #25D366; text-decoration: none;
  border: 1px solid rgba(37,211,102,0.3);
  padding: 8px 16px; border-radius: 20px;
  margin-right: 8px;
  transition: all 0.2s;
}
.nav-wa:hover { background: rgba(37,211,102,0.1); border-color: #25D366; }

/* ── HERO CONTACT STRIP ── */
.hero-contact-strip {
  display: flex; align-items: center; gap: 24px;
  margin-top: 20px; flex-wrap: wrap;
}
.hero-wa-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: 3px;
  text-decoration: none; letter-spacing: 0.3px;
  transition: all 0.2s;
}
.hero-wa-link:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.hero-tel-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--silver); font-size: 14px; font-weight: 400;
  text-decoration: none; letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.hero-tel-link:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ── STICKY CONTACT BAR (mobile helper) ── */
.contact-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(196,30,30,0.2);
  padding: 0 60px;
}
.contact-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.cbar-left {
  display: flex; align-items: center; gap: 32px;
}
.cbar-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}
.cbar-item:hover { color: #fff; }
.cbar-item svg { flex-shrink: 0; opacity: 0.6; }
.cbar-item:hover svg { opacity: 1; }
.cbar-wa {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: #25D366; text-decoration: none;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  padding: 6px 18px; border-radius: 20px;
  transition: all 0.2s;
}
.cbar-wa:hover { background: rgba(37,211,102,0.18); border-color: #25D366; }

@media (max-width: 960px) {
  .contact-bar { padding: 0 24px; }
  .cbar-left { gap: 16px; }
  .cbar-item span { display: none; }
  .wa-float { bottom: 20px; right: 20px; padding: 12px 18px; font-size: 13px; }
}

/* ── CTA CONTACT DETAILS ── */
.cta-contact-details {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 28px;
}
.cta-detail-item {
  display: flex; align-items: flex-start; gap: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cta-detail-item:hover { opacity: 0.85; }
.cdi-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.cdi-text { flex: 1; }
.cdi-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 2px;
}
.cdi-value {
  font-size: 14px; font-weight: 500;
  color: #fff; line-height: 1.45;
}

/* ── GOOGLE MAPS ── */
.cta-maps { margin-top: 16px; }
.maps-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none; margin-top: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 1px;
  transition: all 0.2s;
}
.maps-link:hover { color: #fff; border-color: #fff; }


/* ── MOBILE NAV ── */
.nav-hamburger { display: none; }
.nav-drawer { display: none; }
.nav-overlay { display: none; }

@media (max-width: 768px) {
  nav {
    padding: 0 16px;
    height: 56px;
  }
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-wa { display: none !important; }
  .nav-right { display: none !important; }
  .nav-mobile-right { display: none !important; }

  /* Hamburger button */
  .nav-hamburger {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 5px;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px; cursor: pointer; padding: 0;
    transition: background 0.2s; flex-shrink: 0;
  }
  .nav-hamburger:hover { background: rgba(255,255,255,0.15); }
  .nav-hamburger span {
    display: block; width: 18px; height: 1.5px;
    background: #fff; border-radius: 1px; transition: all 0.28s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Slide-in drawer */
  .nav-drawer {
    display: block;
    position: fixed; top: 56px; right: 0; bottom: 0;
    width: 260px; max-width: 80vw;
    background: #111111;
    border-left: 1px solid rgba(196,30,30,0.25);
    z-index: 199;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22,0.61,0.36,1);
    overflow-y: auto;
  }
  .nav-drawer.open { transform: translateX(0); }

  .nav-drawer-inner {
    padding: 24px 20px;
    display: flex; flex-direction: column; gap: 2px;
  }
  .nav-drawer-link {
    display: block; padding: 13px 4px;
    font-size: 15px; font-weight: 400;
    color: rgba(255,255,255,0.7); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s, padding-left 0.2s;
  }
  .nav-drawer-link:hover { color: #fff; padding-left: 8px; }
  .nav-drawer-divider {
    height: 1px; background: rgba(196,30,30,0.3); margin: 16px 0;
  }
  .nav-drawer-cta {
    display: block; text-align: center;
    background: var(--red); color: #fff;
    font-size: 14px; font-weight: 600;
    padding: 13px 16px; border-radius: 3px;
    text-decoration: none; margin-bottom: 8px;
    transition: background 0.2s;
  }
  .nav-drawer-cta:hover { background: var(--red-bright); }
  .nav-drawer-wa {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #25D366; color: #fff;
    font-size: 14px; font-weight: 600;
    padding: 13px 16px; border-radius: 3px;
    text-decoration: none; transition: background 0.2s;
  }
  .nav-drawer-wa:hover { background: #1ebe5d; }

  /* Overlay */
  .nav-overlay {
    display: block;
    position: fixed; inset: 0; z-index: 198;
    background: rgba(0,0,0,0.55);
    opacity: 0; pointer-events: none;
    transition: opacity 0.32s;
  }
  .nav-overlay.open { opacity: 1; pointer-events: all; }

  /* Hero padding adjust for smaller nav */
  .hero { padding-top: 76px; }
}

@media (max-width: 480px) {
  nav { padding: 0 12px; height: 52px; }
  .nlt-main { font-size: 12px !important; letter-spacing: 0.5px !important; }
  .nlt-sub { font-size: 8px !important; }
  .nav-drawer { top: 52px; }
  .hero { padding-top: 68px; }
  .hero-h { font-size: 36px; }
}

/* ── FORM FEEDBACK MESSAGES ── */
.form-success-msg {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.3);
  border-left: 4px solid #4ade80;
  border-radius: 4px; padding: 20px 24px;
  color: #fff; font-size: 14px; line-height: 1.6;
  margin-bottom: 16px;
}
.form-success-msg svg { stroke: #4ade80; flex-shrink: 0; margin-top: 2px; }
.form-success-msg strong { display: block; font-size: 15px; margin-bottom: 4px; }
.form-error-msg {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.25);
  border-left: 4px solid #fbbf24;
  border-radius: 4px; padding: 12px 16px;
  color: #fff; font-size: 13px;
  margin-bottom: 12px;
}
