/*
Theme Name: Chakwa Hatcheries
Theme URI: https://chakwahatcheries.com
Author: Dot Com Inventions
Author URI: https://dotcominventions.com
Description: Custom mobile-first theme for Chakwa Hatcheries OPC Pvt. Ltd. — B2B poultry trading (Broiler Cobb Chicks, Hatching Eggs, Broiler Feeds). Built with Smart Custom Fields, no page builder.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: Proprietary
Text Domain: chakwa-hatcheries
*/

/* ==========================================================================
   1. Design Tokens
   ========================================================================== */
:root {
  /* Brand colors — subtle & light palette */
  --color-primary: #2C4A7F;
  --color-primary-dark: #1E3454;
  --color-primary-light: #F0F4FA;
  --color-secondary: #3D8B5F;
  --color-secondary-dark: #2D6B4A;
  --color-secondary-light: #F0F7F3;
  --color-accent: #E8834B;
  --color-accent-dark: #D1733C;
  --color-accent-light: #FEF4ED;
  --color-gold: #F4C76D;
  --color-gold-dark: #E0B04F;
  --color-blue: #2C4A7F;

  /* Neutrals - light & subtle */
  --color-bg: #FAFBFD;
  --color-bg-alt: #F4F6FA;
  --color-surface: #FFFFFF;
  --color-text: #2A2E37;
  --color-text-mid: #5F6875;
  --color-text-soft: #8B95A6;
  --color-border: #E8ECEF;

  /* WhatsApp */
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1EBE57;

  /* Typography */
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Radii & shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(18, 74, 50, 0.06);
  --shadow-md: 0 8px 24px rgba(18, 74, 50, 0.10);
  --shadow-lg: 0 16px 48px rgba(18, 74, 50, 0.16);

  /* Layout */
  --container-max: 1240px;
  --header-height: 76px;
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
#main-content { margin: 0; padding: 0; overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  line-height: 1.25;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(1.9rem, 4vw + 1rem, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.5vw + 1rem, 2.35rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1.5vw + 1rem, 1.5rem); }
p { margin: 0 0 1em; color: var(--color-text-mid); }
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}
section { padding: 44px 0; }
@media (min-width: 768px) { section { padding: 60px 0; } }

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.section-head p { font-size: 1.05rem; }

/* ==========================================================================
   3. Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { box-shadow: var(--shadow-lg); }
.btn-accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(245, 121, 12, 0.28);
}
.btn-accent:hover { box-shadow: 0 12px 32px rgba(245, 121, 12, 0.36); }
.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary-light); }
.btn-outline-green {
  background: transparent;
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}
.btn-outline-green:hover { background: var(--color-secondary-light); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .88rem; }
.btn-arrow { width: 18px; height: 18px; transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ==========================================================================
   4. Cards & Surfaces
   ========================================================================== */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  background: var(--color-surface);
  color: var(--color-primary-dark);
  padding: 7px 16px 7px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; }
.text-accent {
  background: linear-gradient(100deg, var(--color-accent) 10%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   5. Header
   ========================================================================== */
.site-topbar {
  background: var(--color-bg-alt);
  color: var(--color-text-mid);
  font-size: .81rem;
  border-bottom: 1px solid var(--color-border);
}
.site-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 10px;
  flex-wrap: wrap;
}
.site-topbar a { display: inline-flex; align-items: center; gap: 6px; transition: color .2s ease; }
.site-topbar .chakwa-icon { width: 14px; height: 14px; flex-shrink: 0; }
.footer-col a, .footer-col li { display: inline-flex; align-items: center; gap: 8px; }
.footer-col .chakwa-icon { width: 15px; height: 15px; flex-shrink: 0; opacity: .85; }
.header-icon-btn .chakwa-icon { width: 19px; height: 19px; }
.site-topbar a:hover { color: var(--color-primary); }
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-right { font-weight: 600; letter-spacing: .02em; color: var(--color-primary-dark); }

.site-header {
  background: var(--color-surface);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow .2s ease;
  border-bottom: 1px solid var(--color-border);
}
.site-header::after {
  display: none;
}
.site-header.is-scrolled { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 20px;
  padding-block: 10px 8px;
}
.site-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); }
.site-logo img,
.site-logo .site-logo-img { height: 80px; width: auto; object-fit: contain; display: block; }
.site-logo .wp-custom-logo img { height: 54px; width: auto; }
.site-logo .logo-text { line-height: 1.15; }
.site-logo .logo-text strong { display: block; font-size: 1.05rem; color: var(--color-primary-dark); font-weight: 700; }
.site-logo .logo-text span { display: block; font-size: .68rem; color: var(--color-text-soft); letter-spacing: .04em; }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .95rem;
  padding: 10px 14px;
  color: var(--color-text);
  transition: color .15s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover { color: var(--color-primary-dark); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav .current-menu-item > a { color: var(--color-primary-dark); font-weight: 700; }
.main-nav .current-menu-item > a::after { transform: scaleX(1); background: var(--color-primary); }
@media (max-width: 1023px) {
  .main-nav a::after { display: none; }
  .main-nav a:hover, .main-nav .current-menu-item > a {
    background: var(--color-primary-light);
    border-radius: var(--radius-sm);
  }
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  transition: background .15s ease, transform .15s ease;
}
.header-icon-btn:hover { background: var(--color-primary); color: #fff; transform: scale(1.06); }
.header-icon-btn.whatsapp { background: #E7FBEF; color: var(--color-whatsapp-dark); }
.header-icon-btn.whatsapp:hover { background: var(--color-whatsapp); color: #fff; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--color-primary-dark);
  position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

@media (max-width: 1023px) {
  .main-nav {
    position: fixed; inset: var(--header-height) 0 0 0;
    background: var(--color-surface);
    padding: 24px 20px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { display: block; padding: 14px 18px; font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; }
  .header-actions .header-label { display: none; }
}

/* ==========================================================================
   6. Rate Board (flashy banner)
   ========================================================================== */
.rate-board {
  background: linear-gradient(90deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
  color: var(--color-primary-dark);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}
.rate-board::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 131, 75, 0.04) 50%, transparent 100%);
  pointer-events: none;
}
.rate-board .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 32px;
  padding-block: 11px;
  position: relative;
}
.rate-board-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.rate-board-label .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-accent); box-shadow: 0 0 0 rgba(232, 131, 75, 0.6);
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(232, 131, 75, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(232, 131, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 131, 75, 0); }
}
.rate-items { display: flex; flex-wrap: wrap; gap: 10px 32px; align-items: center; }
.rate-item { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-heading); padding-left: 28px; border-left: 1px solid var(--color-border); }
.rate-item:first-child { padding-left: 0; border-left: none; }
.rate-item .rate-name { font-size: .82rem; font-weight: 500; color: var(--color-text-soft); }
.rate-item .rate-value { font-size: 1.15rem; font-weight: 800; color: var(--color-accent); }
.rate-updated { font-size: .74rem; color: var(--color-text-soft); font-style: italic; }

/* ==========================================================================
   7. Hero — image carousel + intro section
   ========================================================================== */
.hero-carousel {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 16 / 9;
  max-height: 680px;
  min-height: 260px;
  overflow: hidden;
}
@media (min-width: 1024px) { .hero-carousel { aspect-ratio: 21 / 9; } }
.hero-carousel-track { position: absolute; inset: 0; }
.hero-carousel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-carousel-slide.is-active { opacity: 1; }
.hero-carousel-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Rich multi-layer gradient overlay — logo colors: navy left, transparent center, warm bottom */
.hero-carousel-overlay {
  position: absolute; inset: 0;
  background:
    /* Left navy sweep for brand identity */
    linear-gradient(100deg,
      rgba(26,56,104,.82) 0%,
      rgba(26,56,104,.55) 28%,
      rgba(26,56,104,.10) 52%,
      transparent 68%
    ),
    /* Bottom green-to-orange brand gradient */
    linear-gradient(0deg,
      rgba(18,34,68,.78) 0%,
      rgba(45,122,62,.30) 22%,
      transparent 50%,
      transparent 80%,
      rgba(18,34,68,.30) 100%
    );
}
.hero-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  color: #fff;
  z-index: 2;
  transition: background .15s ease;
}
.hero-carousel-arrow:hover { background: rgba(255,255,255,.32); }
.hero-carousel-arrow.prev { left: 16px; }
.hero-carousel-arrow.next { right: 16px; }
.hero-carousel-arrow .chakwa-icon { width: 20px; height: 20px; }
.hero-carousel-dots {
  position: absolute; bottom: 18px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  z-index: 2;
}
.hero-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  transition: background .15s ease, width .2s ease;
}
.hero-carousel-dot.is-active { background: var(--color-gold); width: 22px; border-radius: 4px; }

.intro-section { background: var(--color-bg); padding-block: 48px 0; }
.intro-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding-bottom: 48px;
}
@media (min-width: 1024px) {
  .intro-grid { flex-direction: row; gap: 56px; padding-bottom: 72px; align-items: stretch; }
  .intro-copy { flex: 1 1 0; min-width: 0; }
  .intro-media { flex: 0.85 1 0; min-width: 0; }
  .intro-media-photo { height: 100%; min-height: 380px; }
}
.intro-copy .badge { margin-bottom: 20px; }
.intro-copy h1 {
  margin-bottom: 18px;
  letter-spacing: -.015em;
  font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem);
}
.intro-copy .text-accent {
  background: linear-gradient(100deg, var(--color-accent) 10%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.intro-copy .hero-sub { font-size: 1.06rem; max-width: 540px; }
.intro-copy .hero-sub.hi { font-size: .96rem; color: var(--color-text-soft); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.intro-media-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  border: 6px solid var(--color-surface);
  outline: 1px solid var(--color-border);
}
.intro-media-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-stats {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 32px;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.hero-stat { padding-inline: 32px; border-left: 1px solid var(--color-border); flex: 1; min-width: 140px; text-align: center; }
.hero-stat:first-child { padding-left: 0; border-left: none; }
.hero-stat:last-child { padding-right: 0; }
@media (max-width: 640px) {
  .hero-stat { padding-inline: 10px; min-width: 0; }
  .hero-stat strong { font-size: 1.1rem; }
  .hero-stat span { font-size: .6rem; white-space: normal; }
}
.hero-stat strong { display: block; font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-secondary); line-height: 1.2; }
.hero-stat span { font-size: .74rem; color: var(--color-text-soft); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }

/* ==========================================================================
   8. Why Choose Us
   ========================================================================== */
.why-section { position: relative; background: var(--color-bg-alt); }

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.why-card {
  padding: 30px 26px;
  flex: 1 1 250px;
  max-width: 270px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
@media (max-width: 639px) { .why-card { flex-basis: 100%; max-width: 420px; } }
.chakwa-icon { width: 1.4em; height: 1.4em; display: block; }
.why-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  color: var(--color-text-mid);
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.why-card h3 { margin-bottom: 8px; color: var(--color-text); }
.why-card p { font-size: .93rem; margin-bottom: 0; color: var(--color-text-mid); }
.why-card--slate { border-top-color: #94A3B8; }
.why-card--slate .why-icon { background: #EEF2F6; color: #475569; }
.why-card--clay { border-top-color: #D6A578; }
.why-card--clay .why-icon { background: #F7EDE3; color: #9C6B3E; }
.why-card--sage { border-top-color: #9CB6A3; }
.why-card--sage .why-icon { background: #EAF1EC; color: #4F7862; }
.why-card--dusk { border-top-color: #A6A0C6; }
.why-card--dusk .why-icon { background: #EFEDF7; color: #5E5892; }
.why-card--sand { border-top-color: #C9B896; }
.why-card--sand .why-icon { background: #F5F0E6; color: #8A7648; }

/* ==========================================================================
   9. Commitment / Story band
   ========================================================================== */
.commitment {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
  color: var(--color-text);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  margin-inline: 20px;
  border: 1px solid var(--color-border);
}
.commitment .container { max-width: 820px; text-align: center; }
.commitment h2 { color: var(--color-primary-dark); }
.commitment p { color: var(--color-text-mid); font-size: 1.05rem; }
.commitment p.hi { color: var(--color-text-soft); font-size: .95rem; }

/* ==========================================================================
   10. Trust Strip
   ========================================================================== */
.trust-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: center;
  padding-block: 22px;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--color-text-mid); }
.trust-item strong { color: var(--color-primary-dark); font-family: var(--font-heading); }
.trust-item .trust-icon { color: var(--color-secondary); font-size: 1.1rem; }

/* ==========================================================================
   11. Product Cards
   ========================================================================== */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 900px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-card .product-image { aspect-ratio: 16/11; overflow: hidden; background: var(--color-bg-alt); }
.product-card .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-image img { transform: scale(1.06); }
.product-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { margin-bottom: 10px; }
.spec-list { display: flex; flex-direction: column; gap: 8px; margin: 16px 0 0; }
.spec-row {
  display: flex; justify-content: space-between; gap: 10px;
  font-size: .88rem; padding: 8px 0; border-bottom: 1px dashed var(--color-border);
}
.spec-row .spec-label { color: var(--color-text-soft); }
.spec-row .spec-value { font-weight: 600; color: var(--color-text); text-align: right; }
.product-pending {
  margin-top: 14px; padding: 10px 14px; border-radius: var(--radius-sm);
  background: var(--color-accent-light); color: var(--color-accent-dark);
  font-size: .82rem; font-weight: 600;
}

/* ==========================================================================
   12. Trading Desk / Forms
   ========================================================================== */
.trading-tabs { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.trading-tab-btn {
  flex: 1; min-width: 200px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  transition: all .15s ease;
}
.trading-tab-btn.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}
.trading-panel { display: none; }
.trading-panel.is-active { display: block; }

.form-card { padding: 32px 28px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.form-field label { display: block; font-family: var(--font-heading); font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--color-text); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--color-bg);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px var(--color-primary-light);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-msg { padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; margin-bottom: 22px; }
.form-msg.success { background: var(--color-primary-light); color: var(--color-primary-dark); }
.form-msg.error { background: #FDECEC; color: #B42318; }

.logistics-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 20px; }
@media (min-width: 768px) { .logistics-grid { grid-template-columns: repeat(3, 1fr); } }
.logistics-card { padding: 22px; text-align: center; }
.logistics-card .why-icon { margin-inline: auto; }

/* ==========================================================================
   13. Gallery
   ========================================================================== */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px; }
.gallery-filter-btn {
  padding: 9px 18px; border-radius: var(--radius-pill); font-size: .88rem; font-weight: 600;
  background: var(--color-surface); border: 1.5px solid var(--color-border); color: var(--color-text-mid);
}
.gallery-filter-btn.is-active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-lightbox {
  position: fixed; inset: 0; background: rgba(18,25,20,.92);
  display: none; align-items: center; justify-content: center; z-index: 1000; padding: 20px;
}
.gallery-lightbox.is-open { display: flex; }
.gallery-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); }
.gallery-lightbox-close { position: absolute; top: 24px; right: 24px; color: #fff; font-size: 2rem; }

/* ==========================================================================
   14. Testimonials
   ========================================================================== */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { overflow: hidden; border-top: 4px solid var(--color-gold); position: relative; }
.testimonial-grid .testimonial-card:nth-child(3n+2) { border-top-color: var(--color-accent); }
.testimonial-grid .testimonial-card:nth-child(3n+3) { border-top-color: var(--color-secondary); }
.testimonial-grid .testimonial-card:nth-child(3n+2) .testimonial-body::before { background: var(--color-accent); }
.testimonial-grid .testimonial-card:nth-child(3n+3) .testimonial-body::before { background: var(--color-secondary); }
.testimonial-video { aspect-ratio: 16/9; background: #111; position: relative; }
.testimonial-video video { width: 100%; height: 100%; object-fit: cover; border: 0; }
.testimonial-video iframe { width: 100%; height: 100%; border: 0; }
.testimonial-video-empty {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-text-soft);
  font-size: .85rem;
}
.testimonial-body { padding: 22px 22px 24px; position: relative; }
.testimonial-body::before {
  content: '';
  position: absolute; top: -22px; right: 18px;
  width: 40px; height: 40px;
  background: var(--color-gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 8c-2.2 0-4 1.8-4 4v5h5v-5H6c0-1.1.9-2 2-2Zm10 0c-2.2 0-4 1.8-4 4v5h5v-5h-2c0-1.1.9-2 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 8c-2.2 0-4 1.8-4 4v5h5v-5H6c0-1.1.9-2 2-2Zm10 0c-2.2 0-4 1.8-4 4v5h5v-5h-2c0-1.1.9-2 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  box-shadow: var(--shadow-md);
  border-radius: 50%;
}
.testimonial-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; }
.testimonial-location { font-size: .82rem; color: var(--color-text-soft); margin-bottom: 10px; }
.testimonial-stars { color: var(--color-gold); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-quote { font-size: .95rem; font-style: italic; margin-bottom: 0; color: var(--color-text); }
.featured-testimonials-strip { background: var(--color-bg-alt); position: relative; }
.featured-testimonials-strip .section-tag { margin-bottom: 14px; }

/* ==========================================================================
   15. Knowledge Hub
   ========================================================================== */
.guide-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 768px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .guide-grid { grid-template-columns: repeat(3, 1fr); } }
.guide-card { overflow: hidden; display: flex; flex-direction: column; }
.guide-image { aspect-ratio: 16/10; overflow: hidden; background: var(--color-bg-alt); }
.guide-image img { width: 100%; height: 100%; object-fit: cover; }
.guide-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.guide-meta { display: flex; gap: 12px; font-size: .78rem; color: var(--color-text-soft); margin-bottom: 10px; }
.guide-body h3 { margin-bottom: 8px; }
.guide-body p { font-size: .9rem; flex: 1; }
.guide-readmore { margin-top: 10px; font-family: var(--font-heading); font-weight: 600; color: var(--color-secondary); display: inline-flex; align-items: center; gap: 6px; }
.coming-soon-box { text-align: center; padding: 60px 24px; }
.coming-soon-box .why-icon { margin-inline: auto; width: 72px; height: 72px; font-size: 2rem; }

.single-guide-hero { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 21/9; margin-bottom: 32px; box-shadow: var(--shadow-md); }
.single-guide-hero img { width: 100%; height: 100%; object-fit: cover; }
.single-guide-content { max-width: 760px; margin: 0 auto; }
.single-guide-content h2 { margin-top: 1.4em; }
.single-guide-content p { color: var(--color-text); font-size: 1.03rem; }
.single-guide-content img { border-radius: var(--radius-md); margin-block: 1em; }
.single-guide-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--color-text-soft); font-size: .88rem; margin-bottom: 20px; }

/* ==========================================================================
   16. Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .9fr 1.1fr; } }
.contact-info-card { padding: 30px 26px; }
.contact-row { display: flex; gap: 14px; padding-block: 14px; border-bottom: 1px solid var(--color-border); }
.contact-row:last-child { border-bottom: none; }
.contact-row .why-icon { width: 42px; height: 42px; font-size: 1.1rem; flex-shrink: 0; margin-bottom: 0; }
.contact-row h4 { margin-bottom: 4px; font-size: .95rem; }
.contact-row p { margin-bottom: 0; font-size: .9rem; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 340px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ==========================================================================
   17. Footer
   ========================================================================== */
.site-footer { background: var(--color-bg-alt); color: var(--color-text-mid); border-top: 1px solid var(--color-border); }
.footer-top { padding-block: 60px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 50px; } }
.footer-col h4 { color: var(--color-primary-dark); font-size: 1.02rem; font-weight: 600; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col p { color: var(--color-text-mid); font-size: .9rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--color-primary); text-decoration: underline; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 60px; width: auto; object-fit: contain; display: block; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand strong { color: var(--color-primary-dark); font-family: var(--font-heading); font-size: 1.1rem; }
.footer-legal-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.footer-legal-badges span {
  font-size: .74rem; background: var(--color-primary-light); color: var(--color-primary); padding: 6px 12px; border-radius: var(--radius-pill); font-weight: 500;
}
.footer-bottom { border-top: 1px solid var(--color-border); padding-block: 24px; font-size: .81rem; color: var(--color-text-soft); }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 15px; }

/* ==========================================================================
   18. WhatsApp Float
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px; height: 60px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  z-index: 200;
  animation: wa-pulse 2.4s infinite;
}
.whatsapp-float:hover { background: var(--color-whatsapp-dark); transform: scale(1.06); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 8px 24px rgba(37,211,102,.45); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 8px 24px rgba(37,211,102,.45); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 8px 24px rgba(37,211,102,.45); }
}
@media (max-width: 480px) {
  .whatsapp-float { right: 14px; bottom: 84px; width: 54px; height: 54px; }
}

/* ==========================================================================
   19. Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.bg-alt { background: var(--color-bg-alt); }
.bg-surface { background: var(--color-surface); }
.divider-space { height: 8px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: #fff; color: #000; padding: 10px 16px; z-index: 9999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ==========================================================================
   20. Certificates strip
   ========================================================================== */
.certificates-strip { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 24px; }
.certificate-thumb { width: 140px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }
.certificate-thumb img { aspect-ratio: 3/4; object-fit: cover; }

/* ==========================================================================
   21. Legal / Trust block (About page)
   ========================================================================== */
.legal-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 24px; }
@media (min-width: 768px) { .legal-grid { grid-template-columns: repeat(3, 1fr); } }
.legal-card { padding: 22px; text-align: center; }
.legal-card .legal-value { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--color-primary-dark); word-break: break-word; }
.legal-card .legal-label { font-size: .8rem; color: var(--color-text-soft); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }

/* ==========================================================================
   22. HOME REDESIGN — Hero fullscreen overlay
   ========================================================================== */

/* Override old carousel to fullscreen */
.hero-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-section .hero-carousel-track {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-section { min-height: 75vh; }
}

/* Gradient overlay — deep navy left+bottom for text readability */
.hero-overlay-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg,
      rgba(14,36,74,.90) 0%,
      rgba(14,36,74,.70) 32%,
      rgba(14,36,74,.20) 62%,
      transparent 80%
    ),
    linear-gradient(0deg,
      rgba(14,36,74,.82) 0%,
      rgba(14,36,74,.40) 28%,
      transparent 55%
    );
  z-index: 1;
}

/* Hero content positioned over carousel */
.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 0;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 720px;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 90px; /* clear carousel dots + scroll cue */
}

/* Eyebrow badges */
.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.92);
  padding: 7px 16px 7px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}
.hero-badge--b2b {
  background: rgba(232,131,75,.22);
  border-color: rgba(232,131,75,.45);
  color: #FFCBA4;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 0 rgba(244,199,109,.6);
  animation: pulse-dot 1.6s infinite;
  flex-shrink: 0;
}

/* Hero title — large, white */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw + .5rem, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin: 0 0 20px;
  letter-spacing: -.02em;
}
.hero-title .text-accent {
  background: linear-gradient(100deg, var(--color-gold) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero description */
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 12px;
  max-width: 580px;
  line-height: 1.65;
}
.hero-desc--hi {
  font-size: .94rem;
  color: rgba(255,255,255,.60);
  font-style: italic;
}

/* CTA buttons in hero (white background context) */
.hero-section .hero-ctas { margin-top: 32px; }
.hero-section .btn-accent {
  box-shadow: 0 10px 28px rgba(232,131,75,.50);
}
.hero-section .btn-primary {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
  color: #fff;
  box-shadow: none;
}
.hero-section .btn-primary:hover {
  background: rgba(255,255,255,.28);
  box-shadow: none;
}

/* Scroll indicator */
.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-cue-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  animation: bounce-cue 2s ease-in-out infinite;
  color: #fff;
}
.scroll-cue-icon svg { width: 18px; height: 18px; }
@keyframes bounce-cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (max-width: 767px) { .hero-scroll-cue { display: none; } }

/* Carousel dots & arrows — inherit existing but lift z-index */
.hero-section .hero-carousel-arrow { z-index: 3; }
.hero-section .hero-carousel-dots { z-index: 3; }

/* ==========================================================================
   23. HOME REDESIGN — Floating Stats Bar
   ========================================================================== */
.home-stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -44px;
  margin-bottom: 0;
  padding: 0 0 0;
}
.home-stats-bar .container { padding-inline: 20px; }
.stats-inner {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(18,36,74,.16);
  padding: 22px 40px;
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  border: 1px solid var(--color-border);
}
@media (max-width: 767px) {
  .stats-inner {
    flex-wrap: wrap;
    padding: 18px 20px;
    gap: 4px 0;
    border-radius: var(--radius-md);
  }
}
.stat-item {
  flex: 1;
  text-align: center;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .stat-item { flex: 0 0 50%; padding-inline: 12px; padding-block: 10px; }
}
.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.stat-item strong span { color: var(--color-accent); }
.stat-item > span {
  display: block;
  font-size: .72rem;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--color-border);
  flex-shrink: 0;
}
@media (max-width: 767px) { .stat-divider { display: none; } }

/* ==========================================================================
   24. HOME REDESIGN — Why Choose Us (gradient cards)
   ========================================================================== */

/* Override old why-card styles for bolder, more colourful cards */
.why-section { background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%); }

.why-grid { gap: 20px; }

.why-card {
  border-top: none;
  border: none;
  box-shadow: none;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

/* Gradient card themes */
.why-card--slate {
  background: linear-gradient(135deg, #EEF2F9 0%, #DFE8F5 100%);
  border: 1px solid #C8D5EA;
}
.why-card--slate .why-icon { background: #2C4A7F; color: #fff; }
.why-card--slate::after { background: rgba(44,74,127,.06); }

.why-card--clay {
  background: linear-gradient(135deg, #FEF4ED 0%, #FAE8D6 100%);
  border: 1px solid #F0CFB4;
}
.why-card--clay .why-icon { background: #E8834B; color: #fff; }

.why-card--sage {
  background: linear-gradient(135deg, #EDFAF2 0%, #D4F0E2 100%);
  border: 1px solid #A8D9BF;
}
.why-card--sage .why-icon { background: #3D8B5F; color: #fff; }

.why-card--dusk {
  background: linear-gradient(135deg, #F0EEFB 0%, #E0DAFC 100%);
  border: 1px solid #C0B5F0;
}
.why-card--dusk .why-icon { background: #6054C8; color: #fff; }

.why-card--sand {
  background: linear-gradient(135deg, #FBF7ED 0%, #F4EDD5 100%);
  border: 1px solid #DCCF9E;
}
.why-card--sand .why-icon { background: #C9A040; color: #fff; }

/* Shared icon upgrade */
.why-card .why-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.14);
  margin-bottom: 20px;
}
.why-card h3 { font-size: 1.06rem; font-weight: 700; color: var(--color-primary-dark); }
.why-card p { font-size: .92rem; color: var(--color-text-mid); margin-bottom: 0; }

/* Decorative corner accent */
.why-card::before {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  pointer-events: none;
}

/* ==========================================================================
   25. HOME REDESIGN — Products Preview
   ========================================================================== */
.products-home-section { background: var(--color-bg); padding-block: 72px; }

.products-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1023px) { .products-home-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 639px) { .products-home-grid { grid-template-columns: 1fr; } }

.product-home-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
}
.product-home-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-home-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.product-home-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-home-card:hover .product-home-img img { transform: scale(1.07); }
.product-home-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,36,74,.55) 0%, transparent 55%);
}

/* Card colour accent strip */
.product-home-card--chick { border-top: 4px solid var(--color-secondary); }
.product-home-card--egg   { border-top: 4px solid var(--color-accent); }
.product-home-card--feed  { border-top: 4px solid var(--color-gold-dark); }

.product-home-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--color-secondary);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.product-home-badge--new { background: var(--color-gold-dark); }
.product-home-card--egg .product-home-badge { background: var(--color-accent); }

.product-home-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-home-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}
.product-home-body h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}
.product-home-body p {
  font-size: .93rem;
  color: var(--color-text-mid);
  margin-bottom: 18px;
}
.product-home-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--color-border);
}
.product-home-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: .86rem;
}
.product-home-specs li span:first-child { color: var(--color-text-soft); }
.product-home-specs li span:last-child { font-weight: 600; color: var(--color-text); text-align: right; }

.product-home-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .93rem;
  color: var(--color-primary);
  transition: gap .18s ease, color .18s ease;
}
.product-home-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.product-home-link:hover { color: var(--color-primary-dark); }
.product-home-link:hover svg { transform: translateX(4px); }
.product-home-card--egg .product-home-link { color: var(--color-accent-dark); }
.product-home-card--egg .product-home-link:hover { color: var(--color-accent); }
.product-home-card--feed .product-home-link { color: var(--color-gold-dark); }

/* ==========================================================================
   26. HOME REDESIGN — Commitment Section
   ========================================================================== */
.commitment-section {
  padding-block: 80px;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, #E8EFF9 60%, var(--color-secondary-light) 100%);
}

.commitment-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 899px) {
  .commitment-split { grid-template-columns: 1fr; gap: 40px; }
}

.commitment-text { max-width: 520px; }
.commitment-text .section-tag { margin-bottom: 14px; }
.commitment-text h2 { font-size: clamp(1.6rem, 2.5vw + .8rem, 2.25rem); margin-bottom: 20px; }
.commitment-lead {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.72;
  margin-bottom: 14px;
}
.commitment-hi {
  font-size: .93rem;
  color: var(--color-text-soft);
  font-style: italic;
  margin-bottom: 28px;
}
.commitment-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.commitment-visual { position: relative; }
.commitment-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  border: 6px solid rgba(255,255,255,.8);
}
.commitment-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.commitment-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .88rem;
  color: var(--color-secondary-dark);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}
.commitment-img-badge svg {
  width: 20px; height: 20px;
  color: var(--color-gold-dark);
  flex-shrink: 0;
}

/* ==========================================================================
   27. HOME REDESIGN — Trust Strip Upgrade
   ========================================================================== */
.trust-strip {
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, #1A3E70 50%, var(--color-primary-dark) 100%);
  border: none;
}
.trust-strip .container {
  gap: 12px 24px;
  padding-block: 26px;
}
.trust-item {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.88);
  gap: 10px;
  backdrop-filter: blur(4px);
  transition: background .2s ease;
}
.trust-item:hover { background: rgba(255,255,255,.18); }
.trust-item strong { color: var(--color-gold); font-family: var(--font-heading); }
.trust-item .trust-icon { color: var(--color-gold); }

/* ==========================================================================
   28. HOME REDESIGN — Rate Board Upgrade
   ========================================================================== */
.rate-board {
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, #1A3E70 40%, var(--color-primary-dark) 100%);
  border-bottom: 2px solid var(--color-gold-dark);
}
.rate-board::after { display: none; }
.rate-board .container { padding-block: 12px; }
.rate-board-label { color: var(--color-gold); font-size: .82rem; }
.rate-board-label .dot { background: var(--color-gold); }
.rate-item { border-left-color: rgba(255,255,255,.15); }
.rate-item .rate-name { color: rgba(255,255,255,.60); }
.rate-item .rate-value { font-size: 1.25rem; color: var(--color-gold); font-weight: 900; letter-spacing: -.01em; }
.rate-updated {
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 5px;
}
.rate-updated .chakwa-icon { width: 13px; height: 13px; opacity: .65; }
.rate-emoji { font-size: 1.1rem; line-height: 1; }

/* ==========================================================================
   29. HOME REDESIGN — Featured Testimonials background
   ========================================================================== */
.featured-testimonials-strip {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

/* ==========================================================================
   30. HOME REDESIGN — Global: padding tweak after hero
   ============================================================
/* ==========================================================================
   32. BANNER UPGRADE — glass panel, gold accent, dramatic overlay
   ========================================================================== */

/* Stronger, more dramatic overlay — deeper navy left + warm vignette bottom */
.hero-overlay-gradient {
  background:
    linear-gradient(108deg,
      rgba(5,18,55,.96) 0%,
      rgba(8,22,64,.85) 22%,
      rgba(8,22,64,.55) 46%,
      rgba(8,22,64,.10) 64%,
      transparent 78%
    ),
    linear-gradient(0deg,
      rgba(5,14,40,.88) 0%,
      rgba(5,14,40,.50) 20%,
      transparent 45%
    ),
    linear-gradient(180deg,
      rgba(5,14,40,.45) 0%,
      transparent 18%
    );
}

/* Glass content panel behind text */
.hero-content {
  position: relative;
  max-width: 660px;
  padding-top: 48px;
  padding-bottom: 96px;
  padding-left: 28px;
  /* Gold left accent border */
  border-left: 4px solid var(--color-gold);
}

/* Subtle glass glow behind text */
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -28px;
  background: rgba(5,18,55,.28);
  backdrop-filter: blur(1px);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  pointer-events: none;
  z-index: -1;
}

/* Tag line above heading */
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.hero-tagline-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

/* Bigger, more impactful heading */
.hero-title {
  font-size: clamp(2.2rem, 4.8vw + .4rem, 3.8rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}

/* Description — tighter, more readable */
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.68;
  margin-bottom: 8px;
  max-width: 520px;
}
.hero-desc--hi {
  font-size: .88rem;
  color: rgba(255,255,255,.50);
  margin-bottom: 0;
}

/* Better CTA buttons */
.hero-section .hero-ctas {
  margin-top: 30px;
  gap: 16px;
}
.hero-section .btn-accent {
  font-size: 1rem;
  padding: 15px 32px;
  box-shadow: 0 12px 32px rgba(232,131,75,.55);
  letter-spacing: .01em;
}
.hero-section .btn-primary {
  font-size: 1rem;
  padding: 15px 32px;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}
.hero-section .btn-primary:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.7);
}

/* Eye-brow badge polish */
.hero-eyebrow { margin-bottom: 16px; gap: 8px; }
.hero-badge {
  font-size: .72rem;
  padding: 6px 14px 6px 10px;
  letter-spacing: .07em;
}

/* ==========================================================================
   33. WHY CHOOSE US UPGRADE — dark navy, numbered cards, bold layout
   ========================================================================== */

/* Dark background for strong contrast */
.why-section {
  background: linear-gradient(160deg, #061230 0%, #0B1E4A 40%, #0D2255 70%, #061230 100%);
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}

/* Decorative radial glow */
.why-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,199,109,.07) 0%, transparent 68%);
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,139,95,.07) 0%, transparent 68%);
  pointer-events: none;
}

/* Section heading — white on dark */
.why-section .section-head { position: relative; z-index: 1; }
.why-section .section-head h2 { color: #fff; }
.why-section .section-head p { color: rgba(255,255,255,.55); }
.why-section .section-tag {
  background: rgba(244,199,109,.15);
  border: 1px solid rgba(244,199,109,.30);
  color: var(--color-gold);
}

/* Grid — 5 cards, 3 top + 2 bottom centred */
.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 899px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* 4th and 5th card centre themselves on the 2nd row */
.why-card:nth-child(4) { grid-column: 1 / 2; }
.why-card:nth-child(5) { grid-column: 2 / 3; }
@media (max-width: 899px) {
  .why-card:nth-child(4),
  .why-card:nth-child(5) { grid-column: auto; }
}

/* Card redesign — dark glass with coloured left accent */
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-left: 4px solid transparent;
  border-radius: var(--radius-lg);
  padding: 30px 26px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: background .22s ease, transform .22s ease, border-color .22s ease;
  cursor: default;
}
.why-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-5px);
}
.why-card::before { display: none; } /* remove old circle decorator */

/* Coloured left border per theme */
.why-card--slate { border-left-color: #5B8DEF; }
.why-card--clay  { border-left-color: var(--color-accent); }
.why-card--sage  { border-left-color: var(--color-secondary); }
.why-card--dusk  { border-left-color: #9B8BE8; }
.why-card--sand  { border-left-color: var(--color-gold); }

/* Big card number — decorative */
.why-card-number {
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,.05);
  letter-spacing: -.03em;
  pointer-events: none;
  user-select: none;
}

/* Icon — bigger, coloured on dark */
.why-card .why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: none;
}
.why-card--slate .why-icon { background: rgba(91,141,239,.20); color: #8AB4FF; }
.why-card--clay  .why-icon { background: rgba(232,131,75,.20); color: #FFB07C; }
.why-card--sage  .why-icon { background: rgba(61,139,95,.20);  color: #6ECF97; }
.why-card--dusk  .why-icon { background: rgba(155,139,232,.20); color: #C5BFFF; }
.why-card--sand  .why-icon { background: rgba(244,199,109,.20); color: var(--color-gold); }
.why-card .why-icon svg { width: 24px; height: 24px; }

/* Card text — white on dark */
.why-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p {
  font-size: .91rem;
  color: rgba(255,255,255,.58);
  line-height: 1.62;
  margin: 0;
}

/* ==========================================================================
   31. LEGAL CREDENTIALS — bold full-width section above footer (global)
   ========================================================================== */
.legal-section {
  background: linear-gradient(135deg, #0A1F4A 0%, #0E2B5E 40%, #102D60 70%, #0A1F4A 100%) !important;
  position: relative;
  overflow: hidden;
}
.legal-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,199,109,.08) 0%, transparent 70%);
  pointer-events: none;
}
.legal-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,139,95,.10) 0%, transparent 70%);
  pointer-events: none;
}
.legal-section-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 64px 24px;
}
.legal-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.legal-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(244,199,109,.12);
  border: 1px solid rgba(244,199,109,.30);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.legal-section-badge svg {
  width: 15px !important;
  height: 15px !important;
  flex-shrink: 0;
  stroke: var(--color-gold);
}
.legal-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.legal-section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.60);
  margin: 0;
}
.legal-credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) {
  .legal-credentials { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .legal-credentials { grid-template-columns: 1fr; gap: 14px; }
}
.legal-cred-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  backdrop-filter: blur(6px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.legal-cred-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(244,199,109,.35);
  transform: translateY(-3px);
}
.legal-cred-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(244,199,109,.15);
  border: 1px solid rgba(244,199,109,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}
.legal-cred-icon svg {
  width: 22px !important;
  height: 22px !important;
}
.legal-cred-body { min-width: 0; flex: 1; }
.legal-cred-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 5px;
}
.legal-cred-value {
  display: block;
  font-family: var(--font-heading);
  font-size: .93rem;
  font-weight: 700;
  color: #fff;
  overflow-wrap: anywhere;
  line-height: 1.3;
}

/* ==========================================================================
   34. CAROUSEL ARROW FIX — force visible above all hero layers
   ========================================================================== */
.hero-section .hero-carousel-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 20 !important;
  width: 50px !important;
  height: 50px !important;
  background: rgba(255,255,255,.22) !important;
  border: 2px solid rgba(255,255,255,.60) !important;
  backdrop-filter: blur(8px) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  cursor: pointer !important;
  outline: none !important;
  transition: background .2s ease, transform .2s ease !important;
}
.hero-section .hero-carousel-arrow:hover {
  background: rgba(255,255,255,.40) !important;
  transform: translateY(-50%) scale(1.08) !important;
}
.hero-section .hero-carousel-arrow.prev { left: 20px !important; }
.hero-section .hero-carousel-arrow.next { right: 20px !important; }
.hero-section .hero-carousel-arrow .chakwa-icon {
  width: 22px !important;
  height: 22px !important;
  stroke: #fff !important;
  stroke-width: 2.5 !important;
}
@media (max-width: 767px) {
  .hero-section .hero-carousel-arrow { width: 40px !important; height: 40px !important; }
  .hero-section .hero-carousel-arrow.prev { left: 10px !important; }
  .hero-section .hero-carousel-arrow.next { right: 10px !important; }
}

/* ==========================================================================
   35. ABOUT PAGE — full redesign
   ========================================================================== */

/* ── Hero ── */
.about-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg,
      rgba(5,18,55,.96) 0%,
      rgba(8,22,64,.82) 28%,
      rgba(8,22,64,.55) 55%,
      rgba(8,22,64,.20) 78%,
      transparent 100%
    ),
    linear-gradient(0deg,
      rgba(5,14,40,.80) 0%,
      rgba(5,14,40,.35) 28%,
      transparent 55%
    );
}
.about-hero .container {
  position: relative;
  z-index: 1;
  padding-block: 100px 80px;
}
.about-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(244,199,109,.12);
  border: 1px solid rgba(244,199,109,.30);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.about-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.10;
  letter-spacing: -.025em;
  margin: 0 0 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,.30);
}
.about-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 0 0 28px;
  line-height: 1.65;
}
.about-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .80rem;
  font-weight: 600;
  color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.about-hero-badges span svg { stroke: var(--color-gold); flex-shrink: 0; }
.about-hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.30);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  animation: about-bounce 2s ease-in-out infinite;
}
@keyframes about-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 767px) {
  .about-hero { min-height: 80vh; }
  .about-hero .container { padding-block: 80px 60px; }
}

/* ── Stats Bar ── */
.about-stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.about-stats-inner {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(18,36,74,.14);
  border: 1px solid var(--color-border);
  padding: 24px 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.about-stat {
  text-align: center;
  padding: 4px 8px;
}
.about-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat strong small {
  font-size: 1.1rem;
  color: var(--color-accent);
}
.about-stat span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}
.about-stat-div {
  width: 1px; height: 40px;
  background: var(--color-border);
}
@media (max-width: 600px) {
  .about-stats-inner { padding: 18px 20px; }
  .about-stat-div { display: none; }
  .about-stats-inner { justify-content: space-between; }
}

/* ── Story Section ── */
.about-story-section { padding: 80px 0; }
.about-story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-story-split { grid-template-columns: 1fr; gap: 40px; }
}
.about-story-visual { position: relative; }
.about-story-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-story-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-story-img-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: linear-gradient(135deg, var(--color-primary-dark), #0a1f4a);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.30);
}
.about-story-badge-year {
  display: block;
  font-size: .68rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 2px;
}
.about-story-badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.about-story-badge-label {
  display: block;
  font-size: .70rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  white-space: nowrap;
}
.about-story-accent-card {
  position: absolute;
  top: 20px; left: -20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-secondary);
}
.about-story-accent-card strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.about-story-accent-card span {
  display: block;
  font-size: .72rem;
  color: var(--color-text-soft);
}
@media (max-width: 900px) {
  .about-story-accent-card { display: none; }
}
.about-story-text h2 { margin-bottom: 16px; }
.about-story-lead {
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.7;
}
.about-story-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── Vision & Mission ── */
.about-vm-section {
  background: var(--color-bg-alt);
  padding: 80px 0;
}
.about-vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .about-vm-grid { grid-template-columns: 1fr; gap: 18px; }
}
.about-vm-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
  position: relative;
  overflow: hidden;
}
.about-vm-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.about-vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.about-vm-card--vision::before { background: linear-gradient(90deg, var(--color-primary), var(--color-secondary)); }
.about-vm-card--mission::before { background: linear-gradient(90deg, var(--color-secondary), var(--color-accent)); }
.about-vm-card--values::before { background: linear-gradient(90deg, var(--color-accent), var(--color-gold)); }
.about-vm-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.about-vm-card--vision .about-vm-icon { background: var(--color-primary-light); color: var(--color-primary); }
.about-vm-card--mission .about-vm-icon { background: var(--color-secondary-light); color: var(--color-secondary-dark); }
.about-vm-card--values .about-vm-icon { background: var(--color-accent-light); color: var(--color-accent-dark); }
.about-vm-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.about-vm-card p { color: var(--color-text-mid); margin: 0; }

/* ── Product Tiles ── */
.about-products-section { padding: 80px 0; }
.about-products-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .about-products-row { grid-template-columns: 1fr; gap: 18px; }
}
.about-product-tile {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.about-product-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-product-tile--chick {
  background: linear-gradient(145deg, #EEF2FF 0%, #E8EFFE 100%);
  border-color: rgba(44,74,127,.12);
}
.about-product-tile--egg {
  background: linear-gradient(145deg, #FFF8EC 0%, #FFF1D6 100%);
  border-color: rgba(244,199,109,.25);
}
.about-product-tile--feed {
  background: linear-gradient(145deg, #F0F7F3 0%, #E5F2EA 100%);
  border-color: rgba(61,139,95,.15);
}
.about-product-tile-icon {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 16px;
}
.about-product-tile h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}
.about-product-tile p {
  font-size: .95rem;
  color: var(--color-text-mid);
  margin-bottom: 18px;
}
.about-product-tile-link {
  display: inline-flex;
  align-items: center;
  font-size: .88rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: gap .2s ease, color .2s ease;
  gap: 4px;
}
.about-product-tile--egg .about-product-tile-link { color: var(--color-gold-dark); }
.about-product-tile--feed .about-product-tile-link { color: var(--color-secondary-dark); }
.about-product-tile-link:hover { gap: 8px; }

/* ── Legal Section ── */
.about-legal-section {
  background: linear-gradient(135deg, #0A1F4A 0%, #0E2B5E 50%, #0A1F4A 100%);
  padding: 80px 0;
}
.about-legal-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-legal-inner { grid-template-columns: 1fr; gap: 40px; }
}
.about-legal-left .section-tag {
  background: rgba(244,199,109,.15);
  color: var(--color-gold);
  border: 1px solid rgba(244,199,109,.25);
}
.about-legal-left h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 14px;
}
.about-legal-left p {
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
  font-size: 1rem;
}
.about-legal-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) {
  .about-legal-right { grid-template-columns: 1fr; }
}
.about-legal-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  backdrop-filter: blur(6px);
  transition: background .2s ease, border-color .2s ease;
}
.about-legal-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(244,199,109,.30);
}
.about-legal-card-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(244,199,109,.15);
  border: 1px solid rgba(244,199,109,.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
}
.about-legal-card-label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
  margin-bottom: 4px;
}
.about-legal-card-val {
  display: block;
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  overflow-wrap: anywhere;
}

/* ── CTA Strip ── */
.about-cta-strip {
  background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary-light) 100%);
  padding: 64px 0;
  border-top: 1px solid var(--color-border);
}
.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.about-cta-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--color-primary-dark);
  margin: 0 0 8px;
}
.about-cta-text p {
  color: var(--color-text-mid);
  margin: 0;
}
.about-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ==========================================================================
   36. SHARED PAGE HERO (Products + Trading Desk)
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg,
      rgba(5,18,55,.95) 0%,
      rgba(8,22,64,.80) 30%,
      rgba(8,22,64,.45) 58%,
      transparent 82%
    ),
    linear-gradient(0deg,
      rgba(5,14,40,.75) 0%,
      transparent 45%
    );
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding-block: 90px 70px;
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(244,199,109,.12);
  border: 1px solid rgba(244,199,109,.30);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.page-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 0 0 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 540px;
  margin: 0 0 28px;
  line-height: 1.65;
}
.page-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.80);
}
/* Trading desk hero pills */
.td-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.td-hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .80rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.td-hero-pills span svg { stroke: var(--color-gold); flex-shrink: 0; }

/* ==========================================================================
   37. PRODUCTS PAGE
   ========================================================================== */

/* Quick bar */
.products-quick-bar {
  position: relative;
  z-index: 10;
  margin-top: -38px;
  margin-bottom: 0;
}
.products-quick-inner {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(18,36,74,.14);
  border: 1px solid var(--color-border);
  padding: 20px 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.products-quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pqi-emoji {
  font-size: 2rem;
  line-height: 1;
}
.products-quick-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.products-quick-item span {
  display: block;
  font-size: .75rem;
  color: var(--color-text-soft);
}
.pqi-div { width: 1px; height: 40px; background: var(--color-border); }

/* Products section */
.products-section { padding: 72px 0 60px; }
.products-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .products-full-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Product card */
.pf-card {
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease;
}
.pf-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

/* Top border accent */
.pf-card--blue  { border-top: 3px solid var(--color-primary); }
.pf-card--gold  { border-top: 3px solid var(--color-gold-dark); }
.pf-card--green { border-top: 3px solid var(--color-secondary); }

.pf-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.pf-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.pf-card:hover .pf-card-img img { transform: scale(1.06); }
.pf-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,30,70,.50) 0%, transparent 55%);
}
.pf-mode-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.pf-mode-badge--buysell {
  background: rgba(244,199,109,.95);
  color: #3a2800;
}
.pf-mode-badge--sell {
  background: rgba(61,139,95,.90);
  color: #fff;
}
.pf-emoji-badge {
  position: absolute;
  bottom: 14px; right: 14px;
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.30));
}
.pf-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pf-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 10px;
}
.pf-card-desc {
  font-size: .93rem;
  color: var(--color-text-mid);
  margin: 0 0 16px;
  line-height: 1.6;
}
.pf-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.pf-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  gap: 8px;
  border-bottom: 1px solid var(--color-border);
}
.pf-spec-row:last-child { border-bottom: none; }
.pf-spec-row:nth-child(odd) { background: var(--color-bg-alt); }
.pf-spec-label {
  font-size: .80rem;
  color: var(--color-text-soft);
  font-weight: 500;
}
.pf-spec-value {
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}
.pf-pending {
  font-size: .80rem;
  font-style: italic;
  color: var(--color-text-soft);
  background: var(--color-bg-alt);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  border: 1px dashed var(--color-border);
}
.pf-card-ctas {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* How We Work */
.how-we-work-section {
  background: linear-gradient(160deg, #061230 0%, #0e2b5e 50%, #061230 100%);
  padding: 80px 0;
}
.how-we-work-section .section-tag {
  background: rgba(244,199,109,.15);
  color: var(--color-gold);
  border: 1px solid rgba(244,199,109,.25);
}
.how-we-work-section h2,
.how-we-work-section .section-head p { color: rgba(255,255,255,.80); }
.how-we-work-section h2 { color: #fff; }
.hww-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hww-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 10px 16px;
}
.hww-step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,.07);
  line-height: 1;
  margin-bottom: -10px;
}
.hww-step-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-gold);
}
.hww-step h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.hww-step p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.hww-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(244,199,109,.30), rgba(244,199,109,.60));
  margin-top: 52px;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .hww-connector { display: none; }
  .hww-steps { gap: 20px; }
  .hww-step { min-width: calc(50% - 20px); }
}

/* Quality Promise Strip */
.quality-promise-strip {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 64px 0;
}
.qps-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.qps-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--color-primary-dark);
  margin: 0 0 10px;
  line-height: 1.25;
}
.qps-text p { margin: 0; color: var(--color-text-mid); }
.qps-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1EBE57);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(37,211,102,.30);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover { box-shadow: 0 12px 32px rgba(37,211,102,.45); }

/* ==========================================================================
   38. TRADING DESK PAGE
   ========================================================================== */

/* Alerts */
.td-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  font-size: .95rem;
}
.td-alert--success {
  background: var(--color-secondary-light);
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary-dark);
}
.td-alert--error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #B91C1C;
}
.td-alert svg { flex-shrink: 0; margin-top: 2px; }
.td-alert strong { display: block; font-weight: 700; margin-bottom: 2px; }

/* Form section */
.td-form-section {
  padding: 64px 0 72px;
  background: var(--color-bg);
}

/* Two-column layout */
.td-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: flex-start;
}
@media (max-width: 1080px) {
  .td-layout { grid-template-columns: 1fr; }
}

/* Tabs */
.td-tabs {
  display: flex;
  gap: 0;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 5px;
  margin-bottom: 24px;
  width: fit-content;
}
.td-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .92rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: calc(var(--radius-md) - 2px);
  border: none;
  background: transparent;
  color: var(--color-text-mid);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.td-tab.is-active {
  background: var(--color-surface);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
}
.td-panel { display: none; }
.td-panel.is-active { display: block; }

/* Form card */
.td-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.td-form-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.td-form-header-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.td-form-header-icon--buy {
  background: var(--color-primary-light);
  color: var(--color-primary);
}
.td-form-header-icon--sell {
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
}
.td-form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 4px;
}
.td-form-sub {
  font-size: .90rem;
  color: var(--color-text-soft);
  margin: 0;
}
.td-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .td-form-grid { grid-template-columns: 1fr; }
}
.td-field { display: flex; flex-direction: column; gap: 6px; }
.td-field--full { grid-column: 1 / -1; }
.td-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: .01em;
}
.td-req { color: var(--color-accent); }
.td-field input,
.td-field textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.td-field input:focus,
.td-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(44,74,127,.10);
  background: var(--color-surface);
}
.td-field input::placeholder,
.td-field textarea::placeholder { color: var(--color-text-soft); }
.td-field textarea { resize: vertical; min-height: 80px; }
.td-submit {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Sidebar */
.td-sidebar { display: flex; flex-direction: column; gap: 20px; }
.td-sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}
.td-sidebar-card--whatsapp {
  background: linear-gradient(135deg, #F0FFF6 0%, #E6FFF0 100%);
  border-color: rgba(37,211,102,.25);
}
.td-sidebar-card--rates { padding-top: 20px; }
.td-sidebar-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.25);
  display: flex; align-items: center; justify-content: center;
  color: #1EBE57;
  margin-bottom: 14px;
}
.td-sidebar-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 8px;
}
.td-sidebar-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}
.td-sidebar-card p {
  font-size: .88rem;
  color: var(--color-text-mid);
  margin: 0 0 16px;
}
.td-rates-note {
  font-size: .75rem;
  color: var(--color-text-soft);
  margin-bottom: 12px !important;
}
.td-why-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.td-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--color-text-mid);
}
.td-why-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--color-secondary);
}

/* Logistics */
.td-logistics-section {
  background: var(--color-bg-alt);
  padding: 72px 0;
  border-top: 1px solid var(--color-border);
}
.td-logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .td-logistics-grid { grid-template-columns: 1fr; gap: 18px; }
}
.td-logistics-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.td-logistics-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.td-logistics-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.td-logistics-card--blue::before  { background: linear-gradient(90deg, var(--color-primary), #4a7ab5); }
.td-logistics-card--green::before { background: linear-gradient(90deg, var(--color-secondary), #5aaa7a); }
.td-logistics-card--gold::before  { background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold)); }
.td-logistics-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.td-logistics-card--blue  .td-logistics-icon { background: var(--color-primary-light); color: var(--color-primary); }
.td-logistics-card--green .td-logistics-icon { background: var(--color-secondary-light); color: var(--color-secondary-dark); }
.td-logistics-card--gold  .td-logistics-icon { background: #FFF8E8; color: var(--color-gold-dark); }
.td-logistics-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 10px;
}
.td-logistics-card p {
  font-size: .90rem;
  color: var(--color-text-mid);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   39. GALLERY PAGE
   ========================================================================== */
.gallery-section { padding: 60px 0 48px; }

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.gallery-filter-btn {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-mid);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.gallery-filter-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.gallery-filter-btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Masonry-style grid */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
@media (max-width: 1023px) { .gallery-masonry { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } }

.gallery-item-new {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-alt);
}
.gallery-item-new--big {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item-new img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item-new:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,18,55,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.gallery-item-new:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.gallery-item-cat {
  font-size: .72rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.gallery-notice {
  text-align: center;
  font-size: .82rem;
  color: var(--color-text-soft);
  margin-top: 18px;
  font-style: italic;
}

/* Gallery CTA strip */
.gallery-cta-strip {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 56px 0;
}
.gallery-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.gallery-cta-inner h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin: 0 0 6px; }
.gallery-cta-inner p { margin: 0; color: var(--color-text-mid); }
.gallery-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ==========================================================================
   40. TESTIMONIALS PAGE
   ========================================================================== */

/* Stats bar */
.testimonials-stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -38px;
  margin-bottom: 0;
}
.testi-stats-inner {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(18,36,74,.14);
  border: 1px solid var(--color-border);
  padding: 22px 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.testi-stat { text-align: center; padding: 4px 8px; }
.testi-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.testi-stat span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}
.testi-stat-div { width: 1px; height: 38px; background: var(--color-border); }

.testimonials-section { padding: 64px 0; }
.testimonial-grid--full { margin-top: 0; }

/* Hero review count pill */
.page-hero-review-count {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(244,199,109,.15);
  border: 1px solid rgba(244,199,109,.35);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}
.testimonials-cta-strip {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 60px 0;
}

/* ==========================================================================
   41. KNOWLEDGE HUB PAGE
   ========================================================================== */

/* Topics bar */
.kh-topics-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
  position: sticky;
  top: var(--header-height);
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.kh-topics-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.kh-topics-label {
  font-size: .80rem;
  font-weight: 700;
  color: var(--color-text-soft);
  margin-right: 4px;
  white-space: nowrap;
}
.kh-topic-pill {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-mid);
  background: transparent;
  transition: all .15s ease;
  white-space: nowrap;
}
.kh-topic-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.kh-topic-pill--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Articles grid */
.kh-articles-section { padding: 60px 0; }
.kh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1023px) { .kh-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .kh-grid { grid-template-columns: 1fr; gap: 20px; } }

/* Featured card spans full width on first item */
.kh-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 640px) { .kh-card--featured { grid-template-columns: 1fr; } }

.kh-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.kh-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.kh-card-img {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.kh-card:not(.kh-card--featured) .kh-card-img { aspect-ratio: 16/10; }
.kh-card--featured .kh-card-img { min-height: 280px; }
.kh-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.kh-card:hover .kh-card-img img { transform: scale(1.05); }
.kh-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,30,70,.45) 0%, transparent 55%);
}
.kh-featured-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--color-gold);
  color: #2a1a00;
  font-size: .70rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.kh-card-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.kh-card--featured .kh-card-body {
  padding: 32px 28px;
  justify-content: center;
}
.kh-card-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.kh-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--color-text-soft);
}
.kh-meta-item svg { stroke: var(--color-text-soft); flex-shrink: 0; }
.kh-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 10px;
  line-height: 1.35;
}
.kh-card--featured .kh-card-title { font-size: 1.4rem; }
.kh-card-title a { color: inherit; }
.kh-card-title a:hover { color: var(--color-primary); }
.kh-card-excerpt {
  font-size: .90rem;
  color: var(--color-text-mid);
  margin: 0 0 18px;
  line-height: 1.6;
  flex: 1;
}
.kh-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: gap .2s ease;
  margin-top: auto;
}
.kh-read-more:hover { gap: 10px; color: var(--color-primary-dark); }

/* Notify strip */
.kh-notify-strip {
  background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary-light) 100%);
  border-top: 1px solid var(--color-border);
  padding: 52px 0;
}
.kh-notify-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.kh-notify-icon {
  width: 64px; height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-primary-light);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
}
.kh-notify-text { flex: 1; min-width: 220px; }
.kh-notify-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 5px;
}
.kh-notify-text p { color: var(--color-text-mid); margin: 0; }

/* ==========================================================================
   42. CONTACT PAGE
   ========================================================================== */

/* Quick channels bar */
.contact-channels-bar {
  position: relative;
  z-index: 10;
  margin-top: -38px;
  margin-bottom: 0;
}
.contact-channels-inner {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(18,36,74,.14);
  border: 1px solid var(--color-border);
  padding: 22px 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: opacity .15s ease;
}
.contact-channel-item:hover { opacity: .80; }
.contact-channel-item--muted { cursor: default; opacity: .65; }
.contact-channel-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-channel-icon--blue  { background: var(--color-primary-light);  color: var(--color-primary); }
.contact-channel-icon--green { background: var(--color-secondary-light); color: #1EBE57; }
.contact-channel-icon--gold  { background: #FFF8E8; color: var(--color-gold-dark); }
.contact-channel-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 2px;
}
.contact-channel-val {
  display: block;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.contact-channel-div { width: 1px; height: 40px; background: var(--color-border); }
@media (max-width: 767px) {
  .contact-channels-inner { padding: 18px 20px; }
  .contact-channel-div { display: none; }
}

/* Main section */
.contact-main-section { padding: 64px 0 72px; }
.contact-main-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  margin-bottom: 48px;
  align-items: flex-start;
}
@media (max-width: 960px) { .contact-main-layout { grid-template-columns: 1fr; } }

/* Form card — reuses .td-form-card styles */
.contact-form-wrap .td-form-card { background: var(--color-surface); }
.contact-form-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border);
}
.contact-form-header-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
}
.contact-form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 4px;
}
.contact-form-sub { font-size: .90rem; color: var(--color-text-soft); margin: 0; }

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }
.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
}
.contact-info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon--blue  { background: var(--color-primary-light);  color: var(--color-primary); }
.contact-info-icon--green { background: var(--color-secondary-light); color: var(--color-secondary-dark); }
.contact-info-icon--gold  { background: #FFF8E8; color: var(--color-gold-dark); }
.contact-info-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin: 0 0 4px;
}
.contact-info-val {
  font-size: .92rem;
  color: var(--color-text);
  margin: 0;
  line-height: 1.5;
}
.contact-sidebar-cta {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #e8f0fb 100%);
  border: 1px solid rgba(44,74,127,.12);
  border-radius: var(--radius-md);
  padding: 20px 18px;
}
.contact-sidebar-cta h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 6px;
}
.contact-sidebar-cta p { font-size: .88rem; color: var(--color-text-mid); margin: 0 0 14px; }

/* Map */
.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.contact-map-wrap iframe {
  width: 100%; height: 420px;
  display: block; border: 0;
}
.contact-map-placeholder {
  height: 280px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-text-soft);
  background: var(--color-bg-alt);
}
.contact-map-placeholder p { margin: 0; font-size: .88rem; text-align: center; max-width: 300px; }

/* ==========================================================================
   43. SHARED: COMING SOON MODERN
   ========================================================================== */
.coming-soon-modern {
  text-align: center;
  padding: 72px 24px;
  max-width: 560px;
  margin-inline: auto;
}
.csm-icon { font-size: 4rem; line-height: 1; margin-bottom: 20px; }
.coming-soon-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 12px;
}
.coming-soon-modern p {
  color: var(--color-text-mid);
  font-size: 1rem;
  margin: 0 0 28px;
  line-height: 1.65;
}

/* ==========================================================================
   44. KNOWLEDGE HUB v2 — Featured article + card grid
   ========================================================================== */

.kh-article-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.kh-article-count svg { stroke: var(--color-gold); flex-shrink: 0; }

/* Featured Article */
.kh-featured-article {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .kh-featured-article { grid-template-columns: 1fr; }
}
.kh-fa-img {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: var(--color-bg-alt);
}
.kh-fa-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.kh-featured-article:hover .kh-fa-img img { transform: scale(1.04); }
.kh-fa-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,18,55,.30) 0%, transparent 60%);
}
.kh-fa-badge {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-gold);
  color: #2a1a00;
  font-size: .70rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.kh-fa-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) { .kh-fa-body { padding: 24px 22px; } }
.kh-fa-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.kh-fa-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 14px;
  color: var(--color-primary-dark);
}
.kh-fa-title a { color: inherit; }
.kh-fa-title a:hover { color: var(--color-primary); }
.kh-fa-excerpt {
  font-size: 1rem;
  color: var(--color-text-mid);
  line-height: 1.65;
  margin: 0 0 24px;
  flex: 1;
}
.kh-fa-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .92rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-light);
  border: 1.5px solid rgba(44,74,127,.15);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  transition: background .2s ease, gap .2s ease;
  width: fit-content;
}
.kh-fa-cta:hover { background: rgba(44,74,127,.12); gap: 12px; }

/* Cards grid */
.kh-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .kh-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .kh-grid-v2 { grid-template-columns: 1fr; gap: 18px; } }

.kh-card-v2 {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.kh-card-v2:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.kh-cv2-img {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--color-bg-alt);
}
.kh-cv2-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.kh-card-v2:hover .kh-cv2-img img { transform: scale(1.06); }

.kh-cv2-body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.kh-cv2-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.kh-cv2-tag {
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.kh-cv2-date {
  font-size: .75rem;
  color: var(--color-text-soft);
}
.kh-cv2-title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--color-primary-dark);
}
.kh-cv2-title a { color: inherit; }
.kh-cv2-title a:hover { color: var(--color-primary); }
.kh-cv2-excerpt {
  font-size: .88rem;
  color: var(--color-text-mid);
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}
.kh-cv2-readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: gap .18s ease;
  margin-top: auto;
}
.kh-cv2-readmore:hover { gap: 9px; }

/* ==========================================================================
   45. SINGLE ARTICLE PAGE
   ========================================================================== */

/* Hero */
.article-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 0;
}
.article-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.article-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.article-hero-bg--fallback {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0e2b5e 100%);
}
.article-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg,
      rgba(5,12,40,.97) 0%,
      rgba(5,12,40,.80) 28%,
      rgba(5,12,40,.45) 60%,
      rgba(5,12,40,.15) 85%,
      transparent 100%
    );
}
.article-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 52px;
  width: 100%;
}
.article-hero-content { max-width: 820px; }

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
  transition: color .15s ease;
}
.article-back-link:hover { color: var(--color-gold); }
.article-back-link svg { stroke: currentColor; }

.article-hero-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.article-cat-pill {
  font-family: var(--font-heading);
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(244,199,109,.15);
  border: 1px solid rgba(244,199,109,.30);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  transition: background .15s ease;
}
.article-cat-pill:hover { background: rgba(244,199,109,.25); color: var(--color-gold); }

.article-hero-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.30);
}
.article-hero-summary {
  font-size: 1.08rem;
  color: rgba(255,255,255,.70);
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 660px;
}
.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: rgba(255,255,255,.60);
  font-weight: 500;
}
.article-meta-item svg { stroke: rgba(255,255,255,.50); flex-shrink: 0; }

/* Progress bar */
.article-progress-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  height: 3px;
  background: var(--color-border);
}
.article-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: width .1s linear;
}

/* Layout */
.article-body-wrap { padding: 56px 0 64px; background: var(--color-bg); }
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 1024px) { .article-layout { grid-template-columns: 1fr; gap: 40px; } }

/* Article content / prose */
.article-content.prose {
  font-size: 1.05rem;
  line-height: 1.80;
  color: var(--color-text);
}
.article-content.prose h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 2em 0 .6em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
}
.article-content.prose h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 1.5em 0 .5em;
}
.article-content.prose h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 1.2em 0 .4em;
}
.article-content.prose p {
  color: var(--color-text);
  font-size: 1.05rem;
  margin: 0 0 1.1em;
}
.article-content.prose ul,
.article-content.prose ol {
  margin: 0 0 1.2em;
  padding-left: 1.5em;
}
.article-content.prose li {
  margin-bottom: .45em;
  color: var(--color-text);
  font-size: 1.03rem;
}
.article-content.prose strong { color: var(--color-primary-dark); font-weight: 700; }
.article-content.prose a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.article-content.prose a:hover { color: var(--color-primary-dark); }
.article-content.prose blockquote {
  border-left: 4px solid var(--color-primary);
  margin: 1.5em 0;
  padding: 16px 20px;
  background: var(--color-primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--color-text-mid);
}
.article-content.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: .95rem;
}
.article-content.prose th {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}
.article-content.prose td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.article-content.prose tr:nth-child(even) td { background: var(--color-bg-alt); }
.article-content.prose img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-block: 1.5em;
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.article-tags-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-right: 4px;
}
.article-tag-pill {
  font-size: .75rem;
  font-weight: 600;
  color: var(--color-text-mid);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  transition: border-color .15s ease, color .15s ease;
}
.article-tag-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* Share strip */
.article-share-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.article-share-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--color-text-soft);
  margin-right: 4px;
}
.article-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: opacity .15s ease;
}
.article-share-btn:hover { opacity: .82; }
.article-share-btn--wa { background: #25D366; color: #fff; }
.article-share-btn--fb { background: #1877F2; color: #fff; }

/* Sidebar cards */
.article-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--header-height) + 16px); }
.article-sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.article-sidebar-card--cta {
  background: linear-gradient(135deg, #0A1F4A 0%, #0E2B5E 100%);
  border-color: transparent;
  text-align: center;
}
.asc-cta-icon { font-size: 2.5rem; line-height: 1; margin-bottom: 12px; }
.article-sidebar-card--cta h3 { color: #fff; font-size: 1rem; margin: 0 0 8px; }
.article-sidebar-card--cta p { color: rgba(255,255,255,.60); font-size: .85rem; margin: 0 0 16px; }

.article-sidebar-card--wa {
  background: linear-gradient(135deg, #F0FFF6 0%, #E6FFF0 100%);
  border-color: rgba(37,211,102,.20);
}
.asc-wa-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(37,211,102,.15);
  display: flex; align-items: center; justify-content: center;
  color: #1EBE57;
  margin-bottom: 12px;
}
.article-sidebar-card--wa h3 { font-size: 1rem; color: var(--color-primary-dark); margin: 0 0 6px; }
.article-sidebar-card--wa p { font-size: .85rem; color: var(--color-text-mid); margin: 0 0 14px; }

.asc-related-title {
  font-size: .90rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-soft);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.asc-related-list { display: flex; flex-direction: column; gap: 12px; }
.asc-related-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: opacity .15s ease;
}
.asc-related-item:hover { opacity: .80; }
.asc-related-thumb {
  width: 60px; height: 50px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg-alt);
}
.asc-related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.asc-related-info { flex: 1; }
.asc-related-name {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 3px;
}
.asc-related-meta {
  display: block;
  font-size: .72rem;
  color: var(--color-text-soft);
}

/* Related section at bottom */
.article-related-section {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 64px 0;
}

/* ==========================================================================
   46. WHY CHOOSE US — LIGHT REDESIGN (overrides section 33 dark version)
   ========================================================================== */

/* Light background */
.why-section {
  background: #F8FAFD !important;
  padding-block: 80px !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Subtle decorative circles */
.why-section::before {
  content: '' !important;
  position: absolute !important;
  top: -100px; right: -80px !important;
  width: 420px; height: 420px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(44,74,127,.05) 0%, transparent 70%) !important;
  pointer-events: none !important;
}
.why-section::after {
  content: '' !important;
  position: absolute !important;
  bottom: -60px; left: 5% !important;
  width: 300px; height: 300px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(61,139,95,.06) 0%, transparent 70%) !important;
  pointer-events: none !important;
}

/* Section heading */
.why-section .section-head h2 { color: var(--color-primary-dark) !important; }
.why-section .section-head p  { color: var(--color-text-mid) !important; }
.why-section .section-tag {
  background: var(--color-primary-light) !important;
  border: none !important;
  color: var(--color-primary) !important;
}

/* Cards — white with subtle shadow */
.why-card {
  background: var(--color-surface) !important;
  border: 1px solid var(--color-border) !important;
  border-left: 4px solid transparent !important;
  border-radius: var(--radius-lg) !important;
  padding: 28px 24px 26px 26px !important;
  box-shadow: 0 2px 12px rgba(44,74,127,.06) !important;
  transition: box-shadow .22s ease, transform .22s ease, border-left-color .22s ease !important;
}
.why-card:hover {
  background: var(--color-surface) !important;
  box-shadow: 0 8px 32px rgba(44,74,127,.12) !important;
  transform: translateY(-5px) !important;
}

/* Coloured left borders — same palette, just on white now */
.why-card--slate { border-left-color: var(--color-primary) !important; }
.why-card--clay  { border-left-color: var(--color-accent) !important; }
.why-card--sage  { border-left-color: var(--color-secondary) !important; }
.why-card--dusk  { border-left-color: #7B6BE0 !important; }
.why-card--sand  { border-left-color: var(--color-gold-dark) !important; }

/* Icon circle — pastel bg, coloured icon */
.why-card .why-icon,
.why-card--slate .why-icon,
.why-card--clay  .why-icon,
.why-card--sage  .why-icon,
.why-card--dusk  .why-icon,
.why-card--sand  .why-icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 18px !important;
  flex-shrink: 0 !important;
}
.why-card--slate .why-icon { background: #EEF3FF !important; color: var(--color-primary) !important; }
.why-card--clay  .why-icon { background: #FEF3EC !important; color: var(--color-accent-dark) !important; }
.why-card--sage  .why-icon { background: #EAF5EE !important; color: var(--color-secondary-dark) !important; }
.why-card--dusk  .why-icon { background: #F0EEF9 !important; color: #5E4ECC !important; }
.why-card--sand  .why-icon { background: #FBF6E8 !important; color: var(--color-gold-dark) !important; }
.why-card .why-icon svg { width: 22px !important; height: 22px !important; }

/* Card number — subtle dark watermark */
.why-card-number {
  color: rgba(44,74,127,.05) !important;
}

/* Text */
.why-card h3 { color: var(--color-primary-dark) !important; font-size: 1.05rem !important; font-weight: 700 !important; margin-bottom: 8px !important; }
.why-card p  { color: var(--color-text-mid) !important; font-size: .92rem !important; }

/* ==========================================================================
   47. HERO OVERLAY FIX — remove harsh half-split, full-width natural overlay
   ========================================================================== */
.hero-overlay-gradient {
  background:
    linear-gradient(
      to right,
      rgba(5,14,40,.88) 0%,
      rgba(5,14,40,.70) 40%,
      rgba(5,14,40,.45) 65%,
      rgba(5,14,40,.25) 85%,
      rgba(5,14,40,.15) 100%
    ),
    linear-gradient(
      to top,
      rgba(5,14,40,.75) 0%,
      rgba(5,14,40,.30) 30%,
      transparent 60%
    ) !important;
  z-index: 1 !important;
}

/* ==========================================================================
   48. HERO UNIFIED LOOK — remove glass panel & left border, full merge
   ========================================================================== */
.hero-content {
  border-left: none !important;
  padding-left: 0 !important;
}
.hero-content::before {
  display: none !important;
}

/* ==========================================================================
   49. WHY CHOOSE US — wider cards, tighter gap
   ========================================================================== */
.why-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
}
.why-card:nth-child(4) { grid-column: 1 / 2 !important; }
.why-card:nth-child(5) { grid-column: 2 / 3 !important; }
@media (max-width: 899px) {
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .why-card:nth-child(4),
  .why-card:nth-child(5) { grid-column: auto !important; }
}
@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr !important; }
}

/* ==========================================================================
   50. TESTIMONIAL CAROUSEL (tc-*)
   ========================================================================== */
.tc-section { padding-block: 80px; background: var(--color-bg-alt); }
.tc-carousel {
  position: relative;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 56px;
}
.tc-track {
  display: flex;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
}
.tc-slide { min-width: 100%; box-sizing: border-box; padding: 0 4px; }
.tc-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: 0 4px 28px rgba(0,0,0,.07);
  text-align: center;
}
.tc-quote-icon { margin-bottom: 18px; opacity: .18; }
.tc-text {
  font-size: 1.13rem;
  line-height: 1.72;
  color: var(--color-text);
  margin-bottom: 18px;
  font-style: italic;
}
.tc-stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 22px;
}
.tc-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.tc-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tc-name { font-weight: 700; font-size: 1rem; color: var(--color-heading); }
.tc-location { font-size: .85rem; color: var(--color-text-muted); margin-top: 2px; }

/* Arrows */
.tc-arrow {
  position: absolute;
  top: 50%; transform: translateY(-60%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  z-index: 5;
}
.tc-arrow:hover { background: var(--color-primary); color: #fff; }
.tc-prev { left: -22px; }
.tc-next { right: -22px; }

/* Dots */
.tc-dots {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
}
.tc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.18);
  cursor: pointer;
  transition: background .2s, width .2s;
  padding: 0;
}
.tc-dot--active { background: var(--color-primary); width: 22px; border-radius: 4px; }

/* Full-page variant — wider card */
.tc-carousel--page { max-width: 900px; }
.tc-carousel--page .tc-prev { left: -24px; }
.tc-carousel--page .tc-next { right: -24px; }

@media (max-width: 700px) {
  .tc-card { padding: 28px 20px; }
  .tc-prev { left: 2px; }
  .tc-next { right: 2px; }
  .tc-carousel--page .tc-prev { left: 2px; }
  .tc-carousel--page .tc-next { right: 2px; }
}

/* ==========================================================================
   51. TESTIMONIAL CAROUSEL v2 — dark bg, 3-up fade approach (tc2-*)
   ========================================================================== */
.tc2-section {
  background: linear-gradient(135deg, #0a1628 0%, #0f2347 50%, #0a1628 100%);
  padding-block: 90px;
  position: relative;
  overflow: hidden;
}
.tc2-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,131,75,.12) 0%, transparent 70%);
  pointer-events: none;
}
.tc2-inner { max-width: 860px; margin: 0 auto; padding-inline: 24px; }
.tc2-header { text-align: center; margin-bottom: 52px; }
.tc2-header .section-tag { background: rgba(232,131,75,.18); color: var(--color-accent); }
.tc2-header h2 { color: #fff; margin-top: 10px; }

/* Track — fade crossfade carousel */
.tc2-carousel { position: relative; }
.tc2-track { position: relative; min-height: 280px; }
.tc2-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.tc2-slide--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* Card */
.tc2-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 44px 48px;
  backdrop-filter: blur(10px);
  text-align: center;
}
.tc2-card-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.tc2-qmark { color: var(--color-accent); opacity: .5; flex-shrink: 0; }
.tc2-stars { color: #f5a623; font-size: 1.3rem; letter-spacing: 3px; }
.tc2-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,.88);
  font-style: italic;
  margin-bottom: 32px;
}
.tc2-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.tc2-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tc2-author-info strong { display: block; color: #fff; font-size: 1rem; font-weight: 700; }
.tc2-author-info span  { font-size: .85rem; color: rgba(255,255,255,.5); margin-top: 2px; display: block; }

/* Controls */
.tc2-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.tc2-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: transparent;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.tc2-btn:hover { background: var(--color-accent); border-color: var(--color-accent); }
.tc2-dots { display: flex; gap: 8px; align-items: center; }
.tc2-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: background .25s, width .25s;
  display: inline-block;
}
.tc2-dot--on { background: var(--color-accent); width: 24px; border-radius: 4px; }

@media (max-width: 600px) {
  .tc2-card { padding: 30px 22px; }
  .tc2-text { font-size: 1rem; }
}

/* ==========================================================================
   52. TESTIMONIALS PAGE — Review card grid (rv-grid / rv-card)
   ========================================================================== */
.testimonials-section { padding-block: 72px; background: var(--color-bg); }

.rv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.rv-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  padding: 28px 26px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rv-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); transform: translateY(-3px); }

/* Top row: avatar + name/location + rating badge */
.rv-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.rv-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rv-info { flex: 1; min-width: 0; }
.rv-name { font-weight: 700; font-size: .97rem; color: var(--color-heading); line-height: 1.3; }
.rv-location {
  font-size: .8rem;
  color: var(--color-text-muted);
  margin-top: 3px;
  display: flex; align-items: center; gap: 4px;
}
.rv-badge {
  background: var(--color-accent);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Stars */
.rv-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Quote text */
.rv-text {
  font-size: .93rem;
  line-height: 1.68;
  color: var(--color-text);
  font-style: italic;
  flex: 1;
  margin-bottom: 16px;
}

/* Verified badge */
.rv-verified {
  font-size: .78rem;
  color: #22863a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.06);
}

@media (max-width: 600px) {
  .rv-grid { grid-template-columns: 1fr; }
  .rv-card { padding: 22px 18px 18px; }
}

/* ==========================================================================
   53. WHY CHOOSE US — wider cards, tighter gap (final override)
   ========================================================================== */
.why-section .why-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
}
.why-section .why-card {
  width: 100% !important;
  max-width: none !important;
  flex-basis: unset !important;
  min-width: 0 !important;
}
.why-section .why-card:nth-child(4) { grid-column: 1 / 2 !important; }
.why-section .why-card:nth-child(5) { grid-column: 2 / 3 !important; }
@media (max-width: 899px) {
  .why-section .why-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .why-section .why-card:nth-child(4),
  .why-section .why-card:nth-child(5) { grid-column: auto !important; }
}
@media (max-width: 540px) {
  .why-section .why-grid { grid-template-columns: 1fr !important; }
}

/* ==========================================================================
   Mobile header optimisation  (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {

  /* ── Topbar: hide CIN, shrink padding ── */
  .topbar-right { display: none; }
  .site-topbar .container { padding-block: 6px; gap: 8px; }
  .topbar-left { gap: 14px; flex-wrap: nowrap; }
  .site-topbar { font-size: .75rem; }
  .site-topbar .chakwa-icon { width: 13px; height: 13px; }

  /* ── Rate board: compact ticker strip ── */
  .rate-board { padding: 0; }
  .rate-board .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    gap: 0;
    overflow: hidden;
  }
  /* Hide label text + date on mobile */
  .rate-board-label span:last-child { display: none; }
  .rate-board-label { gap: 4px; margin-right: 8px; }
  .rate-board-label .dot { width: 6px; height: 6px; flex-shrink: 0; }
  .rate-updated { display: none; }
  /* Items inline */
  .rate-items {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    flex-wrap: nowrap !important;
  }
  .rate-item {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0 8px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .rate-item + .rate-item { border-left: 1px solid rgba(255,255,255,.15); }
  .rate-emoji { font-size: .75rem; flex-shrink: 0; }
  .rate-name { font-size: .65rem; opacity: .8; white-space: nowrap; flex-shrink: 0; }
  .rate-value { font-size: .78rem !important; font-weight: 800 !important; white-space: nowrap; flex-shrink: 0; letter-spacing: -.01em; }

  /* ── Site header: compact height, smaller logo ── */
  .site-header .container {
    height: 60px;
    padding-block: 6px;
    gap: 12px;
  }
  .site-logo img,
  .site-logo .site-logo-img { height: 44px; }

  /* ── Action icon buttons: slightly smaller ── */
  .header-icon-btn { width: 36px; height: 36px; }
  .header-icon-btn .chakwa-icon { width: 16px; height: 16px; }
  .header-actions { gap: 6px; }
  .nav-toggle { width: 36px; height: 36px; }
}
