/* ==========================================================================
   JAIKAAL GLOBAL — MAIN STYLESHEET
   Adheres to website.md: Modern, Premium, SEO-first, Accessible & Performant
   ========================================================================== */

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

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-slate-700);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Accessibility Focus Ring */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

p {
  color: var(--color-slate-600);
  margin-bottom: var(--space-4);
}

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

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

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

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

button {
  cursor: pointer;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   2. UTILITIES & REUSABLE COMPONENTS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  position: relative;
}

.section-light {
  background-color: var(--color-slate-50);
}

.section-mint {
  background-color: var(--color-primary-subtle);
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-12) auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.35rem 0.9rem;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.section-badge.badge-blue {
  background: #EBF2FF;
  color: var(--color-accent-blue);
}

.section-title {
  margin-bottom: var(--space-3);
  font-size: var(--text-4xl);
}

.section-title .highlight {
  color: var(--color-primary);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-slate-500);
  line-height: 1.5;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-base);
  line-height: 1;
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(0, 168, 107, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 107, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-dark);
  border: 1.5px solid var(--color-slate-300);
}

.btn-outline-dark:hover {
  background-color: var(--color-slate-100);
  border-color: var(--color-dark);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   3. NAVIGATION / HEADER
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   3. NAVIGATION / HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-slate-200);
  z-index: var(--z-header);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-bottom-color: rgba(226, 232, 240, 0.8);
}

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

/* Brand Logo with Image and Typography */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-logo-text-group .brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0B1325;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-logo-text-group .brand-tagline {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  color: #00A86B;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 3px;
  line-height: 1;
}

.footer-brand .brand-logo-text-group .brand-name {
  color: #FFFFFF;
}

.footer-brand .brand-logo-text-group .brand-tagline {
  color: #00D084;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--color-slate-700);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-decoration: none;
}

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

.nav-link.active {
  background-color: #E8F7F0;
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.45rem 1.25rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  background: var(--color-slate-100);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.88) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(2, 44, 34, 0.9) 100%),
              url('../assets/home/hero_bg.jpeg') center/cover no-repeat;
  color: var(--color-white);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6.5rem) 0;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

/* Hero Content Left */
.hero-brand-highlight {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero-brand-highlight .brand-accent {
  color: #34d399;
}

.hero-title {
  color: var(--color-white);
  font-size: clamp(1.35rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 620px;
  letter-spacing: -0.02em;
}

.hero-gradient-text {
  background: linear-gradient(to right, #34d399, #4ade80, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: rgba(209, 250, 229, 0.85);
  font-size: clamp(0.875rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.btn-hero-glow {
  padding: 0.85rem 1.85rem;
  background: linear-gradient(to right, #059669, #10b981);
  color: #ffffff;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(5, 150, 105, 0.4);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.95rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--transition-base);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-hero-secondary .btn-icon {
  transition: transform var(--transition-fast);
}

.btn-hero-secondary:hover .btn-icon {
  transform: translateX(4px);
}

/* Hero Commodity Tags Infinite Carousel */
.hero-tags-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 580px;
  margin-top: var(--space-8);
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
}

.hero-tags-track {
  display: flex;
  width: max-content;
  gap: 0.75rem;
  animation: heroTagsMarquee 40s linear infinite;
}

.hero-tags-track:hover {
  animation-play-state: paused;
}

.hero-tags-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.hero-tag-pill {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: all var(--transition-fast);
  user-select: none;
}

.hero-tag-pill:hover {
  background: rgba(5, 150, 105, 0.45);
  border-color: rgba(52, 211, 153, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

@keyframes heroTagsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.375rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tags-track {
    animation: none;
    overflow-x: auto;
  }
}

/* Hero Quick Inquiry Card (Right) */
.hero-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: var(--color-dark);
  width: 100%;
  max-width: 480px;
}

.form-header {
  margin-bottom: var(--space-5);
  text-align: left;
}

.form-header h3 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 3px;
}

.form-header p {
  font-size: var(--text-sm);
  color: var(--color-slate-500);
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-slate-700);
  margin-bottom: 5px;
}

/* Input With Icon Component */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon svg {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  color: var(--color-slate-400);
  pointer-events: none;
  flex-shrink: 0;
}

.input-with-icon .form-control {
  padding-left: 40px;
}

.form-control {
  width: 100%;
  padding: 0.68rem 0.95rem;
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  color: var(--color-dark);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.form-control:focus {
  background-color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.15);
}

.form-control::placeholder {
  color: #94A3B8;
  font-size: var(--text-sm);
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
  padding: 0.68rem 0.95rem;
}

.btn-send-message {
  padding: 0.85rem 1.5rem;
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  margin-top: var(--space-2);
}

/* --------------------------------------------------------------------------
   5. STATS & METRICS RIBBON
   -------------------------------------------------------------------------- */
.stats-ribbon {
  background: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  padding: 1.5rem 0;
  position: relative;
  z-index: var(--z-card);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.5) 0%, rgba(240, 253, 244, 0.5) 100%);
  border-radius: 12px;
  padding: 1.15rem 1.5rem;
  border: 1px solid #d1fae5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.1);
  border-color: #a7f3d0;
}

.stat-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #059669;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.stat-badge-icon svg {
  width: 16px;
  height: 16px;
}

.stat-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 0.15rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #047857;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   6. WELCOME & COMMODITY MATRIX SECTION
   -------------------------------------------------------------------------- */
.welcome-content-box {
  max-width: 896px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

.welcome-content-box p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   6. CERTIFIED & TRUSTED COMPLIANCE BOX
   -------------------------------------------------------------------------- */
.certified-trusted-box {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border: 1px solid #d1fae5;
  border-radius: 16px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.04);
}

.cert-box-header {
  margin-bottom: 2rem;
}

.cert-box-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.cert-box-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 0;
}

.cert-authority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem 1rem;
}

.cert-authority-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-base);
}

.cert-authority-item:hover {
  transform: translateY(-4px);
}

.cert-icon-squircle {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: all var(--transition-base);
  border: 1px solid rgba(5, 150, 105, 0.1);
}

.cert-authority-item:hover .cert-icon-squircle {
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.2);
  border-color: #059669;
  transform: scale(1.05);
}

.cert-icon-squircle svg {
  width: 28px;
  height: 28px;
  color: #059669;
}

.cert-authority-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.cert-authority-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
  font-weight: 500;
}

.cert-box-footer {
  margin-top: 2.2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #D6EFE5;
  font-size: 0.875rem;
  color: #475569;
}

.cert-box-footer .note-highlight {
  font-weight: 700;
  color: var(--color-primary);
  font-style: normal;
}

.matrix-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-dark);
}

/* --------------------------------------------------------------------------
   7. PREMIUM PRODUCT CATEGORIES SECTION
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   7. PREMIUM PRODUCT CATEGORIES SECTION
   -------------------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
}

/* Product Card Image Placeholder Container */
.product-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease-out;
}

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

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.product-varieties-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.variety-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
  line-height: 1.4;
}

.variety-check-icon {
  width: 16px;
  height: 16px;
  color: #059669;
  flex-shrink: 0;
}

.center-cta {
  text-align: center;
  margin-top: 1rem;
}

.btn-view-all {
  background: linear-gradient(to right, #059669, #10b981);
  color: var(--color-white);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.25);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(5, 150, 105, 0.4);
}

/* --------------------------------------------------------------------------
   8. QUALITY COMMITMENTS SECTION
   -------------------------------------------------------------------------- */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 1024px;
  margin: 0 auto;
}

.quality-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.quality-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.12);
  border-color: #e2e8f0;
}

.quality-step-number {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.quality-card:nth-child(1) .quality-step-number {
  background: #f3f4f6;
  color: #374151;
}

.quality-card:nth-child(2) .quality-step-number {
  background: #ecfdf5;
  color: #047857;
}

.quality-card:nth-child(3) .quality-step-number {
  background: #eff6ff;
  color: #1d4ed8;
}

.quality-card:nth-child(4) .quality-step-number {
  background: #fffbeb;
  color: #b45309;
}

.quality-card:nth-child(5) .quality-step-number {
  background: #f1f5f9;
  color: #334155;
}

.quality-card-content {
  flex: 1;
}

.quality-card-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.35rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.quality-card-content p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.55;
  margin-bottom: 0;
}

.highlight-blue {
  color: #2563eb;
}

.badge-blue-pill {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

/* Quality Control Process Steps Banner */
.qc-process-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 58, 138, 0.88) 50%, rgba(49, 46, 129, 0.94) 100%),
              url('../assets/home/qualityControl_img.png') center/cover no-repeat;
  border-radius: 16px;
  padding: 2.25rem 2rem 2rem 2rem;
  color: var(--color-white);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  margin: 3.5rem auto 2.5rem auto;
  max-width: 1024px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.qc-process-banner:hover {
  transform: translateY(-2px);
}

.qc-process-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.25), transparent 70%);
  pointer-events: none;
}

.qc-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}

.qc-banner-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.qc-banner-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.qc-steps-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.qc-step-pill {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.qc-step-pill:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.qc-flow-arrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0.15rem;
  user-select: none;
}

/* 5 QC Pillar Cards (Bottom Row) */
.qc-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  max-width: 1152px;
  margin: 0 auto;
}

.qc-pillar-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 1.75rem 1rem 1.5rem 1rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.qc-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
  border-color: #e2e8f0;
}

.qc-pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.qc-pillar-card:hover .qc-pillar-icon {
  transform: scale(1.1);
}

.qc-pillar-icon svg {
  width: 28px;
  height: 28px;
}

.qc-pillar-card:nth-child(1) .qc-pillar-icon {
  background: #ecfdf5;
  color: #059669;
}

.qc-pillar-card:nth-child(2) .qc-pillar-icon {
  background: #eff6ff;
  color: #2563eb;
}

.qc-pillar-card:nth-child(3) .qc-pillar-icon {
  background: #fdf2f8;
  color: #db2777;
}

.qc-pillar-card:nth-child(4) .qc-pillar-icon {
  background: #fff7ed;
  color: #ea580c;
}

.qc-pillar-card:nth-child(5) .qc-pillar-icon {
  background: #eef2ff;
  color: #4f46e5;
}

.qc-pillar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   9. WHY CHOOSE JAIKAAL GLOBAL SECTION
   -------------------------------------------------------------------------- */
.badge-purple-pill {
  background: #faf5ff;
  color: #7e22ce;
  border: 1px solid #f3e8ff;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.why-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #f8fafc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: #e2e8f0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.why-card:hover .why-icon {
  background: #d1fae5;
  transform: scale(1.08);
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.why-text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. TRADE INSIGHTS / FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
  border-top: 1px solid #f3f4f6;
  padding: 5rem 0;
}

.badge-faq-pill {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  padding: 0.35rem 1.1rem;
}

.faq-container {
  max-width: 896px;
  margin: 0 auto;
}

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

.faq-item {
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.faq-item.active {
  border-color: #059669;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.08);
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-heading);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.faq-button-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.faq-check-icon {
  width: 22px;
  height: 22px;
  color: #059669;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-check-icon svg {
  width: 100%;
  height: 100%;
}

.faq-question-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.45;
  transition: color var(--transition-fast);
}

.faq-button:hover .faq-question-text {
  color: #059669;
}

.faq-icon-indicator {
  width: 24px;
  height: 24px;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.faq-icon-indicator svg {
  width: 18px;
  height: 18px;
}

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

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  background: #f9fafb;
}

.faq-item.active .faq-panel {
  max-height: 500px;
  padding: 1.25rem 1.5rem 1.5rem calc(1.5rem + 22px + 1rem);
  border-top: 1px solid #f3f4f6;
}

.faq-panel p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   11. READY TO PARTNER CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner-section {
  position: relative;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.85) 0%, rgba(6, 95, 70, 0.8) 50%, rgba(20, 83, 45, 0.85) 100%),
              url('../assets/home/partnarWithUs.png') center/cover no-repeat;
  color: var(--color-white);
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-content {
  max-width: 896px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  color: var(--color-white);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
  color: #ecfdf5;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.btn-cta-white {
  background: #ffffff;
  color: #059669;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.15rem 2.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-white:hover {
  background: #ecfdf5;
  color: #047857;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.btn-cta-white .btn-icon {
  transition: transform 0.25s ease;
}

.btn-cta-white:hover .btn-icon {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #020617;
  color: #d1d5db;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 3.5rem;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  margin-bottom: 1.35rem;
}

.footer-logo-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.footer-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.03em;
  font-family: var(--font-heading);
}

.footer-brand-subtitle {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-primary, #00a86b);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
  font-family: var(--font-heading);
}

.footer-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 320px;
  margin: 0;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.35rem;
  font-family: var(--font-heading);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  font-size: 0.92rem;
  color: #94a3b8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bullet {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1;
  display: inline-block;
}

.footer-bullet.green {
  color: var(--color-primary, #00a86b);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-social-icon {
  width: 16px;
  height: 16px;
  color: #94a3b8;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.footer-social-link:hover .footer-social-icon {
  color: var(--color-primary, #00a86b);
}

.footer-bottom {
  padding: 1.75rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

/* --------------------------------------------------------------------------
   13. TOAST NOTIFICATION
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-toast);
  pointer-events: none;
}

.toast {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-spring);
  pointer-events: auto;
  max-width: 380px;
}

.toast.toast-error {
  border-left-color: #ef4444;
}

.toast.toast-success {
  border-left-color: var(--color-primary);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.toast-message h5 {
  color: var(--color-white);
  font-size: var(--text-sm);
  margin-bottom: 2px;
}

.toast-message p {
  color: var(--color-slate-400);
  font-size: var(--text-xs);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   14. ABOUT US PAGE SPECIFIC STYLES
   -------------------------------------------------------------------------- */
.about-hero-section {
  position: relative;
  background: linear-gradient(rgba(2, 6, 23, 0.85), rgba(15, 23, 42, 0.88)),
              linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
              linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
              url('../assets/AboutUs/page/banner.png') center/cover no-repeat;
  background-size: cover, 64px 64px, 64px 64px, cover;
  padding: 5rem 0;
  text-align: center;
  color: var(--color-white);
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1.15rem;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.about-hero-title .highlight {
  color: #ecfdf5;
}

.about-hero-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  color: #ecfdf5;
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.65;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Trust Stat Indicators Bar */
.about-stats-ribbon {
  background: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-stat-card {
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.5) 0%, rgba(240, 253, 244, 0.5) 100%);
  border: 1px solid #d1fae5;
  border-radius: 12px;
  padding: 1.15rem 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.1);
  border-color: #a7f3d0;
}

.about-stat-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #059669;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.about-stat-icon-badge svg {
  width: 16px;
  height: 16px;
}

.about-stat-number {
  font-size: clamp(1.85rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 0.15rem;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.about-stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #047857;
  letter-spacing: 0.01em;
}

/* Who We Are Section */
.who-we-are-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.who-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  align-items: center;
}

.who-title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.who-text {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.who-image-box {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  aspect-ratio: 4 / 3;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.who-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease-out;
}

.who-image-box:hover .who-img {
  transform: scale(1.06);
}

/* Mission & Vision Section */
.purpose-section {
  padding: 5rem 0;
  background: #ffffff;
}

.badge-purpose-pill {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  border-radius: 9999px;
  padding: 0.35rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-flex;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3.5rem auto 0 auto;
}

.purpose-card {
  border-radius: 16px;
  padding: 2.75rem 2.25rem;
  color: #ffffff;
  border: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.purpose-card.vision-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(6, 78, 59, 0.65) 100%),
              url('../assets/AboutUs/page/ourVision.png') center/cover no-repeat;
}

.purpose-card.mission-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(30, 58, 138, 0.6) 50%, rgba(30, 41, 59, 0.65) 100%),
              url('../assets/AboutUs/page/OurMission.png') center/cover no-repeat;
}

.purpose-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.purpose-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.purpose-card:hover .purpose-icon-box {
  transform: scale(1.08);
}

.purpose-icon-box svg {
  width: 30px;
  height: 30px;
}

.purpose-card-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.purpose-desc {
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.75;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.purpose-mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.purpose-mission-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.purpose-bullet-dot {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.purpose-bullet-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #ffffff;
}

@media (max-width: 960px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* --------------------------------------------------------------------------
   15. PRODUCTS CATALOG PAGE SPECIFIC STYLES
   -------------------------------------------------------------------------- */
.products-hero-section {
  position: relative;
  background: linear-gradient(rgba(2, 6, 23, 0.85), rgba(15, 23, 42, 0.88)),
              url('../assets/Product/Banner Image.jpg') center/cover no-repeat;
  padding: 5.5rem 0 5.5rem 0;
  text-align: center;
  color: var(--color-white);
}

.catalog-category-block {
  padding: 5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.catalog-category-block.bg-white {
  background-color: #ffffff;
}

.catalog-category-block.bg-gray-50,
.catalog-category-block.bg-alt {
  background-color: #f9fafb;
}

.catalog-category-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

.catalog-category-title {
  font-size: clamp(2rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #059669;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.catalog-category-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.catalog-item-card {
  background: var(--color-white);
  border-radius: 16px;
  border: none;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.catalog-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.16);
}

.catalog-item-img-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.catalog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease-out;
}

.catalog-item-card:hover .catalog-img {
  transform: scale(1.1);
}

.catalog-item-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.catalog-item-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.catalog-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.catalog-item-desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.catalog-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
  margin-top: auto;
}

.catalog-quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #059669;
}

.catalog-item-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #059669;
  text-decoration: none;
  transition: all 0.2s ease;
}

.catalog-item-btn:hover {
  color: #047857;
  transform: translateX(3px);
}

/* More spices badge */
.spices-callout-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}

.spices-callout-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  border-radius: 9999px;
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Tailored Sourcing & Custom Demands Section */
.tailored-section {
  padding: 5rem 0;
  background: #ffffff;
}

.tailored-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.04);
}

.tailored-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #d1fae5;
  color: #047857;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.tailored-title {
  font-size: clamp(2rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.tailored-subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 780px;
  margin: 0 auto 2.75rem auto;
  line-height: 1.7;
}

.tailored-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}

.tailored-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border: 1px solid #d1fae5;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tailored-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(5, 150, 105, 0.08);
}

.tailored-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.tailored-card-icon {
  width: 20px;
  height: 20px;
  color: #059669;
  flex-shrink: 0;
}

.tailored-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  font-family: var(--font-heading);
}

.tailored-card p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.btn-tailored-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 2.4rem;
  font-size: 1.05rem;
  border-radius: 12px;
  font-weight: 700;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  box-sizing: border-box;
}

.products-cta-section {
  position: relative;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.85) 0%, rgba(6, 95, 70, 0.8) 50%, rgba(20, 83, 45, 0.85) 100%),
              url('../assets/Product/Ready to place your order bg.jpg') center/cover no-repeat;
  color: var(--color-white);
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .catalog-grid,
  .catalog-grid.two-col,
  .tailored-cards-grid {
    grid-template-columns: 1fr;
  }
  .catalog-category-block {
    padding: 3rem 0;
  }
}

.section-center-btn {
  text-align: center;
  margin-top: 2.75rem;
}

.btn-spice-spec {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.btn-spice-spec:hover {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25);
}

/* --------------------------------------------------------------------------
   16. CERTIFICATES PAGE SPECIFIC STYLES
   -------------------------------------------------------------------------- */
.certificates-hero-section {
  position: relative;
  background: linear-gradient(rgba(2, 6, 23, 0.85), rgba(15, 23, 42, 0.88)),
              linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
              linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
              url('../assets/Certificate/image.png') center/cover no-repeat;
  background-size: cover, 64px 64px, 64px 64px, cover;
  padding: 5.5rem 0 5.5rem 0;
  text-align: center;
  color: var(--color-white);
}

.certificates-hero-section .about-hero-title .highlight {
  color: #dbeafe;
}

.certificates-hero-section .about-hero-subtitle {
  color: #eff6ff;
}

.certificates-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3.5rem auto 3rem auto;
}

.cert-card {
  background: var(--color-white);
  border-radius: 16px;
  border: none;
  padding: 2rem 2.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
}

.cert-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.cert-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.cert-icon-wrap.green {
  color: #059669;
}

.cert-icon-wrap.blue {
  color: #2563eb;
}

.cert-icon-wrap.purple {
  color: #9333ea;
}

.cert-icon-wrap.emerald-green {
  color: #16a34a;
}

.cert-body {
  flex-grow: 1;
}

.cert-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
  line-height: 1.25;
  font-family: var(--font-heading);
}

.cert-subtag {
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
  margin-bottom: 0.65rem;
  display: block;
  line-height: 1.3;
}

.cert-desc {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

/* Additional Certifications Box */
.addl-cert-box {
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.06);
}

.addl-cert-badge {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: #2563eb;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.addl-cert-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.addl-cert-desc {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 768px;
  margin: 0 auto 0.75rem auto;
  line-height: 1.65;
}

.addl-cert-link {
  font-size: 0.875rem;
  color: #64748b;
  font-style: italic;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   17. CONTACT US PAGE SPECIFIC STYLES
   -------------------------------------------------------------------------- */
.contact-hero-section {
  position: relative;
  background: linear-gradient(rgba(2, 6, 23, 0.85), rgba(15, 23, 42, 0.88)),
              linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
              linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
              url('../assets/Contact Us/banner.png') center/cover no-repeat;
  background-size: cover, 64px 64px, 64px 64px, cover;
  padding: 6rem 0;
  text-align: center;
  color: var(--color-white);
}

.contact-hero-section .about-hero-title .highlight {
  background: linear-gradient(to right, #6ee7b7, #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero-section .about-hero-subtitle {
  color: #f3f4f6;
  max-width: 768px;
}

.contact-page-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2rem;
  align-items: start;
}

.connect-card {
  background: var(--color-white);
  border: none;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 6rem;
}

.connect-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.connect-desc {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.connect-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.connect-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.connect-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.connect-info-item:hover .connect-info-icon {
  transform: scale(1.08);
}

.connect-info-icon.email {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.connect-info-icon.phone {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.connect-info-icon.address {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.connect-info-icon.hours {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.connect-info-icon svg {
  width: 22px;
  height: 22px;
}

.connect-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.connect-info-link {
  display: block;
  font-size: 0.95rem;
  color: #059669;
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.connect-info-link.blue {
  color: #2563eb;
  font-weight: 500;
}

.connect-info-link:hover {
  text-decoration: underline;
}

.connect-info-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.45;
}

.connect-social-block {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid #f3f4f6;
}

.connect-social-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.connect-social-row {
  display: flex;
  gap: 0.85rem;
}

.connect-social-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connect-social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.connect-social-btn.linkedin {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.connect-social-btn.instagram {
  background: linear-gradient(135deg, #db2777 0%, #9333ea 100%);
}

.connect-social-subtext {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 1rem;
}

.contact-form-card {
  background: var(--color-white);
  border: none;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.contact-form-subtitle {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.contact-form-input,
.contact-form-textarea {
  padding: 0.85rem 1.1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #111827;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  outline: none;
  font-family: inherit;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #9ca3af;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.contact-form-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #059669, #10b981);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.3);
  margin-top: 0.5rem;
}

.contact-submit-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 30px -5px rgba(5, 150, 105, 0.4);
}

/* Contact FAQ Section */
.contact-faq-section {
  padding: 5rem 0;
  background: #ffffff;
}

.faq-badge-pill {
  background: #faf5ff;
  color: #7e22ce;
  border: 1px solid #e9d5ff;
  border-radius: 9999px;
  padding: 0.35rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-flex;
}

.contact-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 896px;
  margin: 3rem auto 0 auto;
}

.contact-faq-card {
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.contact-faq-q {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.contact-faq-a {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form-card,
  .connect-card {
    padding: 1.85rem 1.5rem;
    position: static;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
