/* ── DESIGN SYSTEM & CONSTANTS (PREMIUM NAVY & GOLD LOGO THEME) ── */
:root {
  --bg: #FAF6EE;
  /* soft warm cream page background */
  --bg-gradient: linear-gradient(160deg, #FDFCF8 0%, #F7EFDF 60%, #EFE2C8 100%);
  --text-primary: #241D12;
  --text-secondary: #6F6555;
  --accent-gold: #c29652;
  /* brand gold from logo */
  --accent-gold-bright: #bd8f45;
  /* rich gold from logo */
  --accent-ember: #E2582B;
  /* warm chilli-red accent */
  --line-dark: #241D12;
  /* wireframe line color */
  --btn-bg: #182543;
  /* premium navy brand color */
  --radius-lg: 24px;
  --radius-card: 20px;
  --font-heading: "Space Grotesk", "General Sans", Inter, sans-serif;
  --font-body: "DM Sans", Inter, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-morph: cubic-bezier(0.83, 0, 0.17, 1);

  --blue-deep: #182543;
  /* premium navy brand color */
  --blue-mid: #20335c;
  --blue-light: #2c467d;
  --blue-pale: rgba(24, 37, 67, 0.12);
  --blue-mist: rgba(24, 37, 67, 0.05);
  --cream: #FAF6EE;
  --warm-white: #FFFFFF;
  --tan: #F1E7D4;
  --text-dark: #241D12;
  --text-mid: #6F6555;
  --text-light: #A3988A;
  --accent-orange: #c29652;
  /* brand gold color */
  --accent-orange-light: rgba(194, 150, 82, 0.15);
  --border: rgba(90, 70, 30, 0.16);
  --shadow: 0 4px 28px rgba(24, 37, 67, 0.08);
  --shadow-lg: 0 16px 56px rgba(24, 37, 67, 0.14);
  --radius: 16px;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

section[id] {
  scroll-margin-top: 90px;
  /* Offset for fixed navbar + breathing room */
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--text-dark);
}

p {
  font-weight: 300;
  color: var(--text-mid);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-gold-bright);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 7px 16px;
  background: rgba(194, 150, 82, 0.05);
  border: 1px solid rgba(194, 150, 82, 0.18);
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(194, 150, 82, 0.02);
  transition: all 0.3s ease;
  line-height: 1;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  display: inline-block;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--accent-gold);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 10px var(--accent-gold-bright);
  }
}

.section-title {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
  color: var(--text-dark);
}

.section-desc {
  font-size: 17.5px;
  line-height: 1.8;
  max-width: 580px;
  font-weight: 300;
  color: var(--text-mid);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(194, 150, 82, 0.25);
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(194, 150, 82, 0.55), 0 4px 12px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #d4a855 0%, #e8c070 50%, #c29652 100%);
  color: #fff;
  letter-spacing: 0.8px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.4);
  color: var(--text-dark);
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: .5px;
  border: 1.5px solid rgba(36, 29, 18, 0.2);
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

/* ── TOP ANNOUNCEMENT BAR ── */
.top-bar {
  background-color: var(--accent-gold);
  color: #FFFFFF;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  max-height: 40px;
  opacity: 1;
  min-height: 36px;
}

.top-bar span {
  display: inline-block;
  white-space: nowrap;
}

nav.scrolled .top-bar {
  max-height: 0;
  min-height: 0;
  padding: 0 16px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 10.5px;
    letter-spacing: 1.2px;
    padding: 6px 12px;
    min-height: 28px;
    max-height: 32px;
  }
}

/* ── NAVIGATION BAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 32px rgba(24, 37, 67, 0.09);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled .nav-inner {
  height: 62px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  object-fit: contain;
  border-radius: 6px;
}

nav.scrolled .logo-img {
  height: 38px;
}



.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.5px;
}

.logo-text em {
  font-style: normal;
  color: var(--accent-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #111114;
  text-decoration: none;
  letter-spacing: .5px;
  transition: color 0.3s;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-orange);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Picker */
.lang-picker {
  position: relative;
}

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #111114;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.globe-icon,
.chevron-icon {
  flex-shrink: 0;
}

.chevron-icon {
  transition: transform 0.3s;
}

.lang-picker.open .chevron-icon {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1100;
}

.lang-picker.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-item {
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: transparent;
  font-size: 13px;
  text-align: left;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.lang-item:hover {
  background: var(--blue-pale);
  color: var(--text-dark);
}

.lang-item.active {
  font-weight: 600;
  color: var(--text-dark);
  background: var(--blue-pale);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #111114;
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-toggle.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 246, 238, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 120px 40px 40px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: padding-left 0.3s, color 0.3s;
  display: block;
}

.mobile-menu a:hover {
  padding-left: 10px;
  color: var(--accent-orange);
}

.mobile-lang-section {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.mobile-lang-section p {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mob-lang-btn {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.mob-lang-btn:hover,
.mob-lang-btn.active {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
}

.mobile-menu-cta {
  width: 100%;
}

/* ── HERO SECTION (HONESTEXPORTS STYLE COLLAGE) ── */
.hero-grid-section {
  position: relative;
  min-height: 95vh;
  overflow: hidden;
  padding: 130px 0 80px;
  background: var(--cream);
  display: flex;
  align-items: center;
}

.hero-bg-gradients {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hbg-gradient-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(243, 235, 215, 0.4) 80%, var(--cream));
}

.hbg-circle-left {
  position: absolute;
  top: 15%;
  left: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(30, 77, 43, 0.05);
  filter: blur(100px);
}

.hbg-circle-right {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212, 163, 89, 0.08);
  filter: blur(90px);
}

.hero-grid-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge Pill */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 77, 43, 0.06);
  border: 1px solid rgba(30, 77, 43, 0.12);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--btn-bg);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--btn-bg);
  animation: badge-pulse 2s infinite ease-in-out;
}

@keyframes badge-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

.badge-arrow {
  width: 14px;
  height: 14px;
  color: var(--btn-bg);
}

/* Heading */
.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-heading .block {
  display: block;
}

.text-gradient {
  background: linear-gradient(to right, var(--btn-bg), var(--accent-gold), var(--btn-bg));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-glow 6s linear infinite;
}

@keyframes gradient-glow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Dynamic Rotating Text */
.hero-dynamic-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.line-bar {
  width: 32px;
  height: 1px;
  background: var(--btn-bg);
}

.dynamic-word-wrap {
  display: inline-block;
  position: relative;
  font-weight: 700;
  color: var(--text-dark);
  height: 30px;
  overflow: hidden;
}

.dynamic-word {
  display: inline-block;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Paragraph Description */
.hero-paragraph {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 540px;
  margin-bottom: 36px;
  font-weight: 300;
}

/* Action Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(30, 77, 43, 0.15);
  text-decoration: none;
  border-radius: 50px;
  background: var(--btn-bg);
  color: #FFFFFF;
  transition: var(--transition);
}

.hero-btn-quote:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.hero-btn-quote:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-btn-explore {
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-dark);
  background: transparent;
  transition: var(--transition);
}

.hero-btn-explore:hover {
  background: rgba(30, 77, 43, 0.05);
  border-color: var(--btn-bg);
  color: var(--btn-bg);
}

/* Stats Counter Bar */
.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 36px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  padding: 18px 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  max-width: 520px;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.flex-row-center {
  display: flex;
  align-items: center;
  gap: 4px;
}

.star-icon {
  width: 18px;
  height: 18px;
  color: #FFAE00;
  fill: #FFAE00;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Visual Collage Column */
.hero-visual-col {
  position: relative;
  height: 580px;
  width: 100%;
}

.visual-card {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(36, 29, 18, 0.12);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
  cursor: pointer;
  z-index: 5;
}

.visual-card:hover {
  z-index: 10;
  box-shadow: 0 30px 60px rgba(36, 29, 18, 0.18);
}

.visual-card-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6px 4px;
}

.visual-card .card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.visual-card .card-subtitle {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-light);
}

/* Specific Card Layouts */
.vc-spices {
  width: 220px;
  top: 2%;
  right: 5%;
  transform: rotate(4deg);
  animation: float-card-1 6s infinite ease-in-out;
}

.vc-spices .visual-card-img-wrap {
  height: 250px;
}

.vc-logistics {
  width: 210px;
  top: 25%;
  left: 2%;
  transform: rotate(-5deg);
  animation: float-card-2 7s infinite ease-in-out;
}

.vc-logistics .visual-card-img-wrap {
  height: 210px;
}

.vc-warehouse {
  width: 200px;
  bottom: 2%;
  right: 15%;
  transform: rotate(3deg);
  animation: float-card-3 8s infinite ease-in-out;
}

.vc-warehouse .visual-card-img-wrap {
  height: 220px;
}

/* Floating Dots */
.visual-dot {
  position: absolute;
  border-radius: 50%;
}

.dot-orange {
  width: 10px;
  height: 10px;
  background: var(--accent-gold);
  top: 50%;
  right: 12%;
  animation: pulse-dot-anim 3s infinite ease-in-out;
}

.dot-green {
  width: 8px;
  height: 8px;
  background: var(--btn-bg);
  bottom: 40%;
  left: 10%;
  animation: pulse-dot-anim 4s infinite ease-in-out;
}

/* Custom Card Float Keyframes */
@keyframes float-card-1 {
  0% {
    transform: translateY(0) rotate(4deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }

  100% {
    transform: translateY(0) rotate(4deg);
  }
}

@keyframes float-card-2 {
  0% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(14px) rotate(-3deg);
  }

  100% {
    transform: translateY(0) rotate(-5deg);
  }
}

@keyframes float-card-3 {
  0% {
    transform: translateY(0) rotate(3deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }

  100% {
    transform: translateY(0) rotate(3deg);
  }
}

@keyframes pulse-dot-anim {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* Responsive Media Queries for Hero section */
@media (max-width: 1024px) {
  .hero-grid-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual-col {
    height: 480px;
    max-width: 580px;
    margin: 0 auto;
  }

  .vc-spices {
    width: 170px;
  }

  .vc-spices .visual-card-img-wrap {
    height: 190px;
  }

  .vc-logistics {
    width: 160px;
  }

  .vc-logistics .visual-card-img-wrap {
    height: 160px;
  }

  .vc-warehouse {
    width: 155px;
  }

  .vc-warehouse .visual-card-img-wrap {
    height: 170px;
  }
}

@media (max-width: 580px) {
  .hero-grid-section {
    padding-top: 110px;
  }

  .hero-stats-bar {
    flex-wrap: wrap;
    gap: 20px;
    padding: 14px 20px;
  }

  .stat-divider {
    display: none;
  }

  /* Hide decorative floating image cards on mobile to keep page compact */
  .hero-visual-col {
    display: none;
  }
}


/* ── STORY/ABOUT SECTION ── */
section {
  padding: 60px 0;
}

.about-intro {
  background: linear-gradient(rgba(250, 246, 238, 0.95), rgba(250, 246, 238, 0.95)), url('products/process-sourcing.png') center / cover no-repeat;
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-intro-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
  max-width: 520px;
}

.about-intro-text a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-orange);
  text-decoration: none;
  border-bottom: 1.5px solid var(--accent-orange);
  padding-bottom: 4px;
  margin-top: 10px;
  transition: var(--transition);
}

.about-intro-text a:hover {
  color: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateX(4px);
}

.about-bowl-wrap {
  display: flex;
  justify-content: flex-start;
  width: calc(100% + 40px);
  margin-right: -40px;
  height: auto;
}

.about-bowl-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: 450px;
  min-height: 450px;
  max-height: 460px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(194, 150, 82, 0.25);
}

.about-slides-container {
  position: relative;
  flex: 1;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.about-slides-container img.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 0.6s ease-in-out;
}

.about-slides-container img.slide.active {
  opacity: 1;
}

.about-bowl-img:hover img.slide.active {
  transform: scale(1.04);
}

/* Bottom Caption Bar with Slide Name & Navigation Dots */
.about-bowl-caption-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 3;
  gap: 16px;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.about-bowl-title {
  font-family: var(--font-heading, inherit);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark, #1f2937);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.about-bowl-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.about-bowl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  padding: 0;
  outline: none;
}

.about-bowl-dot:hover {
  background: #9ca3af;
  transform: scale(1.15);
}

.about-bowl-dot.active {
  width: 24px;
  height: 8px;
  border-radius: 10px;
  background: #1f2937;
}

/* ── INTERACTIVE FEATURED MORPH SLIDER ── */
.featured-morph-slider {
  background: var(--cream);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.morph-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  height: 600px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.morph-hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.morph-hero-image-wrap img.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-morph-slider .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3, 7, 18, 0.9) 0%, rgba(3, 7, 18, 0.45) 50%, rgba(3, 7, 18, 0.1) 100%);
  z-index: 2;
  pointer-events: none;
}

.morph-hero-copy {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 580px;
  color: #FFFFFF;
}

.morph-hero-copy .caption {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.morph-hero-copy .title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.morph-hero-copy .spec {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  font-weight: 300;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.morph-hero-copy .cta {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  background: #FFFFFF;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.morph-hero-copy .cta:hover {
  transform: translateY(-2px);
  background: var(--accent-gold);
  color: var(--blue-deep);
  box-shadow: 0 8px 25px rgba(231, 163, 61, 0.35);
}

/* Slide Controls */
.morph-controls {
  position: absolute;
  left: 60px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 24px;
}

.morph-controls .slide-number {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.morph-controls .progress-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.morph-controls .progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 16.66%;
  /* 1/6 initial */
  background: var(--accent-gold);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.morph-controls .nav-arrows {
  display: flex;
  gap: 8px;
}

.morph-controls .nav-arrow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 16px;
}

.morph-controls .nav-arrow:hover {
  background: #FFFFFF;
  color: var(--blue-deep);
  border-color: #FFFFFF;
}

/* Side Thumbnail Stack */
.product-stack {
  position: absolute;
  right: 60px;
  bottom: 60px;
  width: 220px;
  height: 320px;
  z-index: 3;
}

.stack-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 160px;
  height: 220px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  background: rgba(11, 19, 43, 0.85);
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-morph), opacity 0.4s ease;
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.stack-card:hover img {
  transform: scale(1.05);
}

.stack-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.9) 0%, rgba(3, 7, 18, 0.4) 70%, transparent 100%);
  color: #FFFFFF;
  z-index: 2;
}

.stack-card-cat {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.stack-card-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Cascade offsets, back-to-front */
.stack-card[data-index="1"] {
  transform: translate(0, 0) scale(1);
  z-index: 3;
  opacity: 1;
}

.stack-card[data-index="2"] {
  transform: translate(24px, -24px) scale(0.94);
  z-index: 2;
  opacity: 0.9;
}

.stack-card[data-index="3"] {
  transform: translate(48px, -48px) scale(0.88);
  z-index: 1;
  opacity: 0.8;
}

/* ── MARQUEE TICKER ── */
.ticker-banner {
  background: #FAF6EE;
  color: #182543;
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1.5px solid rgba(194, 150, 82, 0.35);
  border-bottom: 1.5px solid rgba(194, 150, 82, 0.35);
  z-index: 5;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.ticker-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

.ticker-content span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #182543;
  margin-right: 15px;
  opacity: 0.95;
}

@keyframes marquee {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

/* ── PRODUCTS SHOWCASE CAROUSEL ── */
.products-showcase {
  background: var(--cream);
  padding: 0 0 30px 0;
  position: relative;
}

.products-header-banner {
  display: none;
}

.products-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.products-header-left {
  max-width: 720px;
}

.products-header-left .section-label {
  margin-bottom: 12px;
}

.products-header-left .section-title {
  margin-bottom: 16px;
  text-align: left;
}

.products-header-left .section-desc {
  text-align: left;
  margin: 0;
}

.products-header-right {
  flex-shrink: 0;
}

.btn-view-all {
  display: inline-block;
  background: #B05C54;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-view-all:hover {
  background: #9c493f;
}

/* Grid Layout */
.products-grid-container {
  margin-top: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
  padding: 0 15px;
}

.products-grid-viewport {
  max-height: 520px;
  overflow-y: auto;
  padding: 10px 10px 10px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-orange) rgba(255, 255, 255, 0.05);
}

/* Custom scrollbar styles */
.products-grid-viewport::-webkit-scrollbar {
  width: 6px;
}

.products-grid-viewport::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.products-grid-viewport::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 4px;
}

.products-grid-viewport::-webkit-scrollbar-thumb:hover {
  background: #ff7c60;
}

.products-grid-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

@media (max-width: 1024px) {
  .products-grid-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .products-grid-track {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Tab Buttons */
.psc-tabs-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0;
  flex-wrap: wrap;
}

.psc-tab-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.psc-tab-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.psc-tab-btn.active {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 20px rgba(30, 77, 43, 0.4);
}

/* Grid & Slider Product Card styles (Honest Exports style full overlay cards) */
.products-grid-track .product-card,
.products-slider-track .product-card {
  position: relative;
  background: #000000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 340px;
  /* fixed height cards */
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.products-grid-track .product-card:hover,
.products-slider-track .product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.15) contrast(1.02);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-image {
  transform: scale(1.08);
}

/* Gradient Overlay at the bottom */
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.15) 82%, rgba(0, 0, 0, 0.5) 100%);
  transition: background 0.5s ease;
  z-index: 1;
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.25) 78%, rgba(0, 0, 0, 0.6) 100%);
}

/* Card content positioned at bottom */
.product-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-tag {
  display: none;
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

/* Hover Description slides up and fades in */
.product-card-hover-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin-top 0.5s ease;
}

.product-card:hover .product-card-hover-desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 12px;
}

/* See All Products Card (Dashed Border Card matching honestexports) */
.products-grid-track .product-card.see-all-card {
  background: linear-gradient(135deg, #FAF8F5 0%, #F5F1E9 100%) !important;
  border: 2px dashed rgba(194, 150, 82, 0.4) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 340px;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.products-grid-track .product-card.see-all-card:hover {
  border: 2px solid var(--accent-gold) !important;
  background: #FFFFFF !important;
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(194, 150, 82, 0.08) !important;
}

.see-all-card-inner {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.see-all-card-inner * {
  text-decoration: none !important;
}

.see-all-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FAF6EE;
  border: 1px solid rgba(194, 150, 82, 0.25);
  color: var(--accent-gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(194, 150, 82, 0.04);
}

.see-all-icon-box svg {
  width: 24px;
  height: 24px;
  transition: transform 0.4s ease;
}

.products-grid-track .product-card.see-all-card:hover .see-all-icon-box {
  background: var(--accent-gold);
  color: #FFFFFF;
  transform: scale(1.08) rotate(90deg);
  box-shadow: 0 4px 15px rgba(194, 150, 82, 0.35);
  border-color: var(--accent-gold);
}

.see-all-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark) !important;
  margin-bottom: 6px;
  transition: color 0.3s ease;
  text-decoration: none !important;
}

.products-grid-track .product-card.see-all-card:hover .see-all-title {
  color: var(--accent-gold-deep) !important;
}

.see-all-subtitle {
  font-size: 13.5px;
  color: var(--text-mid) !important;
  margin: 0;
  font-weight: 400;
  text-decoration: none !important;
}

/* ── WHY CHOOSE US ── */
.why-choose-us {
  background: var(--cream);
  padding: 20px 0 50px;
  position: relative;
  display: block;
}

/* ── Curtain Wipe Transition Overlay ── */
.curtain {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  transform: translateY(100%);
  will-change: transform;
  pointer-events: none;
}

/* ── Banner ── */
.wcu-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 1240px;
  min-height: 340px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(26, 36, 20, 0.92) 0%, rgba(30, 77, 43, 0.85) 50%, rgba(26, 36, 20, 0.92) 100%),
    url('spices-catalog.png') center/cover no-repeat;
  border: 1px solid rgba(255, 102, 0, 0.2);
}

.wcu-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(255, 102, 0, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(10, 116, 185, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.wcu-banner-content {
  position: relative;
  z-index: 2;
  padding: 70px 60px;
}

.wcu-label {
  color: var(--accent-gold) !important;
}

.wcu-label::before {
  background: var(--accent-gold) !important;
}

.wcu-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 30px;
  max-width: 550px;
}

.wcu-banner-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  background: var(--btn-bg);
  border: 1.5px solid var(--accent-gold);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(231, 163, 61, 0.25);
  position: relative;
}

.wcu-banner-btn:hover {
  background: var(--accent-gold);
  color: var(--blue-deep);
  box-shadow: 0 0 25px rgba(231, 163, 61, 0.55);
  transform: translateY(-2px);
}

/* ── Cards Grid ── */
.wcu-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
  z-index: 3;
}

.wcu-card {
  background: #FCFAF6;
  border-radius: 24px;
  border: 1px solid rgba(194, 150, 82, 0.25);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  text-align: center !important;
}

.wcu-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(120, 85, 30, 0.1),
    0 0 25px rgba(201, 146, 46, 0.08);
  border-color: rgba(201, 146, 46, 0.4);
}

.wcu-icon-box {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px;
  background: rgba(194, 150, 82, 0.08);
  /* soft gold bg */
  border: 1px solid rgba(194, 150, 82, 0.16);
  margin-bottom: 28px;
  padding: 0 !important;
  transition: var(--transition);
}

.wcu-card:hover .wcu-icon-box {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

.icon-draw {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: 24px !important;
  height: 24px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.icon-draw path,
.icon-draw polyline,
.icon-draw polygon,
.icon-draw line,
.icon-draw rect,
.icon-draw circle {
  stroke: var(--accent-gold) !important;
  stroke-width: 1.8;
  stroke-dasharray: none !important;
  stroke-dashoffset: 0 !important;
  filter: none !important;
  transition: stroke 0.3s ease !important;
}

.wcu-card:hover .icon-draw path,
.wcu-card:hover .icon-draw polyline,
.wcu-card:hover .icon-draw polygon,
.wcu-card:hover .icon-draw line,
.wcu-card:hover .icon-draw rect,
.wcu-card:hover .icon-draw circle {
  stroke: #FFFFFF !important;
}

.wcu-card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wcu-card-title {
  font-family: var(--font-body);
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  margin: 0 0 12px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  text-align: center !important;
}

.wcu-card-desc {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: var(--text-mid) !important;
  margin: 0 !important;
  text-align: center !important;
  font-weight: 400 !important;
}


/* ── PRIVATE LABELING & CUSTOM PACKAGING ── */
.private-labeling {
  background: var(--cream);
  padding: 50px 0;
  position: relative;
}

.private-labeling::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.02'%3E%3Cpath d='M30,20 Q50,5 70,20 T90,60 L70,90 Z' fill='%23B05C54'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

.pl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pl-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.pl-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.pl-image-wrap:hover img {
  transform: scale(1.04);
}

.pl-features {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pl-feat-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFFFFF;
  /* premium white background for contrast */
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(194, 150, 82, 0.2);
  /* soft gold/beige border */
  box-shadow: 0 4px 20px rgba(27, 42, 71, 0.02);
  /* subtle shadow to stand out */
  transition: var(--transition);
}

.pl-feat-item:hover {
  background: #FFFFFF;
  border-color: var(--accent-gold-bright);
  box-shadow: 0 10px 30px rgba(189, 143, 69, 0.12);
  /* soft gold tint shadow */
  transform: translateY(-2px);
}

.pl-feat-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  /* rounded-square like the uploaded image */
  background: var(--accent-orange-light);
  /* soft gold background to match the website theme */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.pl-feat-item:hover .pl-feat-icon-box {
  background: var(--accent-gold-bright);
  /* shifts to gold on hover */
}

.pl-feat-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-gold-bright);
  /* gold icon stroke */
  transition: stroke 0.3s;
}

.pl-feat-item:hover .pl-feat-icon-box svg {
  stroke: #FFFFFF;
}

.pl-feat-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  /* dark title to match website theme text style */
  text-transform: uppercase;
  /* uppercase title like in the image */
  letter-spacing: 0.5px;
  margin: 0 0 6px;
}

.pl-feat-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-mid);
  /* mid-tone description for excellent readability */
  margin: 0;
}

/* ── QUALITY CERTIFICATIONS ── */
.certifications-section {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cert-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.cert-section-header .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 10px;
}

.cert-section-header .section-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Cert Grid */
.new-cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.new-cert-card {
  background: #FFFFFF;
  border: 1px solid rgba(194, 150, 82, 0.2);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.new-cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(36, 29, 18, 0.08), 0 0 20px rgba(194, 150, 82, 0.12);
  border-color: rgba(194, 150, 82, 0.5);
}

.new-cert-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
}

/* Color codes for icon circles */
.cert-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.cert-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

/* Color palettes matching honestexports */
.icon-emerald {
  background-color: #e6f7ed;
  color: #1e8a44;
}

.icon-sky {
  background-color: #e0f2fe;
  color: #0369a1;
}

.icon-indigo {
  background-color: #e0e7ff;
  color: #4338ca;
}

.icon-orange {
  background-color: #ffedd5;
  color: #c2410c;
}

.icon-lime {
  background-color: #f0fdf4;
  color: #15803d;
}

.icon-stone {
  background-color: #f5f5f4;
  color: #44403c;
}

.new-cert-info {
  flex: 1;
  text-align: center;
}

.new-cert-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.25;
  text-align: center !important;
}

.new-cert-issuer {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-align: center !important;
}

.new-cert-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  text-align: center !important;
}

.new-cert-footer {
  margin-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.new-cert-doc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fcfbfa;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  width: 100%;
  text-align: left;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.new-cert-doc-btn:hover {
  background: var(--blue-mist);
  border-color: var(--accent-gold);
}

.doc-btn-icon-left {
  width: 36px;
  height: 36px;
  background: #fee2e2;
  color: #dc2626;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-btn-icon-left svg {
  width: 18px;
  height: 18px;
}

.doc-btn-meta {
  flex: 1;
  margin-left: 12px;
  min-width: 0;
}

.doc-btn-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.doc-btn-type {
  display: block;
  font-size: 11px;
  color: var(--text-light);
}

.doc-btn-icon-right {
  color: var(--text-light);
  transition: color 0.3s;
}

.doc-btn-icon-right svg {
  width: 16px;
  height: 16px;
}

.new-cert-doc-btn:hover .doc-btn-icon-right {
  color: var(--accent-gold);
}

/* Boards & Councils section */
.boards-section {
  margin-top: 60px;
  padding-top: 50px;
}

.boards-header {
  text-align: center;
  margin-bottom: 40px;
}

.boards-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
}

.boards-subtitle {
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 6px;
}

.boards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.board-badge {
  background: #FCFAF6;
  border: 1px solid rgba(194, 150, 82, 0.25);
  border-radius: 24px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 220px;
}

.board-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(194, 150, 82, 0.12);
  border-color: rgba(194, 150, 82, 0.5);
}

.board-badge-icon {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.board-badge-icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.board-badge-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.3;
}

.cert-footer-text {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-light);
  margin-top: 40px;
}

@media (max-width: 992px) {
  .new-cert-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .boards-grid {
    gap: 15px;
  }

  .board-badge {
    width: 180px;
    padding: 20px 15px;
  }
}

@media (max-width: 576px) {
  .new-cert-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .new-cert-card {
    padding: 20px;
  }
}

/* ── EXPORT PROCESS TIMELINE HORIZONTAL ── */
.timeline-section {
  padding: 50px 0;
  background: linear-gradient(rgba(250, 246, 238, 0.93), rgba(250, 246, 238, 0.93)), url('spices-catalog.png') center/cover no-repeat;
  border-bottom: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.process-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-8px);
  background: #FFFFFF;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-orange);
}

.process-img-wrap {
  width: 100%;
  height: 140px;
  position: relative;
  overflow: hidden;
  background: var(--blue-mist);
}

.process-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.process-card:hover .process-img-wrap img {
  transform: scale(1.06);
}

.process-step-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-orange);
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.process-body {
  padding: 20px;
  flex-grow: 1;
}

.process-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
}

.process-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mid);
  margin: 0;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ── INQUIRY SECTION ── */
.inquiry-section {
  background: linear-gradient(rgba(27, 42, 71, 0.96), rgba(27, 42, 71, 0.96)), url('products/air-freight.png') center / cover no-repeat;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inquiry-section .section-title {
  color: #FFFFFF;
}

.inquiry-section p {
  color: rgba(255, 255, 255, 0.7);
}

.inquiry-info .inquiry-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* ── GET IN TOUCH MINIMAL CONTACT CARD (MEGAYUG GLOBAL MINIMAL STYLE) ── */
.inquiry-info-box {
  background: #212c40;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.inquiry-contact-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.inquiry-contact-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.inquiry-contact-row:hover {
  transform: translateX(4px);
}

.inquiry-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.inquiry-contact-row:hover .inquiry-icon-badge {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #1a2538;
  box-shadow: 0 0 16px rgba(194, 150, 82, 0.35);
}

.inquiry-contact-label {
  color: #8b9db7;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

.inquiry-contact-val {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.inquiry-contact-val a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s;
}

.inquiry-contact-val a:hover {
  color: var(--accent-gold);
}

.inquiry-info .inquiry-contact-item a {
  color: #FFFFFF;
}

.inquiry-info .ici-title {
  color: rgba(255, 255, 255, 0.5);
}

.inquiry-info .ici-value {
  color: #FFFFFF;
}

.inquiry-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: flex-start;
}

.inquiry-info {
  position: static;
  margin: 0;
}

.inquiry-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-top: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.inquiry-contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.inquiry-contact-item:last-child {
  margin-bottom: 0;
}

.ici-icon {
  font-size: 20px;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.ici-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.ici-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.ici-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.ici-value a:hover {
  color: var(--accent-orange);
}

.inquiry-form-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 15px rgba(30, 77, 43, 0.25);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-deep) 100%);
  box-shadow: 0 4px 18px rgba(24, 37, 67, 0.3);
}

.form-submit-btn:hover {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-mid) 100%);
  box-shadow: 0 8px 24px rgba(24, 37, 67, 0.5);
}

.form-status {
  margin-top: 15px;
  font-size: 14.5px;
  text-align: center;
  font-weight: 500;
  border-radius: 12px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  display: block;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.form-status.success {
  background: #EAFDF3;
  border: 1px solid #2ECC71;
  color: #196F3D;
  padding: 14px 20px;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.08);
  opacity: 1;
  max-height: 100px;
}

.form-status.error {
  background: #FDF2F2;
  border: 1px solid #E74C3C;
  color: #C0392B;
  padding: 14px 20px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.08);
  opacity: 1;
  max-height: 100px;
}

/* ── FOOTER ── */
footer {
  background: #0b111e;
  color: #a0aec0;
  padding: 80px 0 45px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--accent-gold), transparent) 1;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 35px;
  height: 2px;
  background: var(--accent-gold);
  margin-top: 8px;
}

.footer-col p {
  color: #a0aec0;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-contact-info {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 15px;
}

.footer-contact-info span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-contact-info span:hover .footer-contact-icon {
  transform: scale(1.15);
}

footer .logo-img {
  background: #ffffff;
  padding: 10px 24px;
  border-radius: 12px;
  height: 72px;
  width: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  display: block;
}

.footer-grid .footer-col:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

footer .logo-link {
  transition: opacity 0.3s ease;
}

footer .logo-link:hover {
  opacity: 0.9;
}

footer .logo-link:hover .logo-img {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: #718096;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #718096;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

/* ── LOGISTICS SERVICES SECTION ── */
.logistics-section {
  background: linear-gradient(rgba(250, 246, 238, 0.95), rgba(250, 246, 238, 0.95)), url('products/ocean-freight.png') center / cover no-repeat;
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.logistics-card {
  background: #FCFAF6;
  border: 1px solid rgba(194, 150, 82, 0.25);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.logistics-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(120, 85, 30, 0.1), 0 0 25px rgba(201, 146, 46, 0.08);
  border-color: rgba(201, 146, 46, 0.4);
}

.logistics-image-wrap {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.logistics-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.logistics-card:hover .logistics-image-wrap img {
  transform: scale(1.06);
}

/* Floating white square overlay for icons centered */
.logistics-icon-box {
  position: absolute;
  top: 193px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  background: #FCFAF6;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(194, 150, 82, 0.25);
  z-index: 2;
}

.logistics-icon-box svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 24px !important;
  height: 24px !important;
  stroke: #B05C54;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.logistics-card-body {
  padding: 44px 24px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23faf8f5' fill-opacity='0.4' d='M0,192L48,197.3C96,203,192,213,288,202.7C384,192,480,160,576,149.3C672,139,768,149,864,170.7C960,192,1056,224,1152,218.7C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.logistics-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
  text-align: center !important;
}

.logistics-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
  text-align: center !important;
}

/* ── RESPONSIVE DESIGN ── */
@media (max-width: 1024px) {
  .products-slider-track .product-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }

  .logistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    white-space: nowrap;
    font-size: 13px;
  }

  .hero {
    align-items: flex-end;
  }

  .hero .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding-top: 500px;
    padding-bottom: 44px;
  }

  .hero-ghost {
    top: 130px;
  }

  .hero-flyer-wrap {
    width: clamp(320px, 60vw, 540px);
    top: 300px;
    left: 50%;
  }

  .hero-users-pill {
    right: 24px;
    top: 12%;
  }

  .hero-glass-row {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .about-intro-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-bowl-wrap {
    order: -1;
  }

  .wcu-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wcu-banner {
    width: calc(100% - 40px);
    min-height: 280px;
  }

  .wcu-banner-content {
    padding: 50px 40px;
  }

  .pl-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pl-image-wrap img {
    height: 380px;
  }

  /* cert-grid is replaced by responsive .new-cert-grid */

  .inquiry-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .inquiry-info {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  nav {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-links,
  .header-cta,
  .lang-picker {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero .hero-inner {
    padding-top: 420px;
  }

  .hero-flyer-wrap {
    width: min(80vw, 420px);
    top: 255px;
  }

  .hero-ghost {
    top: 140px;
    font-size: clamp(64px, 19vw, 96px);
  }

  .hero-users-pill {
    display: none;
  }

  .hero-glass-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-glass-card {
    min-height: auto;
    padding: 18px 16px;
  }

  .logistics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products-header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    text-align: center;
  }

  .products-header-left {
    max-width: 100%;
  }

  .products-header-left .section-title,
  .products-header-left .section-desc {
    text-align: center !important;
  }

  .products-header-right {
    width: 100%;
  }

  .btn-view-all {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .psc-tabs-container {
    justify-content: center !important;
    gap: 10px !important;
  }

  .psc-tab-btn {
    padding: 10px 18px;
    font-size: 13px;
    flex-grow: 1;
    text-align: center;
  }

  .wcu-banner {
    border-radius: 14px;
    width: calc(100% - 32px);
    min-height: 240px;
  }

  .wcu-banner-content {
    padding: 40px 24px;
  }

  .wcu-banner-title {
    font-size: 28px;
  }

  .pl-features {
    grid-template-columns: 1fr;
  }

  /* cert-grid is replaced by responsive .new-cert-grid */

  .timeline-flow::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding: 20px 0 20px 40px;
    text-align: left !important;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-item:nth-child(odd) .timeline-badge,
  .timeline-item:nth-child(even) .timeline-badge {
    left: 8px;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Morph Slider Mobile Optimizations */
  .morph-hero-container {
    height: 560px;
    padding: 0 20px;
  }

  .morph-hero-copy {
    left: 24px;
    right: 24px;
    top: 36px;
    transform: none;
    max-width: 100%;
  }

  .morph-hero-copy .title {
    font-size: clamp(28px, 6vw, 36px);
  }

  .morph-hero-copy .spec {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .morph-controls {
    left: 24px;
    bottom: 24px;
    gap: 12px;
  }

  .morph-controls .progress-bar {
    width: 60px;
  }

  .product-stack {
    right: 32px;
    bottom: 32px;
    width: 100px;
    height: 140px;
  }

  .stack-card {
    width: 100px;
    height: 140px;
  }

  .stack-card[data-index="1"] {
    transform: translate(0, 0) scale(1);
  }

  .stack-card[data-index="2"] {
    transform: translate(10px, -10px) scale(0.94);
  }

  .stack-card[data-index="3"] {
    transform: translate(20px, -20px) scale(0.88);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    width: 100%;
  }

  .inquiry-form-card {
    padding: 24px 16px;
  }

  .inquiry-wrap {
    gap: 20px;
  }

  .inquiry-card {
    padding: 22px 16px !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── ANIMATED LOGISTICS SCENE ── */
.logistics-animation-scene {
  width: 100%;
  height: 120px;
  background: var(--cream);
  border-bottom: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.scene-highway {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background: #3a4750;
  border-top: 4px solid #f4f4f4;
}

.scene-highway::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(90deg, #ffd369, #ffd369 40px, transparent 40px, transparent 80px);
  animation: roadScroll 4s linear infinite;
}

@keyframes roadScroll {
  from {
    background-position-x: 0px;
  }

  to {
    background-position-x: -80px;
  }
}

/* Background assets: Farms & Hills */
.scene-bg-farms {
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 200%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' fill='%23faf8f5'%3E%3Cpath d='M0,80 Q150,40 300,80 T600,80 T900,80 T1200,80 L1200,100 L0,100 Z' fill='%23eae6df'/%3E%3Cpath d='M100,80 L120,60 L140,80 Z' fill='%23B05C54' opacity='0.15'/%3E%3Ccircle cx='400' cy='60' r='15' fill='%236f8a70' opacity='0.15'/%3E%3Ccircle cx='415' cy='65' r='10' fill='%236f8a70' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 600px 60px;
  animation: farmScroll 18s linear infinite;
}

@keyframes farmScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Animated Truck */
.scene-truck {
  position: absolute;
  bottom: 8px;
  left: 20%;
  width: 120px;
  height: 38px;
  z-index: 5;
}

.scene-truck-svg {
  width: 100%;
  height: 100%;
}

/* Animated Airplane */
.scene-plane {
  position: absolute;
  top: 15px;
  left: 100%;
  width: 45px;
  height: 20px;
  z-index: 2;
  animation: planeFly 22s linear infinite;
  opacity: 0.7;
}

@keyframes planeFly {
  0% {
    left: 100%;
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    left: -10%;
    transform: translateY(0);
  }
}

/* Animated Farm Tractor */
.scene-tractor {
  position: absolute;
  bottom: 8px;
  left: 100%;
  width: 80px;
  height: 38px;
  z-index: 4;
  animation: tractorDrive 35s linear infinite;
}

.scene-tractor-svg {
  width: 100%;
  height: 100%;
}

.smoke-puff {
  animation: smokePuff 1s ease-out infinite;
  transform-origin: 60px 4px;
}

@keyframes tractorDrive {
  0% {
    left: 110%;
  }

  100% {
    left: -15%;
  }
}

@keyframes smokePuff {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: translateY(-6px) scale(2);
    opacity: 0;
  }
}

/* New Animated Vehicles Styles */
.scene-vehicle {
  position: absolute;
  z-index: 5;
}

.scene-vehicle.bike {
  bottom: 4px;
  left: -50px;
  animation: driveLeftToRight 48s linear infinite;
}

.scene-vehicle.scooter {
  bottom: 6px;
  left: -60px;
  animation: driveLeftToRight 25s linear infinite;
  animation-delay: 3s;
}

.scene-vehicle.van {
  bottom: 8px;
  left: -100px;
  animation: driveLeftToRight 16s linear infinite;
  animation-delay: 8s;
}

.scene-vehicle.car {
  bottom: 4px;
  left: 100%;
  animation: driveRightToLeft 11s linear infinite;
  animation-delay: 1s;
}

@keyframes driveLeftToRight {
  0% {
    left: -120px;
  }

  100% {
    left: 110%;
  }
}

@keyframes driveRightToLeft {
  0% {
    left: 110%;
  }

  100% {
    left: -120px;
  }
}

/* ── SCROLL REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

[data-reveal].active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered loading delays */
[data-reveal][data-delay="100"] {
  transition-delay: 100ms;
}

[data-reveal][data-delay="200"] {
  transition-delay: 200ms;
}

[data-reveal][data-delay="300"] {
  transition-delay: 300ms;
}

[data-reveal][data-delay="400"] {
  transition-delay: 400ms;
}

[data-reveal][data-delay="500"] {
  transition-delay: 500ms;
}

[data-reveal][data-delay="600"] {
  transition-delay: 600ms;
}

[data-reveal][data-delay="700"] {
  transition-delay: 700ms;
}

@media (max-width: 580px) {
  .products-slider-track .product-card {
    flex: 0 0 100%;
  }
}

/* ── SOCIAL LINKS ── */
.footer-social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-links a {
  color: #a0aec0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-links a:hover {
  background: var(--accent-gold);
  color: #111111;
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(194, 150, 82, 0.3);
}

/* ── FLOATING WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #242d38;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font-sans, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  width: 140px;
  white-space: normal;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9998;
  text-align: left;
}

/* Subtle speech bubble pointer */
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.75);
}

.whatsapp-tooltip strong {
  font-weight: 700;
  color: #111;
}

.whatsapp-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

/* Pulsing outer glowing aura mimicking the uploaded reference image */
.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.35);
  z-index: -1;
  animation: wa-pulse 2.2s infinite ease-out;
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover .whatsapp-float-icon {
  transform: scale(1.05);
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.95;
    filter: blur(1px);
  }

  50% {
    opacity: 0.6;
    filter: blur(3px);
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
    filter: blur(6px);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-tooltip {
    display: none !important;
  }
}


/* ── GALLERY & LIGHTBOX PAGES ── */
.gallery-section {
  padding: 60px 0 100px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 77, 43, 0.92) 0%, rgba(30, 77, 43, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold-bright);
  margin-bottom: 6px;
}

.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(24, 18, 10, 0.96);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 85%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 36px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0.7;
}

.lightbox-close:hover {
  opacity: 1;
  transform: rotate(90deg);
  color: var(--accent-gold-bright);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2010;
}

.lightbox-arrow:hover {
  background: var(--btn-bg);
  border-color: var(--btn-bg);
  color: #FFFFFF;
}

.lightbox-arrow.prev {
  left: 40px;
}

.lightbox-arrow.next {
  right: 40px;
}

.lightbox-caption {
  position: absolute;
  bottom: 40px;
  text-align: center;
  color: #FFFFFF;
  max-width: 600px;
  padding: 0 20px;
}

.lightbox-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent-gold-bright);
  font-size: 26px;
  margin-bottom: 6px;
}

.lightbox-caption p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
}

/* ── NEWS & ARTICLES PAGE ── */
.news-header {
  background: var(--bg-gradient);
  padding: 55px 0;
  color: var(--text-dark);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.news-header .catalog-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.news-header .catalog-subtitle {
  font-size: 13.5px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 12px;
  font-weight: 300;
  line-height: 1.5;
}

.news-header .catalog-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.news-header .filter-btn {
  background: #FFFFFF;
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.news-header .filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--text-dark);
  background: #FFFFFF;
}

.news-header .filter-btn.active {
  background: var(--accent-gold);
  color: white;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 15px rgba(201, 146, 46, 0.35);
}

.news-header .filter-btn.govt-alerts-btn {
  background: rgba(194, 150, 82, 0.08);
  border-color: rgba(194, 150, 82, 0.35);
  color: var(--accent-gold-bright);
  text-decoration: none;
}

.news-header .filter-btn.govt-alerts-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #FFFFFF;
}

.featured-article {
  background: #FCFAF6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(194, 150, 82, 0.25);
  margin-bottom: 55px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-article.no-image {
  height: auto !important;
}

.featured-article-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.featured-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.featured-article:hover .featured-article-img img {
  transform: scale(1.04);
}

.featured-article-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .featured-article {
    flex-direction: row;
    height: 420px;
  }

  .featured-article.no-image {
    flex-direction: column;
    height: auto;
  }

  .featured-article.no-image .featured-article-content {
    padding: 50px 60px !important;
  }

  .featured-article-img {
    flex: 1.3;
    height: 100%;
  }

  .featured-article-content {
    flex: 1;
    padding: 50px !important;
  }
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.article-cat {
  background: var(--blue-pale);
  color: var(--blue-deep);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
}

.featured-article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.featured-article-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-weight: 300;
}

.btn-read-more {
  align-self: flex-start;
  color: var(--btn-bg);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-read-more:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
}

.blog-card {
  background: #FCFAF6;
  border-radius: 24px;
  border: 1px solid rgba(194, 150, 82, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(194, 150, 82, 0.12);
  border-color: rgba(194, 150, 82, 0.5);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--blue-mist);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 8px 0 12px;
}

.blog-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 20px;
  flex-grow: 1;
  font-weight: 300;
}

/* Article Modal Reader */
.article-modal {
  position: fixed;
  inset: 0;
  background: rgba(24, 18, 10, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.article-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.article-modal-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
}

.article-modal.open .article-modal-card {
  transform: translateY(0);
}

.article-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--text-dark);
  border: none;
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.article-modal-close:hover {
  background: var(--accent-gold);
}

.article-modal-hero {
  height: 300px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.article-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-modal-body {
  padding: 40px;
}

.article-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.article-modal-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 300;
}

.article-modal-text p {
  margin-bottom: 20px;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .lightbox-caption {
    width: 90%;
    bottom: 20px;
  }

  .lightbox-caption h3 {
    font-size: 20px;
  }
}

@media (max-width: 580px) {
  .lightbox-arrow {
    width: 44px;
    height: 44px;
  }

  .lightbox-arrow.prev {
    left: 15px;
  }

  .lightbox-arrow.next {
    right: 15px;
  }

  .article-modal-hero {
    height: 180px;
  }

  .article-modal-body {
    padding: 20px;
  }

  .article-modal-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .article-modal-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

/* ═══════════════════════════════════════════════
   GLOBAL EXPORT MAP SECTION  (honestexports.com)
═══════════════════════════════════════════════ */

/* ===================== GLOBAL REACH / DOTTED WORLD MAP ===================== */
.global-reach {
  --navy-900: #071A30;
  --navy-800: #0B2545;
  --navy-700: #13315C;
  --gold: #C9A227;
  --gold-light: #E3C567;
  --cream: #F8F4EA;

  position: relative;
  padding: 50px 24px 45px;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(28, 67, 128, 0.45), transparent 70%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  overflow: hidden;
}

.gr-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.gr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.02);
  transition: all 0.3s ease;
  line-height: 1;
}

.gr-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  display: inline-block;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--gold-light);
  animation: dotPulseGold 2s ease-in-out infinite;
}

@keyframes dotPulseGold {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 10px var(--gold-light);
  }
}

.gr-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.4vw, 48px);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 14px;
}

.gr-title em {
  font-style: normal;
  color: var(--gold-light);
}

.gr-sub {
  max-width: 640px;
  margin: 0 auto 48px;
  color: #AEBDD6;
  font-size: 16px;
  line-height: 1.7;
}

/* --- the map --- */
.gr-map {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 2/1;
}

.gr-map img {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #fff 10%, #fff 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #fff 10%, #fff 88%, transparent);
  opacity: 0.7;
}

.gr-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* trade-route arcs: draw in, glow, fade, repeat */
.route {
  fill: none;
  stroke: url(#jalpex-route-gradient);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawRoute 4.8s ease-in-out infinite;
}

@keyframes drawRoute {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  45% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  75% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

/* origin marker (Gujarat, India) */
.origin-core {
  fill: var(--gold-light);
}

.origin-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  opacity: 0.8;
  transform-origin: 580px 180px;
  animation: ringPulse 2.4s ease-out infinite;
}

@keyframes ringPulse {
  0% {
    transform: scale(0.4);
    opacity: 0.9;
  }

  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

.origin-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  fill: var(--cream);
  letter-spacing: 0.06em;
}

/* stats strip */
.gr-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(201, 162, 39, 0.18);
}

.gr-stat b {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--gold-light);
}

.gr-stat span {
  font-size: 13px;
  color: #AEBDD6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .global-reach {
    padding: 64px 16px 56px;
  }

  .gr-stats {
    gap: 28px;
  }
}

/* ═══════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVENESS OVERRIDES
   Targets: ≤640px & ≤480px screens
   Goal: Minimal spacing, show only essential details
════════════════════════════════════════════ */

@media (max-width: 640px) {

  /* ── GLOBAL SECTION SPACING ── */
  section {
    padding: 56px 0;
  }

  .container {
    padding: 0 18px;
  }

  /* ── HERO SECTION ── */
  .hero-grid-section {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero-heading {
    font-size: clamp(38px, 11vw, 54px);
    margin-bottom: 16px;
    line-height: 1;
  }

  .hero-dynamic-text {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .hero-paragraph {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-buttons {
    margin-bottom: 28px;
    gap: 12px;
  }

  .hero-btn-quote,
  .hero-btn-explore {
    padding: 12px 22px;
    font-size: 14px;
  }

  .hero-stats-bar {
    padding: 14px 16px;
    gap: 16px;
    max-width: 100%;
    border-radius: 14px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 10px;
  }

  .hero-badge-pill {
    padding: 6px 14px;
    font-size: 11px;
    margin-bottom: 16px;
  }

  /* ── SECTION LABELS & TITLES ── */
  .section-label {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: clamp(26px, 7vw, 34px);
    margin-bottom: 12px;
  }

  .section-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  /* ── ABOUT INTRO ── */
  .about-intro {
    padding: 60px 0;
  }

  .about-intro-inner {
    gap: 32px;
  }

  .about-intro-text p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .about-slides-container img.slide {
    object-fit: cover;
  }

  /* Fix: reset desktop bleed effect so image fits inside mobile viewport */
  .about-bowl-wrap {
    width: 100%;
    margin-right: 0;
    height: auto;
  }

  .about-bowl-img {
    width: 100%;
    height: 420px;
    min-height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  /* ── WHY CHOOSE US ── */
  .wcu-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wcu-card {
    padding: 24px 20px;
  }

  .wcu-banner {
    min-height: 200px;
    border-radius: 12px;
    width: calc(100% - 36px);
  }

  .wcu-banner-content {
    padding: 32px 20px;
  }

  .wcu-banner-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .wcu-banner-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* ── PROCESS GRID ── */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-step {
    padding: 20px 18px;
  }

  /* ── PRODUCTS SECTION ── */
  .products-header-inner {
    gap: 16px;
    margin-bottom: 24px;
  }

  .featured-morph-slider {
    border-radius: 16px;
  }

  /* ── INQUIRY SECTION ── */
  .inquiry-section {
    padding: 40px 0;
  }

  .inquiry-wrap {
    gap: 24px;
  }

  /* Info card — reduce the heavy inline padding on mobile */
  .inquiry-card {
    padding: 24px 18px !important;
  }

  /* Contact detail rows inside the card */
  .contact-card-list {
    gap: 20px !important;
  }

  /* Stack email + phone into one column on mobile */
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .inquiry-form-card {
    padding: 22px 16px;
    border-radius: 12px;
  }

  .inquiry-header {
    margin-bottom: 16px !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 14px;
    padding: 12px 14px;
  }

  /* Comfortable tap target for submit button */
  .form-submit-btn {
    padding: 14px 20px;
    font-size: 15px;
  }

  /* ── NEWS PAGE HEADER ── */
  .news-header {
    padding: 18px 0 20px;
  }

  .news-header .catalog-title {
    font-size: clamp(20px, 6vw, 28px);
    margin-bottom: 4px;
  }

  .news-header .catalog-subtitle {
    font-size: 12px;
    margin: 0 auto 12px;
    line-height: 1.5;
  }

  .news-header .catalog-filters {
    gap: 8px;
  }

  .news-header .filter-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* ── FEATURED ARTICLE ── */
  .featured-article {
    margin-bottom: 32px;
    border-radius: 14px;
  }

  .featured-article-content {
    padding: 24px 20px !important;
  }

  .featured-article-title {
    font-size: 22px !important;
    margin-bottom: 10px;
    line-height: 1.25;
  }

  .featured-article-desc {
    font-size: 13.5px !important;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .featured-article-meta {
    gap: 8px;
    margin-bottom: 10px;
  }

  /* ── BLOG GRID CARDS ── */
  .blog-grid {
    gap: 20px;
  }

  .blog-card-img {
    height: 170px;
  }

  .blog-card-body {
    padding: 18px 16px;
  }

  .blog-card-title {
    font-size: 16px;
  }

  .blog-card-desc {
    font-size: 13px;
    margin-bottom: 14px;
  }

  /* ── GALLERY SECTION ── */
  .gallery-section {
    padding: 32px 0 60px;
  }

  /* ── FOOTER ── */
  footer {
    padding: 48px 0 24px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-logo img {
    height: 36px;
  }

  .footer-about-text {
    font-size: 13px;
    line-height: 1.65;
  }

  .footer-heading {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-bottom {
    padding-top: 20px;
    margin-top: 32px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    font-size: 12px;
  }

  .footer-social-links {
    gap: 12px;
  }

  /* ── CATALOG PAGE ── */
  .catalog-header {
    padding: 48px 0 52px;
  }

  .catalog-title {
    font-size: clamp(26px, 7vw, 36px);
    margin-bottom: 8px;
  }

  .catalog-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .catalog-filters {
    gap: 8px;
    margin-bottom: 28px;
  }

  .catalog-grid {
    gap: 20px;
  }

  .catalog-card {
    border-radius: 14px;
  }

  /* ── GLOBAL REACH MAP ── */
  .global-reach {
    padding: 48px 0;
  }

  .gr-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .gr-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 24px;
  }

  .gr-stat b,
  .gr-stat strong {
    font-size: 26px;
  }
}

@media (max-width: 480px) {

  /* Extra tight on very small phones */
  section {
    padding: 44px 0;
  }

  .hero-grid-section {
    padding-top: 80px;
    padding-bottom: 32px;
  }

  .hero-heading {
    font-size: clamp(34px, 10vw, 46px);
  }

  .news-header {
    padding: 18px 0 20px;
  }

  .inquiry-section {
    padding: 44px 0;
  }

  .wcu-banner-content {
    padding: 24px 16px;
  }

  .featured-article-content {
    padding: 18px 16px !important;
  }

  .featured-article-title {
    font-size: 20px !important;
  }
}

/* ═══════════════════════════════════════════
   DARK ANIMATED HERO SECTION
════════════════════════════════════════════ */

.hero-dark {
  position: relative;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 50%, #E9ECEF 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 65px 0 0 0;
}

.hero-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 5;
  pointer-events: none;
}

#jalpex-globe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: auto;
}

/* Particle canvas */
.hero-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* ── GLOW BLOBS — brand colors, much bigger ── */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  filter: blur(90px);
}

/* Blob 1: Gold — top centre spreading wide */
.hero-glow-1 {
  width: 900px;
  height: 900px;
  top: -200px;
  left: 20%;
  background: radial-gradient(circle,
      rgba(194, 150, 82, 0.22) 0%,
      rgba(189, 143, 69, 0.10) 45%,
      transparent 70%);
  animation: blob-breathe-gold 10s ease-in-out infinite;
}

/* Blob 2: Navy — large right side depth */
.hero-glow-2 {
  width: 800px;
  height: 800px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle,
      rgba(26, 40, 84, 0.65) 0%,
      rgba(24, 37, 67, 0.30) 50%,
      transparent 70%);
  animation: blob-breathe-navy 13s ease-in-out infinite;
}

/* Blob 3: extra gold sparkle mid-left */
.hero-glow-3 {
  width: 500px;
  height: 500px;
  top: 30%;
  left: -100px;
  background: radial-gradient(circle,
      rgba(194, 150, 82, 0.12) 0%,
      transparent 65%);
  animation: blob-breathe-gold 16s ease-in-out infinite reverse;
  filter: blur(70px);
}

@keyframes blob-breathe-gold {

  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.7;
  }

  33% {
    transform: scale(1.10) translateY(-30px);
    opacity: 1;
  }

  66% {
    transform: scale(0.95) translateY(20px);
    opacity: 0.6;
  }
}

@keyframes blob-breathe-navy {

  0%,
  100% {
    transform: scale(1) translateX(0);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.12) translateX(-40px);
    opacity: 0.9;
  }
}

/* ── ANIMATED MESH GRID OVERLAY ── */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(194, 150, 82, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 150, 82, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: mesh-drift 40s linear infinite;
}

@keyframes mesh-drift {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 80px 80px, 80px 80px;
  }
}

/* Inner grid */
.hero-dark-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* ── ENTRY ANIMATIONS ── */
[data-anim="fade-up"] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim="fade-in"] {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim].anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── LEFT: Text ── */
.hero-dark-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 580px;
}

/* Tagline Badge — transparent white background with exact dark navy blue (#182543) text */
.hero-dark-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: 30px;
  width: fit-content;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.hdb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #182543;
  box-shadow: 0 0 6px rgba(24, 37, 67, 0.4);
  flex-shrink: 0;
  animation: hdbDotBlink 2s ease-in-out infinite;
}

@keyframes hdbDotBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 8px rgba(24, 37, 67, 0.6);
  }
  50% {
    opacity: 0.25;
    transform: scale(0.75);
    box-shadow: 0 0 2px rgba(24, 37, 67, 0.15);
  }
}

.animated-tagline-text {
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13.5px;
  text-transform: uppercase;
  color: #182543;
  display: inline-block;
}

/* Heading */
.hero-dark-heading {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Gold italic accent — exact logo gold #c29652 */
.hd-gold-italic,
.hero-dark-heading em {
  font-style: italic;
  font-weight: 450;
  background: linear-gradient(110deg, #bd8f45 0%, #c29652 40%, #e8c07a 60%, #c29652 80%, #bd8f45 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 4s linear infinite;
  display: inline-block;
}

/* Avoid italic rendering breaking letters in non-Latin scripts (Hindi, Arabic, Chinese) */
html[lang="hi"] .hd-gold-italic,
html[lang="hi"] .hero-dark-heading em,
html[lang="hi"] em,
html[lang="hi"] i,
html[lang="ar"] .hd-gold-italic,
html[lang="ar"] .hero-dark-heading em,
html[lang="ar"] em,
html[lang="ar"] i,
html[lang="zh"] .hd-gold-italic,
html[lang="zh"] .hero-dark-heading em,
html[lang="zh"] em,
html[lang="zh"] i {
  font-style: normal !important;
  padding-left: 0.12em;
  padding-right: 0.05em;
  margin-left: -0.12em;
}

@keyframes gold-shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 220% center;
  }
}

/* Ticker */
.hero-dark-ticker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18.5px;
  color: var(--text-secondary);
  font-weight: 400;
  flex-wrap: wrap;
}

.hdt-bar {
  width: 34px;
  height: 2.5px;
  background: #182543;
  flex-shrink: 0;
  border-radius: 2px;
}

.hdt-label {
  white-space: nowrap;
}

.hdt-word-track {
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}

.hdt-word {
  display: inline-block;
  font-weight: 700;
  font-size: 18.5px;
  color: #182543;
  white-space: nowrap;
  line-height: 1.2;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hdt-word.hdt-exit {
  opacity: 0;
  transform: translateY(-20px);
}

.hdt-word.hdt-enter {
  opacity: 0;
  transform: translateY(20px);
}

/* Description */
.hero-dark-desc {
  font-size: 21.5px;
  line-height: 1.62;
  color: var(--text-primary);
  font-weight: 450;
  max-width: 500px;
  margin: 6px 0 12px 0;
  text-align: justify;
}

/* Buttons */
.hero-dark-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}

/* Primary — gold brand button */
.hdb-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #bd8f45 0%, #c29652 50%, #d4a660 100%);
  background-size: 200% auto;
  color: #FFFFFF;
  padding: 13px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 28px rgba(189, 143, 69, 0.30);
  animation: btn-gold-pulse 4s ease-in-out infinite;
}

.hdb-primary:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(189, 143, 69, 0.45);
}

@keyframes btn-gold-pulse {

  0%,
  100% {
    box-shadow: 0 8px 28px rgba(189, 143, 69, 0.30);
  }

  50% {
    box-shadow: 0 8px 40px rgba(189, 143, 69, 0.45);
  }
}

/* Outline — border */
.hdb-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-primary);
  padding: 12px 26px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: all 0.35s;
}

.hdb-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(189, 143, 69, 0.05);
  transform: translateY(-2px);
}

/* Stats bar */


/* ── HERO VIDEO BACKGROUND ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  filter: brightness(1.25);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.65) 20%,
      rgba(255, 255, 255, 0.18) 50%,
      rgba(255, 255, 255, 0) 65%);
  z-index: 2;
}

/* ── RIGHT: Globe orb — BIGGER ── */
.hero-dark-globe {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Three.js Globe Wrapper */
.hg-threejs-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  height: auto;
  flex-shrink: 0;
  z-index: 10;
  pointer-events: none;
}

/* Let product chips have pointer events to be clickable/interactive */
.hg-threejs-wrap .hg-chip {
  pointer-events: auto;
}

@media (max-width: 900px) {
  .hg-threejs-wrap {
    width: 320px;
    height: 320px;
  }
}

/* BIG animated background ring behind globe */
.hg-orb-wrap {
  position: relative;
  width: 480px;
  height: 480px;
  flex-shrink: 0;
}

/* Outermost ambient glow ring — very large */
.hg-orb-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(194, 150, 82, 0.08) 0%,
      rgba(24, 37, 67, 0.18) 45%,
      transparent 70%);
  animation: outer-glow-pulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes outer-glow-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.14);
    opacity: 1;
  }
}

/* Central glowing orb — brand navy + gold highlight */
.hg-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
      rgba(194, 150, 82, 0.25) 0%,
      rgba(26, 40, 84, 0.70) 45%,
      rgba(6, 13, 26, 0.95) 100%);
  border: 1px solid rgba(194, 150, 82, 0.22);
  box-shadow:
    0 0 70px rgba(24, 37, 67, 0.8),
    0 0 140px rgba(24, 37, 67, 0.35),
    0 0 30px rgba(194, 150, 82, 0.15),
    inset 0 0 50px rgba(194, 150, 82, 0.06);
  animation: orb-breathe 7s ease-in-out infinite;
}

@keyframes orb-breathe {

  0%,
  100% {
    box-shadow: 0 0 70px rgba(24, 37, 67, 0.8), 0 0 140px rgba(24, 37, 67, 0.35), 0 0 30px rgba(194, 150, 82, 0.15);
  }

  50% {
    box-shadow: 0 0 100px rgba(24, 37, 67, 1), 0 0 200px rgba(24, 37, 67, 0.5), 0 0 60px rgba(194, 150, 82, 0.28);
  }
}

/* Wireframe rings — brand gold borders, larger spacing */
.hg-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hg-ring-1 {
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(194, 150, 82, 0.22);
  animation: ring-spin-1 16s linear infinite;
}

.hg-ring-2 {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(26, 40, 84, 0.7);
  animation: ring-spin-2 22s linear infinite reverse;
}

.hg-ring-3 {
  width: 460px;
  height: 460px;
  border: 1px dotted rgba(194, 150, 82, 0.12);
  animation: ring-spin-3 30s linear infinite;
}

.hg-ring-4 {
  width: 560px;
  height: 560px;
  border: 1px solid rgba(194, 150, 82, 0.06);
  animation: ring-spin-1 45s linear infinite reverse;
}

@keyframes ring-spin-1 {
  from {
    transform: translate(-50%, -50%) rotateX(72deg) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotateX(72deg) rotate(360deg);
  }
}

@keyframes ring-spin-2 {
  from {
    transform: translate(-50%, -50%) rotateY(65deg) rotateX(18deg) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotateY(65deg) rotateX(18deg) rotate(360deg);
  }
}

@keyframes ring-spin-3 {
  from {
    transform: translate(-50%, -50%) rotateX(82deg) rotateY(35deg) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotateX(82deg) rotateY(35deg) rotate(360deg);
  }
}

/* Orbiting nodes — gold glowing dots */
.hg-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-origin: 0 0;
}

.hg-orbit-1 {
  animation: hgorbit 7s linear infinite;
}

.hg-orbit-2 {
  animation: hgorbit 11s linear infinite reverse;
  animation-delay: -3s;
}

.hg-orbit-3 {
  animation: hgorbit 15s linear infinite;
  animation-delay: -6s;
}

.hg-orbit-4 {
  animation: hgorbit 19s linear infinite reverse;
  animation-delay: -9s;
}

@keyframes hgorbit {
  from {
    transform: rotate(0deg) translateX(195px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(195px) rotate(-360deg);
  }
}

.hg-node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  background: #c29652;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(194, 150, 82, 0.9), 0 0 28px rgba(194, 150, 82, 0.4);
  position: relative;
  cursor: default;
}

.hg-node-label {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  letter-spacing: 0.5px;
  background: rgba(6, 13, 26, 0.85);
  padding: 2px 7px;
  border-radius: 5px;
  border: 1px solid rgba(194, 150, 82, 0.3);
}

/* Floating product chips — brand colors */
.hg-chip {
  position: absolute;
  background: rgba(6, 13, 26, 0.78);
  border: 1px solid rgba(194, 150, 82, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 22px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 12px rgba(194, 150, 82, 0.08);
}

.hg-chip-1 {
  top: 6%;
  left: -4%;
  animation: chip-float-1 6s ease-in-out infinite;
}

.hg-chip-2 {
  bottom: 16%;
  left: -8%;
  animation: chip-float-2 7.5s ease-in-out infinite;
}

.hg-chip-3 {
  top: 18%;
  right: -2%;
  animation: chip-float-3 8.5s ease-in-out infinite;
}

@keyframes chip-float-1 {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes chip-float-2 {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(14px) rotate(-1deg);
  }
}

@keyframes chip-float-3 {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: scroll-hint-fade 3s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: rgba(194, 150, 82, 0.45);
  text-transform: uppercase;
}

.hsh-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(194, 150, 82, 0.28);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hsh-wheel {
  width: 3px;
  height: 7px;
  background: rgba(194, 150, 82, 0.55);
  border-radius: 3px;
  animation: scroll-wheel 2.2s ease-in-out infinite;
}

@keyframes scroll-wheel {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(9px);
    opacity: 0.15;
  }
}

@keyframes scroll-hint-fade {

  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-dark-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-intro-inner {
    grid-template-columns: 1fr;
  }

  .about-bowl-wrap {
    width: 100%;
    margin-right: 0;
  }

  .about-bowl-img {
    height: 360px;
    min-height: 360px;
    max-height: 380px;
  }

  .hero-dark-globe {
    display: none;
  }

  .hero-dark {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 130px 0 60px;
  }

  .hero-dark-heading {
    font-size: clamp(32px, 9vw, 50px);
  }

  .hero-dark-ticker {
    font-size: 16px;
    gap: 8px;
  }

  .hdt-word-track {
    height: 30px;
  }

  .hdt-word {
    font-size: 16px;
  }

  .hero-video-overlay {
    background: rgba(255, 255, 255, 0.92);
  }
}

@media (max-width: 480px) {
  .hero-dark {
    padding: 125px 0 50px;
  }

  .hero-dark-heading {
    font-size: clamp(26px, 8vw, 38px);
  }

  .hero-dark-desc {
    font-size: 15.5px;
  }

  .hero-dark-ticker {
    font-size: 14px;
    gap: 6px;
  }

  .hdt-bar {
    width: 22px;
  }

  .hdt-word-track {
    height: 28px;
  }

  .hdt-word {
    font-size: 14px;
  }

  .hero-dark-btns {
    flex-direction: column;
  }

  .hdb-primary,
  .hdb-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ── VIEWPORT HEIGHT MEDIA QUERIES FOR SINGLE SCROLL FOLD ── */
@media (min-width: 901px) and (max-height: 850px) {
  .hero-dark-text {
    gap: 12px;
  }

  .hero-dark-heading {
    font-size: clamp(34px, 4.5vw, 54px);
  }

  .hero-dark-desc {
    font-size: 16.5px;
  }


  .hg-threejs-wrap {
    max-width: 400px;
  }
}

@media (min-width: 901px) and (max-height: 720px) {
  .hero-dark-text {
    gap: 8px;
  }

  .hero-dark-heading {
    font-size: clamp(28px, 4vw, 38px);
  }

  .hero-dark-desc {
    font-size: 15px;
  }


  .hg-threejs-wrap {
    max-width: 300px;
  }
}

/* ── LEGAL PAGE LAYOUT ── */
.legal-hero {
  background: linear-gradient(135deg, rgba(24, 37, 67, 0.95) 0%, rgba(6, 10, 18, 0.95) 100%);
  padding: 55px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(194, 150, 82, 0.15);
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 80% 20%, rgba(194, 150, 82, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  color: #FFFFFF;
  margin: 0 0 12px;
}

.legal-breadcrumbs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.legal-breadcrumbs a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
}

.legal-breadcrumbs a:hover {
  color: #FFFFFF;
}

.legal-container {
  display: flex;
  gap: 40px;
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.legal-sidebar {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.legal-tab-btn {
  background: transparent;
  border: 1px solid rgba(194, 150, 82, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.legal-tab-btn::after {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--accent-gold);
}

.legal-tab-btn:hover {
  background: #FCFAF6;
  border-color: rgba(194, 150, 82, 0.5);
  color: var(--accent-gold);
  transform: translateX(4px);
}

.legal-tab-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.legal-tab-btn.active {
  background: var(--blue-deep);
  color: #FFFFFF;
  border-color: var(--blue-deep);
  box-shadow: 0 4px 15px rgba(24, 37, 67, 0.15);
}

.legal-tab-btn.active::after {
  opacity: 1;
  transform: translateX(0);
  color: #FFFFFF;
}

.legal-content-area,
.legal-content {
  flex-grow: 1;
  min-width: 0;
}

.legal-card {
  background: #FCFAF6;
  border: 1px solid rgba(194, 150, 82, 0.25);
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.legal-card.active {
  display: block;
}

.legal-card h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--blue-deep);
  margin: 0 0 8px;
  border-bottom: 2px solid rgba(194, 150, 82, 0.25);
  padding-bottom: 12px;
}

.legal-meta,
.legal-card .effective-date {
  font-size: 13.5px;
  color: var(--text-light);
  margin-bottom: 30px;
  font-style: italic;
}

.legal-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--blue-deep);
  margin: 25px 0 12px;
}

.legal-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 16px;
}

.legal-card ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.legal-card li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.legal-mobile-selector {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .legal-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .legal-sidebar {
    display: none;
    /* Hide sidebar list tabs on mobile */
  }

  .legal-mobile-selector {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }

  #legalSelect {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--blue-deep);
    background-color: #FCFAF6;
    border: 1px solid rgba(194, 150, 82, 0.4);
    border-radius: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23182543' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
  }

  #legalSelect:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(194, 150, 82, 0.15);
  }

  .legal-card {
    padding: 30px;
  }
}