@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=Caveat:wght@500;600;700&family=Dancing+Script:wght@600;700&display=swap');

/* ==========================================================================
   GAYATRI LABEL TECH — CANONICAL DESIGN SYSTEM & STAGED ANIMATION ENGINE
   Production Domain: https://gayatrilabeltech.com
   ========================================================================== */

:root {
  --navy-950: #0a1128;
  --navy-900: #101f42;
  --navy-800: #1c2d5a;
  --orange-primary: #ff5722;
  --orange-hover: #f4511e;
  --orange-light: #fff3e0;
  --emerald: #10b981;
  --emerald-light: #ecfdf5;
  --bg-light: #f8fafc;
  --bg-subtle: #f1f5f9;
  --border-color: #e2e8f0;
  --text-color: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.drawer-open {
  overflow: hidden;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-950);
  font-weight: 700;
  line-height: 1.25;
}

html {
  scroll-behavior: smooth;
}

section[id], div[id] {
  scroll-margin-top: 84px;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--orange-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--orange-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

section {
  padding: 68px 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 36px;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-primary);
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: clamp(22px, 3.2vw, 34px);
  margin-bottom: 12px;
  text-wrap: balance;
}

.section-header p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--orange-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.25);
}

.btn-primary:hover {
  background-color: var(--orange-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 87, 34, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy-950);
  border-color: var(--border-color);
}

.btn-outline:hover {
  background-color: var(--bg-light);
  border-color: var(--navy-950);
  color: var(--navy-950);
}

.btn-call {
  background-color: var(--navy-950);
  color: var(--white);
}

.btn-call:hover {
  background-color: var(--navy-900);
  color: var(--white);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #1eb956;
  color: var(--white);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-orange {
  background: var(--orange-light);
  color: var(--orange-primary);
}

.badge-emerald {
  background: var(--emerald-light);
  color: var(--emerald);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
#mainHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

#mainHeader.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo img {
  height: 42px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-950);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange-primary);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--orange-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 6px;
  position: relative;
  z-index: 1110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy-950);
  transition: all 0.25s ease-in-out;
  transform-origin: center;
}

/* Hamburger active transformation to crisp X */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--orange-primary);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--orange-primary);
}

@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 576px) {
  .header-logo img {
    height: 34px;
    max-width: 125px;
    object-fit: contain;
  }
  .nav-actions {
    gap: 6px;
  }
  .nav-actions .btn-sm {
    padding: 6px 9px;
    font-size: 11.5px;
  }
}

/* Mobile Drawer */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 17, 40, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.mobile-drawer nav a {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-950);
}

.mobile-drawer nav a.active {
  color: var(--orange-primary);
}

.mobile-drawer .btn-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* ==========================================================================
   HERO STAGED ENTRANCE & SUBTLE OPERATIONAL FLOW PULSE
   ========================================================================== */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium Trustworthy Proof Cards Grid */
.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(10, 17, 40, 0.04);
  transition: all 0.25s ease;
}

.trust-card:hover {
  border-color: var(--orange-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 17, 40, 0.08);
}

.trust-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.trust-val {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.25;
  display: block;
  white-space: nowrap;
}

.trust-lbl {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
  display: block;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .trust-proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .trust-card {
    padding: 12px;
    gap: 10px;
  }
  .trust-val {
    font-size: 14px;
  }
  .trust-lbl {
    font-size: 11px;
  }
}
  .trust-proof-val {
    font-size: 14.5px;
  }
  .trust-proof-lbl {
    font-size: 11.5px;
  }
}
  .trust-proof-card {
    padding: 12px 8px;
  }
  .trust-proof-val {
    font-size: 15.5px;
  }
  .trust-proof-lbl {
    font-size: 11.5px;
  }
}
  .trust-proof-strip strong {
    font-size: 20px !important;
  }
  .trust-proof-strip span {
    font-size: 11.5px !important;
  }
}

@keyframes heroVisualScaleIn {
  0% {
    opacity: 0;
    transform: translate(16px, 20px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes heroRowSequence {
  0% {
    opacity: 0;
    transform: translateX(-14px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Subtle Ongoing Operational Badge Pulse */
@keyframes operationalPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.03);
  }
}

/* Staggered Entrance Sequence Classes (Fast & Crisp ~0.7s Total) */
/* Synchronized Hero Entrance Loading (Zero Lag) */
.hero-animate-1,
.hero-animate-2,
.hero-animate-3,
.hero-animate-4,
.hero-animate-5 {
  animation: heroFadeUp 0.3s ease-out forwards;
  opacity: 0;
}

.hero-stream-item {
  opacity: 1 !important;
  animation: none !important;
}

.op-step-1,
.op-step-2,
.op-step-3,
.op-step-4 {
  animation-delay: 0s !important;
}

/* ==========================================================================
   HERO PHYSICAL WAREHOUSE OPERATIONAL PIPELINE VISUAL
   ========================================================================== */
.hero-op-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: 0 10px 30px rgba(10, 17, 40, 0.06);
}

.hero-op-header {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-op-pipeline {
  position: relative;
  display: grid;
  gap: 10px;
}

.hero-op-line {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 17px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange-primary) 0%, var(--emerald) 50%, var(--navy-800) 100%);
  opacity: 0.35;
  z-index: 1;
}

.hero-op-step {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(248, 250, 252, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.85);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-op-step:hover {
  background: var(--white);
  border-color: #cbd5e1;
}

.hero-op-dot {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  z-index: 3;
}

.dot-orange { background: var(--white); border: 2px solid var(--orange-primary); color: var(--orange-primary); }
.dot-emerald { background: var(--white); border: 2px solid var(--emerald); color: var(--emerald); }
.dot-navy    { background: var(--white); border: 2px solid var(--navy-950); color: var(--navy-950); }

.hero-op-content {
  display: flex;
  flex-direction: column;
}

.hero-op-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.25;
}

.hero-op-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
}

@media (max-width: 480px) {
  .hero-op-card {
    padding: 16px;
  }
  .hero-op-step {
    padding: 6px 10px;
    gap: 10px;
  }
  .hero-op-dot {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 14px;
  }
  .hero-op-line {
    left: 15px;
  }
}

/* ==========================================================================
   CONNECTED OPERATIONAL WORKFLOW TRACK (HOW IT WORKS)
   ========================================================================== */
.workflow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  align-items: start;
}

.workflow-line {
  position: absolute;
  top: 48px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-primary) 0%, var(--emerald) 50%, var(--navy-800) 100%);
  opacity: 0.35;
  z-index: 1;
}

.workflow-stage {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(18px);
}

.workflow-track.is-visible .workflow-stage {
  opacity: 1;
  transform: translateY(0);
}

.workflow-track.is-visible .workflow-stage:nth-child(2) { transition-delay: 0.04s; }
.workflow-track.is-visible .workflow-stage:nth-child(3) { transition-delay: 0.10s; }
.workflow-track.is-visible .workflow-stage:nth-child(4) { transition-delay: 0.16s; }
.workflow-track.is-visible .workflow-stage:nth-child(5) { transition-delay: 0.22s; }
.workflow-track.is-visible .workflow-stage:nth-child(6) { transition-delay: 0.28s; }
.workflow-track.is-visible .workflow-stage:nth-child(7) { transition-delay: 0.34s; }
.workflow-track.is-visible .workflow-stage:nth-child(8) { transition-delay: 0.40s; }

.workflow-stage:hover {
  transform: translateY(-4px);
  border-color: var(--orange-primary);
  box-shadow: var(--shadow-md);
  transition-delay: 0s !important;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.workflow-num {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--orange-primary);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.workflow-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.workflow-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 4px;
}

.workflow-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.35;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .workflow-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .workflow-line {
    display: none;
  }
}

@media (max-width: 640px) {
  .workflow-track {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .workflow-stage {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 12px;
    padding: 12px 14px;
  }
  .workflow-icon-box {
    margin: 0;
    min-width: 38px;
    width: 38px;
    height: 38px;
  }
  .workflow-num {
    margin-bottom: 0;
    min-width: 20px;
  }
  .workflow-title {
    font-size: 13.5px;
    margin-bottom: 2px;
  }
  .workflow-desc {
    font-size: 11.5px;
  }
}

/* Operational Flow Strip Animation — Stage-Specific Animated Icons */
.flow-icon {
  display: inline-block;
  font-style: normal;
  margin-right: 4px;
}

.flow-arrow-animate {
  display: inline-block;
  color: var(--orange-primary);
  animation: arrowFlowMove 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1 forwards 0.2s;
}

@keyframes arrowFlowMove {
  0% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(5px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.flow-stage-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 6px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.animate-on-scroll.is-visible .flow-stage-box {
  animation: flowStageWave 1.2s ease-in-out 1 forwards;
}

.animate-on-scroll.is-visible .flow-stage-box:nth-child(1) { animation-delay: 0.0s; }
.animate-on-scroll.is-visible .flow-stage-box:nth-child(3) { animation-delay: 0.2s; }
.animate-on-scroll.is-visible .flow-stage-box:nth-child(5) { animation-delay: 0.4s; }
.animate-on-scroll.is-visible .flow-stage-box:nth-child(7) { animation-delay: 0.6s; }
.animate-on-scroll.is-visible .flow-stage-box:nth-child(9) { animation-delay: 0.8s; }
.animate-on-scroll.is-visible .flow-stage-box:nth-child(11) { animation-delay: 1.0s; }
.animate-on-scroll.is-visible .flow-stage-box:nth-child(13) { animation-delay: 1.2s; }

@keyframes flowStageWave {
  0% {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(0);
  }
  50% {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
  }
  100% {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-animate-1, .hero-animate-2, .hero-animate-3, .hero-animate-4, .hero-animate-5, .hero-stream-item, .animate-on-scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-pulse-badge, .flow-arrow-animate, .flow-stage-box {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

/* ==========================================================================
   CARDS & GRID LAYOUTS
   ========================================================================== */
.modern-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.modern-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.icon-orange { background: var(--orange-light); color: var(--orange-primary); }
.icon-emerald { background: var(--emerald-light); color: var(--emerald); }
.icon-navy { background: var(--bg-subtle); color: var(--navy-950); }

/* Process Timeline Workflow */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

@media (max-width: 991px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ ACCORDION & SEARCH
   ========================================================================== */
.faq-accordion {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--orange-primary);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy-950);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: var(--orange-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-search-box {
  max-width: 600px;
  margin: 0 auto 24px;
}

.faq-search-input {
  width: 100%;
  padding: 12px 18px;
  font-size: 14.5px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  outline: none;
  font-family: var(--font-body);
}

.faq-search-input:focus {
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

.faq-filter-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.faq-filter-btn {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
}

.faq-filter-btn.active, .faq-filter-btn:hover {
  background: var(--navy-950);
  color: var(--white);
  border-color: var(--navy-950);
}

/* ==========================================================================
   LOGOS & BRAND GRID
   ========================================================================== */
.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: center;
}

@media (max-width: 991px) {
  .brand-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .brand-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brand-logo-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.brand-logo-card img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

.brand-logo-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   SIGNATURE HANDWRITTEN FOUNDER NOTE (TACTILE PAPER CARD & PEN ANIMATION)
   ========================================================================== */
.handwritten-paper-container {
  background: #fdfbf7;
  background-image: repeating-linear-gradient(180deg, rgba(15, 42, 74, 0.02) 0px, rgba(15, 42, 74, 0.02) 1px, transparent 1px, transparent 28px);
  border: 1px solid #efe5d5;
  border-left: 4px solid var(--orange-primary);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: 0 4px 16px rgba(15, 42, 74, 0.04);
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.handwritten-opening {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: #0f2a4a;
  font-weight: 700;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.handwritten-body p {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  line-height: 1.65;
  color: #1e293b;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.handwritten-body p:nth-child(1) { transition-delay: 0.4s; }
.handwritten-body p:nth-child(2) { transition-delay: 0.6s; }
.handwritten-body p:nth-child(3) { transition-delay: 0.8s; }

.handwritten-signature-block {
  margin-top: 24px;
  border-top: 1px dashed #e2d7c5;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease 1.0s, transform 0.5s ease 1.0s;
}

.handwritten-signature-text {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  font-weight: 700;
  color: #0f2a4a;
  line-height: 1;
  letter-spacing: 0.03em;
  display: inline-block;
  margin-bottom: 4px;
  position: relative;
}

.signature-stroke-line {
  stroke-dasharray: 125;
  stroke-dashoffset: 125;
  transition: stroke-dashoffset 1.4s linear 1.0s;
}

.pen-tip-anim {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
}

.handwritten-paper-container.animate-paper {
  opacity: 1;
  transform: translateY(0);
}

.handwritten-paper-container.animate-paper .signature-stroke-line {
  stroke-dashoffset: 0;
}

.handwritten-paper-container.animate-paper .pen-tip-anim {
  animation: strokeOnlyPenSync 1.4s linear forwards 1.0s;
}

@keyframes strokeOnlyPenSync {
  0% {
    opacity: 1;
    transform: translate(-2px, 20px);
  }
  90% {
    opacity: 1;
    transform: translate(118px, 20px);
  }
  100% {
    opacity: 0;
    transform: translate(120px, 20px);
    visibility: hidden;
  }
}

.handwritten-paper-container.animate-paper .handwritten-opening,
.handwritten-paper-container.animate-paper .handwritten-body p,
.handwritten-paper-container.animate-paper .handwritten-signature-block {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 576px) {
  .handwritten-paper-container {
    padding: 24px 18px;
  }
  .handwritten-opening {
    font-size: 22px;
  }
  .handwritten-body p {
    font-size: 19px;
    line-height: 1.55;
    margin-bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .handwritten-paper-container,
  .handwritten-opening,
  .handwritten-body p,
  .handwritten-signature-block {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .pen-tip-anim {
    display: none !important;
  }
  .signature-stroke-line {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
}

/* ==========================================================================
   FOUNDER & ABOUT STYLES
   ========================================================================== */
.founder-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.founder-photo-wrap {
  text-align: center;
}

.founder-photo-wrap img {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--orange-primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  margin: 0 auto 12px;
}

.founder-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

@media (max-width: 576px) {
  .founder-highlights {
    grid-template-columns: 1fr;
  }
}

.founder-stat-box {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.founder-stat-box strong {
  display: block;
  font-size: 13px;
  color: var(--navy-950);
}

.founder-stat-box span {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   PAGE HERO (INNER PAGES)
   ========================================================================== */
.page-hero {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 10px;
}

.page-hero p {
  color: #cbd5e1;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */
.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 4px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: 13.5px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  outline: none;
  background: var(--white);
}

.form-control:focus {
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

textarea.form-control {
  min-height: 80px;
  resize: vertical;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--navy-950);
  color: #cbd5e1;
  padding: 52px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1.3fr;
  gap: 24px;
  margin-bottom: 36px;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
  margin-top: 12px;
  max-width: 320px;
}

.footer-logo img {
  height: 38px;
  width: auto;
}

.footer-col h5 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-links li {
  white-space: nowrap;
}

.footer-links a {
  color: #94a3b8;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12.5px;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   STICKY MOBILE BAR & FLOATING WHATSAPP
   ========================================================================== */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border-color);
  padding: 8px 12px;
  z-index: 990;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  gap: 8px;
}

/* ==========================================================================
   INTERACTIVE ANIMATED FLOATING WHATSAPP BUTTON (BOLD & PROMINENT)
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 980;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: waPulseGlow 2.5s infinite;
}

.floating-whatsapp-text {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  white-space: nowrap;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #20ba5a 0%, #0e786b 100%);
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
  animation: waIconBounce 3s ease-in-out infinite;
}

@keyframes waPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 24px rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.45);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.45);
  }
}

@keyframes waIconBounce {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-10deg) scale(1.1); }
  20%, 40% { transform: rotate(10deg) scale(1.1); }
  50% { transform: rotate(0deg); }
}

.sticky-mobile-bar {
  display: none !important;
}

/* Hide floating WhatsApp bubble on mobile viewports */
@media (max-width: 768px) {
  .floating-whatsapp {
    display: none !important;
  }
}

/* Responsive Component Grids */
.founder-grid-container {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 768px) {
  .founder-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .founder-grid-container img {
    margin: 0 auto;
  }
}

.warehouse-tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .warehouse-tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .warehouse-tour-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 576px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   CONSOLIDATED UTILITY & COMPONENT CLASSES
   ========================================================================== */
.section-white {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.section-subtle {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.section-dark {
  background: var(--navy-950);
  color: var(--white);
  text-align: center;
  padding: 48px 0;
}

.grid-2col-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.grid-2col-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 991px) {
  .grid-2col-split,
  .grid-2col-equal,
  .grid-3col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .grid-4col {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .grid-4col {
    grid-template-columns: 1fr;
  }
}

.flex-row-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.text-muted-sm {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ================= BRANDS WE WORK WITH (LOGO WALL) ================= */
.brands-logo-wall {
  background: #ffffff;
  padding: 56px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 32px;
}
.brand-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.25s ease;
  min-height: 90px;
}
.brand-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange-primary);
  box-shadow: var(--shadow-sm);
}
.brand-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-950);
  letter-spacing: -0.02em;
}
.brand-subtag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
}

@media (max-width: 991px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .brand-card {
    padding: 18px 14px;
    min-height: 80px;
  }
  .brand-wordmark {
    font-size: 17px;
  }
}

/* ================= CONTINUOUS AUTO-SCROLLING LOGO MARQUEES (ENHANCED READABILITY) ================= */
.logo-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 16px 0;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.logo-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: logoMarquee 26s linear infinite;
}

.logo-marquee-track-reverse {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: logoMarqueeReverse 28s linear infinite;
}

.logo-marquee-track:hover,
.logo-marquee-track-reverse:hover {
  animation-play-state: paused;
}

.logo-marquee-card {
  flex: 0 0 auto;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  min-width: 220px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.logo-marquee-card:hover {
  border-color: var(--orange-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.logo-marquee-card img {
  max-height: 64px !important;
  max-width: 180px !important;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-text-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px !important;
  font-weight: 900 !important;
  color: var(--navy-950);
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.2;
}

.brand-text-tag {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 4px;
  text-align: center;
}

@keyframes logoMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes logoMarqueeReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
  100% { transform: translateX(0); }
}
  100% {
    transform: translateX(-50%);
  }
}

.logo-marquee-card img[src*="muuk"] {
  max-height: 56px !important;
  transform: scale(1.65);
  transform-origin: center;
}


/* ==========================================================================
   FULFILMENT QUOTE POPUP MODAL (DESKTOP & MOBILE OPTIMIZED)
   ========================================================================== */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 17, 40, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.quote-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.quote-modal-box {
  background: var(--white);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 460px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: scale(0.92);
  transition: transform 0.25s ease;
  overflow: hidden;
  margin: auto;
}

.quote-modal-overlay.active .quote-modal-box {
  transform: scale(1);
}

.quote-modal-header {
  background: var(--navy-950);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.quote-modal-header h3 {
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  margin: 4px 0 2px;
  line-height: 1.2;
}

.quote-modal-header p {
  color: #94a3b8;
  font-size: 12.5px;
  margin: 0;
  line-height: 1.4;
}

.quote-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.quote-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.quote-modal-body {
  padding: 24px;
}

.quote-modal-submit {
  width: 100%;
  padding: 12px 20px;
  font-size: 14.5px;
  margin-top: 6px;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.25);
}

@media (max-width: 576px) {
  .quote-modal-box {
    max-width: 100%;
    border-radius: 12px;
  }
  .quote-modal-header {
    padding: 16px 18px;
  }
  .quote-modal-body {
    padding: 18px 16px;
  }
}

