/* ========================================
   STICKERZONE JAGRAON — MAIN STYLESHEET
   Dark Theme | Orange/Yellow Accent
   Mobile-First | Modern Design
   ======================================== */

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

:root {
  --accent:       #FF6B00;
  --accent-light: #FF9A3C;
  --accent-gold:  #FFD700;
  --bg-base:      #0a0a0a;
  --bg-card:      #111111;
  --bg-card2:     #181818;
  --bg-glass:     rgba(255,255,255,0.04);
  --border:       rgba(255,107,0,0.18);
  --border-dim:   rgba(255,255,255,0.07);
  --text-primary: #f5f5f5;
  --text-muted:   #888;
  --text-dim:     #555;
  --wa-green:     #25D366;
  --wa-dark:      #128C7E;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --shadow-glow:  0 0 40px rgba(255,107,0,0.15);
  --shadow-card:  0 4px 30px rgba(0,0,0,0.5);
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.accent { color: var(--accent); }

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: linear-gradient(135deg, var(--accent), #e05500);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(255,107,0,0.35);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(255,255,255,0.1),transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,0,0.5); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.btn-whatsapp:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-lg { padding: 1rem 2.2rem; font-size: 1.08rem; }
.full-width { width: 100%; justify-content: center; }

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-35px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(35px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,107,0,0.4); }
  50%       { box-shadow: 0 0 40px rgba(255,107,0,0.8); }
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.fade-in-up   { opacity: 0; animation: fadeInUp   0.7s ease forwards; animation-delay: var(--delay, 0s); }
.fade-in-left { opacity: 0; animation: fadeInLeft  0.7s ease forwards; animation-delay: var(--delay, 0s); }
.fade-in-right{ opacity: 0; animation: fadeInRight 0.7s ease forwards; animation-delay: var(--delay, 0s); }

/* When using IntersectionObserver — re-animate on scroll */
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 1rem 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dim);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.logo-accent { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-links a:hover { color: var(--accent); }
.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}
.btn-nav-wa:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,0.4); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(20,10,0,0.75) 100%);
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url('images/hero_bg.png') center/cover no-repeat,
    radial-gradient(ellipse at 70% 50%, rgba(255,107,0,0.12) 0%, transparent 65%),
    linear-gradient(135deg, #0a0a0a 0%, #120800 100%);
  opacity: 0.55;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  padding-bottom: 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1rem;
}
.headline-accent {
  display: block;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(255,107,0,0.4);
}
.hero-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.sub-tag {
  padding: 0.3rem 0.9rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ddd;
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border-dim);
}
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px; height: 46px;
  border: 2px solid rgba(255,107,0,0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 7px;
  transition: border-color var(--transition);
}
.hero-scroll-cue:hover { border-color: var(--accent); }
.scroll-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: scrollDot 1.4s ease infinite;
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ========================================
   CUSTOMIZER SECTION
   ======================================== */
.customizer-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0800 50%, #0a0a0a 100%);
  position: relative;
}
.customizer-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.customizer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.customizer-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.control-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.6rem;
}
.input-wrapper {
  position: relative;
}
.input-wrapper input {
  width: 100%;
  padding: 0.85rem 2.8rem 0.85rem 1rem;
  background: var(--bg-card2);
  border: 1.5px solid var(--border-dim);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.input-wrapper input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
}
.input-icon {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  pointer-events: none;
}
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-card2);
  border: 1.5px solid var(--border-dim);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  transition: border-color var(--transition);
}
.select-wrapper select:focus { outline: none; border-color: var(--accent); }
.select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  pointer-events: none;
}
.color-picker {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.color-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.color-btn:hover { transform: scale(1.15); }
.color-btn.active {
  border-color: #fff;
  box-shadow: 0 0 0 2px var(--accent), 0 0 12px rgba(255,107,0,0.4);
  transform: scale(1.15);
}
.effect-picker {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.effect-btn {
  padding: 0.5rem 1rem;
  background: var(--bg-card2);
  border: 1.5px solid var(--border-dim);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.effect-btn:hover { border-color: var(--accent); color: var(--accent); }
.effect-btn.active {
  background: rgba(255,107,0,0.15);
  border-color: var(--accent);
  color: var(--accent);
}
.price-display {
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,107,0,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
}
.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
}
.price-per {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.price-note {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.customizer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.customizer-preview {
  position: sticky;
  top: 100px;
}
.preview-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-align: center;
}
.bike-mockup-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card2);
  border: 1px solid var(--border-dim);
  box-shadow: var(--shadow-card);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bike-mockup-img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bike-mockup-wrapper:hover .bike-mockup-img { transform: scale(1.03); }
.sticker-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.sticker-overlay span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.6), 0 0 20px rgba(255,107,0,0.5);
  white-space: nowrap;
  transition: all 0.3s ease;
}
.preview-meta {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 0.8rem;
}

/* ========================================
   BEFORE & AFTER SLIDER
   ======================================== */
.compare-section {
  padding: 6rem 0;
  background: var(--bg-base);
}
.compare-wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.compare-container {
  position: relative;
  user-select: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: col-resize;
  box-shadow: var(--shadow-card), 0 0 0 1px var(--border-dim);
  min-height: 320px;
}
.compare-before, .compare-after {
  position: absolute;
  inset: 0;
}
.compare-before { z-index: 1; }
.compare-after   { z-index: 2; width: 50%; overflow: hidden; }
.compare-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.compare-img-after {
  filter: saturate(1.4) contrast(1.1);
  width: auto;
  min-width: 100vw;
  max-width: none;
}
.compare-label-inner {
  position: absolute;
  top: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  z-index: 5;
  pointer-events: none;
}
.before-label {
  left: 1rem;
  background: rgba(0,0,0,0.7);
  color: #aaa;
  border: 1px solid rgba(255,255,255,0.15);
}
.after-label {
  right: 1rem;
  background: var(--accent);
  color: #fff;
}
.compare-slider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  z-index: 10;
  width: 4px;
  background: var(--accent);
  transform: translateX(-2px);
  cursor: col-resize;
}
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 15px rgba(255,107,0,0.5);
  border: 3px solid #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.slider-handle:hover { transform: translate(-50%, -50%) scale(1.1); }
.compare-hint {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #0e0900 100%);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay, 0s);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow-glow);
}
.product-icon {
  font-size: 2.5rem;
  padding: 1.5rem 1.5rem 0;
}
.product-img-wrap {
  padding: 0.75rem 1.5rem;
}
.product-img-placeholder {
  width: 100%; height: 160px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  overflow: hidden;
  position: relative;
}
.bike-img    { background: linear-gradient(135deg, #1a0a00, #3d1a00); color: var(--accent); }
.car-img     { background: linear-gradient(135deg, #001a3d, #003d8c); color: #4da6ff; }
.tractor-img { background: linear-gradient(135deg, #0d1a00, #2d4d00); color: #7ae040; }
.shop-img    { background: linear-gradient(135deg, #1a0033, #4d0099); color: #c070ff; }
.product-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
}
.product-info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.product-info h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.product-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
}
.btn-card-wa {
  padding: 0.4rem 1rem;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-sm);
  color: var(--wa-green);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-card-wa:hover {
  background: var(--wa-green);
  color: #fff;
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-section {
  padding: 6rem 0;
  background: var(--bg-base);
  position: relative;
}
.trust-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.3), transparent);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.trust-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  animation-delay: var(--delay, 0s);
}
.trust-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  background: rgba(255,107,0,0.04);
}
.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 0.9rem;
  display: block;
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.trust-card h4 {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.trust-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #0c0800 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay, 0s);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.wa-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.wa-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #128C7E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.wa-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.wa-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.wa-location {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.wa-logo { flex-shrink: 0; }
.stars {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.wa-bubble {
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.15);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.review-photo {
  width: 100%;
  border-radius: var(--radius-md);
  max-height: 160px;
  object-fit: cover;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-dim);
}
.review-date {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: right;
  display: block;
}
.review-cta {
  text-align: center;
}
.review-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* ========================================
   ORDER SECTION
   ======================================== */
.order-section {
  padding: 6rem 0;
  background: var(--bg-base);
  position: relative;
}
.order-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.order-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}
.order-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-card2);
  border: 1.5px solid var(--border-dim);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.payment-section { display: flex; flex-direction: column; gap: 0.8rem; }
.payment-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.payment-options {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.payment-option {
  flex: 1;
  min-width: 120px;
  cursor: pointer;
}
.payment-option input[type=radio] { display: none; }
.payment-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.9rem;
  background: var(--bg-card2);
  border: 1.5px solid var(--border-dim);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.payment-option input:checked + .payment-label {
  border-color: var(--accent);
  background: rgba(255,107,0,0.1);
  color: var(--accent);
}
.pay-icon { font-size: 1.4rem; }
.cod-toggle {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-muted);
  animation: fadeInUp 0.3s ease;
}
.cod-badge {
  background: var(--wa-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  white-space: nowrap;
}
.success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius-lg);
  gap: 0.8rem;
}
.success-icon { font-size: 3rem; }
.success-message h3 { font-size: 1.4rem; color: #fff; }
.success-message p  { color: var(--text-muted); font-size: 0.95rem; }

/* Order Sidebar */
.order-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 90px;
}
.sidebar-cta-card,
.sidebar-upi-card,
.sidebar-hours {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar-cta-card {
  border-color: rgba(37,211,102,0.2);
  background: rgba(37,211,102,0.04);
}
.sidebar-cta-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.sidebar-cta-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.phone-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.phone-display a {
  color: var(--accent);
  font-weight: 700;
  transition: var(--transition);
}
.phone-display a:hover { color: var(--accent-light); }
.sidebar-upi-card h4,
.sidebar-hours h4 {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}
.upi-id {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card2);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
}
.upi-label { font-size: 0.78rem; color: var(--text-dim); white-space: nowrap; }
.upi-value { flex: 1; font-weight: 700; font-size: 0.95rem; color: var(--accent); }
.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0 0.2rem;
  transition: transform 0.2s;
}
.copy-btn:hover { transform: scale(1.2); }
.upi-note { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 0.75rem; }
.upi-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.upi-icons span {
  padding: 0.3rem 0.7rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-dim);
}
.hours-open { color: var(--wa-green); font-weight: 600; }
.location-info {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
  padding: 7rem 0;
  background: radial-gradient(ellipse at center, rgba(255,107,0,0.12) 0%, rgba(10,10,10,0) 70%), #0a0a0a;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.5), transparent);
}
.final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.final-cta-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.final-cta-content p {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.final-cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.final-cta-badges span {
  padding: 0.35rem 0.9rem;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
}
.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #050505;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-dim);
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 300px;
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links h5, .footer-contact h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.footer-links a, .footer-contact a, .footer-contact span {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.float-wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem 0.75rem 0.9rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}
.float-wa:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.float-wa-text { white-space: nowrap; }
.float-wa-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 14px; height: 14px;
  background: #ff4444;
  border-radius: 50%;
  border: 2.5px solid #050505;
  animation: wa-pulse 2s ease infinite;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .customizer-grid  { grid-template-columns: 1fr; }
  .customizer-preview { position: static; }
  .order-grid       { grid-template-columns: 1fr; }
  .order-sidebar    { position: static; }
  .footer-content   { grid-template-columns: 1fr 1fr; }
  .footer-brand     { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .nav-links        { display: none; }
  .nav-links.open   { display: flex; flex-direction: column; position: fixed; inset: 0; top: 60px; background: rgba(10,10,10,0.98); padding: 2rem; gap: 1.5rem; z-index: 8000; align-items: center; justify-content: center; }
  .hamburger        { display: flex; }
  .btn-nav-wa       { display: none; }
  .hero-cta-group   { flex-direction: column; }
  .hero-cta-group .btn-primary, .hero-cta-group .btn-whatsapp { width: 100%; justify-content: center; }
  .hero-stats       { justify-content: center; }
  .form-row         { grid-template-columns: 1fr; }
  .payment-options  { flex-direction: column; }
  .footer-content   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .final-cta-btns   { flex-direction: column; }
  .final-cta-btns .btn-lg { width: 100%; justify-content: center; }
  .float-wa-text    { display: none; }
  .float-wa         { padding: 0.9rem; border-radius: 50%; }
  .products-grid    { grid-template-columns: 1fr; }
  .trust-grid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .hero-headline    { font-size: 2.8rem; }
  .trust-grid       { grid-template-columns: 1fr; }
  .reviews-grid     { grid-template-columns: 1fr; }
}
