/* ═══════════════════════════════════════════════════════════════
   Lunovaré Printz — style.css
   Premium Custom Sublimation Printing · Malaysia
   ─────────────────────────────────────────────────────────────
   TABLE OF CONTENTS
   01  Design Tokens
   02  Reset & Base
   03  Utilities (reveal animations, section labels)
   04  Buttons
   05  Navbar
   06  Hero
   07  Marquee Ticker
   08  No-MOQ Section
   09  Why Choose Us
   10  Products
   11  How It Works (Process)
   12  Portfolio Gallery + Lightbox
   13  Reviews / Testimonials
   14  FAQ Accordion
   15  Contact
   16  Footer
   17  Floating WhatsApp Button
   18  Responsive Breakpoints
═══════════════════════════════════════════════════════════════ */

/* ─── 01  DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --orange:        #FF5C00;
  --orange-bright: #FF7A2E;
  --orange-dim:    rgba(255, 92, 0, 0.12);
  --orange-border: rgba(255, 92, 0, 0.25);
  --black:         #080808;
  --black-2:       #101010;
  --black-3:       #181818;
  --black-4:       #222222;
  --gray-dark:     #333333;
  --gray:          #5A5A5A;
  --gray-mid:      #888888;
  --gray-light:    #AAAAAA;
  --off-white:     #F4F1ED;
  --white:         #FFFFFF;
  --green-wa:      #25D366;
  --green-wa-h:    #1CB955;
  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: var(--fb);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

::-webkit-scrollbar       { width: 3px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ─── 03  UTILITIES ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }
.delay-6 { transition-delay: 0.60s; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.section-kicker-bar {
  width: 28px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.section-kicker-text {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
}

.section-heading {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.93;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-heading span { color: var(--orange); }
.section-heading em   { font-style: italic; }

.section-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-light);
  max-width: 540px;
}

/* ─── 04  BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  white-space: nowrap;
}

.btn-orange              { background: var(--orange);    color: var(--white); }
.btn-orange:hover        { background: var(--orange-bright); transform: translateY(-3px);
                           box-shadow: 0 12px 32px rgba(255,92,0,0.35); }

.btn-outline             { background: transparent; color: var(--white);
                           border: 1px solid rgba(255,255,255,0.22); padding: 15px 32px; }
.btn-outline:hover       { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }

.btn-wa                  { background: var(--green-wa);  color: var(--white); }
.btn-wa:hover            { background: var(--green-wa-h); transform: translateY(-3px);
                           box-shadow: 0 12px 32px rgba(37,211,102,0.30); }

/* ─── 05  NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 92, 0, 0.18);
  height: 64px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--fd);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
}
.nav-brand-name span { color: var(--orange); }
.nav-brand-sub {
  font-size: 8.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:hover           { color: var(--white); }
.nav-links a:hover::after    { width: 100%; }

.nav-cta {
  font-family: var(--fd) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.3s !important;
  white-space: nowrap;
}
.nav-cta:hover     { background: var(--orange-bright) !important; }
.nav-cta::after    { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(8, 8, 8, 0.99);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 92, 0, 0.15);
  padding: 28px 5% 32px;
  z-index: 999;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 18px 0;
  border-bottom: 1px solid var(--black-3);
  transition: color 0.2s;
}
.mobile-menu a:hover       { color: var(--orange); }
.mobile-menu a:last-child  { border-bottom: none; }

/* ─── 06  HERO ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  padding-top: 72px;
}

.hero-ambient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 75% 45%, rgba(255,92,0,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 15% 85%, rgba(255,92,0,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,92,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,92,0,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}
.hero-slash {
  position: absolute;
  right: -4%; top: 0; bottom: 0;
  width: 52%;
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: var(--black-2);
  overflow: hidden;
}
.hero-slash-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--black-3) 0%, var(--black-2) 60%, var(--black) 100%);
}
.hero-slash-img {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; color: var(--gray-dark);
}
.hero-slash-img i   { font-size: 72px; opacity: 0.35; }
.hero-slash-img p   { font-family: var(--fd); font-size: 11px;
                      letter-spacing: 3px; text-transform: uppercase; opacity: 0.35; }
.hero-accent-line {
  position: absolute;
  top: 0; bottom: 0; left: 47%;
  width: 3px;
  background: linear-gradient(to bottom, transparent 0%, var(--orange) 20%,
              var(--orange) 80%, transparent 100%);
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 5% 60px;
  max-width: 680px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 92, 0, 0.1);
  border: 1px solid var(--orange-border);
  padding: 8px 18px;
  margin-bottom: 32px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  animation: fadeUp 0.8s ease both;
}
.hero-tag-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseDot 2.2s ease infinite;
}
.hero-tag span {
  font-family: var(--fd);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange);
}

.hero-h1 {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(52px, 8.5vw, 108px);
  line-height: 0.9;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-h1 .accent { color: var(--orange); font-style: italic; }

.hero-p {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-light);
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.28s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.42s ease both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 56px;
  border-top: 1px solid var(--black-3);
  padding-top: 36px;
  animation: fadeUp 0.8s 0.55s ease both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 32px 0 0;
  margin: 0 32px 0 0;
  border-right: 1px solid var(--black-3);
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-val {
  font-family: var(--fd);
  font-weight: 900; font-size: 34px;
  color: var(--orange); line-height: 1;
}
.hero-stat-lbl {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.6); }
}

/* ─── 07  MARQUEE ────────────────────────────────────────────── */
.marquee-bar {
  background: var(--orange);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: var(--fd);
  font-weight: 700; font-size: 12px;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 0 36px;
  display: flex; align-items: center; gap: 14px;
  white-space: nowrap;
}
.marquee-item::after {
  content: '';
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── 08  NO-MOQ SECTION ─────────────────────────────────────── */
#moq {
  background: var(--black);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
#moq::before {
  content: 'NO MOQ';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(80px, 18vw, 220px);
  color: rgba(255,255,255,0.018);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -4px;
  text-transform: uppercase;
  user-select: none;
}

.moq-inner {
  position: relative; z-index: 1;
  border: 1px solid var(--orange-border);
  background: linear-gradient(135deg, rgba(255,92,0,0.06) 0%, transparent 60%);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.moq-badge {
  display: inline-flex;
  align-items: center; gap: 12px;
  background: var(--orange);
  padding: 10px 22px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  margin-bottom: 24px;
}
.moq-badge span {
  font-family: var(--fd);
  font-weight: 900; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white);
}

.moq-title {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.moq-title span { color: var(--orange); font-style: italic; }

.moq-desc {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300; line-height: 1.75;
  color: var(--gray-light);
  margin-bottom: 32px;
  max-width: 440px;
}

.moq-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.moq-pill {
  font-family: var(--fd);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--orange-border);
  padding: 8px 18px;
  color: var(--orange);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.moq-visual { display: flex; flex-direction: column; gap: 16px; }

.moq-counter-box {
  background: var(--black-2);
  border: 1px solid var(--black-4);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 20px;
}
.moq-counter-icon {
  width: 56px; height: 56px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  flex-shrink: 0;
}
.moq-counter-icon i { color: var(--orange); font-size: 22px; }
.moq-counter-label {
  font-family: var(--fd);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray-mid); margin-bottom: 4px;
}
.moq-counter-val {
  font-family: var(--fd);
  font-weight: 900; font-size: 28px;
  color: var(--white); line-height: 1;
}

/* ─── 09  WHY CHOOSE ─────────────────────────────────────────── */
#why {
  background: var(--black-2);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
#why::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,92,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  margin-top: 60px;
  background: var(--black-3);
}

.why-card {
  background: var(--black-2);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s, transform 0.35s;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.4s ease;
}
.why-card:hover          { background: var(--black-3); transform: translateY(-5px); }
.why-card:hover::after   { width: 100%; }

.why-icon {
  width: 50px; height: 50px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  margin-bottom: 20px;
  transition: background 0.3s;
}
.why-card:hover .why-icon { background: rgba(255, 92, 0, 0.2); }
.why-icon i               { color: var(--orange); font-size: 19px; }

.why-title {
  font-family: var(--fd);
  font-weight: 700; font-size: 17px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); margin-bottom: 10px;
}
.why-desc {
  font-size: 14px; font-weight: 300;
  line-height: 1.65; color: var(--gray-light);
}

/* ─── 10  PRODUCTS ───────────────────────────────────────────── */
#products { background: var(--black); padding: 100px 5%; }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--black-2);
  border: 1px solid var(--black-3);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s;
  cursor: pointer;
}
.product-card:hover { border-color: rgba(255,92,0,0.35); transform: translateY(-6px); }

.product-thumb {
  aspect-ratio: 4 / 3;
  background: var(--black-3);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
}
.product-thumb-ph {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--gray-dark); pointer-events: none;
}
.product-thumb-ph i    { font-size: 44px; opacity: 0.5; }
.product-thumb-ph span { font-family: var(--fd); font-size: 10px;
                         letter-spacing: 3px; text-transform: uppercase; opacity: 0.4; }

.product-overlay {
  position: absolute; inset: 0;
  background: rgba(255, 92, 0, 0.88);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay-label {
  font-family: var(--fd); font-weight: 900;
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
}

.product-foot {
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.product-name  { font-family: var(--fd); font-weight: 700; font-size: 15px;
                 letter-spacing: 1px; text-transform: uppercase; }
.product-badge { font-family: var(--fd); font-size: 9px; font-weight: 700;
                 letter-spacing: 2px; text-transform: uppercase;
                 color: var(--orange); border: 1px solid var(--orange-border);
                 padding: 4px 12px;
                 clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%); }

/* ─── 11  HOW IT WORKS ───────────────────────────────────────── */
#process {
  background: var(--black-2);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
#process::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,92,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 60px;
}

.process-step {
  padding: 32px 28px;
  border-left: 1px solid var(--black-4);
  transition: background 0.3s;
  position: relative;
}
.process-step:first-child { border-left: none; }
.process-step:hover        { background: rgba(255,92,0,0.025); }

.step-num {
  font-family: var(--fd); font-weight: 900; font-size: 60px;
  color: rgba(255,92,0,0.1); line-height: 1; margin-bottom: 16px;
  transition: color 0.3s; user-select: none;
}
.process-step:hover .step-num { color: rgba(255,92,0,0.22); }

.step-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--orange-border);
  background: var(--orange-dim);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  margin-bottom: 20px;
  transition: background 0.3s;
}
.process-step:hover .step-icon { background: rgba(255,92,0,0.18); }
.step-icon i                    { color: var(--orange); font-size: 20px; }

.step-title {
  font-family: var(--fd); font-weight: 700; font-size: 17px;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px;
}
.step-desc { font-size: 14px; font-weight: 300; line-height: 1.65; color: var(--gray-light); }

/* ─── 12  GALLERY + LIGHTBOX ─────────────────────────────────── */
#gallery { background: var(--black); padding: 100px 5%; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 10px;
  margin-top: 52px;
}
.gallery-item {
  position: relative;
  background: var(--black-2);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--black-3);
  transition: border-color 0.3s;
}
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:hover        { border-color: rgba(255,92,0,0.3); }

.gallery-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--gray-dark);
  pointer-events: none; transition: opacity 0.3s;
}
.gallery-ph i    { font-size: 32px; opacity: 0.45; }
.gallery-ph span { font-family: var(--fd); font-size: 9px;
                   letter-spacing: 3px; text-transform: uppercase; opacity: 0.35; }

.gallery-hover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,92,0,0.92) 0%,
              rgba(255,92,0,0.2) 50%, transparent 100%);
  opacity: 0;
  display: flex; align-items: flex-end; padding: 20px;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-item:hover .gallery-ph    { opacity: 0.15; }

.gallery-hover-label {
  font-family: var(--fd); font-weight: 700;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none;
  color: var(--white); font-size: 26px;
  cursor: pointer; opacity: 0.55;
  transition: opacity 0.2s; z-index: 1;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-body {
  width: min(800px, 92%);
  background: var(--black-3);
  border: 1px solid var(--black-4);
  aspect-ratio: 16 / 9;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
}
.lightbox-body i { font-size: 52px; color: var(--gray-dark); }
.lightbox-body p { font-family: var(--fd); font-size: 12px;
                   letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }
.lightbox-hint   { font-size: 12px; color: var(--gray); text-align: center; padding: 0 20px; }

/* ─── 13  REVIEWS ────────────────────────────────────────────── */
#reviews { background: var(--black-2); padding: 100px 5%; }

.reviews-coming {
  margin-top: 56px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 1px dashed rgba(255, 92, 0, 0.25);
  padding: 72px 40px;
  gap: 20px;
  text-align: center;
}
.reviews-coming-icon {
  width: 72px; height: 72px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.reviews-coming-icon i { color: var(--orange); font-size: 28px; }
.reviews-coming-title  { font-family: var(--fd); font-weight: 700; font-size: 22px;
                         letter-spacing: 2px; text-transform: uppercase; color: var(--off-white); }
.reviews-coming-sub    { font-size: 15px; font-weight: 300; color: var(--gray-light);
                         max-width: 440px; line-height: 1.7; }

/* ─── 14  FAQ ────────────────────────────────────────────────── */
#faq { background: var(--black); padding: 100px 5%; }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 60px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--black-3); }
.faq-q {
  display: flex;
  justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--fd); font-weight: 700;
  font-size: 16px; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.3s;
  user-select: none;
}
.faq-q:hover             { color: var(--orange); }
.faq-item.active .faq-q  { color: var(--orange); }

.faq-q-icon {
  font-size: 13px; color: var(--orange);
  flex-shrink: 0; transition: transform 0.35s;
}
.faq-item.active .faq-q-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 15px; font-weight: 300; line-height: 1.7;
  color: var(--gray-light);
}
.faq-item.active .faq-a { max-height: 200px; padding-bottom: 22px; }

.faq-cta {
  background: var(--black-2);
  border: 1px solid var(--black-3);
  padding: 40px;
  position: sticky;
  top: 96px;
}
.faq-cta-eyebrow { font-family: var(--fd); font-size: 10px; font-weight: 700;
                   letter-spacing: 4px; text-transform: uppercase;
                   color: var(--orange); margin-bottom: 16px; }
.faq-cta-title   { font-family: var(--fd); font-weight: 900; font-size: 30px;
                   line-height: 1; text-transform: uppercase; margin-bottom: 14px; }
.faq-cta-title span { color: var(--orange); }
.faq-cta-desc    { font-size: 14px; font-weight: 300; line-height: 1.7;
                   color: var(--gray-light); margin-bottom: 28px; }
.faq-cta-actions { display: flex; flex-direction: column; gap: 12px; }

/* ─── 15  CONTACT ────────────────────────────────────────────── */
#contact {
  background: var(--black-2);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 0% 50%, rgba(255,92,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-top: 60px;
  align-items: start;
}
.contact-stack { display: flex; flex-direction: column; gap: 14px; }

.contact-tile {
  display: flex; align-items: center; gap: 20px;
  background: var(--black-3);
  border: 1px solid var(--black-4);
  padding: 22px 24px;
  transition: border-color 0.3s, transform 0.3s;
  color: inherit;
}
.contact-tile:hover { border-color: rgba(255,92,0,0.3); transform: translateX(5px); }

.contact-tile-icon {
  width: 46px; height: 46px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
  flex-shrink: 0;
}
.contact-tile-icon i { color: var(--orange); font-size: 17px; }
.contact-tile-lbl    { font-family: var(--fd); font-size: 9px; font-weight: 700;
                       letter-spacing: 3px; text-transform: uppercase;
                       color: var(--orange); margin-bottom: 3px; }
.contact-tile-val    { font-size: 15px; font-weight: 400; color: var(--off-white); }

.contact-social-row  { display: flex; gap: 10px; flex-wrap: wrap; padding: 8px 0 0; }
.social-btn {
  width: 44px; height: 44px;
  background: var(--black-3); border: 1px solid var(--black-4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-light); font-size: 16px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.3s;
}
.social-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* Contact form */
.contact-form       { display: flex; flex-direction: column; gap: 16px; }
.contact-form-title { font-family: var(--fd); font-weight: 900;
                      font-size: clamp(26px, 3vw, 36px);
                      text-transform: uppercase; line-height: 1; margin-bottom: 6px; }
.contact-form-title span { color: var(--orange); }
.contact-form-sub   { font-size: 14px; font-weight: 300; color: var(--gray-light);
                      margin-bottom: 14px; line-height: 1.65; }
.form-row           { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group         { display: flex; flex-direction: column; gap: 7px; }
.form-lbl {
  font-family: var(--fd); font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gray-mid);
}
.form-ctrl {
  background: var(--black-3);
  border: 1px solid var(--black-4);
  color: var(--white);
  padding: 13px 16px;
  font-family: var(--fb); font-size: 15px;
  outline: none; width: 100%;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-ctrl:focus       { border-color: var(--orange); }
.form-ctrl::placeholder { color: var(--gray-dark); }
textarea.form-ctrl     { resize: vertical; min-height: 96px; }

/* ─── 16  FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--black-3);
  padding: 64px 5% 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--black-3);
}

.footer-brand-name { font-family: var(--fd); font-weight: 900; font-size: 26px;
                     letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.footer-brand-name span { color: var(--orange); }
.footer-brand-tag  { font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
                     color: var(--gray); margin-bottom: 18px; }
.footer-brand-desc { font-size: 14px; font-weight: 300; line-height: 1.7;
                     color: var(--gray); max-width: 300px; margin-bottom: 24px; }

.footer-contact-item { display: flex; align-items: center; gap: 10px;
                       font-size: 13px; color: var(--gray-light); margin-bottom: 10px; }
.footer-contact-item i  { color: var(--orange); font-size: 13px; width: 16px; }
.footer-contact-item a  { color: var(--gray-light); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--orange); }

.footer-col-heading { font-family: var(--fd); font-size: 10px; font-weight: 700;
                      letter-spacing: 4px; text-transform: uppercase;
                      color: var(--orange); margin-bottom: 20px; }
.footer-nav         { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav a       { font-size: 14px; font-weight: 300; color: var(--gray); transition: color 0.2s; }
.footer-nav a:hover { color: var(--orange); }

.footer-social-row { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  background: var(--black-2); border: 1px solid var(--black-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-mid); font-size: 14px;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transition: all 0.3s;
}
.footer-social:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding: 24px 0;
}
.footer-copy             { font-size: 12px; color: var(--gray-dark); letter-spacing: 0.5px; }
.footer-bottom-links     { display: flex; gap: 24px; }
.footer-bottom-links a   { font-size: 11px; color: var(--gray-dark);
                           transition: color 0.2s; letter-spacing: 0.5px; }
.footer-bottom-links a:hover { color: var(--gray); }

/* ─── 17  FLOATING WHATSAPP ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  width: 58px; height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 27px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: floatPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
  animation: none;
}
.wa-float-tip {
  position: absolute; right: 70px;
  background: var(--black-2);
  border: 1px solid var(--black-3);
  color: var(--white);
  padding: 8px 14px;
  font-family: var(--fd); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  white-space: nowrap; border-radius: 2px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.wa-float:hover .wa-float-tip { opacity: 1; }

@keyframes floatPulse {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}

/* ─── 18  RESPONSIVE BREAKPOINTS ────────────────────────────── */
@media (max-width: 1100px) {
  .moq-inner         { grid-template-columns: 1fr; gap: 32px; }
  .faq-layout        { grid-template-columns: 1fr; }
  .faq-cta           { position: static; }
  .contact-layout    { grid-template-columns: 1fr; gap: 48px; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .gallery-grid      { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 2; height: 220px; }
  .gallery-item              { height: 200px; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .hero-slash       { display: none; }
  .hero-accent-line { display: none; }
  .hero-inner       { padding: 100px 0 60px; max-width: 100%; }
  .hero-h1          { font-size: clamp(44px, 12vw, 72px); }
  .hero-stat        { border-right: none; padding-right: 0; margin-right: 0; }

  .products-header  { flex-direction: column; align-items: flex-start; }

  .gallery-grid      { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; height: 180px; }

  .form-row         { grid-template-columns: 1fr; }
  .footer-top       { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn          { width: 100%; justify-content: center; }
  .wa-float     { bottom: 18px; right: 18px; }
  .moq-inner    { padding: 32px 24px; }
}

/* ─── REAL PHOTO GALLERY (2-image layout) ───────────────────── */
.gallery-grid-real {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 52px;
}

.gallery-item-real {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--black-3);
  transition: border-color 0.3s;
  background: var(--black-2);
  aspect-ratio: 16 / 10;
}

.gallery-item-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item-real:hover { border-color: rgba(255,92,0,0.4); }
.gallery-item-real:hover img { transform: scale(1.04); }
.gallery-item-real:hover .gallery-hover { opacity: 1; }

/* Lightbox real image body override */
#lightbox .lightbox-body {
  background: var(--black-2);
  border: 1px solid var(--black-3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .gallery-grid-real {
    grid-template-columns: 1fr;
  }
  .gallery-item-real {
    aspect-ratio: 4 / 3;
  }
}
