/* ============================================================
   VPK PREM CROCKARS — MAIN STYLESHEET
   ============================================================ */

:root {
  /* Colors */
  --midnight: #0a0a0f;
  --fire-red: #ff3e3e;
  --spark-gold: #ffd700;
  --flame-orange: #ff6b35;
  --white: #ffffff;
  --gray: #b0b0b0;
  --surface: #12121a;
  --elevated: #1e1e2e;
  --whatsapp-green: #25d366;

  /* Gradients */
  --grad-fire: linear-gradient(135deg, var(--fire-red), var(--flame-orange));
  --grad-gold: linear-gradient(135deg, var(--spark-gold), var(--flame-orange));
  --grad-dark-red: linear-gradient(180deg, var(--midnight) 0%, #2a0a0a 100%);

  /* Typography */
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 4rem;
  --gap-xl: 6rem;

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 16px;
  --max-width: 1400px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: auto; /* handled by JS lerp scroll */
  -webkit-tap-highlight-color: transparent;
}

body {
  background: var(--midnight);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

section { position: relative; padding: var(--gap-xl) 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--spark-gold);
  margin-bottom: var(--gap-sm);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
}

h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

.section-title {
  text-align: center;
  margin-bottom: var(--gap-lg);
}
.section-title p {
  color: var(--gray);
  max-width: 560px;
  margin: var(--gap-sm) auto 0;
}

/* 3D text extrusion for H1 */
.text-3d {
  color: var(--white);
  text-shadow:
    1px 1px 0 var(--flame-orange),
    2px 2px 0 var(--flame-orange),
    3px 3px 0 rgba(255,107,53,0.7),
    4px 4px 8px rgba(0,0,0,0.6),
    0 0 40px rgba(255,215,0,0.25);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 1rem 2rem;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-fire);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 62, 62, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(255, 62, 62, 0.5); }
.btn-primary:active,
.btn.is-pressed { transform: translateY(3px) scale(0.98); box-shadow: 0 4px 12px rgba(255,62,62,0.4); }

.btn-gold {
  background: var(--grad-gold);
  color: var(--midnight);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}
.btn-gold:hover { box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--spark-gold); color: var(--spark-gold); }

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse-green 2.4s infinite;
}
.btn-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.1rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: var(--gap-md); }

.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { height: 44px; width: auto; border-radius: 8px; }
.nav-logo span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo small { display: block; color: var(--spark-gold); font-size: 0.65rem; letter-spacing: 0.1em; }

.nav-links { display: flex; align-items: center; gap: var(--gap-md); }
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  position: relative;
  padding: 0.4rem 0.1rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--grad-gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 8px 0;
}
.hamburger span {
  height: 2px; width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: rotateX(-90deg);
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s var(--ease), opacity 0.5s var(--ease);
}
.mobile-menu.open { transform: rotateX(0deg); opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--white); }
.mobile-menu .btn-whatsapp { margin-top: 1rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 6rem;
}
.hero.hero-sm { min-height: 62vh; }
.hero canvas { position: absolute; inset: 0; z-index: 0; }
.hero-fallback {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(255,107,53,0.22), transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(255,215,0,0.12), transparent 55%),
              var(--midnight);
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 1.5rem; }
.hero-content .eyebrow { display: block; }
.hero-content h1 { margin-bottom: 1rem; }
.hero-content .subtitle {
  font-family: var(--font-head);
  color: var(--gray);
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: var(--gap-md);
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(180deg, transparent, var(--midnight));
  z-index: 1;
  pointer-events: none;
}
.scroll-chevron {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--spark-gold);
  animation: bounce-chevron 2s infinite;
  opacity: 0.8;
}

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--surface);
  padding: var(--gap-md) 0;
  border-top: 1px solid rgba(255,215,0,0.08);
  border-bottom: 1px solid rgba(255,215,0,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.6rem);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { color: var(--gray); font-size: 0.9rem; margin-top: 0.3rem; }

/* ============ ABOUT SNIPPET ============ */
.about-snippet .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); align-items: center; }
.about-frame { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-frame::before {
  content: '';
  position: absolute; inset: -3px;
  background: var(--grad-gold);
  border-radius: calc(var(--radius) + 3px);
  z-index: -1;
}
.about-frame img { border-radius: var(--radius); }
.about-text p { color: var(--gray); margin-bottom: 1rem; }

/* ============ CARDS (glass + tilt) ============ */
.card {
  background: rgba(30, 30, 46, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: var(--gap-md);
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
}
.card:hover { border-color: rgba(255,215,0,0.3); box-shadow: 0 20px 45px rgba(0,0,0,0.4); }
.card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--grad-fire);
  margin-bottom: var(--gap-sm);
  font-size: 1.5rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--gray); font-size: 0.95rem; }

.services-grid, .cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.card-offer {
  position: relative;
  border: 1px solid transparent;
  background-clip: padding-box;
}
.card-offer::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: conic-gradient(from var(--spin-angle, 0deg), var(--spark-gold), var(--flame-orange), var(--fire-red), var(--spark-gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotate-border 4s linear infinite;
  z-index: -1;
}

/* ============ PRODUCTS ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}
.products-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--elevated);
  border: 1px solid rgba(255,255,255,0.08);
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}
.product-media { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.1); }
.product-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,15,0.9) 100%);
}
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--grad-gold);
  color: var(--midnight);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-info { padding: 1rem 1.2rem 1.2rem; position: relative; z-index: 2; }
.product-info h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.product-price { color: var(--spark-gold); font-family: var(--font-head); font-weight: 600; margin-bottom: 0.8rem; }
.product-actions { display: flex; gap: 0.6rem; }
.product-actions button {
  flex: 1;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 0.5rem;
  border-radius: 999px;
  text-align: center;
}
.btn-quickview { background: rgba(255,255,255,0.08); color: var(--white); }
.btn-enquire { background: var(--grad-fire); color: var(--white); }

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--grad-dark-red);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--gray); max-width: 500px; margin: 0 auto var(--gap-md); }
.spark-particles { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.spark-particles span {
  position: absolute;
  bottom: -10px;
  width: 4px; height: 4px;
  background: var(--spark-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(255,215,0,0.6);
  animation: float-up linear infinite;
}
.cta-section .container { position: relative; z-index: 2; }

/* ============ FORM ============ */
.form-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(30,30,46,0.5);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
  border: 1px solid rgba(255,215,0,0.15);
}
.form-wrap::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: conic-gradient(from var(--spin-angle, 0deg), var(--spark-gold), transparent 30%, var(--fire-red), transparent 70%, var(--spark-gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotate-border 6s linear infinite;
  z-index: 0;
  pointer-events: none;
}
.form-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; color: var(--white); }
.form-group label .req { color: var(--fire-red); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(10,10,15,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--spark-gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.15);
}
.form-error { color: var(--fire-red); font-size: 0.78rem; min-height: 1em; }
.form-group.error input, .form-group.error select { border-color: var(--fire-red); }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.2rem;
}
.product-category { margin-bottom: 0.6rem; }
.product-category > span {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--spark-gold);
  margin-bottom: 0.4rem;
}
.checkbox-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.chip input { accent-color: var(--spark-gold); }
.chip:has(input:checked) { background: rgba(255,215,0,0.15); border-color: var(--spark-gold); color: var(--spark-gold); }

.form-submit { margin-top: 1.5rem; text-align: center; position: relative; z-index: 1; }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--grad-gold);
  color: var(--midnight);
  font-family: var(--font-head);
  font-weight: 600;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  z-index: 2000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.45s var(--ease);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============ TESTIMONIALS ============ */
.testimonial-track {
  display: flex;
  gap: var(--gap-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  cursor: grab;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-track.dragging { cursor: grabbing; }
.testimonial-card {
  flex: 0 0 min(360px, 85vw);
  scroll-snap-align: start;
}
.stars { color: var(--spark-gold); margin-bottom: 0.6rem; letter-spacing: 2px; }
.testimonial-name { font-family: var(--font-head); font-weight: 600; margin-top: 0.8rem; }
.testimonial-loc { color: var(--gray); font-size: 0.82rem; }

/* ============ MAP + CONTACT STRIP ============ */
.map-strip { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--gap-md); align-items: stretch; }
.map-strip iframe { width: 100%; height: 100%; min-height: 320px; border: 0; border-radius: var(--radius); filter: grayscale(0.3) invert(0.92) contrast(0.9); }
.contact-info-card { display: flex; flex-direction: column; justify-content: center; gap: 1.2rem; }
.contact-line { display: flex; align-items: center; gap: 0.8rem; }
.contact-line .ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,215,0,0.1);
  color: var(--spark-gold);
  flex-shrink: 0;
}

/* ============ FOOTER ============ */
.footer { background: var(--surface); padding: var(--gap-lg) 0 var(--gap-md); border-top: 1px solid rgba(255,215,0,0.08); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--gap-md);
  margin-bottom: var(--gap-lg);
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-logo img { height: 46px; border-radius: 8px; }
.footer-col h4 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 1rem; color: var(--spark-gold); }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--gray); font-size: 0.92rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer p { color: var(--gray); font-size: 0.92rem; }
.social-row { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s var(--ease);
}
.social-circle:hover { background: var(--grad-gold); color: var(--midnight); }
.footer-bottom {
  text-align: center;
  padding-top: var(--gap-md);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--gray);
  font-size: 0.85rem;
}

/* ============ POPUPS ============ */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,15,0.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 3000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
  padding: 1.5rem;
}
.popup-overlay.show { opacity: 1; pointer-events: auto; }
.popup-card {
  background: var(--elevated);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 20px;
  padding: 2.4rem;
  max-width: 440px;
  text-align: center;
  position: relative;
  transform: scale(0.85) translateY(20px);
  transition: transform 0.45s var(--ease);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.popup-overlay.show .popup-card { transform: scale(1) translateY(0); }
.popup-close {
  position: absolute; top: 14px; right: 16px;
  font-size: 1.4rem; color: var(--gray);
}
.popup-close:hover { color: var(--white); }
.popup-card h3 { margin-bottom: 0.8rem; }
.popup-card p { color: var(--gray); margin-bottom: 1.6rem; }
.popup-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ============ LOADING SCREEN ============ */
.loader {
  position: fixed; inset: 0;
  background: var(--midnight);
  z-index: 5000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.4rem;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.loader.hide { opacity: 0; transform: scale(1.15); pointer-events: none; }
.loader-spark {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255,215,0,0.15);
  border-top-color: var(--spark-gold);
  animation: spin 0.9s linear infinite;
  position: relative;
}
.loader-spark::after {
  content: '';
  position: absolute; inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.5), transparent 70%);
}
.loader p { font-family: var(--font-head); font-weight: 600; letter-spacing: 0.15em; color: var(--gray); font-size: 0.85rem; text-transform: uppercase; }

/* ============ CUSTOM CURSOR ============ */
.cursor-dot, .cursor-trail {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--spark-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.cursor-trail {
  width: 30px; height: 30px;
  background: transparent;
  box-shadow: 0 0 20px 8px rgba(255,215,0,0.35);
  transition: transform 0.15s linear;
}

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ QUICK VIEW MODAL ============ */
.qv-modal .popup-card { max-width: 620px; text-align: left; }
.qv-body { display: grid; grid-template-columns: 1fr 1.1fr; gap: 1.5rem; }
.qv-body img { border-radius: 14px; aspect-ratio: 1/1; object-fit: cover; }
.qv-body h3 { margin-bottom: 0.4rem; }
.qv-body .product-price { font-size: 1.2rem; }
.qv-body p.desc { color: var(--gray); font-size: 0.9rem; margin: 0.8rem 0 1.2rem; }

/* ============ ACCORDION ============ */
.accordion-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  background: rgba(30,30,46,0.4);
}
.accordion-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
}
.accordion-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; margin-left: 1rem; }
.accordion-icon::before, .accordion-icon::after {
  content: '';
  position: absolute; background: var(--spark-gold);
  transition: transform 0.35s var(--ease);
}
.accordion-icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.accordion-icon::after { height: 100%; width: 2px; left: 50%; top: 0; transform: translateX(-50%); }
.accordion-item.open .accordion-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-body-inner { padding: 0 1.5rem 1.4rem; color: var(--gray); font-size: 0.92rem; }
.accordion-item.open .accordion-body { max-height: 400px; }

/* ============ TIMELINE (about) ============ */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute; left: 24px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--spark-gold), var(--fire-red));
}
.timeline-step { position: relative; padding-left: 70px; margin-bottom: var(--gap-lg); }
.timeline-num {
  position: absolute; left: 0; top: 0;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--midnight);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
}
.timeline-step h3 { margin-bottom: 0.4rem; }
.timeline-step p { color: var(--gray); }

/* ============ TRUST BADGES ============ */
.trust-row { display: flex; justify-content: space-between; gap: var(--gap-md); flex-wrap: wrap; text-align: center; }
.trust-badge { flex: 1; min-width: 180px; }
.trust-badge .card-icon { margin: 0 auto var(--gap-sm); }

/* ============ WHY CHOOSE (icon grid) ============ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-md); }
.why-card svg { width: 44px; height: 44px; stroke: var(--spark-gold); fill: none; stroke-width: 1.5; margin-bottom: var(--gap-sm); }
.why-card svg path, .why-card svg circle {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.why-card.in-view svg path, .why-card.in-view svg circle { stroke-dashoffset: 0; }

/* ============ CATEGORY FILTER (products page) ============ */
.filter-tabs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  margin-bottom: var(--gap-lg);
  scrollbar-width: thin;
}
.filter-tab {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--gray);
  position: relative;
  transition: color 0.3s var(--ease);
}
.filter-tab.active { color: var(--midnight); background: var(--grad-gold); }

/* ============ COMPARISON TABLE ============ */
.compare-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--radius); }
.compare-table th, .compare-table td {
  padding: 1rem 1.2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.compare-table th { font-family: var(--font-head); background: rgba(255,255,255,0.03); }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; }
.compare-table .col-vpk { background: rgba(255,215,0,0.08); color: var(--spark-gold); font-weight: 600; }

/* ============ PRICING CARDS (offers) ============ */
.pricing-card { text-align: center; position: relative; }
.pricing-card .price { font-family: var(--font-head); font-size: 2rem; font-weight: 700; margin: 1rem 0; color: var(--spark-gold); }
.pricing-card ul { text-align: left; margin: 1rem 0 1.5rem; }
.pricing-card ul li { padding: 0.4rem 0; color: var(--gray); font-size: 0.9rem; }
.pricing-card.popular { border: 1px solid var(--spark-gold); animation: pulse-gold-glow 2.4s infinite; }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-gold); color: var(--midnight);
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  padding: 0.35rem 1rem; border-radius: 999px; letter-spacing: 0.05em;
}

/* ============ CONTACT PAGE ============ */
.contact-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-md); }
.contact-cards-row .card { text-align: center; }
.contact-cards-row .card-icon { margin: 0 auto var(--gap-sm); }

/* Delivery map graphic */
.delivery-graphic {
  border-radius: var(--radius);
  background: radial-gradient(circle at 40% 40%, rgba(255,215,0,0.15), transparent 60%), var(--surface);
  border: 1px solid rgba(255,215,0,0.1);
  padding: var(--gap-lg);
  text-align: center;
}

/* Utility */
.mt-lg { margin-top: var(--gap-lg); }
.text-center { text-align: center; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); }
.dark-bg { background: var(--surface); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--spark-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
