/* ═══════════════════════════════════════════════════════
   Wholesale Clothing Suppliers Australia — style.css
   Theme: White base + Vibrant Electric Blue & Coral accent
   ═══════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────
   1. DESIGN TOKENS
   ────────────────────────────────────────────────────── */
:root {
  /* Palette */
  --accent:        #0057ff;        /* Electric blue */
  --accent-dark:   #0041cc;
  --accent-light:  #3d7fff;
  --accent-glow:   rgba(0, 87, 255, 0.18);
  --coral:         #ff5340;        /* Vibrant coral for contrast */
  --coral-dark:    #e03020;
  --coral-light:   #ff7a6b;
  --gold:          #f5a623;

  /* Neutrals */
  --white:         #ffffff;
  --off-white:     #f7f9fc;
  --surface:       #f0f4ff;
  --border:        #dde5f7;
  --text-dark:     #0d1526;
  --text-body:     #2c3d5a;
  --text-muted:    #6277a0;

  /* Typography */
  --font-heading:  'Outfit', 'Inter', sans-serif;
  --font-body:     'Inter', Arial, sans-serif;

  /* Spacing */
  --section-py:    5rem;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:     0 6px 24px rgba(0,87,255,0.10);
  --shadow-lg:     0 16px 48px rgba(0,87,255,0.14);
  --shadow-card:   0 4px 20px rgba(0,0,0,0.08);

  /* Radius */
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --radius-pill:   999px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ──────────────────────────────────────────────────────
   3. TYPOGRAPHY
   ────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.15;
  font-weight: 800;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); margin-bottom: 0.6rem; }
h4 { font-size: 1rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.gradient-text {
  background: linear-gradient(120deg, var(--accent) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}
.section-label.light {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 3rem;
}
.section-intro.light-intro { color: rgba(255,255,255,0.8); }

/* ──────────────────────────────────────────────────────
   4. BUTTONS
   ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 18px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 8px 28px rgba(0,87,255,0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.btn-white:hover {
  background: var(--off-white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.btn-lg  { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-xl  { padding: 1.1rem 2.5rem; font-size: 1.1rem; font-weight: 700; }

/* ──────────────────────────────────────────────────────
   5. TOP BAR
   ────────────────────────────────────────────────────── */
.top-bar {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 0.5rem 1rem;
  flex-wrap: wrap;
}
.top-bar span { display: flex; align-items: center; gap: 0.35rem; }

/* ──────────────────────────────────────────────────────
   6. HEADER
   ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.8rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}
.logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: center;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover {
  background: var(--surface);
  color: var(--accent);
}

.header-ctas { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.2s;
}
.mobile-nav a:hover { background: var(--surface); }
.mobile-cta { margin-top: 0.75rem; text-align: center; }

/* ──────────────────────────────────────────────────────
   7. HERO
   ────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #001a66 0%, #0038cc 45%, #0057ff 70%, #1a6bff 100%);
  overflow: hidden;
  padding: 5rem 0 7rem;
  text-align: center;
  color: var(--white);
}

/* Dot grid overlay */
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Animated blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: var(--coral);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 500px; height: 500px;
  background: #00c8ff;
  bottom: -150px; right: -100px;
  animation-delay: -4s;
}

@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4dff91;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-title .gradient-text {
  background: linear-gradient(90deg, #ffcd00 0%, var(--coral-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  max-width: 640px;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.tag:hover { background: rgba(255,255,255,0.22); }

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 1.25rem 2.5rem;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-plus { font-size: 1.1rem; }
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: 0.25rem;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Wave bottom of hero */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ──────────────────────────────────────────────────────
   8. TRUST STRIP
   ────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
}
.trust-icon { font-size: 1.1rem; }

/* ──────────────────────────────────────────────────────
   9. INTRO SECTION
   ────────────────────────────────────────────────────── */
.intro-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.intro-content h2 { margin-bottom: 1.25rem; }
.intro-content p { color: var(--text-body); }
.intro-content .btn { margin-top: 0.75rem; }

.intro-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.intro-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.intro-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--coral));
}
.intro-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ic-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.intro-card h4 { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 0.5rem; font-weight: 700; }
.intro-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.ic-2 { transform: translateY(2rem); }
.ic-4 { transform: translateY(2rem); }

/* ──────────────────────────────────────────────────────
   10. PRODUCTS SECTION
   ────────────────────────────────────────────────────── */
.products-section {
  background: var(--off-white);
  padding: var(--section-py) 0;
}
.products-section > .container > .section-label,
.products-section > .container > h2,
.products-section > .container > .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.products-section > .container > .section-label { display: inline-block; }
.products-section > .container { display: flex; flex-direction: column; align-items: center; }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,87,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pc-right { flex-direction: row-reverse; }

.product-media {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 120px;
}
.product-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.03em;
}
.product-icon-lg {
  font-size: 4rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.product-content { flex: 1; }
.product-content h3 { color: var(--text-dark); margin-bottom: 0.75rem; }
.product-content > p { color: var(--text-body); font-size: 0.95rem; margin-bottom: 1.25rem; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.spec-item { text-align: center; }
.spec-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.spec-value {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
}

.product-features { padding-left: 0; }
.product-features li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.product-features li:last-child { border-bottom: none; }
.product-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ──────────────────────────────────────────────────────
   11. WHY US SECTION
   ────────────────────────────────────────────────────── */
.why-section {
  background: linear-gradient(135deg, #001a66 0%, #003399 50%, #0057ff 100%);
  padding: var(--section-py) 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.why-section > .container { position: relative; z-index: 1; }
.why-section h2 { color: var(--white); margin-bottom: 1rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  backdrop-filter: blur(10px);
  transition: transform 0.25s, background 0.25s;
}
.why-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}
.why-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.6rem; }
.why-card p { color: rgba(255,255,255,0.72); font-size: 0.9rem; line-height: 1.6; }
.why-card strong { color: var(--white); }

/* ──────────────────────────────────────────────────────
   12. BUYING GUIDE
   ────────────────────────────────────────────────────── */
.guide-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
.guide-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.guide-block h3 { color: var(--text-dark); margin-bottom: 1rem; font-size: 1.2rem; }
.guide-block p { color: var(--text-body); font-size: 0.9rem; margin-bottom: 0.75rem; }

/* GSM chart */
.gsm-chart { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.9rem; }
.gsm-row { display: grid; grid-template-columns: 110px 1fr; gap: 0.75rem 1rem; align-items: center; }
.gsm-range {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  text-align: center;
  color: var(--white);
}
.gsm-light  { background: #60a5fa; }
.gsm-mid    { background: var(--accent-light); }
.gsm-heavy  { background: var(--accent); }
.gsm-ultra  { background: var(--accent-dark); }
.gsm-bar {
  background: var(--border);
  border-radius: var(--radius-pill);
  height: 8px;
  grid-column: 2;
  overflow: hidden;
}
.gsm-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  border-radius: var(--radius-pill);
}
.gsm-desc {
  grid-column: 2;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: -0.25rem;
}

/* Print compare */
.print-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.print-col {
  border-radius: var(--radius-md);
  padding: 1rem;
}
.print-col.bad  { background: #fff3f2; border: 1px solid #ffd0cc; }
.print-col.good { background: #f0fff4; border: 1px solid #c3f0d0; }
.print-col h4 { font-size: 0.82rem; margin-bottom: 0.5rem; }
.print-col.bad  h4 { color: var(--coral-dark); }
.print-col.good h4 { color: #16a34a; }
.print-col ul { padding-left: 0; }
.print-col li {
  font-size: 0.78rem;
  padding: 0.2rem 0 0.2rem 1.1rem;
  position: relative;
  color: var(--text-body);
}
.print-col li::before { position: absolute; left: 0; }
.print-col.bad  li::before { content: '✕'; color: var(--coral); }
.print-col.good li::before { content: '✓'; color: #16a34a; }

/* ──────────────────────────────────────────────────────
   13. FAQ SECTION
   ────────────────────────────────────────────────────── */
.faq-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.faq-section > .container > h2 { margin-bottom: 2rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.faq-item summary {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--coral);
}
.faq-item[open] summary { color: var(--accent); }

.faq-body {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-body);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.faq-body strong { color: var(--text-dark); }

/* ──────────────────────────────────────────────────────
   14. CTA SECTION
   ────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 40%, #0c1526 100%);
  padding: var(--section-py) 0;
  text-align: center;
  color: var(--white);
}
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.2;
  animation: blobFloat 9s ease-in-out infinite alternate;
}
.cta-blob-1 {
  width: 500px; height: 500px;
  background: #ffcd00;
  top: -200px; left: -150px;
}
.cta-blob-2 {
  width: 400px; height: 400px;
  background: var(--accent-light);
  bottom: -150px; right: -100px;
  animation-delay: -3s;
}

.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-inner h2 { color: var(--white); margin-bottom: 1.25rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-inner p { color: rgba(255,255,255,0.82); max-width: 680px; margin-left: auto; margin-right: auto; margin-bottom: 1rem; }
.cta-inner .btn-white { margin-top: 1.25rem; margin-bottom: 2rem; }

.guarantee-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.g-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ──────────────────────────────────────────────────────
   15. FOOTER
   ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-brand { color: var(--white); }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; margin-bottom: 0.5rem; }
.footer-brand a { color: var(--accent-light); }
.footer-brand a:hover { color: var(--white); }

.footer-links h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links li, .footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ──────────────────────────────────────────────────────
   16. SCROLL ANIMATION
   ────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ──────────────────────────────────────────────────────
   17. RESPONSIVE
   ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-visual { grid-template-columns: 1fr 1fr; }
  .ic-2, .ic-4 { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }
  .main-nav { display: none; }
  .header-ctas { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-stats {
    gap: 1rem;
    padding: 1rem 1.5rem;
    flex-direction: column;
  }
  .stat-divider { width: 60px; height: 1px; }

  .product-card, .pc-right { flex-direction: column; }
  .product-media { width: 100%; flex-direction: row; align-items: center; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .print-compare { grid-template-columns: 1fr; }
  .gsm-row { grid-template-columns: 90px 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .top-bar { gap: 1rem; font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .intro-visual { grid-template-columns: 1fr; }
  .gsm-row { grid-template-columns: 1fr; }
  .gsm-desc { grid-column: 1; }
}

/* ──────────────────────────────────────────────────────
   18. INDUSTRIES SECTION
   ────────────────────────────────────────────────────── */
.industries-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.industries-section > .container > .section-label { display: inline-block; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.industry-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.industry-card:hover::after { transform: scaleX(1); }

.ind-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  display: block;
}
.industry-card h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.industry-card p {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* ──────────────────────────────────────────────────────
   19. HOW IT WORKS SECTION
   ────────────────────────────────────────────────────── */
.howitworks-section {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.howitworks-section > .container > .section-label { display: inline-block; }

.hiw-steps {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical connecting line */
.hiw-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--coral));
  opacity: 0.25;
}

.hiw-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: var(--radius-xl);
  transition: background 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.hiw-step:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.hiw-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--accent-glow);
  position: relative;
  z-index: 1;
}

.hiw-content { flex: 1; padding-top: 0.6rem; }
.hiw-content h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.hiw-content p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* ──────────────────────────────────────────────────────
   20. CUSTOMISATION SECTION
   ────────────────────────────────────────────────────── */
.custom-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.custom-section > .container > .section-label { display: inline-block; }

.custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.custom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.custom-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--coral));
  border-radius: 4px 0 0 4px;
}
.custom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.custom-icon {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
.custom-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
}
.custom-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* ──────────────────────────────────────────────────────
   21. QUALITY SECTION
   ────────────────────────────────────────────────────── */
.quality-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--surface) 0%, #e8f0ff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quality-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.quality-content .section-label { display: inline-block; }
.quality-content h2 { margin-bottom: 1.25rem; }
.quality-content p { font-size: 0.95rem; color: var(--text-body); }
.quality-content .btn { margin-top: 1rem; }

.quality-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.qbadge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}
.qbadge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.qb-icon { font-size: 1.6rem; margin-bottom: 0.4rem; }
.qbadge h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 0.3rem;
}
.qbadge p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ──────────────────────────────────────────────────────
   22. MARKET INSIGHTS SECTION
   ────────────────────────────────────────────────────── */
.insights-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.insights-section > .container > .section-label { display: inline-block; }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.insight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--coral));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.insight-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.insight-card h3 {
  font-size: 1.08rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.insight-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* ──────────────────────────────────────────────────────
   23. NEW SECTION RESPONSIVE RULES
   ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .industries-grid { grid-template-columns: 1fr; }
  .custom-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .quality-badges { grid-template-columns: 1fr 1fr; }
  .hiw-steps::before { display: none; }
  .hiw-step { flex-direction: column; gap: 1rem; padding: 1.5rem; }
}

@media (max-width: 480px) {
  .quality-badges { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────
   24. PRODUCT GALLERY SECTION
   ────────────────────────────────────────────────────── */
.gallery-section {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}
.gallery-section > .container > .section-label { display: inline-block; }
.gallery-section > .container > h2 { margin-bottom: 0.5rem; }
.gallery-section > .container > .section-intro { margin-bottom: 2rem; }

/* ── Filter Tabs ─────────────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.gf-btn {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.22s ease;
}
.gf-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--surface);
}
.gf-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px var(--accent-glow);
}

/* ── Gallery Grid ───────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* ── Gallery Item ───────────────────────────── */
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gallery-item.hidden { display: none; }

/* ── Image Wrapper (button) ─────────────────── */
.gi-img-wrap {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: #f0f0f0;
  border: none;
  padding: 0;
  cursor: zoom-in;
  overflow: hidden;
}
.gi-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gi-img-wrap img {
  transform: scale(1.06);
}

/* ── Zoom icon – appears on hover ──────────── */
.gi-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  font-size: 2.8rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  line-height: 1;
}
.gallery-item:hover .gi-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
/* Dim image slightly on hover to make icon pop */
.gi-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 23, 87, 0);
  transition: background 0.3s ease;
}
.gallery-item:hover .gi-img-wrap::after {
  background: rgba(0, 23, 87, 0.28);
}

/* ── Gallery CTA Row ────────────────────────── */
.gallery-cta-row {
  text-align: center;
  padding-top: 0.5rem;
}

/* ──────────────────────────────────────────────────────
   25. LIGHTBOX – pure image viewer
   ────────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 40, 0.92);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Pure image container – no info panel */
.lightbox-pure {
  position: relative;
  max-width: 520px;
  width: 100%;
  transform: scale(0.88);
  transition: transform 0.35s ease;
}
.lightbox-overlay.open .lightbox-pure {
  transform: scale(1);
}
.lightbox-pure img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 72px rgba(0,0,0,0.6);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--white);
  border: none;
  color: var(--text-dark);
  font-size: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background 0.2s, color 0.2s;
}
.lightbox-close:hover {
  background: var(--coral);
  color: var(--white);
}

/* ── Gallery Responsive ─────────────────────── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .lightbox-pure { max-width: 95vw; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .gallery-filters { gap: 0.4rem; }
  .gf-btn { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
}

/* ──────────────────────────────────────────────────────
   26. FEATURED BLANKS – dark section
   ────────────────────────────────────────────────────── */
.blanks-section {
  background: #0d0d0f;
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid texture */
.blanks-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── Header ─────────────────────────────────── */
.blanks-header {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.blanks-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff9a00;
  margin-bottom: 0.6rem;
}
.blanks-header h2 {
  color: #ffffff;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.blanks-gradient {
  background: linear-gradient(90deg, #ff9a00 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blanks-header p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  margin: 0;
}

/* ── Grid ───────────────────────────────────── */
.blanks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

/* ── Card ───────────────────────────────────── */
.blank-card {
  background: #1a1a1f;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.blank-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 12px 40px rgba(168,85,247,0.18);
}

/* ── Card image ─────────────────────────────── */
.blank-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #111;
}
.blank-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.blank-card:hover .blank-card-img img {
  transform: scale(1.05);
}

/* ── Card body ──────────────────────────────── */
.blank-card-body {
  padding: 1.1rem 1.2rem 1.3rem;
}

/* Badge row */
.blank-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.bb {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
}
.gsm-badge {
  background: rgba(255,154,0,0.12);
  color: #ff9a00;
  border-color: rgba(255,154,0,0.35);
}
.fit-badge {
  background: rgba(168,85,247,0.12);
  color: #c084fc;
  border-color: rgba(168,85,247,0.35);
}

/* Product name */
.blank-card-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.55rem;
  line-height: 1.2;
}

/* Fabric line */
.blank-fabric {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  margin-bottom: 0.75rem;
}
.fabric-icon { font-size: 0.9rem; flex-shrink: 0; }

/* Divider */
.blank-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 0.7rem;
}

/* Sizes */
.blank-sizes {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}
.blank-sizes strong {
  color: rgba(255,255,255,0.58);
  font-weight: 600;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .blanks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blanks-grid { grid-template-columns: 1fr; }
  .blank-card-img { aspect-ratio: 3/2; }
}

/* ──────────────────────────────────────────────────────
   27. FLOATING WHATSAPP BUTTON & FOOTER WA BUTTON
   ────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: #fff;
}
.wa-float svg {
  display: block;
}
.wa-tooltip {
  position: absolute;
  right: 75px;
  background-color: #0d1526;
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  box-shadow: var(--shadow-md);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25d366;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
  width: fit-content;
}
.footer-wa-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

