/* ==========================================================================
   TRISON AGRO GLOBAL TRADE LLP - Premium Design System & Stylesheet
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-dark: #082e21;
  --primary: #0e4d34;
  --primary-medium: #156d4b;
  --primary-light: #16a34a;
  --primary-accent: #22c55e;
  --primary-soft: #edf7eb;
  --primary-tint: #f4f9f3;

  --gold-accent: #d97706;
  --gold-light: #f59e0b;
  --gold-soft: #fef3c7;

  --text-main: #0f291e;
  --text-muted: #4e6358;
  --text-light: #7c9186;
  --text-white: #ffffff;

  --bg-main: #ffffff;
  --bg-alt: #f6faf5;
  --bg-dark: #06241a;
  --bg-card: #ffffff;

  --border-light: #e1ebd9;
  --border-medium: #c8d8bf;
  --border-dark: #1b4b38;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(14, 77, 52, 0.04);
  --shadow-md: 0 10px 25px rgba(14, 77, 52, 0.07);
  --shadow-lg: 0 18px 40px rgba(14, 77, 52, 0.12);
  --shadow-hover: 0 25px 50px rgba(14, 77, 52, 0.18);
  --shadow-glow: 0 0 25px rgba(22, 163, 74, 0.3);

  /* Transitions & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Scroll Animations (IntersectionObserver Reveal)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* --------------------------------------------------------------------------
   Typography & Eyebrow Badges
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.eyebrow,
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.eyebrow-badge {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--primary-light);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background-color: var(--primary-light);
  opacity: 0.5;
  animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background: linear-gradient(135deg, #16a34a 0%, #0e4d34 100%);
  color: var(--text-white);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.28);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.38);
  background: linear-gradient(135deg, #15803d 0%, #082e21 100%);
}

.outline-btn {
  background: var(--bg-main);
  color: var(--primary);
  border: 1.5px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.outline-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
  background: var(--primary-soft);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
#site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition);
}

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

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

.brand img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 2px 4px rgba(22, 163, 74, 0.2));
}

.brand span b {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  display: block;
  line-height: 1;
}

.brand span small {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--primary-light);
  display: block;
  margin-top: 3px;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark);
}

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

.navbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #0e4d34 0%, #16a34a 100%);
  color: var(--text-white);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(14, 77, 52, 0.2);
}

.navbtn:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 8px 22px rgba(14, 77, 52, 0.32);
}

.hamb {
  display: none;
  background: none;
  border: none;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 8px;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f3f9f2 0%, #e5f3e2 50%, #f6faf5 100%);
  padding: 90px 0 70px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.4rem;
  line-height: 1.08;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--primary-light);
  background: linear-gradient(135deg, #16a34a 0%, #0e4d34 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content .lead {
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-content .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.points {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.points span svg {
  color: var(--primary-light);
}

.heroArt {
  position: relative;
}

.artCard {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 236, 224, 0.9);
  transition: var(--transition);
}

.artCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.artbar {
  height: 48px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fafdfa;
  border-bottom: 1px solid var(--border-light);
}

.artbar .dots {
  display: flex;
  gap: 6px;
}

.artbar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbdcc8;
  display: block;
}

.artbar b {
  font-family: var(--font-heading);
  font-size: 0.725rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.heroImage {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.artCard:hover .heroImage {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-6px);
  }
}

.badge-icon {
  font-size: 1.4rem;
}

.hero-floating-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.825rem;
  color: var(--primary-dark);
}

.hero-floating-badge small {
  display: block;
  font-size: 0.725rem;
  color: var(--text-muted);
}

.artFoot {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
}

.artFoot b {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--primary-dark);
}

.artFoot span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   Trust Metrics Bar
   -------------------------------------------------------------------------- */
.trust {
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-light);
  padding: 30px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-2px);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust-item b {
  font-size: 0.95rem;
  color: var(--primary-dark);
  display: block;
}

.trust-item small {
  font-size: 0.775rem;
  color: var(--text-muted);
  display: block;
}

/* --------------------------------------------------------------------------
   Section Common Layout
   -------------------------------------------------------------------------- */
.section {
  padding: 100px 0;
}

.section h2 {
  font-size: 2.35rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.aboutArt {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.aboutArt img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.aboutArt:hover img {
  transform: scale(1.03);
}

.about-experience-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(14, 77, 52, 0.92);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-accent);
  display: block;
}

.exp-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  display: block;
}

.about-content p {
  margin-bottom: 16px;
}

.features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-card);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.feat-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-light);
  background: var(--primary-soft);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.feature-card strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--primary-dark);
  display: block;
}

.feature-card small {
  font-size: 0.825rem;
  color: var(--text-muted);
  display: block;
}

/* --------------------------------------------------------------------------
   Products Section
   -------------------------------------------------------------------------- */
.products {
  background: var(--bg-alt);
}

.head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 40px;
}

.head-lead {
  max-width: 420px;
}

.productGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}

.prodVisual {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.prodVisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .prodVisual img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.category-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(14, 77, 52, 0.88);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.body {
  padding: 28px;
}

.body label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 6px;
}

.body h3 {
  font-size: 1.45rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.body p {
  font-size: 0.925rem;
  margin-bottom: 20px;
}

.body ul {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.body li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.enquire-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-light);
}

.enquire-link:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   NEW SECTION 1: Product Specifications Matrix
   -------------------------------------------------------------------------- */
.specs-section {
  background: var(--bg-main);
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.spec-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
  background: var(--bg-card);
}

.spec-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}

.spec-icon {
  font-size: 2rem;
}

.spec-card-head h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.spec-card-head small {
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-weight: 600;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table td {
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 0.875rem;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table td:first-child {
  color: var(--text-muted);
}

.spec-table td:last-child {
  text-align: right;
  color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   NEW SECTION 2: Quality & Export Assurance
   -------------------------------------------------------------------------- */
.quality-section {
  background: var(--bg-alt);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.quality-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.quality-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.q-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary-light);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.quality-box h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.quality-box p {
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Why Choose Us Section
   -------------------------------------------------------------------------- */
.center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

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

.why {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-accent));
  opacity: 0;
  transition: var(--transition);
}

.why:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.why:hover::before {
  opacity: 1;
}

.why-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.why-header b {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-light);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.why-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-light);
  display: grid;
  place-items: center;
}

.why h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.why p {
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   NEW SECTION 3: Global Logistics & Port Capabilities
   -------------------------------------------------------------------------- */
.logistics-section {
  background: linear-gradient(135deg, #093123 0%, #051c14 100%);
  color: var(--text-white);
}

.logistics-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.logistics-text .eyebrow {
  color: var(--primary-accent);
}

.logistics-text h2 {
  color: var(--text-white);
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.logistics-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.025rem;
  margin-bottom: 24px;
}

.port-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.port-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--primary-accent);
}

.counters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.counter-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.counter-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-accent);
  transform: translateY(-4px);
}

.counter-val {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-accent);
}

.counter-unit {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.counter-card small {
  display: block;
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Process Section
   -------------------------------------------------------------------------- */
.process {
  background: var(--bg-alt);
}

.center-head {
  text-align: center;
  margin-bottom: 50px;
}

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

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.step-badge {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #16a34a 0%, #0e4d34 100%);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.process-card h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Global Markets Section
   -------------------------------------------------------------------------- */
.markets {
  background: var(--bg-dark);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.marketsGrid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.markets-intro .eyebrow {
  color: var(--primary-accent);
}

.markets-intro h2 {
  color: var(--text-white);
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.markets-intro p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.025rem;
}

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

.country-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.country-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.country-code {
  background: var(--gold-accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.country-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

/* --------------------------------------------------------------------------
   NEW SECTION 4: Interactive FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-section {
  background: var(--bg-main);
}

.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-sm);
  background: var(--bg-card);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.025rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary-light);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-content {
  max-height: 250px;
  padding: 0 24px 22px;
}

.faq-content p {
  font-size: 0.925rem;
}

/* --------------------------------------------------------------------------
   NEW SECTION 5: High-Impact Callout Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, #16a34a 0%, #0e4d34 100%);
  padding: 60px 0;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.cta-banner-content h2 {
  color: var(--text-white);
  font-size: 2.1rem;
  margin-bottom: 8px;
}

.cta-banner-content p {
  color: rgba(255, 255, 255, 0.85);
}

.cta-btn {
  background: var(--bg-card);
  color: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--gold-light);
  color: var(--text-white);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact {
  background: var(--bg-alt);
}

.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-lead {
  font-size: 1rem;
  margin-bottom: 30px;
}

.details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.c-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-item small {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-light);
}

.contact-item strong,
.contact-item span {
  display: block;
  font-size: 0.925rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.address-item {
  align-items: flex-start;
}

.address-item span {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Form Styling */
.inquiry-form {
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.form-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-response-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--primary-soft);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  animation: fadeInCard 0.5s ease;
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.response-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-md);
}

.form-response-card h3 {
  font-size: 1.35rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.form-response-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

.form-response-card strong {
  color: var(--primary-dark);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #fafdfa;
  color: var(--text-main);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.wide {
  grid-column: 1 / -1;
}

.submit-btn {
  width: 100%;
  padding: 14px 28px;
  margin-top: 6px;
}

.note {
  display: block;
  font-size: 0.775rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   Footer Section
   -------------------------------------------------------------------------- */
footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 25px;
  border-top: 1px solid var(--border-dark);
}

.footerGrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footerLogo {
  width: 38px;
  height: 38px;
  filter: brightness(0) invert(1);
}

.footer-logo-row b {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-white);
  display: block;
}

.footer-logo-row small {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--primary-accent);
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
}

footer h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

footer a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 10px;
}

footer a:hover {
  color: var(--primary-accent);
  transform: translateX(3px);
}

.bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   Floating WhatsApp Button
   -------------------------------------------------------------------------- */
.wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.wa:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--primary-dark);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.wa:hover .wa-tooltip {
  opacity: 1;
  right: 64px;
}

/* --------------------------------------------------------------------------
   Responsive Layout Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {

  .heroGrid,
  .two,
  .contactGrid,
  .marketsGrid,
  .spec-grid,
  .logistics-grid,
  .cta-banner-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .trustGrid,
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .productGrid {
    grid-template-columns: 1fr;
  }

  .whyGrid,
  .processGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .countries {
    grid-template-columns: repeat(2, 1fr);
  }

  .footerGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamb {
    display: block;
  }

  #nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-light);
  }

  #nav.open {
    display: flex;
  }

  .navbtn {
    width: 100%;
    justify-content: center;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .section {
    padding: 70px 0;
  }

  .bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .trustGrid,
  .quality-grid,
  .whyGrid,
  .processGrid,
  .counters-grid,
  .countries,
  .footerGrid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Form Submission Status Banners & Button Spinner
   -------------------------------------------------------------------------- */
.form-status {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: 10px;
  transition: var(--transition);
}

.status-sending {
  background: var(--primary-soft);
  color: var(--primary-dark);
  border: 1px solid var(--border-medium);
}

.status-success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
  font-weight: 600;
}

.status-info {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  font-weight: 600;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}