/**
 * Nightingale Agro Industries Private Limited
 * Reusable UI Components Stylesheet (Fully Responsive)
 * @version 2.2.0
 */

/* ==========================================================================
   0. BRAND LOGO IMAGE STYLING
   ========================================================================== */
.agro-brand-logo-img {
  display: block;
  height: auto;
  max-height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity 180ms ease, transform 180ms ease;
}

.agro-brand:hover .agro-brand-logo-img {
  transform: scale(1.02);
}

/* ==========================================================================
   1. BUTTONS & ACTIONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-family-base, 'Inter', sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  min-height: 44px;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #042617 0%, #083E26 100%);
  color: #FFFFFF !important;
  border-color: #042617;
  box-shadow: 0 2px 4px rgba(4, 38, 23, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #063824 0%, #0C5233 100%);
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(4, 38, 23, 0.25);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #D4A34B 0%, #B88628 100%);
  color: #FFFFFF !important;
  border-color: #D4A34B;
  box-shadow: 0 2px 4px rgba(212, 163, 75, 0.2);
  font-weight: 600;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #BF8E36 0%, #9E711D 100%);
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(212, 163, 75, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #042617 !important;
  border-color: #CBD5E1;
}

.btn-outline:hover {
  background-color: #042617;
  border-color: #042617;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(4, 38, 23, 0.1);
}

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: #FFFFFF;
  color: #042617 !important;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.45rem 0.875rem;
  font-size: 0.78rem;
  min-height: 36px;
  border-radius: 6px;
}

.btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  min-height: 44px;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1rem;
  min-height: 50px;
  border-radius: 10px;
}

.btn-full {
  width: 100% !important;
  justify-content: center !important;
}

/* ==========================================================================
   2. CARDS & PANELS
   ========================================================================== */
.card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 12px 28px -4px rgba(4, 38, 23, 0.1);
  border-color: rgba(36, 117, 71, 0.35);
  transform: translateY(-3px);
}

.card-header {
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #042617;
  margin-bottom: 0.5rem;
}

.card-body {
  flex: 1;
}

.card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #E2E8F0;
}

/* Category Card */
.category-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.category-card:hover {
  border-color: #2E7D32;
  box-shadow: 0 10px 24px -4px rgba(4, 38, 23, 0.1);
  transform: translateY(-4px);
}

/* ==========================================================================
   2. GLOBAL PRODUCT CARD & PRODUCT DISPLAY SYSTEM
   Exact Reference Design: White card, large radius, dark 16:9 canvas,
   green uppercase brand, subtle divider, bold title, gold stars, green pill CTA.
   ========================================================================== */

/* 2.1 Reusable Product Grid (Products Page) */
.agro-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1120px) {
  .agro-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .agro-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .agro-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
}

/* 2.2 Global Reference-Matched Product Card (Exact Match to Screenshot) */
.agro-product-card {
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  border-radius: 20px;
  padding: 12px 12px 16px 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 18px rgba(18, 61, 42, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease;
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .agro-product-card:hover {
    border-color: #D3DFD6;
    box-shadow: 0 12px 30px rgba(18, 61, 42, 0.10), 0 2px 6px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
  }

  .agro-product-card:hover .agro-product-card__image {
    transform: scale(1.05);
  }

  .agro-product-card:hover .agro-product-card__btn {
    background-color: #095C30;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(14, 119, 63, 0.32);
  }
}

/* 2.3 Product Image (1:1 Square Rounded Frame — Zero Letterboxing) */
.agro-product-card__image-link {
  display: block;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 45%, #2a2a2a 0%, #111111 100%);
  position: relative;
  flex-shrink: 0;
}

.agro-product-card__image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 45%, #2a2a2a 0%, #111111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.35);
}

.agro-product-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0;
  box-sizing: border-box;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.3));
}

/* Clean Branded Placeholder Fallback */
.agro-product-card__placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: radial-gradient(circle at 50% 45%, #242c26 0%, #0d130f 100%);
  padding: 12px;
  box-sizing: border-box;
}

.agro-product-card__placeholder-icon {
  width: 36px;
  height: 36px;
  display: block;
}

.agro-product-card__placeholder-text {
  font-family: var(--font-family-base, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #52B788;
}

/* 2.4 Card Content Area */
.agro-product-card__content {
  padding: 14px 4px 2px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
  justify-content: space-between;
  box-sizing: border-box;
}

/* 2.5 Brand Name */
.agro-product-card__brand {
  display: block;
  font-family: var(--font-family-base, 'Inter', sans-serif);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0E773F;
  text-align: center;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* 2.6 Subtle Divider Line */
.agro-product-card__divider {
  width: 100%;
  border-top: 1px dotted #D6DDD7;
  margin: 0 0 10px 0;
}

/* 2.7 Product Name / Title */
.agro-product-card__title {
  margin: 0 0 6px 0;
  font-family: var(--font-family-heading, 'Poppins', sans-serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #111814;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.6em;
  letter-spacing: -0.01em;
  width: 100%;
}

.agro-product-card__title-link {
  color: #111814;
  text-decoration: none;
  transition: color 150ms ease;
}

.agro-product-card__title-link:hover,
.agro-product-card__title-link:focus {
  color: #0E773F;
}

/* 2.8 Star Rating */
.agro-product-card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  line-height: 1;
}

.agro-product-card__stars {
  color: #F5A623;
  font-size: 13px;
  letter-spacing: 3px;
  display: inline-block;
}

/* 2.9 CTA Action Button */
.agro-product-card__action {
  margin-top: auto;
  width: 100%;
}

.agro-product-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  padding: 0 16px;
  background: #0E773F;
  border: none;
  border-radius: 9999px;
  color: #FFFFFF !important;
  font-family: var(--font-family-base, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(14, 119, 63, 0.2);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.agro-product-card__btn:hover,
.agro-product-card__btn:focus {
  background: #095C30;
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(14, 119, 63, 0.32);
}

.agro-product-card__btn:focus-visible {
  outline: 2px solid #C99A3D;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .agro-product-card {
    border-radius: 20px;
    padding: 12px 12px 16px 12px;
  }
  .agro-product-card__title {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .agro-product-card {
    border-radius: 18px;
    padding: 10px 10px 14px 10px;
  }
  .agro-product-card__image-link,
  .agro-product-card__image-container {
    border-radius: 13px;
  }
  .agro-product-card__content {
    padding-top: 10px;
  }
  .agro-product-card__brand {
    font-size: 10px;
    margin-bottom: 6px;
  }
  .agro-product-card__divider {
    margin-bottom: 8px;
  }
  .agro-product-card__title {
    font-size: 14px;
    min-height: 2.6em;
  }
  .agro-product-card__stars {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .agro-product-card__rating {
    margin-bottom: 10px;
  }
  .agro-product-card__btn {
    height: 36px;
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .agro-product-card__title {
    font-size: 13px;
  }
  .agro-product-card__btn {
    height: 34px;
    font-size: 10.5px;
  }
}

/* 2.10 Homepage Stepped Autoplay Product Carousel (Exact Match to Reference) */
.agro-carousel-section {
  position: relative;
  width: 100%;
}

.agro-carousel-nav-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.agro-carousel-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #123D2A;
  border: 1.5px solid #123D2A;
  color: #FFFFFF !important;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(18, 61, 42, 0.2);
  padding: 0;
}

.agro-carousel-nav-btn svg {
  stroke: #FFFFFF;
}

.agro-carousel-nav-btn:hover {
  background: #1B5E3C;
  border-color: #1B5E3C;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(18, 61, 42, 0.3);
}

.agro-carousel-nav-btn:active {
  transform: translateY(0) scale(0.95);
}

.agro-carousel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 6px 0 16px 0;
}

.agro-carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  cursor: grab;
}

.agro-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.agro-carousel-viewport img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.agro-carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  transition: transform 750ms cubic-bezier(0.25, 1, 0.5, 1);
  box-sizing: border-box;
}

/* Base Slide Sizing matching Standard Product Grid */
.agro-carousel-slide {
  flex: 0 0 280px;
  width: 280px;
  max-width: 280px;
  box-sizing: border-box;
  display: flex;
}

.agro-carousel-slide .agro-product-card {
  width: 100%;
  height: 100%;
}

/* Accessibility: Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .agro-carousel-track {
    transition-duration: 200ms !important;
  }
}

/* 2.11 Empty State Component */
.agro-products-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px dashed #E3E7E3;
  width: 100%;
  box-sizing: border-box;
  grid-column: 1 / -1;
}

.agro-products-empty__text {
  font-size: 1rem;
  color: #4A5D53;
  margin: 0;
  font-family: var(--font-family-base, 'Inter', sans-serif);
}

/* 2.8 Category Filter Navigation & Search Bar */
.products-filter-section {
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border, #E3E7E3);
  box-sizing: border-box;
}

.category-nav-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px;
}

.category-nav-bar::-webkit-scrollbar {
  display: none;
}

.category-nav-bar .btn {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.85rem;
  padding: 6px 14px;
  min-height: 36px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .products-filter-section .container {
    flex-direction: column;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .products-search-form {
    max-width: 100% !important;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .category-nav-bar .btn {
    font-size: 0.8rem;
    padding: 5px 10px;
    min-height: 32px;
  }
}

/* ==========================================================================
   3. STATUS BADGES & TAGS
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.badge-success {
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
}

.badge-warning {
  background-color: #FEF08A;
  color: #713F12;
  border: 1px solid #FDE047;
}

.badge-danger {
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #F8B4B4;
}

.badge-info {
  background-color: #E1EFFE;
  color: #1E429F;
  border: 1px solid #B4C6FC;
}

.badge-gold {
  background-color: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
}

/* ==========================================================================
   4. FORMS & INPUT CONTROLS
   ========================================================================== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #1E293B;
  background-color: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
  min-height: 44px;
}

.form-control:hover {
  border-color: #94A3B8;
}

.form-control:focus {
  outline: none;
  border-color: #2E7D32;
  box-shadow: 0 0 0 3.5px rgba(46, 125, 50, 0.15);
  background-color: #FFFFFF;
}

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

/* ==========================================================================
   5. DATA TABLES & WRAPPERS
   ========================================================================== */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  margin-bottom: 1.5rem;
  background: #FFFFFF;
}

.data-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  text-align: left;
  background-color: #FFFFFF;
}

.data-table th {
  background-color: #F8FAFC;
  color: #042617;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  border-bottom: 1px solid #E2E8F0;
  white-space: nowrap;
}

.data-table td {
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #334155;
  border-bottom: 1px solid #F1F5F9;
}

.data-table tbody tr:hover {
  background-color: #F8FAFC;
}

/* ==========================================================================
   6. MODAL DIALOGS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(4, 38, 23, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  padding: 16px;
}

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

.modal-dialog {
  background-color: #FFFFFF;
  border-radius: 20px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  border: 1px solid #E2E8F0;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-dialog {
  transform: translateY(0) scale(1);
}

/* ==========================================================================
   7. PAGE BREADCRUMBS & INNER PAGE HEADERS
   ========================================================================== */
.breadcrumb-container {
  padding: 10px 0;
  font-size: 0.8125rem;
  color: #64748B;
  border-bottom: 1px solid #E2E8F0;
  background-color: #F8FAFC;
}

.breadcrumb-container a {
  color: #475569;
  text-decoration: none;
}

.breadcrumb-container a:hover {
  color: #042617;
}

.breadcrumb-separator {
  margin: 0 6px;
  color: #94A3B8;
}

.page-header {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #032115 0%, #063824 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  color: #FFFFFF;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #C8D6CD;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  max-width: 640px;
}

/* ==========================================================================
   8. COMPONENT RESPONSIVE RULES (ALL DEVICES)
   ========================================================================== */
@media (max-width: 768px) {
  .page-header {
    padding: 2.5rem 0;
  }

  .card {
    padding: 1.25rem;
  }

  .category-card {
    padding: 1.25rem;
  }

  .modal-dialog {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .btn {
    min-height: 44px;
  }

  .btn-full-mobile {
    width: 100% !important;
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .modal-dialog {
    padding: 1.25rem;
    border-radius: 14px;
  }
}

/* ==========================================================================
   9. ECOMMERCE MULTI-IMAGE PRODUCT GALLERY & LIGHTBOX
   ========================================================================== */
.agro-product-gallery-wrapper {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.agro-gallery-layout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

/* Vertical Thumbnails Column (Desktop) */
.agro-gallery-thumbs-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 68px;
  flex-shrink: 0;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.agro-gallery-thumb-btn {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  border: 1.5px solid #E3E7E3;
  background: #FFFFFF;
  padding: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: all 180ms ease;
  box-sizing: border-box;
  display: block;
}

.agro-gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.agro-gallery-thumb-btn:hover {
  border-color: #2F6B3F;
}

.agro-gallery-thumb-btn.is-active {
  border-color: #123D2A;
  box-shadow: 0 0 0 1px #123D2A;
}

/* Main Image Display Stage */
.agro-gallery-main-container {
  flex: 1;
  min-width: 0;
  position: relative;
  background: #F7F7F3;
  border-radius: 12px;
  border: 1px solid #E3E7E3;
  overflow: hidden;
  box-sizing: border-box;
}

.agro-gallery-main-stage {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.agro-gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
  padding: 16px;
  box-sizing: border-box;
  cursor: zoom-in;
}

.agro-gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.agro-gallery-main-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  user-select: none;
}

.agro-gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #123D2A;
}

.agro-gallery-placeholder .placeholder-icon {
  font-size: 4rem;
}

.agro-gallery-placeholder .placeholder-text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2F6B3F;
}

/* Zoom / Enlarge Button */
.agro-gallery-zoom-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 11.5px;
  font-weight: 600;
  color: #123D2A;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 180ms ease;
  z-index: 5;
}

.agro-gallery-zoom-btn:hover {
  background: #123D2A;
  color: #FFFFFF;
  border-color: #123D2A;
}

/* Slider Nav Arrows */
.agro-gallery-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border: 1px solid #CBD5E1;
  border-radius: 50%;
  color: #123D2A;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 180ms ease;
  padding-bottom: 2px;
}

.agro-gallery-nav-arrow:hover {
  background: #123D2A;
  color: #FFFFFF;
  border-color: #123D2A;
}

.agro-gallery-prev { left: 10px; }
.agro-gallery-next { right: 10px; }

/* Image Counter Badge */
.agro-gallery-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(18, 61, 42, 0.8);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  z-index: 5;
  letter-spacing: 0.04em;
}

/* Mobile Dots & Mobile Horizontal Thumbnails */
.agro-gallery-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.agro-gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #CBD5E1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 180ms ease;
}

.agro-gallery-dot.is-active {
  background: #123D2A;
  width: 18px;
  border-radius: 4px;
}

.agro-gallery-mobile-thumbs {
  display: none;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 10px;
  padding-bottom: 4px;
}

.agro-gallery-mobile-thumbs::-webkit-scrollbar {
  display: none;
}

.agro-mobile-thumb-btn {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  border: 1.5px solid #E3E7E3;
  background: #FFFFFF;
  padding: 2px;
  flex-shrink: 0;
  cursor: pointer;
  box-sizing: border-box;
}

.agro-mobile-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.agro-mobile-thumb-btn.is-active {
  border-color: #123D2A;
}

/* Lightbox Modal */
.agro-lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.agro-lightbox-modal.is-open {
  display: flex;
}

.agro-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 38, 23, 0.92);
  backdrop-filter: blur(6px);
}

.agro-lightbox-content {
  position: relative;
  z-index: 2010;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.agro-lightbox-stage {
  max-width: 85vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#agroLightboxImg {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  user-select: none;
}

.agro-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 180ms ease;
}

.agro-lightbox-close:hover {
  background: #FFFFFF;
  color: #042617;
}

.agro-lightbox-counter {
  position: absolute;
  top: -38px;
  left: 0;
  color: #D1D8D4;
  font-size: 13px;
  font-weight: 600;
}

.agro-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 180ms ease;
}

.agro-lightbox-arrow:hover {
  background: #FFFFFF;
  color: #042617;
}

.agro-lightbox-prev { left: -60px; }
.agro-lightbox-next { right: -60px; }

/* Mobile Gallery Responsive Rules */
@media (max-width: 768px) {
  .agro-gallery-thumbs-col {
    display: none;
  }
  .agro-gallery-dots {
    display: flex;
  }
  .agro-gallery-mobile-thumbs {
    display: flex;
  }
  .agro-gallery-main-stage {
    height: 300px;
  }
  .agro-lightbox-prev { left: 8px; }
  .agro-lightbox-next { right: 8px; }
  .agro-lightbox-stage {
    max-width: 95vw;
    max-height: 85vh;
  }
}

@media (max-width: 480px) {
  .agro-gallery-main-stage {
    height: 260px;
  }
}

/* ==========================================================================
   14. ABOUT US PAGE DEDICATED CORPORATE COMPONENTS
   ========================================================================== */

/* 14.0 ABOUT US HERO SECTION (RESPONSIVE CORPORATE EDITORIAL) */
.about-hero-section {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  background-color: var(--color-bg-main, #F7F7F3);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border, #E3E7E3);
}

.about-hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
  max-width: var(--container-max-width, 1240px);
  margin: 0 auto;
  padding: 0 var(--container-padding-desktop, 32px);
  box-sizing: border-box;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold, #C99A3D);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.about-hero-heading {
  font-size: clamp(2rem, 3.8vw + 0.5rem, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-primary, #123D2A);
  margin: 0;
}

.about-hero-desc {
  font-size: clamp(0.95rem, 0.3vw + 0.9rem, 1.1rem);
  line-height: 1.68;
  color: var(--color-text-muted, #68736C);
  max-width: 36rem;
  margin: 0;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.about-hero-visual {
  position: relative;
  width: 100%;
}

.about-hero-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md, 10px);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(18, 61, 42, 0.08);
  border: 1px solid var(--color-border, #E3E7E3);
  background: var(--color-bg-surface, #FFFFFF);
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .about-hero-container {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 0 var(--container-padding-mobile, 18px);
  }

  .about-hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .about-hero-actions .btn {
    flex: 1 1 calc(50% - 5px);
    white-space: nowrap;
    padding: 0 16px;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .about-hero-actions {
    flex-direction: column;
  }

  .about-hero-actions .btn {
    flex: 1 1 100%;
    width: 100%;
  }
}

.section-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.section-header-center h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  color: var(--color-primary-dark, #032115);
  margin-top: 0.625rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.section-header-center p {
  font-size: 1.05rem;
  color: var(--color-text-muted, #4B5A51);
  line-height: 1.65;
  margin: 0 auto;
}

/* Section Header Left */
.section-header-left {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-header-left h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-primary-dark, #032115);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

/* Company Intro Visual Frame */
.intro-visual-frame {
  position: relative;
  border-radius: var(--radius-xl, 20px);
  overflow: hidden;
  border: 1px solid var(--color-border, #DDE5DF);
  box-shadow: var(--shadow-lg, 0 12px 28px -4px rgba(6, 56, 36, 0.12));
  background: var(--color-bg-main, #F6FAF7);
}

.intro-visual-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.intro-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(3, 33, 21, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 163, 75, 0.4);
  border-radius: var(--radius-lg, 14px);
  padding: 16px 20px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 16px;
}

.intro-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 163, 75, 0.2);
  border: 1px solid var(--color-gold, #D4A34B);
  border-radius: var(--radius-md, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold, #D4A34B);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.intro-badge-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.intro-badge-sub {
  font-size: 0.8rem;
  color: #C1D4C7;
}

/* Business Verticals Cards */
.vertical-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-lg, 14px);
  padding: 2rem 1.5rem;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vertical-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  border-top-left-radius: var(--radius-lg, 14px);
  border-top-right-radius: var(--radius-lg, 14px);
  transition: background 0.25s ease;
}

.vertical-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg, 0 12px 28px -4px rgba(6, 56, 36, 0.12));
  border-color: var(--color-primary-light, #1b6344);
}

.vertical-card:hover::before {
  background: var(--color-gold, #D4A34B);
}

.vertical-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md, 10px);
  background: var(--color-accent-light, #EBF7EE);
  color: var(--color-primary, #063824);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.vertical-card h3 {
  font-size: 1.25rem;
  color: var(--color-primary-dark, #032115);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.vertical-card p {
  font-size: 0.925rem;
  color: var(--color-text-muted, #4B5A51);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.vertical-card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border, #DDE5DF);
}

.vertical-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-secondary, #247547);
}

/* Leadership Cards */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1040px;
  margin: 0 auto;
}

.leadership-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-xl, 20px);
  padding: 2rem;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  transition: all 0.25s ease;
}

.leadership-card:hover {
  box-shadow: var(--shadow-lg, 0 12px 28px -4px rgba(6, 56, 36, 0.12));
  border-color: rgba(36, 117, 71, 0.35);
  transform: translateY(-3px);
}

.leadership-avatar-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #032115 0%, #195834 100%);
  border: 3px solid var(--color-gold, #D4A34B);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 2.25rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.leadership-info {
  flex: 1;
}

.leadership-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-dark, #032115);
  margin-bottom: 4px;
}

.leadership-role {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gold-hover, #BF8E36);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.875rem;
}

.leadership-bio {
  font-size: 0.875rem;
  color: var(--color-text-muted, #4B5A51);
  line-height: 1.6;
  margin: 0;
}

.leadership-meta-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light, #738379);
  padding: 12px 24px;
  background: var(--color-bg-alt, #F0F6F2);
  border-radius: var(--radius-md, 10px);
  border: 1px dashed var(--color-border-dark, #B4C2B8);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Corporate Info Registry Spec Grid */
.corporate-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.corporate-spec-item {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-md, 10px);
  padding: 1.25rem 1.5rem;
  transition: all 0.2s ease;
}

.corporate-spec-item:hover {
  border-color: var(--color-secondary, #247547);
  box-shadow: var(--shadow-sm);
}

.corporate-spec-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light, #738379);
  margin-bottom: 6px;
  display: block;
}

.corporate-spec-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-dark, #032115);
  word-break: break-word;
}

/* Certifications & Compliance */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cert-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-lg, 14px);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
}

.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary, #247547);
}

.cert-badge-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.cert-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md, 10px);
  background: var(--color-gold-light, #FFF8EB);
  color: var(--color-gold-hover, #BF8E36);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(212, 163, 75, 0.3);
}

.cert-card h3 {
  font-size: 1.15rem;
  color: var(--color-primary-dark, #032115);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.cert-meta-list {
  font-size: 0.8125rem;
  color: var(--color-text-muted, #4B5A51);
  margin: 0.75rem 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cert-meta-item strong {
  color: var(--color-text-main, #14211A);
}

.cert-action-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-secondary, #247547);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  padding-top: 0.875rem;
  border-top: 1px solid var(--color-border, #DDE5DF);
}

.cert-action-link:hover {
  color: var(--color-primary-dark, #032115);
  transform: translateX(3px);
}

/* Infrastructure Showcase */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.infra-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-lg, 14px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.infra-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary, #247547);
}

.infra-visual {
  height: 180px;
  background: linear-gradient(135deg, #032115 0%, #195834 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold, #D4A34B);
  font-size: 3rem;
  position: relative;
}

.infra-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.infra-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.infra-body h3 {
  font-size: 1.15rem;
  color: var(--color-primary-dark, #032115);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.infra-body p {
  font-size: 0.875rem;
  color: var(--color-text-muted, #4B5A51);
  line-height: 1.6;
  margin: 0;
}

/* Quality Commitment Points */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.quality-point-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-lg, 14px);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.quality-point-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary, #247547);
}

.quality-point-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-gold, #D4A34B);
  background: var(--color-gold-light, #FFF8EB);
  border: 1px solid rgba(212, 163, 75, 0.3);
  padding: 3px 10px;
  border-radius: 99px;
  align-self: flex-start;
  margin-bottom: 1rem;
}

.quality-point-card h3 {
  font-size: 1.15rem;
  color: var(--color-primary-dark, #032115);
  margin-bottom: 0.625rem;
  font-weight: 700;
}

.quality-point-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted, #4B5A51);
  line-height: 1.6;
  margin: 0;
}

/* Supply Chain Visual Flow */
.supply-flow-wrapper {
  position: relative;
  padding: 1rem 0;
}

.supply-flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
}

.supply-step-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-lg, 14px);
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.25s ease;
}

.supply-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary, #247547);
}

.supply-step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-dark, #032115);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-xs);
}

.supply-step-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.supply-step-card h3 {
  font-size: 0.95rem;
  color: var(--color-primary-dark, #032115);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.supply-step-card p {
  font-size: 0.78rem;
  color: var(--color-text-muted, #4B5A51);
  line-height: 1.45;
  margin: 0;
}

/* Markets We Serve Grid */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.market-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-lg, 14px);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.25s ease;
}

.market-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary, #247547);
}

.market-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md, 10px);
  background: var(--color-accent-light, #EBF7EE);
  color: var(--color-primary, #063824);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.market-card h3 {
  font-size: 1.15rem;
  color: var(--color-primary-dark, #032115);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.market-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted, #4B5A51);
  line-height: 1.55;
  margin: 0;
}

/* Company Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-lg, 14px);
  padding: 2rem 1.5rem;
  transition: all 0.25s ease;
  position: relative;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold, #D4A34B);
}

.value-card-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.25rem;
  color: var(--color-primary-dark, #032115);
  margin-bottom: 0.625rem;
  font-weight: 700;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted, #4B5A51);
  line-height: 1.6;
  margin: 0;
}

/* Milestones Modern Horizontal / Stepped Timeline */
.milestones-timeline-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}

.milestones-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--color-border-dark, #B4C2B8);
  z-index: 1;
}

.milestone-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.milestone-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--color-primary, #063824);
  color: var(--color-primary, #063824);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 4px #FFFFFF;
  transition: all 0.2s ease;
}

.milestone-item:hover .milestone-dot {
  background: var(--color-primary, #063824);
  color: #FFFFFF;
  border-color: var(--color-gold, #D4A34B);
}

.milestone-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-md, 10px);
  padding: 1.25rem 1rem;
  width: 100%;
  transition: all 0.2s ease;
}

.milestone-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-secondary, #247547);
}

.milestone-card h3 {
  font-size: 0.95rem;
  color: var(--color-primary-dark, #032115);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.milestone-card p {
  font-size: 0.78rem;
  color: var(--color-text-muted, #4B5A51);
  line-height: 1.45;
  margin: 0;
}

/* About Us Gallery Interactive Grid */
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-gallery-item {
  position: relative;
  border-radius: var(--radius-lg, 14px);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: all 0.25s ease;
}

.about-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold, #D4A34B);
}

.about-gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-gallery-item:hover .about-gallery-thumb {
  transform: scale(1.05);
}

.about-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 33, 21, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #FFFFFF;
}

.about-gallery-title {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.about-gallery-caption {
  font-size: 0.78rem;
  color: #C1D4C7;
}

.about-gallery-zoom-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(3, 33, 21, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.875rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s ease;
}

.about-gallery-item:hover .about-gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Final CTA Section Enhancement */
.agro-about-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.agro-about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 163, 75, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Responsive Overrides for About Us Sections */
@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .corporate-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .supply-flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .milestones-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .milestones-grid::before {
    display: none;
  }
  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-header-center {
    margin-bottom: 2rem;
  }
  .corporate-spec-grid {
    grid-template-columns: 1fr;
  }
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .infra-grid {
    grid-template-columns: 1fr;
  }
  .quality-grid {
    grid-template-columns: 1fr;
  }
  .supply-flow-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .supply-step-card {
    text-align: left;
    align-items: flex-start;
    padding: 1.25rem;
  }
  .supply-step-badge {
    margin-bottom: 0.5rem;
  }
  .markets-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .milestones-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .milestone-item {
    align-items: flex-start;
    text-align: left;
  }
  .milestone-dot {
    margin-bottom: 0.5rem;
  }
  .about-gallery-grid {
    grid-template-columns: 1fr;
  }
  .leadership-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .intro-visual-img {
    height: 320px;
  }
  .intro-floating-badge {
    position: static;
    margin-top: 1rem;
    background: var(--color-primary-dark, #032115);
  }
}

/* ==========================================================================
   15. CONTACT US PAGE DEDICATED CORPORATE COMPONENTS
   ========================================================================== */

/* Compact Hero for Contact Page */
.contact-hero-section {
  padding: 3.5rem 0 3rem 0;
  background: radial-gradient(circle at top right, rgba(209, 242, 217, 0.4) 0%, transparent 60%),
              radial-gradient(circle at bottom left, rgba(255, 248, 235, 0.5) 0%, transparent 60%),
              var(--color-bg-main, #F6FAF7);
  border-bottom: 1px solid var(--color-border, #DDE5DF);
  position: relative;
}

.contact-hero-container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.contact-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-hover, #BF8E36);
  margin-bottom: 0.75rem;
}

.contact-hero-heading {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary-dark, #032115);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.contact-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--color-text-muted, #4B5A51);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
}

/* Channel Routing Cards ("How Can We Help?") */
.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-channel-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-lg, 14px);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  height: 100%;
}

.contact-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg, 0 12px 28px -4px rgba(6, 56, 36, 0.12));
  border-color: var(--color-secondary, #247547);
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md, 10px);
  background: var(--color-accent-light, #EBF7EE);
  color: var(--color-primary, #063824);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.contact-channel-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark, #032115);
  margin-bottom: 0.5rem;
}

.contact-channel-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted, #4B5A51);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.contact-channel-btn {
  margin-top: auto;
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-bg-alt, #F0F6F2);
  color: var(--color-primary-dark, #032115);
  border: 1px solid var(--color-border, #DDE5DF);
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-channel-btn:hover {
  background: var(--color-primary, #063824);
  color: #FFFFFF !important;
  border-color: var(--color-primary, #063824);
}

/* Contact Info Panel */
.contact-info-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-xl, 20px);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-info-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark, #032115);
  margin-bottom: 0.5rem;
}

.contact-info-header p {
  font-size: 0.925rem;
  color: var(--color-text-muted, #4B5A51);
  line-height: 1.6;
  margin: 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-info-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md, 10px);
  background: var(--color-accent-light, #EBF7EE);
  color: var(--color-primary, #063824);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(36, 117, 71, 0.2);
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light, #738379);
  margin-bottom: 4px;
  display: block;
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary-dark, #032115);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--color-primary-dark, #032115);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-value a:hover {
  color: var(--color-secondary, #247547);
}

.contact-hours-box {
  background: var(--color-bg-alt, #F0F6F2);
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-md, 10px);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.contact-hours-day {
  font-weight: 600;
  color: var(--color-primary-dark, #032115);
}

.contact-hours-time {
  color: var(--color-text-muted, #4B5A51);
}

/* Contact Form Card */
.contact-form-panel {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-xl, 20px);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-header {
  margin-bottom: 1.75rem;
}

.contact-form-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary-dark, #032115);
  margin-bottom: 0.35rem;
}

.contact-form-header p {
  font-size: 0.925rem;
  color: var(--color-text-muted, #4B5A51);
  margin: 0;
}

.contact-form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-dark, #032115);
}

.form-label .req-star {
  color: #DC2626;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-family-base, 'Inter', sans-serif);
  font-size: 0.9375rem;
  color: var(--color-text-main, #14211A);
  background-color: #FFFFFF;
  border: 1.5px solid var(--color-border, #DDE5DF);
  border-radius: 8px;
  padding: 0 1rem;
  height: 50px;
  line-height: 50px;
  transition: all 0.2s ease;
  outline: none;
}

.form-textarea {
  height: 150px;
  line-height: 1.5;
  padding: 0.875rem 1rem;
  resize: vertical;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary, #063824);
  box-shadow: 0 0 0 3px rgba(6, 56, 36, 0.12);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #94A3B8;
}

.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid {
  border-color: #DC2626;
  background-color: #FEF2F2;
}

.form-field-error {
  font-size: 0.75rem;
  color: #DC2626;
  margin-top: 2px;
  display: none;
}

.form-field-error.is-visible {
  display: block;
}

.form-submit-btn {
  height: 50px;
  min-height: 50px;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #042617 0%, #083E26 100%);
  color: #FFFFFF !important;
  border: 1px solid #042617;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(4, 38, 23, 0.2);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.form-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #063824 0%, #0C5233 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(4, 38, 23, 0.25);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-alert-box {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
  display: none;
  margin-bottom: 1rem;
}

.form-alert-box.is-success {
  display: block;
  background-color: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.form-alert-box.is-error {
  display: block;
  background-color: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* Map Section */
.contact-map-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-xl, 20px);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-map-embed-wrap {
  width: 100%;
  height: 380px;
  position: relative;
  background: var(--color-bg-alt, #F0F6F2);
}

.contact-map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #032115 0%, #0d462c 100%);
  color: #FFFFFF;
}

.contact-map-placeholder-icon {
  font-size: 3rem;
  color: var(--color-gold, #D4A34B);
}

.contact-map-footer-info {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--color-border, #DDE5DF);
}

/* FAQ Accordion Section */
.contact-faq-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-item {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #DDE5DF);
  border-radius: var(--radius-md, 10px);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-accordion-item:hover {
  border-color: var(--color-secondary, #247547);
}

.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-family-heading, 'Poppins', sans-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary-dark, #032115);
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--color-secondary, #247547);
  outline-offset: -2px;
}

.faq-icon-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg-alt, #F0F6F2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #063824);
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}

.faq-accordion-item.is-open .faq-icon-arrow {
  transform: rotate(180deg);
  background: var(--color-primary, #063824);
  color: #FFFFFF;
}

.faq-content {
  display: none;
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.925rem;
  color: var(--color-text-muted, #4B5A51);
  line-height: 1.65;
  border-top: 1px solid rgba(221, 229, 223, 0.6);
}

.faq-accordion-item.is-open .faq-content {
  display: block;
  padding-top: 1rem;
}

/* Responsive Overrides for Contact Page */
@media (max-width: 1024px) {
  .contact-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-channels-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-card, .contact-form-panel {
    padding: 1.5rem;
  }
  .contact-hero-section {
    padding: 2.5rem 0 2rem 0;
  }
  .contact-map-footer-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   16. COMMERCIAL RFQ, DEALER APPLICATION & EXPORT INQUIRY FORMS
   ========================================================================== */
.rfq-product-row,
.exp-product-row {
  border-radius: var(--radius-md, 8px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rfq-product-row:hover,
.exp-product-row:hover {
  border-color: var(--color-gold, #D4AF37);
}

.rfq-remove-row-btn:hover,
.exp-remove-row-btn:hover {
  text-decoration: underline;
  color: #B91C1C;
}

@media (max-width: 768px) {
  .rfq-page-wrapper .grid-cols-2,
  .dealer-apply-page-wrapper .grid-cols-2,
  .dealer-apply-page-wrapper .grid-cols-3,
  .export-inquiry-page-wrapper .grid-cols-2,
  .export-inquiry-page-wrapper .grid-cols-3 {
    grid-template-columns: 1fr !important;
  }

  .rfq-page-wrapper .card,
  .dealer-apply-page-wrapper .card,
  .export-inquiry-page-wrapper .card {
    padding: 1.25rem !important;
  }
}

/* ==========================================================================
   17. MODERN CORPORATE HOMEPAGE DESIGN SYSTEM & SECTIONS
   ========================================================================== */

/* 17.1 HERO SECTION & BANNER SLIDER */
.hero-corporate-section {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  background-color: var(--color-bg-main, #F7F7F3);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border, #E3E7E3);
}

.hero-slider-container {
  position: relative;
  width: 100%;
}

.hero-slides-track {
  position: relative;
  width: 100%;
  min-height: 440px;
}

.hero-slide-item {
  display: none;
  opacity: 0;
  width: 100%;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide-item.is-active {
  display: block;
  opacity: 1;
}

.hero-corporate-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
  max-width: var(--container-max-width, 1240px);
  margin: 0 auto;
  padding: 0 var(--container-padding-desktop, 32px);
  box-sizing: border-box;
}

.hero-corporate-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-corporate-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold, #C99A3D);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-corporate-heading {
  font-size: clamp(2.25rem, 4.5vw + 0.5rem, 4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-primary, #123D2A);
  margin: 0;
}

.hero-corporate-desc {
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.125rem);
  line-height: 1.68;
  color: var(--color-text-muted, #68736C);
  max-width: 36rem;
  margin: 0;
}

.hero-corporate-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-corporate-dealer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-secondary, #2F6B3F);
  text-decoration: none;
  transition: all var(--transition-fast, 160ms ease);
}

.hero-corporate-dealer-link:hover {
  color: var(--color-primary, #123D2A);
  transform: translateX(4px);
}

.hero-corporate-visual {
  position: relative;
  width: 100%;
}

.hero-visual-frame {
  position: relative;
  border-radius: var(--radius-lg, 14px);
  overflow: hidden;
  border: 1px solid var(--color-border, #E3E7E3);
  box-shadow: 0 12px 32px rgba(18, 61, 42, 0.08);
  background-color: #FFFFFF;
  aspect-ratio: 16 / 9;
}

.hero-img-cover {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow, 400ms ease);
}

.hero-visual-frame:hover .hero-img-cover {
  transform: scale(1.03);
}

/* Slide Badge */
.hero-slide-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(18, 61, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.hero-slide-badge .badge-current {
  color: #E6C265;
}

.hero-slide-badge .badge-sep {
  opacity: 0.6;
}

/* Hero Slider Controls */
.hero-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.hero-slider-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--color-border, #E3E7E3);
  color: var(--color-primary, #123D2A);
  cursor: pointer;
  transition: all 200ms ease;
  box-shadow: 0 4px 12px rgba(18, 61, 42, 0.06);
}

.hero-slider-nav:hover {
  background: var(--color-primary, #123D2A);
  color: #FFFFFF;
  border-color: var(--color-primary, #123D2A);
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(18, 61, 42, 0.15);
}

.hero-slider-nav:active {
  transform: scale(0.96);
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  border-radius: 24px;
  border: 1px solid var(--color-border, #E3E7E3);
  backdrop-filter: blur(6px);
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: none;
  background: #C4CFC7;
  cursor: pointer;
  padding: 0;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider-dot:hover {
  background: var(--color-secondary, #2F6B3F);
}

.hero-slider-dot.is-active {
  width: 28px;
  background: var(--color-gold, #C99A3D);
  box-shadow: 0 2px 6px rgba(201, 154, 61, 0.35);
}

/* Slide Active Transition Keyframes */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide-item.is-active .hero-anim-eyebrow {
  animation: heroFadeIn 0.45s ease-out both;
}

.hero-slide-item.is-active .hero-anim-heading {
  animation: heroFadeIn 0.55s ease-out 0.08s both;
}

.hero-slide-item.is-active .hero-anim-desc {
  animation: heroFadeIn 0.55s ease-out 0.16s both;
}

.hero-slide-item.is-active .hero-anim-actions {
  animation: heroFadeIn 0.55s ease-out 0.24s both;
}

.hero-slide-item.is-active .hero-anim-visual {
  animation: heroFadeIn 0.65s ease-out 0.12s both;
}

/* 17.2 TRUST / BUSINESS HIGHLIGHTS STRIP */
.trust-strip {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-border, #E3E7E3);
  padding: 1.75rem 0;
  width: 100%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background-color: var(--color-bg-main, #F7F7F3);
  border: 1px solid var(--color-border, #E3E7E3);
  border-radius: var(--radius-md, 10px);
  transition: all var(--transition-normal, 260ms ease);
}

.trust-card:hover {
  border-color: var(--color-secondary, #2F6B3F);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.trust-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-accent-light, #EBF3ED);
  color: var(--color-secondary, #2F6B3F);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary, #123D2A);
  line-height: 1.3;
}

/* 17.3 ABOUT SECTION (EDITORIAL LAYOUT) */
.about-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-editorial-card {
  background-color: var(--color-bg-main, #F7F7F3);
  border: 1px solid var(--color-border, #E3E7E3);
  border-radius: var(--radius-xl, 18px);
  padding: 2.5rem;
  position: relative;
}

.about-editorial-inner {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border, #E3E7E3);
  border-radius: var(--radius-lg, 14px);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.about-points-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.about-point-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-point-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-accent-light, #EBF3ED);
  color: var(--color-secondary, #2F6B3F);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-point-text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-primary, #123D2A);
  margin-bottom: 2px;
}

.about-point-text span {
  font-size: 0.875rem;
  color: var(--color-text-muted, #68736C);
  line-height: 1.5;
}

/* 17.4 PRODUCT CATEGORIES (IMAGE-BASED CARDS: 4 COLS DESKTOP, 2 COLS MOBILE) */
.agro-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.agro-category-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border, #E3E7E3);
  border-radius: var(--radius-md, 10px);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(18, 61, 42, 0.03);
  transition: transform var(--transition-normal, 260ms ease), box-shadow var(--transition-normal, 260ms ease), border-color var(--transition-normal, 260ms ease);
}

.agro-category-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-secondary, #2F6B3F);
  box-shadow: var(--shadow-card-hover);
}

.agro-category-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--color-bg-main, #F7F7F3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agro-category-card__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform var(--transition-slow, 400ms ease);
}

.agro-category-card:hover .agro-category-card__img {
  transform: scale(1.03);
}

.agro-category-card__body {
  padding: 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border, #E3E7E3);
  background-color: #FFFFFF;
}

.agro-category-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-primary, #123D2A);
  margin: 0;
  transition: color var(--transition-fast, 160ms ease);
}

.agro-category-card:hover .agro-category-card__title {
  color: var(--color-secondary, #2F6B3F);
}

.agro-category-card__arrow {
  color: var(--color-secondary, #2F6B3F);
  font-size: 1.125rem;
  font-weight: 700;
  transition: transform var(--transition-fast, 160ms ease);
  display: inline-block;
}

.agro-category-card:hover .agro-category-card__arrow {
  transform: translateX(4px);
  color: var(--color-primary, #123D2A);
}

/* 17.5 WHOLESALE B2B SECTION (DEEP GREEN #123D2A) */
.wholesale-corporate-section {
  background-color: var(--color-primary, #123D2A);
  color: #FFFFFF;
  padding: var(--spacing-20, 5rem) 0;
  position: relative;
}

.wholesale-corporate-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.wholesale-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.75rem 0 2.25rem 0;
}

.wholesale-pillar-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm, 6px);
  padding: 1.25rem 1rem;
  transition: background-color var(--transition-fast, 160ms ease);
}

.wholesale-pillar-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.wholesale-pillar-card strong {
  display: block;
  color: var(--color-gold, #C99A3D);
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.wholesale-pillar-card span {
  font-size: 0.8125rem;
  color: #CBD5CE;
  line-height: 1.4;
}

.wholesale-visual-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg, 14px);
  padding: 2.5rem;
  text-align: center;
}

/* 17.6 IMPORT & EXPORT SECTION */
.export-corporate-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.export-pipeline-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem 0;
}

.export-pipeline-step {
  background-color: var(--color-bg-main, #F7F7F3);
  border: 1px solid var(--color-border, #E3E7E3);
  padding: 8px 14px;
  border-radius: var(--radius-xs, 4px);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary, #123D2A);
  display: inline-flex;
  align-items: center;
}

.export-pipeline-step.is-final {
  background-color: var(--color-gold-light, #FDF9F0);
  border-color: rgba(201, 154, 61, 0.35);
  color: var(--color-gold-hover, #B58832);
}

.export-pipeline-arrow {
  color: var(--color-gold, #C99A3D);
  font-weight: bold;
  font-size: 0.9375rem;
}

/* 17.7 DEALER PARTNERSHIP SECTION */
.dealer-corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.dealer-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.75rem 0 2.25rem 0;
}

.dealer-pillar-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border, #E3E7E3);
  border-radius: var(--radius-sm, 6px);
  padding: 1.25rem 1rem;
  transition: border-color var(--transition-fast, 160ms ease);
}

.dealer-pillar-card:hover {
  border-color: var(--color-secondary, #2F6B3F);
}

.dealer-pillar-card strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-primary, #123D2A);
  margin-bottom: 4px;
}

.dealer-pillar-card span {
  font-size: 0.8125rem;
  color: var(--color-text-muted, #68736C);
  line-height: 1.4;
}

.dealer-portal-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border, #E3E7E3);
  border-radius: var(--radius-lg, 14px);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.dealer-portal-features {
  background-color: var(--color-bg-main, #F7F7F3);
  border: 1px solid var(--color-border, #E3E7E3);
  border-radius: var(--radius-sm, 6px);
  padding: 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
}

.dealer-portal-features ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  color: var(--color-text-muted, #68736C);
}

/* 17.8 WHY CHOOSE US (4 CLEAN FEATURE BLOCKS) */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.why-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border, #E3E7E3);
  border-radius: var(--radius-md, 10px);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition-normal, 260ms ease);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-secondary, #2F6B3F);
  box-shadow: var(--shadow-card-hover);
}

.why-card__num {
  font-family: var(--font-family-heading, 'Poppins', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold, #C99A3D);
  line-height: 1;
  margin-bottom: 1rem;
}

.why-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm, 6px);
  background-color: var(--color-accent-light, #EBF3ED);
  color: var(--color-secondary, #2F6B3F);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.why-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-primary, #123D2A);
  margin-bottom: 8px;
}

.why-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted, #68736C);
  line-height: 1.55;
  margin: 0;
}

/* 17.9 BUSINESS PROCESS (HORIZONTAL DESKTOP, VERTICAL MOBILE) */
.business-process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  position: relative;
  margin-top: 2rem;
}

.process-step-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border, #E3E7E3);
  border-radius: var(--radius-md, 10px);
  padding: 1.5rem 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal, 260ms ease);
}

.process-step-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-secondary, #2F6B3F);
  box-shadow: var(--shadow-sm);
}

.process-step-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold, #C99A3D);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.process-step-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary, #123D2A);
  margin-bottom: 6px;
}

.process-step-desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted, #68736C);
  line-height: 1.45;
  margin: 0;
}

/* 17.10 CORPORATE CREDIBILITY */
.credibility-corporate-wrapper {
  background-color: var(--color-bg-main, #F7F7F3);
  border: 1px solid var(--color-border, #E3E7E3);
  border-radius: var(--radius-lg, 14px);
  padding: 2.25rem 2.5rem;
}

.credibility-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.credibility-badges-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.cred-badge-item {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border, #E3E7E3);
  border-radius: var(--radius-sm, 6px);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-fast, 160ms ease);
}

.cred-badge-item:hover {
  border-color: var(--color-secondary, #2F6B3F);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xs);
}

.cred-badge-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cred-badge-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-primary, #123D2A);
  font-weight: 700;
  margin-bottom: 2px;
}

.cred-badge-item span {
  font-size: 0.75rem;
  color: var(--color-text-muted, #68736C);
  line-height: 1.3;
  display: block;
}

/* 17.11 INFRASTRUCTURE & GALLERY */
.infra-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.infra-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border, #E3E7E3);
  border-radius: var(--radius-md, 10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal, 260ms ease);
}

.infra-card:hover {
  border-color: var(--color-secondary, #2F6B3F);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.infra-card--featured {
  grid-row: span 2;
}

.infra-card__visual {
  background: linear-gradient(135deg, var(--color-bg-main, #F7F7F3) 0%, #EBEFEA 100%);
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border, #E3E7E3);
}

.infra-card--featured .infra-card__visual {
  padding: 4rem 2rem;
}

.infra-card__graphic {
  font-size: 3.5rem;
}

.infra-card--featured .infra-card__graphic {
  font-size: 4.5rem;
}

.infra-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.infra-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold, #C99A3D);
  margin-bottom: 6px;
  display: block;
}

.infra-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-primary, #123D2A);
  margin-bottom: 8px;
}

.infra-card--featured .infra-card__title {
  font-size: 1.25rem;
}

.infra-card__text {
  font-size: 0.875rem;
  color: var(--color-text-muted, #68736C);
  line-height: 1.55;
  margin: 0;
}

/* 17.12 FINAL CTA SECTION (DEEP GREEN #123D2A) */
.final-cta-corporate {
  background-color: var(--color-primary, #123D2A);
  color: #FFFFFF;
  padding: var(--spacing-20, 5rem) 0;
  text-align: center;
  position: relative;
}

.final-cta-container {
  max-width: var(--container-narrow-width, 860px);
  margin: 0 auto;
  padding: 0 var(--container-padding-desktop, 32px);
}

.final-cta-heading {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.final-cta-desc {
  color: #D1D8D4;
  font-size: var(--font-size-body, 1.0625rem);
  max-width: 640px;
  margin: 0 auto 2rem auto;
  line-height: 1.65;
}

/* 17.13 ANIMATION SYSTEM & SCROLL REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1), transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Load Stagger Animations */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-anim-eyebrow {
  opacity: 0;
  animation: heroFadeUp 450ms cubic-bezier(0.16, 1, 0.3, 1) 150ms forwards;
}

.hero-anim-heading {
  opacity: 0;
  animation: heroFadeUp 500ms cubic-bezier(0.16, 1, 0.3, 1) 250ms forwards;
}

.hero-anim-desc {
  opacity: 0;
  animation: heroFadeUp 500ms cubic-bezier(0.16, 1, 0.3, 1) 350ms forwards;
}

.hero-anim-actions {
  opacity: 0;
  animation: heroFadeUp 500ms cubic-bezier(0.16, 1, 0.3, 1) 450ms forwards;
}

.hero-anim-visual {
  opacity: 0;
  animation: heroScaleIn 650ms cubic-bezier(0.16, 1, 0.3, 1) 250ms forwards;
}

/* Accessibility: Strict Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-anim-eyebrow,
  .hero-anim-heading,
  .hero-anim-desc,
  .hero-anim-actions,
  .hero-anim-visual {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ==========================================================================
   18. RESPONSIVE MEDIA QUERIES FOR CORPORATE HOMEPAGE
   ========================================================================== */

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .hero-corporate-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 24px;
  }

  .about-editorial-grid,
  .wholesale-corporate-grid,
  .export-corporate-grid,
  .dealer-corporate-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .agro-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .business-process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .credibility-badges-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .infra-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .infra-card--featured {
    grid-column: span 2;
    grid-row: auto;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  .hero-corporate-section {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .hero-corporate-container {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 0 var(--container-padding-mobile, 18px);
  }

  .hero-corporate-content {
    gap: 1.25rem;
    width: 100%;
  }

  .hero-corporate-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-corporate-actions .btn {
    width: 100%;
    min-height: 48px;
    white-space: nowrap;
    padding: 0 16px;
    justify-content: center;
  }

  .hero-corporate-visual {
    width: 100%;
    margin-top: 0.5rem;
  }

  /* 2x2 Trust Highlights Grid on Mobile */
  .trust-strip {
    padding: 1.25rem 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .trust-card {
    padding: 10px 12px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-title {
    font-size: 0.8125rem;
    line-height: 1.25;
    display: block;
  }

  .trust-desc {
    font-size: 0.72rem;
    color: var(--color-text-muted, #68736C);
    line-height: 1.3;
    display: block;
    margin-top: 2px;
  }

  .trust-icon-box {
    width: 26px;
    height: 26px;
  }

  /* 2 Columns Category Cards on Mobile */
  .agro-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .agro-category-card__body {
    padding: 10px 12px;
  }

  .agro-category-card__title {
    font-size: 0.9375rem;
  }

  /* Wholesale Pillars Stack */
  .wholesale-pillars-grid,
  .dealer-pillars-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Why Choose Us 2-Columns on Mobile */
  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .why-card {
    padding: 1.25rem 1rem;
  }

  /* Business Process Vertical Timeline on Mobile */
  .business-process-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-step-card {
    padding: 1.25rem;
  }

  /* Credibility Badges on Mobile */
  .credibility-corporate-wrapper {
    padding: 1.5rem;
  }

  .credibility-badges-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Infrastructure Gallery on Mobile */
  .infra-gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .infra-card--featured {
    grid-column: span 1;
  }

  /* Final CTA button stacking */
  .final-cta-corporate .btn {
    min-height: 48px;
  }
}

/* Small Mobile Devices (<= 480px / 360px - 390px) */
@media (max-width: 480px) {
  .hero-corporate-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-corporate-actions .btn {
    width: 100%;
    flex: 1 1 100%;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-container .flex {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-container .btn {
    width: 100%;
  }
}

/* ==========================================================================
   HOMEPAGE CORPORATE SECTIONS ENHANCEMENT
   ========================================================================== */

/* 03. About Section Editorial Grid */
.about-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.about-editorial-card {
  position: relative;
  background: linear-gradient(145deg, #F7F7F3 0%, #EBF0EC 100%);
  border: 1px solid #D3DDD5;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(18, 61, 42, 0.05);
}

.about-editorial-inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .about-editorial-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-editorial-card {
    padding: 1.75rem;
  }
}

/* 04. Product Categories (Circular Horizontal Scrollable Showcase) */
.agro-categories-section {
  position: relative;
  background: #F7F7F3;
  overflow: hidden;
  padding-top: var(--spacing-12, 3rem);
  padding-bottom: var(--spacing-12, 3rem);
}

.agro-categories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.agro-categories-nav-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.agro-cat-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #D3DDD5;
  color: #123D2A;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(18, 61, 42, 0.06);
}

.agro-cat-nav-btn:hover {
  background: #123D2A;
  border-color: #123D2A;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(18, 61, 42, 0.15);
}

.agro-categories-viewport-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.agro-categories-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding: 8px 4px 16px 4px;
}

.agro-categories-viewport::-webkit-scrollbar {
  display: none;
}

.agro-categories-track {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  width: max-content;
  min-width: 100%;
}

.agro-category-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #18221D;
  flex: 0 0 auto;
  width: 140px;
  transition: transform 0.25s ease;
}

.agro-category-circle-thumb {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2.5px solid #E3E7E3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(18, 61, 42, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.agro-category-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  pointer-events: none;
}

.agro-category-circle-item:hover .agro-category-circle-thumb {
  border-color: #2F6B3F;
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(18, 61, 42, 0.12);
}

.agro-category-circle-item:hover .agro-category-circle-img {
  transform: scale(1.08);
}

.agro-category-circle-name {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #123D2A;
  line-height: 1.3;
  transition: color 0.2s ease;
  text-align: center;
  max-width: 130px;
  word-wrap: break-word;
}

.agro-category-circle-item:hover .agro-category-circle-name {
  color: #2F6B3F;
}

.agro-category-circle-count {
  font-size: 0.75rem;
  color: #68736C;
  font-weight: 500;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .agro-categories-track {
    gap: 20px;
  }
  .agro-category-circle-item {
    width: 120px;
  }
  .agro-category-circle-thumb {
    width: 110px;
    height: 110px;
  }
  .agro-category-circle-name {
    font-size: 0.88rem;
    max-width: 110px;
  }
}

@media (max-width: 768px) {
  .agro-categories-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .agro-categories-header {
    margin-bottom: 1.25rem;
  }
  .agro-categories-track {
    gap: 16px;
    padding-bottom: 8px;
  }
  .agro-category-circle-item {
    width: 96px;
  }
  .agro-category-circle-thumb {
    width: 90px;
    height: 90px;
    border-width: 2px;
  }
  .agro-category-circle-name {
    font-size: 0.82rem;
    margin-top: 8px;
    max-width: 90px;
  }
  .agro-categories-nav-group {
    display: none;
  }
}

/* 06. Worldwide Trade Map & Route Animation — v1.0.9 */
.worldwide-trade-section{padding:clamp(4.5rem,8vw,7rem) 0;overflow:hidden}
.worldwide-trade-header{display:flex;align-items:flex-end;justify-content:space-between;gap:3rem;margin-bottom:2rem}
.worldwide-trade-header .eyebrow-text{display:inline-block;margin-bottom:.65rem}
.worldwide-trade-header h2{margin:0;color:#123D2A;font-size:clamp(2rem,4vw,3.25rem);line-height:1.08;letter-spacing:-.035em;font-weight:750}
.worldwide-trade-header>p{max-width:470px;margin:0 0 .15rem;color:#68736C;font-size:1rem;line-height:1.7}
.world-trade-map-card{position:relative;overflow:hidden;background:#F8FBF8;border:1px solid #D9E4DC;border-radius:24px;box-shadow:0 18px 55px rgba(18,61,42,.075)}
.world-trade-map-topbar{min-height:68px;padding:0 1.5rem;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #E1E9E3;background:rgba(255,255,255,.86)}
.world-trade-badge,.world-trade-origin{display:inline-flex;align-items:center;gap:.6rem;color:#315842;font-size:.76rem;font-weight:750;letter-spacing:.08em}
.world-trade-badge{padding:.55rem .8rem;border:1px solid #E2D2A6;border-radius:999px;background:#FFF8E5;color:#9A5A14}
.world-trade-badge-dot{width:7px;height:7px;border-radius:50%;background:#C99A3D;box-shadow:0 0 0 4px rgba(201,154,61,.12)}
.world-trade-origin{letter-spacing:0;font-size:.86rem;font-weight:600}.world-trade-origin>span{color:#D83B50;font-size:.8rem}.world-trade-origin strong{color:#123D2A}
.world-trade-map-viewport{position:relative;padding:1rem 1.25rem .4rem;background:radial-gradient(circle at 62% 42%,rgba(201,154,61,.055),transparent 28%),linear-gradient(180deg,#FBFDFC 0%,#F4F8F5 100%)}
.world-trade-map{display:block;width:100%;height:auto;min-height:420px;font-family:"Plus Jakarta Sans",sans-serif}
.world-trade-land{transition:fill .3s ease,opacity .3s ease}.world-trade-map:hover .world-trade-land{opacity:.94}
.trade-routes path{vector-effect:non-scaling-stroke;animation:tradeRouteDash 2.6s linear infinite}
.trade-route-pulses circle{vector-effect:non-scaling-stroke}
.trade-destination text{fill:#173F2C;font-size:14px;font-weight:700;text-anchor:middle;paint-order:stroke;stroke:#F8FBF8;stroke-width:5px;stroke-linejoin:round}
.trade-origin-hub{text-anchor:middle}.trade-origin-ring{transform-box:fill-box;transform-origin:center}.trade-origin-ring.ring-one{animation:tradeHubPulse 2.4s ease-out infinite}.trade-origin-ring.ring-two{animation:tradeHubPulse 2.4s ease-out .8s infinite}
.trade-origin-hub>text:not(.trade-origin-caption){fill:#123D2A;font-size:16px;font-weight:800;letter-spacing:.08em}.trade-origin-caption{fill:#718078;font-size:10px;font-weight:700;letter-spacing:.16em}
.world-trade-map-legend{display:flex;align-items:center;justify-content:center;gap:1.5rem;flex-wrap:wrap;padding:.85rem 1rem 1.1rem;color:#68736C;font-size:.72rem;font-weight:600}.world-trade-map-legend span{display:inline-flex;align-items:center;gap:.45rem}
.legend-dot{width:8px;height:8px;border-radius:50%;display:inline-block}.legend-origin{background:#C99A3D;box-shadow:0 0 0 3px rgba(201,154,61,.12)}.legend-line{width:22px;height:0;border-top:2px dashed #728F64;display:inline-block}.legend-pulse{width:7px;height:7px;border-radius:50%;background:#2F6B3F;display:inline-block;box-shadow:0 0 0 4px rgba(47,107,63,.10)}
.world-trade-footer{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;padding:1.15rem 1.5rem;border-top:1px solid #E1E9E3;background:#fff}.world-trade-footnote{display:flex;align-items:center;gap:.8rem}.world-trade-foot-icon{width:38px;height:38px;display:grid;place-items:center;flex:0 0 auto;border-radius:11px;background:#EDF4EF;color:#2F6B3F;font-size:1rem;font-weight:800}.world-trade-footnote strong,.world-trade-footnote span{display:block}.world-trade-footnote strong{color:#173F2C;font-size:.84rem}.world-trade-footnote span{margin-top:.2rem;color:#78837D;font-size:.72rem}
@keyframes tradeRouteDash{to{stroke-dashoffset:-30}}@keyframes tradeHubPulse{0%{opacity:.72;transform:scale(.72)}70%,100%{opacity:0;transform:scale(1.35)}}
@media(max-width:900px){.worldwide-trade-header{align-items:flex-start;flex-direction:column;gap:1rem}.worldwide-trade-header>p{max-width:650px}.world-trade-map{min-height:330px}}
@media(max-width:640px){.world-trade-map-card{border-radius:18px}.world-trade-map-topbar{min-height:60px;padding:0 1rem}.world-trade-badge{font-size:.67rem;letter-spacing:.06em}.world-trade-origin{font-size:.74rem}.world-trade-map-viewport{padding:.55rem .35rem .1rem;overflow-x:auto}.world-trade-map{width:760px;max-width:none;min-height:330px}.world-trade-map-legend{justify-content:flex-start;gap:.8rem 1rem;padding-left:.75rem;padding-right:.75rem}.world-trade-footer{align-items:flex-start;flex-direction:column;padding:1rem}.world-trade-footer .btn{width:100%;justify-content:center}}
@media(prefers-reduced-motion:reduce){.trade-routes path,.trade-origin-ring{animation:none}}

/* 09. Corporate Final CTA */
.final-cta-corporate {
  background: linear-gradient(135deg, #123D2A 0%, #0B291C 100%);
  color: #FFFFFF;
  padding: 5rem 0;
  text-align: center;
}


/* ========================================================================
   19. HOMEPAGE TOP BANNER SLIDER + MODERN STATIC HERO
   ======================================================================== */
.homepage-banner-slider {
  position: relative;
  width: 100%;
  background: #F7F7F3;
  border-bottom: 1px solid #E3E7E3;
  overflow: hidden;
}

.homepage-banner-slider--standard {
  padding: 18px 24px;
}

.homepage-banner-slider--standard .homepage-banner-viewport {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 61, 42, 0.08);
}

.homepage-banner-slider--full .homepage-banner-viewport {
  width: 100%;
}

.homepage-banner-viewport {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  touch-action: pan-y;
}

/* Stack every banner in the same visual layer so slides can fade without
   changing page height or cropping the source image. */
.homepage-banner-track {
  display: grid;
  width: 100%;
  min-height: 0;
}

.homepage-banner-slide {
  grid-area: 1 / 1;
  position: relative;
  width: 100%;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 650ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 650ms;
  z-index: 1;
}

.homepage-banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
  transition: opacity 650ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}

.homepage-banner-link {
  display: block;
  width: 100%;
  line-height: 0;
}

.homepage-banner-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
  user-select: none;
  -webkit-user-drag: none;
}

.homepage-banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(18,61,42,.82);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 21px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0,0,0,.14);
  transition: transform 180ms ease, background 180ms ease;
}

.homepage-banner-nav:hover {
  background: #123D2A;
  transform: translateY(-50%) scale(1.04);
}

.homepage-banner-prev { left: 18px; }
.homepage-banner-next { right: 18px; }

.homepage-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.homepage-banner-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #AAB7AE;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.homepage-banner-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #C99A3D;
}

/* Static SEO Hero below the promotional banner */
.hero-static-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 25%, rgba(201,154,61,.10), transparent 28%),
    linear-gradient(135deg, #F7F7F3 0%, #FFFFFF 56%, #EEF4EF 100%);
  padding: clamp(54px, 7vw, 92px) 0;
  border-bottom: 1px solid #E3E7E3;
}

.hero-static-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero-static-content {
  max-width: 680px;
}

.hero-static-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2F6B3F;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-static-eyebrow-line {
  width: 34px;
  height: 2px;
  background: #C99A3D;
  border-radius: 2px;
}

.hero-static-heading {
  margin: 0 0 20px;
  max-width: 760px;
  color: #123D2A;
  font-size: clamp(2.35rem, 4.6vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 750;
}

.hero-static-desc {
  max-width: 640px;
  margin: 0;
  color: #68736C;
  font-size: clamp(1rem, .35vw + .95rem, 1.15rem);
  line-height: 1.75;
}

.hero-static-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-static-actions .btn {
  min-height: 50px;
}

.hero-static-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #E3E7E3;
}

.hero-static-points span {
  position: relative;
  padding-left: 17px;
  color: #2F6B3F;
  font-size: .84rem;
  letter-spacing: .02em;
}

.hero-static-points span::before {
  content: '';
  position: absolute;
  left: 0;
  top: .48em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C99A3D;
}

.hero-static-visual {
  min-width: 0;
}

.hero-static-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #DCE5DE;
  box-shadow: 0 24px 60px rgba(18,61,42,.12);
  transform: translateZ(0);
}

.hero-static-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-static-image-accent {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(18,61,42,.76);
  box-shadow: 0 10px 24px rgba(18,61,42,.18);
}

.hero-static-image-accent::before,
.hero-static-image-accent::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,154,61,.9);
  border-radius: 50%;
}

.hero-static-image-accent::after {
  inset: 27px;
  background: #C99A3D;
  border: 0;
}

@media (max-width: 1024px) {
  .hero-static-container {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .hero-static-content { max-width: 760px; }
  .hero-static-visual { max-width: 760px; width: 100%; }
}

@media (max-width: 768px) {
  .homepage-banner-slider--standard {
    padding: 10px 14px;
  }
  .homepage-banner-slider--standard .homepage-banner-viewport {
    border-radius: 12px;
  }
  .homepage-banner-nav {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .homepage-banner-prev { left: 10px; }
  .homepage-banner-next { right: 10px; }
  .homepage-banner-dots {
    bottom: 9px;
  }
  .hero-static-section {
    padding: 48px 0 54px;
  }
  .hero-static-container {
    padding: 0 18px;
    gap: 30px;
  }
  .hero-static-heading {
    font-size: clamp(2.15rem, 9vw, 3.1rem);
    letter-spacing: -.035em;
  }
  .hero-static-actions {
    margin-top: 24px;
  }
  .hero-static-actions .btn {
    min-height: 48px;
  }
  .hero-static-points {
    gap: 10px 18px;
  }
  .hero-static-image-wrap {
    border-radius: 16px;
  }
  .hero-static-image-accent {
    width: 48px;
    height: 48px;
    right: 12px;
    bottom: 12px;
  }
  .hero-static-image-accent::before { inset: 13px; }
  .hero-static-image-accent::after { inset: 20px; }
}

@media (max-width: 480px) {
  .homepage-banner-slider--standard {
    padding: 8px 10px;
  }
  .homepage-banner-nav {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .homepage-banner-dots { gap: 5px; padding: 5px 8px; }
  .homepage-banner-dot { width: 7px; height: 7px; }
  .homepage-banner-dot.is-active { width: 20px; }
  .hero-static-container { padding: 0 16px; }
  .hero-static-eyebrow { font-size: .7rem; letter-spacing: .1em; }
  .hero-static-heading { font-size: clamp(2rem, 10vw, 2.65rem); }
  .hero-static-desc { font-size: .98rem; line-height: 1.65; }
  .hero-static-actions { flex-direction: column; align-items: stretch; }
  .hero-static-actions .btn { width: 100%; }
}

.homepage-banner-slider.is-dragging,
.homepage-banner-slider.is-dragging * {
  cursor: grabbing !important;
}

/* ==========================================================================
   18. HOMEPAGE ABOUT — MODERN SEO-FOCUSED CORPORATE INTRODUCTION
   ========================================================================== */
.ng-about-home {
  position: relative;
  padding: clamp(4.25rem, 7vw, 6.5rem) 0;
  background: #fff;
  overflow: hidden;
}

.ng-about-home::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(47, 107, 63, 0.035);
  right: -240px;
  top: -260px;
  pointer-events: none;
}

.ng-about-home__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: stretch;
}

.ng-about-home__visual { min-width: 0; display: flex; align-items: stretch; }

.ng-about-home__image-frame {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 100%;
  aspect-ratio: 5 / 4;
  align-self: stretch;
  border-radius: 26px;
  overflow: hidden;
  background: #eaf0eb;
  border: 1px solid #dce5de;
  box-shadow: 0 24px 60px rgba(18, 61, 42, .11);
}

.ng-about-home__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s ease;
}

.ng-about-home__image-frame:hover .ng-about-home__image { transform: scale(1.02); }

.ng-about-home__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,61,42,0) 45%, rgba(18,61,42,.52) 100%);
  pointer-events: none;
}

.ng-about-home__identity-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 17px 20px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 15px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 34px rgba(0,0,0,.13);
  backdrop-filter: blur(8px);
}

.ng-about-home__identity-label {
  display: block;
  margin-bottom: 5px;
  color: #2f6b3f;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.ng-about-home__identity-card strong { display: block; color: #123d2a; font-size: 1.04rem; line-height: 1.34; }

.ng-about-home__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
  padding: .35rem 0;
}

.ng-about-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: .9rem;
  color: #2f6b3f;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ng-about-home__eyebrow::before { content: ''; width: 32px; height: 2px; background: #c99a3d; }

.ng-about-home__heading {
  max-width: 720px;
  margin: 0 0 1.15rem;
  color: #123d2a;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.032em;
  font-weight: 750;
}

.ng-about-home__lead,
.ng-about-home__text {
  max-width: 720px;
  margin: 0 0 .95rem;
  color: #68736c;
  font-size: clamp(.98rem, .2vw + .95rem, 1.05rem);
  line-height: 1.72;
}

.ng-about-home__lead { color: #3f4c44; font-weight: 500; }

.ng-about-home__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 1.25rem 0 1.45rem;
}

.ng-about-home__highlight {
  display: flex;
  gap: 9px;
  min-width: 0;
  padding: 12px;
  border: 1px solid #e2e8e3;
  border-radius: 12px;
  background: #f8faf8;
}

.ng-about-home__highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  border-radius: 8px;
  background: #123d2a;
  color: #fff;
  font-size: .61rem;
  font-weight: 800;
}

.ng-about-home__highlight strong,
.ng-about-home__highlight span { display: block; }
.ng-about-home__highlight strong { margin-bottom: 3px; color: #183f2d; font-size: .77rem; line-height: 1.3; }
.ng-about-home__highlight div > span { color: #77827b; font-size: .67rem; line-height: 1.4; }

.ng-about-home__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.4rem; }
.ng-about-home__text-link { display: inline-flex; align-items: center; gap: 7px; color: #123d2a; font-size: .9rem; font-weight: 700; text-decoration: none; }
.ng-about-home__text-link:hover { color: #2f6b3f; }

@media (max-width: 1100px) {
  .ng-about-home__grid { grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); gap: 2.5rem; }
  .ng-about-home__heading { font-size: clamp(1.85rem, 3vw, 2.65rem); }
  .ng-about-home__highlights { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  .ng-about-home__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ng-about-home__visual { order: 1; }
  .ng-about-home__content { order: 2; }
  .ng-about-home__image-frame { min-height: 0; aspect-ratio: 16 / 9; }
  .ng-about-home__highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .ng-about-home { padding: 4rem 0; }
  .ng-about-home__heading { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .ng-about-home__highlights { grid-template-columns: 1fr; }
  .ng-about-home__highlight { padding: 13px; }
}

@media (max-width: 480px) {
  .ng-about-home__image-frame { border-radius: 20px; }
  .ng-about-home__identity-card { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .ng-about-home__actions { align-items: stretch; flex-direction: column; }
  .ng-about-home__actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) { .ng-about-home__image { transition: none; } }


/* ================================================================
   HOMEPAGE PRODUCT SHOWCASE EXTENSIONS — v1.0.6
   Product Card itself remains unchanged.
   ================================================================ */
.agro-home-product-section {
  position: relative;
}
.agro-home-product-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.agro-home-product-section__header h2 {
  margin: 0.25rem 0 0.5rem;
  color: #123D2A;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}
.agro-home-product-section__header p {
  margin: 0;
  color: #68736C;
  font-size: 1rem;
  line-height: 1.6;
}
.agro-new-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.agro-new-products-grid__item {
  min-width: 0;
}
.agro-new-products-grid__item[data-reveal],
.agro-upcoming-slide[data-reveal] {
  transition: opacity .55s ease, transform .55s ease;
}
.agro-upcoming-section {
  overflow: hidden;
}
.agro-upcoming-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
}
.agro-upcoming-viewport::-webkit-scrollbar { display: none; }
.agro-upcoming-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.agro-upcoming-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: .25rem .1rem .75rem;
}
.agro-upcoming-slide {
  position: relative;
  flex: 0 0 min(330px, 78vw);
  scroll-snap-align: start;
  min-width: 0;
}
.agro-upcoming-slide .agro-upcoming-badge {
  position: absolute;
  z-index: 5;
  top: .75rem;
  left: .75rem;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: #123D2A;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  pointer-events: none;
}
.agro-upcoming-nav {
  display: flex;
  gap: .55rem;
}
.agro-upcoming-nav__btn {
  width: 46px;
  height: 46px;
  border: 1px solid #DCE4DE;
  border-radius: 50%;
  background: #fff;
  color: #123D2A;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.agro-upcoming-nav__btn:hover,
.agro-upcoming-nav__btn:focus-visible {
  background: #123D2A;
  color: #fff;
  border-color: #123D2A;
  transform: translateY(-1px);
  outline: none;
}
@media (max-width: 1024px) {
  .agro-new-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .agro-home-product-section__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .agro-home-product-section__header > .btn,
  .agro-upcoming-nav { align-self: flex-end; }
  .agro-new-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .agro-home-product-section__header { margin-bottom: 1.35rem; gap: 1rem; }
  .agro-home-product-section__header h2 { font-size: 1.65rem; }
  .agro-home-product-section__header p { font-size: .92rem; }
  .agro-new-products-grid { gap: .8rem; }
  .agro-upcoming-slide { flex-basis: 82vw; }
  .agro-upcoming-track { gap: .8rem; }
  .agro-upcoming-nav__btn { width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  .agro-upcoming-viewport { scroll-behavior: auto; }
  .agro-new-products-grid__item[data-reveal],
  .agro-upcoming-slide[data-reveal] { transition: none; }
}

/* ================================================================
   HOMEPAGE PRODUCT SHOWCASE MOTION — v1.0.7
   Presentation-only animation. Product Card UI remains unchanged.
   ================================================================ */
.agro-product-showcase-section {
  --showcase-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.agro-product-showcase-section .agro-showcase-header[data-reveal],
.agro-product-showcase-section .agro-home-product-section__header[data-reveal] {
  transition-duration: 650ms;
}

/* Stagger only the surrounding product wrappers, never the card styling itself. */
.agro-product-showcase-section .agro-new-products-grid__item[data-reveal],
.agro-product-showcase-section .agro-upcoming-slide[data-reveal],
.agro-product-showcase-section .agro-carousel-slide[data-reveal] {
  transition-property: opacity, transform;
  transition-duration: 700ms;
  transition-timing-function: var(--showcase-ease);
  will-change: opacity, transform;
}

.agro-new-products-grid__item:nth-child(1)[data-reveal],
.agro-upcoming-slide:nth-child(1)[data-reveal],
.agro-carousel-slide:nth-child(1)[data-reveal] { transition-delay: 60ms; }
.agro-new-products-grid__item:nth-child(2)[data-reveal],
.agro-upcoming-slide:nth-child(2)[data-reveal],
.agro-carousel-slide:nth-child(2)[data-reveal] { transition-delay: 130ms; }
.agro-new-products-grid__item:nth-child(3)[data-reveal],
.agro-upcoming-slide:nth-child(3)[data-reveal],
.agro-carousel-slide:nth-child(3)[data-reveal] { transition-delay: 200ms; }
.agro-new-products-grid__item:nth-child(4)[data-reveal],
.agro-upcoming-slide:nth-child(4)[data-reveal],
.agro-carousel-slide:nth-child(4)[data-reveal] { transition-delay: 270ms; }
.agro-new-products-grid__item:nth-child(5)[data-reveal],
.agro-upcoming-slide:nth-child(5)[data-reveal],
.agro-carousel-slide:nth-child(5)[data-reveal] { transition-delay: 340ms; }
.agro-new-products-grid__item:nth-child(6)[data-reveal],
.agro-upcoming-slide:nth-child(6)[data-reveal],
.agro-carousel-slide:nth-child(6)[data-reveal] { transition-delay: 410ms; }

/* A subtle lift when a whole product section enters the viewport. */
.agro-product-showcase-section .agro-home-product-section__header.is-revealed,
.agro-product-showcase-section .agro-showcase-header.is-revealed {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .agro-product-showcase-section .agro-showcase-header[data-reveal],
  .agro-product-showcase-section .agro-home-product-section__header[data-reveal],
  .agro-product-showcase-section .agro-new-products-grid__item[data-reveal],
  .agro-product-showcase-section .agro-upcoming-slide[data-reveal],
  .agro-product-showcase-section .agro-carousel-slide[data-reveal] {
    transition: none !important;
    transition-delay: 0 !important;
  }
}

/* ==========================================================================
   06. REALISTIC GLOBAL TRADE MAP — v1.0.10
   ========================================================================== */
.worldwide-trade-section--realistic{padding:clamp(4.25rem,7vw,6.5rem) 0;background:#f7faf7;overflow:hidden}
.worldwide-trade-section--realistic .worldwide-trade-header{margin-bottom:2rem}
.global-trade-visual{position:relative;border:1px solid rgba(18,61,42,.14);border-radius:28px;overflow:hidden;background:#061d24;box-shadow:0 28px 80px rgba(9,35,25,.16)}
.global-trade-map-stage{position:relative;aspect-ratio:1828/860;min-height:520px;overflow:hidden;background:#061d24}
.global-trade-map-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.global-trade-vignette{position:absolute;inset:0;background:linear-gradient(90deg,rgba(2,15,16,.92) 0%,rgba(2,15,16,.72) 25%,rgba(2,15,16,.04) 50%,rgba(2,15,16,.04) 78%,rgba(2,15,16,.28) 100%),linear-gradient(0deg,rgba(2,15,16,.78) 0%,transparent 24%,transparent 75%,rgba(2,15,16,.18) 100%);pointer-events:none}
.global-trade-copy{position:absolute;left:4.2%;top:9%;width:min(31%,430px);color:#fff;z-index:4}
.global-trade-kicker{display:inline-flex;align-items:center;gap:.55rem;padding:.62rem .85rem;border:1px solid rgba(201,154,61,.5);border-radius:999px;background:rgba(5,29,24,.72);backdrop-filter:blur(8px);font-size:.72rem;font-weight:750;letter-spacing:.08em;color:#e7c96e}
.global-trade-kicker i{width:7px;height:7px;border-radius:50%;background:#8ecb5e;box-shadow:0 0 0 5px rgba(142,203,94,.12)}
.global-trade-copy h3{margin:1.45rem 0 .8rem;font-size:clamp(2.5rem,4.2vw,5rem);line-height:.94;letter-spacing:-.045em;font-weight:700;color:#fff}
.global-trade-copy h3 em{font-style:normal;color:#a8df68}
.global-trade-copy>p{max-width:390px;margin:0;color:rgba(255,255,255,.76);font-size:clamp(.82rem,1vw,1rem);line-height:1.65}
.global-trade-points{display:grid;gap:.65rem;margin-top:1.4rem}
.global-trade-points span{display:flex;align-items:center;gap:.65rem;color:rgba(255,255,255,.86);font-size:.76rem;font-weight:600}
.global-trade-points b{width:26px;height:26px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.3);border-radius:50%;color:#d7c16b;font-size:.7rem}
.global-trade-animation{position:absolute;inset:0;width:100%;height:100%;z-index:3;pointer-events:none}
.gt-routes path{stroke-dasharray:8 10;opacity:.92;animation:gtRouteFlow 2.4s linear infinite}
.gt-particles circle{opacity:.95}
.gt-destination-nodes circle{fill:#f9e8a4;stroke:#fff;stroke-width:3;filter:url(#gtGlow);animation:gtNodePulse 2.6s ease-in-out infinite}
.global-trade-origin-label{position:absolute;left:67.6%;top:38%;z-index:5;display:flex;flex-direction:column;align-items:center;transform:translate(-50%,-50%);color:#fff;text-align:center;pointer-events:none}
.global-trade-origin-pulse{width:32px;height:32px;border-radius:50%;border:2px solid #e0b84d;box-shadow:0 0 0 8px rgba(224,184,77,.12),0 0 30px rgba(224,184,77,.42);animation:gtOriginPulse 2.2s ease-out infinite}
.global-trade-origin-label strong{margin-top:-25px;font-size:1rem;letter-spacing:.06em;text-shadow:0 2px 10px rgba(0,0,0,.8)}
.global-trade-origin-label small{margin-top:1.8rem;font-size:.56rem;letter-spacing:.16em;color:rgba(255,255,255,.72)}
.global-trade-destination{position:absolute;z-index:5;display:flex;align-items:center;gap:.42rem;padding:.38rem .55rem;border:1px solid rgba(255,255,255,.16);border-radius:8px;background:rgba(2,20,20,.58);backdrop-filter:blur(7px);box-shadow:0 8px 22px rgba(0,0,0,.16);color:#fff;transform:translate(-50%,-50%);white-space:nowrap}
.global-trade-destination span{width:7px;height:7px;border-radius:50%;background:#a8df68;box-shadow:0 0 0 4px rgba(168,223,104,.12)}
.global-trade-destination b{font-size:.62rem;letter-spacing:.07em;font-weight:750}
.destination-europe{left:52.5%;top:19.6%}.destination-middle-east{left:60.1%;top:34.4%}.destination-sea{left:74.4%;top:50.6%}.destination-africa{left:53.7%;top:51.2%}.destination-na{left:26.3%;top:23.4%}.destination-australia{left:86.3%;top:66.6%}
.global-trade-map-caption{position:absolute;right:2.7%;top:4.5%;z-index:5;display:flex;align-items:center;gap:.6rem;color:rgba(255,255,255,.7);font-size:.58rem;letter-spacing:.13em;font-weight:700}
.global-trade-map-caption i{width:22px;height:1px;background:#d8b654}
.global-trade-bottom{display:grid;grid-template-columns:1fr 1fr 1fr auto;align-items:center;gap:1rem;padding:1.05rem 1.35rem;background:rgba(4,29,24,.96);border-top:1px solid rgba(255,255,255,.1)}
.global-trade-bottom-item{padding:0 .75rem;border-right:1px solid rgba(255,255,255,.1)}
.global-trade-bottom-item strong{display:block;color:#e9d17b;font-size:.66rem;letter-spacing:.09em}.global-trade-bottom-item span{display:block;margin-top:.25rem;color:rgba(255,255,255,.56);font-size:.66rem}
.global-trade-bottom .btn{white-space:nowrap}
@keyframes gtRouteFlow{to{stroke-dashoffset:-36}}
@keyframes gtOriginPulse{0%{transform:scale(.75);opacity:.85}75%,100%{transform:scale(1.55);opacity:0}}
@keyframes gtNodePulse{0%,100%{transform:scale(1);opacity:.8}50%{transform:scale(1.45);opacity:1}}
@media(max-width:1000px){.global-trade-copy{width:36%;top:7%}.global-trade-copy h3{font-size:clamp(2.2rem,5vw,3.8rem)}.global-trade-points{gap:.45rem}.global-trade-points span{font-size:.68rem}.global-trade-map-stage{min-height:430px}.global-trade-bottom{grid-template-columns:1fr 1fr}.global-trade-bottom-item:nth-child(2){border-right:0}.global-trade-bottom .btn{grid-column:1/-1;justify-self:start}}
@media(max-width:700px){.global-trade-visual{border-radius:20px}.global-trade-map-stage{aspect-ratio:auto;height:620px}.global-trade-map-image{width:1320px;max-width:none;left:50%;transform:translateX(-50%);object-fit:cover}.global-trade-vignette{background:linear-gradient(180deg,rgba(2,15,16,.86) 0%,rgba(2,15,16,.42) 34%,rgba(2,15,16,.05) 58%,rgba(2,15,16,.75) 100%)}.global-trade-copy{left:1.25rem;right:1.25rem;top:1.25rem;width:auto}.global-trade-copy h3{margin:.9rem 0 .5rem;font-size:2.6rem}.global-trade-copy>p{max-width:430px;font-size:.78rem}.global-trade-points{display:none}.global-trade-animation{width:1320px;left:50%;transform:translateX(-50%)}.global-trade-origin-label{left:67.6%;top:38%;transform:translate(-50%,-50%) scale(.86)}.global-trade-destination{transform:translate(-50%,-50%) scale(.82);transform-origin:center}.global-trade-map-caption{right:1rem;top:auto;bottom:1rem}.global-trade-bottom{grid-template-columns:1fr;padding:1rem}.global-trade-bottom-item{border-right:0;border-bottom:1px solid rgba(255,255,255,.1);padding:.55rem 0}.global-trade-bottom-item:last-of-type{border-bottom:0}.global-trade-bottom .btn{width:100%;justify-content:center;margin-top:.35rem}}
@media(prefers-reduced-motion:reduce){.gt-routes path,.gt-destination-nodes circle,.global-trade-origin-pulse{animation:none}.gt-routes path{stroke-dashoffset:0}}
CSS
php -l /mnt/data/nightingale_v109/front-page.php
php -l /mnt/data/nightingale_v109/functions.php
zip -qr /mnt/data/nightingale-agro-theme-v1.0.10.zip -j /mnt/data/nightingale_v109/front-page.php /dev/null 2>/dev/null || true
# create proper recursive zip from theme root
rm -f /mnt/data/nightingale-agro-theme-v1.0.10.zip
(cd /mnt/data/nightingale_v109 && zip -qr /mnt/data/nightingale-agro-theme-v1.0.10.zip .)
unzip -t /mnt/data/nightingale-agro-theme-v1.0.10.zip | tail -3
ls -lh /mnt/data/nightingale-agro-theme-v1.0.10.zip

/* ==========================================================================
   06. REALISTIC GLOBAL TRADE MAP — v1.0.10
   ========================================================================== */
.worldwide-trade-section--realistic{padding:clamp(4.25rem,7vw,6.5rem) 0;background:#f7faf7;overflow:hidden}
.worldwide-trade-section--realistic .worldwide-trade-header{margin-bottom:2rem}
.global-trade-visual{position:relative;border:1px solid rgba(18,61,42,.14);border-radius:28px;overflow:hidden;background:#061d24;box-shadow:0 28px 80px rgba(9,35,25,.16)}
.global-trade-map-stage{position:relative;aspect-ratio:1828/860;min-height:520px;overflow:hidden;background:#061d24}
.global-trade-map-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.global-trade-vignette{position:absolute;inset:0;background:linear-gradient(90deg,rgba(2,15,16,.92) 0%,rgba(2,15,16,.72) 25%,rgba(2,15,16,.04) 50%,rgba(2,15,16,.04) 78%,rgba(2,15,16,.28) 100%),linear-gradient(0deg,rgba(2,15,16,.78) 0%,transparent 24%,transparent 75%,rgba(2,15,16,.18) 100%);pointer-events:none}
.global-trade-copy{position:absolute;left:4.2%;top:9%;width:min(31%,430px);color:#fff;z-index:4}
.global-trade-kicker{display:inline-flex;align-items:center;gap:.55rem;padding:.62rem .85rem;border:1px solid rgba(201,154,61,.5);border-radius:999px;background:rgba(5,29,24,.72);backdrop-filter:blur(8px);font-size:.72rem;font-weight:750;letter-spacing:.08em;color:#e7c96e}
.global-trade-kicker i{width:7px;height:7px;border-radius:50%;background:#8ecb5e;box-shadow:0 0 0 5px rgba(142,203,94,.12)}
.global-trade-copy h3{margin:1.45rem 0 .8rem;font-size:clamp(2.5rem,4.2vw,5rem);line-height:.94;letter-spacing:-.045em;font-weight:700;color:#fff}
.global-trade-copy h3 em{font-style:normal;color:#a8df68}
.global-trade-copy>p{max-width:390px;margin:0;color:rgba(255,255,255,.76);font-size:clamp(.82rem,1vw,1rem);line-height:1.65}
.global-trade-points{display:grid;gap:.65rem;margin-top:1.4rem}
.global-trade-points span{display:flex;align-items:center;gap:.65rem;color:rgba(255,255,255,.86);font-size:.76rem;font-weight:600}
.global-trade-points b{width:26px;height:26px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.3);border-radius:50%;color:#d7c16b;font-size:.7rem}
.global-trade-animation{position:absolute;inset:0;width:100%;height:100%;z-index:3;pointer-events:none}
.gt-routes path{stroke-dasharray:8 10;opacity:.92;animation:gtRouteFlow 2.4s linear infinite}
.gt-particles circle{opacity:.95}
.gt-destination-nodes circle{fill:#f9e8a4;stroke:#fff;stroke-width:3;filter:url(#gtGlow);animation:gtNodePulse 2.6s ease-in-out infinite}
.global-trade-origin-label{position:absolute;left:67.6%;top:38%;z-index:5;display:flex;flex-direction:column;align-items:center;transform:translate(-50%,-50%);color:#fff;text-align:center;pointer-events:none}
.global-trade-origin-pulse{width:32px;height:32px;border-radius:50%;border:2px solid #e0b84d;box-shadow:0 0 0 8px rgba(224,184,77,.12),0 0 30px rgba(224,184,77,.42);animation:gtOriginPulse 2.2s ease-out infinite}
.global-trade-origin-label strong{margin-top:-25px;font-size:1rem;letter-spacing:.06em;text-shadow:0 2px 10px rgba(0,0,0,.8)}
.global-trade-origin-label small{margin-top:1.8rem;font-size:.56rem;letter-spacing:.16em;color:rgba(255,255,255,.72)}
.global-trade-destination{position:absolute;z-index:5;display:flex;align-items:center;gap:.42rem;padding:.38rem .55rem;border:1px solid rgba(255,255,255,.16);border-radius:8px;background:rgba(2,20,20,.58);backdrop-filter:blur(7px);box-shadow:0 8px 22px rgba(0,0,0,.16);color:#fff;transform:translate(-50%,-50%);white-space:nowrap}
.global-trade-destination span{width:7px;height:7px;border-radius:50%;background:#a8df68;box-shadow:0 0 0 4px rgba(168,223,104,.12)}
.global-trade-destination b{font-size:.62rem;letter-spacing:.07em;font-weight:750}
.destination-europe{left:52.5%;top:19.6%}.destination-middle-east{left:60.1%;top:34.4%}.destination-sea{left:74.4%;top:50.6%}.destination-africa{left:53.7%;top:51.2%}.destination-na{left:26.3%;top:23.4%}.destination-australia{left:86.3%;top:66.6%}
.global-trade-map-caption{position:absolute;right:2.7%;top:4.5%;z-index:5;display:flex;align-items:center;gap:.6rem;color:rgba(255,255,255,.7);font-size:.58rem;letter-spacing:.13em;font-weight:700}
.global-trade-map-caption i{width:22px;height:1px;background:#d8b654}
.global-trade-bottom{display:grid;grid-template-columns:1fr 1fr 1fr auto;align-items:center;gap:1rem;padding:1.05rem 1.35rem;background:rgba(4,29,24,.96);border-top:1px solid rgba(255,255,255,.1)}
.global-trade-bottom-item{padding:0 .75rem;border-right:1px solid rgba(255,255,255,.1)}
.global-trade-bottom-item strong{display:block;color:#e9d17b;font-size:.66rem;letter-spacing:.09em}.global-trade-bottom-item span{display:block;margin-top:.25rem;color:rgba(255,255,255,.56);font-size:.66rem}
.global-trade-bottom .btn{white-space:nowrap}
@keyframes gtRouteFlow{to{stroke-dashoffset:-36}}
@keyframes gtOriginPulse{0%{transform:scale(.75);opacity:.85}75%,100%{transform:scale(1.55);opacity:0}}
@keyframes gtNodePulse{0%,100%{transform:scale(1);opacity:.8}50%{transform:scale(1.45);opacity:1}}
@media(max-width:1000px){.global-trade-copy{width:36%;top:7%}.global-trade-copy h3{font-size:clamp(2.2rem,5vw,3.8rem)}.global-trade-points{gap:.45rem}.global-trade-points span{font-size:.68rem}.global-trade-map-stage{min-height:430px}.global-trade-bottom{grid-template-columns:1fr 1fr}.global-trade-bottom-item:nth-child(2){border-right:0}.global-trade-bottom .btn{grid-column:1/-1;justify-self:start}}
@media(max-width:700px){.global-trade-visual{border-radius:20px}.global-trade-map-stage{aspect-ratio:auto;height:620px}.global-trade-map-image{width:1320px;max-width:none;left:50%;transform:translateX(-50%);object-fit:cover}.global-trade-vignette{background:linear-gradient(180deg,rgba(2,15,16,.86) 0%,rgba(2,15,16,.42) 34%,rgba(2,15,16,.05) 58%,rgba(2,15,16,.75) 100%)}.global-trade-copy{left:1.25rem;right:1.25rem;top:1.25rem;width:auto}.global-trade-copy h3{margin:.9rem 0 .5rem;font-size:2.6rem}.global-trade-copy>p{max-width:430px;font-size:.78rem}.global-trade-points{display:none}.global-trade-animation{width:1320px;left:50%;transform:translateX(-50%)}.global-trade-origin-label{left:67.6%;top:38%;transform:translate(-50%,-50%) scale(.86)}.global-trade-destination{transform:translate(-50%,-50%) scale(.82);transform-origin:center}.global-trade-map-caption{right:1rem;top:auto;bottom:1rem}.global-trade-bottom{grid-template-columns:1fr;padding:1rem}.global-trade-bottom-item{border-right:0;border-bottom:1px solid rgba(255,255,255,.1);padding:.55rem 0}.global-trade-bottom-item:last-of-type{border-bottom:0}.global-trade-bottom .btn{width:100%;justify-content:center;margin-top:.35rem}}
@media(prefers-reduced-motion:reduce){.gt-routes path,.gt-destination-nodes circle,.global-trade-origin-pulse{animation:none}.gt-routes path{stroke-dashoffset:0}}
CSS

/* ========================================================================
   HOMEPAGE RESPONSIVE REFINEMENT — v1.0.12
   Global Trade + About Nightingale Agro
   ======================================================================== */

/* --- About: stronger desktop composition --- */
.ng-about-home {
  isolation: isolate;
}
.ng-about-home::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -180px;
  bottom: -210px;
  border-radius: 50%;
  border: 1px solid rgba(201,154,61,.14);
  pointer-events: none;
}
.ng-about-home__image-frame {
  box-shadow: 0 24px 70px rgba(18,61,42,.13);
}
.ng-about-home__image-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 18px;
  z-index: 2;
  pointer-events: none;
}
.ng-about-home__identity-card {
  z-index: 4;
  max-width: min(78%, 390px);
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 35px rgba(18,61,42,.16);
  backdrop-filter: blur(10px);
}
.ng-about-home__identity-card strong { font-size: 1rem; }
.ng-about-home__content {
  padding: .5rem 0 .5rem .25rem;
}
.ng-about-home__lead {
  font-size: clamp(1rem, .18vw + .96rem, 1.08rem);
  line-height: 1.75;
}
.ng-about-home__highlight {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ng-about-home__highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(47,107,63,.25);
  box-shadow: 0 10px 24px rgba(18,61,42,.07);
}

/* --- Global trade: tablet-safe layout --- */
.worldwide-trade-section--realistic .container { position: relative; }
.worldwide-trade-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}
.worldwide-trade-header > div { min-width: 0; }
.worldwide-trade-header > p {
  max-width: 500px;
  margin: 0;
  color: #66736b;
  line-height: 1.7;
}
.global-trade-visual {
  contain: layout paint;
}

@media (max-width: 1100px) {
  .ng-about-home__grid { gap: 2.25rem; }
  .ng-about-home__content { padding-left: 0; }
  .ng-about-home__heading { font-size: clamp(1.9rem, 3.25vw, 2.55rem); }
  .global-trade-map-stage { min-height: 460px; }
  .global-trade-copy { width: min(34%, 370px); }
  .global-trade-copy h3 { font-size: clamp(2.25rem, 4.8vw, 3.65rem); }
}

@media (max-width: 900px) {
  .ng-about-home { padding: 4.5rem 0; }
  .ng-about-home__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ng-about-home__visual { order: 1; }
  .ng-about-home__content { order: 2; }
  .ng-about-home__image-frame { aspect-ratio: 16 / 8.8; }
  .ng-about-home__highlights { grid-template-columns: repeat(3, minmax(0,1fr)); gap: .75rem; }

  .worldwide-trade-section--realistic { padding: 4.5rem 0; }
  .worldwide-trade-header { align-items: flex-start; flex-direction: column; gap: .75rem; }
  .worldwide-trade-header > p { max-width: 720px; }
  .global-trade-map-stage { min-height: 400px; }
  .global-trade-bottom { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .global-trade-bottom-item:nth-child(2) { border-right: 0; }
  .global-trade-bottom .btn { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 700px) {
  /* ABOUT — mobile becomes a clean editorial card instead of a compressed desktop split */
  .ng-about-home {
    padding: 3.75rem 0;
  }
  .ng-about-home::before {
    width: 300px;
    height: 300px;
    right: -190px;
    top: -150px;
  }
  .ng-about-home::after { display: none; }
  .ng-about-home__grid { gap: 1.65rem; }
  .ng-about-home__image-frame {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }
  .ng-about-home__image-frame::before {
    inset: 9px;
    border-radius: 14px;
  }
  .ng-about-home__identity-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 12px 14px;
    border-radius: 13px;
  }
  .ng-about-home__identity-label { font-size: .64rem; }
  .ng-about-home__identity-card strong { font-size: .88rem; }
  .ng-about-home__eyebrow { margin-bottom: .7rem; font-size: .68rem; }
  .ng-about-home__eyebrow::before { width: 24px; }
  .ng-about-home__heading {
    margin-bottom: .9rem;
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    line-height: 1.08;
  }
  .ng-about-home__lead,
  .ng-about-home__text {
    font-size: .91rem;
    line-height: 1.68;
    margin-bottom: .75rem;
  }
  .ng-about-home__highlights {
    grid-template-columns: 1fr;
    gap: .65rem;
    margin: 1rem 0 1.2rem;
  }
  .ng-about-home__highlight {
    padding: 11px;
    border-radius: 12px;
  }
  .ng-about-home__highlight strong { font-size: .76rem; }
  .ng-about-home__highlight div > span { font-size: .66rem; }
  .ng-about-home__actions { gap: .7rem; }
  .ng-about-home__actions .btn { min-height: 48px; }

  /* GLOBAL TRADE — show the complete world map, then stack the supporting UI.
     This avoids the desktop map being horizontally cropped on phones. */
  .worldwide-trade-section--realistic {
    padding: 3.75rem 0;
  }
  .worldwide-trade-section--realistic .worldwide-trade-header {
    margin-bottom: 1.25rem;
  }
  .worldwide-trade-header h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }
  .worldwide-trade-header > p {
    font-size: .86rem;
    line-height: 1.6;
  }
  .global-trade-visual {
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(9,35,25,.14);
  }
  .global-trade-map-stage {
    min-height: 0;
    height: auto;
    aspect-ratio: 1828 / 860;
    background: #061d24;
  }
  .global-trade-map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .global-trade-vignette {
    background: linear-gradient(180deg, rgba(2,15,16,.28) 0%, rgba(2,15,16,.03) 44%, rgba(2,15,16,.42) 100%);
  }
  /* The generated map already contains its own editorial labels. Keep the
     HTML overlay hidden on small screens to prevent duplicate tiny text. */
  .global-trade-copy { display: none; }
  .global-trade-map-caption { display: none; }
  .global-trade-animation { display: none; }
  .global-trade-origin-label {
    left: 67.6%;
    top: 38%;
    transform: translate(-50%,-50%) scale(.7);
  }
  .global-trade-destination {
    display: none;
  }
  .global-trade-bottom {
    grid-template-columns: 1fr;
    gap: 0;
    padding: .7rem .9rem .85rem;
  }
  .global-trade-bottom-item {
    padding: .72rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .global-trade-bottom-item:last-of-type { border-bottom: 0; }
  .global-trade-bottom-item strong { font-size: .64rem; }
  .global-trade-bottom-item span { font-size: .68rem; }
  .global-trade-bottom .btn {
    width: 100%;
    margin-top: .65rem;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .ng-about-home { padding: 3.25rem 0; }
  .ng-about-home__image-frame { aspect-ratio: 1 / .86; }
  .ng-about-home__heading { font-size: 1.68rem; }
  .ng-about-home__lead,
  .ng-about-home__text { font-size: .88rem; }
  .ng-about-home__identity-card { left: 10px; right: 10px; bottom: 10px; }
  .global-trade-map-stage { aspect-ratio: 1828 / 900; }
}

@media (prefers-reduced-motion: reduce) {
  .ng-about-home__highlight { transition: none; }
}


/* ============================================================================
   18.0 TRUSTED BUSINESS PARTNERS — PREMIUM RESPONSIVE UI
   ========================================================================== */
.trusted-partners-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 8% 18%, rgba(47, 107, 63, 0.06), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(201, 154, 61, 0.07), transparent 25%),
    #fff;
}

.trusted-partners-section::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(18, 61, 42, 0.06);
  border-radius: 50%;
  right: -170px;
  top: 30px;
  pointer-events: none;
}

.trusted-partners-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 3rem;
  margin: 0 auto clamp(2.25rem, 4vw, 3.5rem);
  max-width: 1180px;
}

.trusted-partners-eyebrow {
  margin-bottom: 0.65rem;
}

.trusted-partners-intro h2 {
  margin: 0;
  max-width: 760px;
  color: var(--color-primary, #123D2A);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.trusted-partners-intro > p {
  margin: 0 0 0.25rem;
  color: var(--color-text-muted, #68736C);
  font-size: clamp(0.95rem, 1.3vw, 1.06rem);
  line-height: 1.7;
}

.trusted-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
}

.trusted-partner-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(1.25rem, 2.2vw, 1.7rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 61, 42, 0.11);
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(18, 61, 42, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.trusted-partner-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(47, 107, 63, 0.055);
  pointer-events: none;
}

.trusted-partner-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 107, 63, 0.24);
  box-shadow: 0 22px 48px rgba(18, 61, 42, 0.11);
}

.trusted-partner-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.trusted-partner-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.9rem;
}

.trusted-partner-logo {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f9f6;
  border: 1px solid rgba(18, 61, 42, 0.1);
  border-radius: 13px;
}

.trusted-partner-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
}

.trusted-partner-logo--initials {
  color: #fff;
  background: linear-gradient(145deg, #123D2A, #2F6B3F);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.trusted-partner-identity {
  min-width: 0;
}

.trusted-partner-identity h3 {
  margin: 0 0 0.22rem;
  overflow: hidden;
  color: #123D2A;
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trusted-partner-identity span {
  display: block;
  overflow: hidden;
  color: #758078;
  font-size: 0.76rem;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trusted-partner-rating {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.18rem;
}

.trusted-partner-stars {
  display: inline-flex;
  gap: 1px;
  font-size: 0.72rem;
  line-height: 1;
}

.trusted-partner-stars span {
  color: #d9ded9;
}

.trusted-partner-stars span.is-filled {
  color: #C99A3D;
}

.trusted-partner-rating small {
  color: #758078;
  font-size: 0.67rem;
  font-weight: 600;
}

.trusted-partner-quote {
  position: relative;
  flex: 1;
  margin: 1.55rem 0 1.4rem;
  padding: 0 0.1rem 0 1.2rem;
}

.trusted-partner-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  bottom: 0.1rem;
  width: 2px;
  border-radius: 99px;
  background: linear-gradient(#C99A3D, rgba(201, 154, 61, 0.15));
}

.trusted-partner-quote-mark {
  position: absolute;
  left: 0.65rem;
  top: -0.65rem;
  color: rgba(201, 154, 61, 0.18);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  pointer-events: none;
}

.trusted-partner-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #303a34;
  font-size: 0.94rem;
  line-height: 1.75;
}

.trusted-partner-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(18, 61, 42, 0.09);
  border-bottom: 1px solid rgba(18, 61, 42, 0.09);
}

.trusted-partner-meta span {
  min-width: 0;
  color: #68736C;
  font-size: 0.72rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.trusted-partner-meta strong {
  display: block;
  margin-bottom: 0.18rem;
  color: #123D2A;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trusted-partner-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
}

.trusted-partner-status {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.42rem;
  color: #68736C;
  font-size: 0.7rem;
}

.trusted-partner-status i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #2F6B3F;
  box-shadow: 0 0 0 4px rgba(47, 107, 63, 0.09);
}

.trusted-partner-footer a {
  flex: 0 0 auto;
  color: #123D2A;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.trusted-partner-footer a:hover {
  color: #2F6B3F;
}

@media (max-width: 1024px) {
  .trusted-partners-intro {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .trusted-partners-intro > p {
    max-width: 680px;
  }

  .trusted-partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .trusted-partners-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .trusted-partners-section::before {
    width: 220px;
    height: 220px;
    right: -130px;
  }

  .trusted-partners-intro {
    gap: 0.7rem;
    margin-bottom: 1.8rem;
  }

  .trusted-partners-intro h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .trusted-partners-intro > p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .trusted-partners-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .trusted-partner-card {
    min-height: 0;
    padding: 1.15rem;
    border-radius: 15px;
  }

  .trusted-partner-card:hover {
    transform: none;
  }

  .trusted-partner-card__top {
    gap: 0.7rem;
  }

  .trusted-partner-logo {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
    border-radius: 11px;
  }

  .trusted-partner-brand {
    gap: 0.7rem;
  }

  .trusted-partner-identity h3 {
    font-size: 0.9rem;
  }

  .trusted-partner-identity span {
    font-size: 0.7rem;
  }

  .trusted-partner-rating {
    display: none;
  }

  .trusted-partner-quote {
    margin: 1.15rem 0 1.15rem;
    padding-left: 1rem;
  }

  .trusted-partner-quote p {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .trusted-partner-meta {
    gap: 0.55rem;
  }

  .trusted-partner-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .trusted-partner-footer a {
    width: 100%;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(18, 61, 42, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-partner-card {
    transition: none;
  }
}

/* ============================================================================
   19.0 HOMEPAGE PARTNERS CAROUSEL + LATEST INSIGHTS — v1.0.14
   ========================================================================== */
.trusted-partners-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(47,107,63,.055), transparent 30%),
    radial-gradient(circle at 90% 78%, rgba(201,154,61,.065), transparent 26%),
    #fff;
}
.trusted-partners-intro__copy,
.trusted-partners-intro__side { min-width: 0; }
.trusted-partners-intro__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.15rem;
}
.trusted-partners-controls {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.trusted-partner-control {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18,61,42,.14);
  border-radius: 50%;
  background: #fff;
  color: #123D2A;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(18,61,42,.07);
  transition: transform .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease, opacity .22s ease;
}
.trusted-partner-control:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #123D2A;
  color: #fff;
  border-color: #123D2A;
}
.trusted-partner-control:disabled { opacity: .35; cursor: default; }
.trusted-partners-progress {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-width: 104px;
  color: #748078;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.trusted-partners-progress b { color: #123D2A; }
.trusted-partners-progress__bar {
  position: relative;
  width: 52px;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(18,61,42,.12);
}
.trusted-partners-progress__bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8.33%;
  border-radius: inherit;
  background: #C99A3D;
  transition: width .35s ease;
}
.trusted-partners-carousel {
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  padding: .75rem .2rem 1.5rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
}
.trusted-partners-carousel::-webkit-scrollbar { display: none; }
.trusted-partners-carousel.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.trusted-partners-track {
  display: flex;
  align-items: stretch;
  gap: 1.1rem;
  width: max-content;
}
.trusted-partners-track .trusted-partner-card {
  flex: 0 0 calc((1180px - 3.3rem) / 4);
  width: calc((1180px - 3.3rem) / 4);
  min-height: 350px;
  scroll-snap-align: start;
  box-shadow: 0 14px 36px rgba(18,61,42,.065);
}
.trusted-partner-card__accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 3px;
  border-radius: 0 0 99px 0;
  background: linear-gradient(90deg, #2F6B3F, #C99A3D);
}
.trusted-partner-card[data-reveal] { transition: opacity .6s ease, transform .6s ease, box-shadow .25s ease, border-color .25s ease; }
.trusted-partners-carousel:focus-visible {
  outline: 2px solid #2F6B3F;
  outline-offset: 4px;
  border-radius: 12px;
}

.latest-insights-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background:
    radial-gradient(circle at 92% 10%, rgba(47,107,63,.07), transparent 28%),
    linear-gradient(180deg, #f5f8f5 0%, #eef3ef 100%);
}
.latest-insights-section::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -250px;
  top: -230px;
  border: 1px solid rgba(18,61,42,.07);
  border-radius: 50%;
  pointer-events: none;
}
.latest-insights-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto 2.5rem;
  max-width: 1180px;
}
.latest-insights-heading-group { min-width: 0; }
.latest-insights-heading-group .eyebrow-text { margin-bottom: .65rem; }
.latest-insights-heading-group h2 {
  margin: 0 0 .65rem;
  color: #123D2A;
  font-size: clamp(2.15rem, 4.3vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -.04em;
}
.latest-insights-heading-group p {
  max-width: 640px;
  margin: 0;
  color: #68736C;
  font-size: 1rem;
  line-height: 1.7;
}
.latest-insights-view-all {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  min-height: 48px;
  padding: .65rem 1rem .65rem 1.1rem;
  border: 1px solid rgba(18,61,42,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #123D2A;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(18,61,42,.055);
  backdrop-filter: blur(8px);
  transition: transform .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}
.latest-insights-view-all i {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #123D2A;
  color: #fff;
  font-style: normal;
  transition: transform .22s ease;
}
.latest-insights-view-all:hover {
  transform: translateY(-2px);
  background: #123D2A;
  color: #fff;
  border-color: #123D2A;
}
.latest-insights-view-all:hover i { transform: translateX(2px); background: #C99A3D; }
.latest-insights-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.15rem;
  max-width: 1180px;
  margin: 0 auto;
}
.latest-insight-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 470px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(18,61,42,.11);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 42px rgba(18,61,42,.07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.latest-insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47,107,63,.2);
  box-shadow: 0 24px 55px rgba(18,61,42,.12);
}
.latest-insight-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dfe8e1;
  text-decoration: none;
}
.latest-insight-card.is-featured .latest-insight-media { aspect-ratio: 16 / 9.3; }
.latest-insight-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.latest-insight-card:hover .latest-insight-media img { transform: scale(1.045); }
.latest-insight-media__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,25,16,.04) 30%, rgba(5,25,16,.52) 100%);
}
.latest-insight-media__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: linear-gradient(135deg, #e9f0ea, #d7e4da);
  color: #2F6B3F;
  font-size: 3rem;
}
.latest-insight-category {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .38rem .65rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #123D2A;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.latest-insight-read {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .22s ease, transform .22s ease;
}
.latest-insight-read b { font-size: .9rem; }
.latest-insight-card:hover .latest-insight-read { opacity: 1; transform: translateY(0); }
.latest-insight-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem 1.35rem 1.4rem;
}
.latest-insight-card.is-featured .latest-insight-body { padding: 1.5rem 1.55rem 1.55rem; }
.latest-insight-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .7rem;
  color: #7b857f;
  font-size: .68rem;
  font-weight: 600;
}
.latest-insight-meta time { color: #506057; }
.latest-insight-body h3 {
  margin: 0 0 .7rem;
  color: #123D2A;
  font-size: 1.05rem;
  line-height: 1.32;
  letter-spacing: -.015em;
}
.latest-insight-card.is-featured .latest-insight-body h3 {
  max-width: 680px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.2;
}
.latest-insight-body h3 a { color: inherit; text-decoration: none; }
.latest-insight-body h3 a:hover { color: #2F6B3F; }
.latest-insight-body > p {
  margin: 0 0 1.15rem;
  color: #68736C;
  font-size: .84rem;
  line-height: 1.68;
}
.latest-insight-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  color: #2F6B3F;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}
.latest-insight-link span { transition: transform .2s ease; }
.latest-insight-link:hover span { transform: translateX(4px); }
.latest-insight-category--static {
  position: static;
  width: fit-content;
  margin-bottom: .8rem;
  background: rgba(47,107,63,.09);
  border-color: transparent;
}
.latest-insights-grid--fallback .latest-insight-card { min-height: 300px; }

@media (max-width: 1200px) {
  .trusted-partners-track .trusted-partner-card {
    flex-basis: calc((100vw - 7.5rem) / 3);
    width: calc((100vw - 7.5rem) / 3);
  }
}
@media (max-width: 1024px) {
  .trusted-partners-intro { grid-template-columns: 1fr; gap: 1.1rem; }
  .trusted-partners-intro__side { align-items: flex-start; }
  .trusted-partners-controls { margin-top: .15rem; }
  .trusted-partners-track .trusted-partner-card {
    flex-basis: min(390px, calc((100vw - 5.5rem) / 2));
    width: min(390px, calc((100vw - 5.5rem) / 2));
  }
  .latest-insights-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .latest-insight-card.is-featured { grid-column: 1 / -1; }
  .latest-insight-card.is-featured .latest-insight-media { aspect-ratio: 16 / 7; }
}
@media (max-width: 700px) {
  .trusted-partners-intro__side { gap: .9rem; }
  .trusted-partners-carousel { margin-inline: -.25rem; padding-inline: .25rem; }
  .trusted-partners-track { gap: .85rem; }
  .trusted-partners-track .trusted-partner-card {
    flex-basis: calc(100vw - 3rem);
    width: calc(100vw - 3rem);
    min-height: 0;
  }
  .trusted-partners-controls { width: 100%; justify-content: space-between; }
  .trusted-partners-progress { flex: 1; justify-content: center; }
  .trusted-partner-control { width: 42px; height: 42px; }
  .trusted-partners-section .trusted-partner-card:hover { transform: none; }

  .latest-insights-section { padding: 3.75rem 0; }
  .latest-insights-header { align-items: flex-start; flex-direction: column; gap: 1.1rem; margin-bottom: 1.8rem; }
  .latest-insights-heading-group h2 { font-size: clamp(1.9rem, 9vw, 2.5rem); }
  .latest-insights-heading-group p { font-size: .9rem; line-height: 1.62; }
  .latest-insights-view-all { width: 100%; justify-content: space-between; }
  .latest-insights-grid { grid-template-columns: 1fr; gap: .9rem; }
  .latest-insight-card,
  .latest-insight-card.is-featured { min-height: 0; grid-column: auto; border-radius: 16px; }
  .latest-insight-card.is-featured .latest-insight-media,
  .latest-insight-media { aspect-ratio: 16 / 9; }
  .latest-insight-body,
  .latest-insight-card.is-featured .latest-insight-body { padding: 1.15rem; }
  .latest-insight-card.is-featured .latest-insight-body h3 { font-size: 1.35rem; }
  .latest-insight-body > p { font-size: .82rem; }
  .latest-insight-read { display: none; }
  .latest-insight-card:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .trusted-partner-control,
  .trusted-partners-progress__bar i,
  .latest-insights-view-all,
  .latest-insights-view-all i,
  .latest-insight-card,
  .latest-insight-media img,
  .latest-insight-read,
  .latest-insight-link span { transition: none; }
  .trusted-partners-carousel { scroll-behavior: auto; }
}

/* ========================================================================== 
   BLOG / LATEST INSIGHTS REFINEMENT — v1.0.15
   ========================================================================== */
.latest-insights-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcfb 0%, #f5f8f5 100%);
}
.latest-insights-section::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,154,61,.10) 0%, rgba(201,154,61,0) 68%);
  pointer-events: none;
}
.latest-insights-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto 2rem;
}
.latest-insights-heading-group { max-width: 720px; }
.latest-insights-heading-group h2 {
  margin: .35rem 0 .55rem;
  color: #123D2A;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.latest-insights-heading-group p {
  max-width: 620px;
  margin: 0;
  color: #65716A;
  font-size: .96rem;
  line-height: 1.7;
}
.latest-insights-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.latest-insights-grid--four .latest-insight-card {
  min-height: 0;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(18,61,42,.065);
}
.latest-insights-grid--four .latest-insight-media { aspect-ratio: 16 / 9; }
.latest-insights-grid--four .latest-insight-body { padding: 1.15rem 1.15rem 1.2rem; }
.latest-insights-grid--four .latest-insight-body h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: .55rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.08rem;
  line-height: 1.3;
}
.latest-insights-grid--four .latest-insight-body > p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 1rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: .78rem;
  line-height: 1.6;
}
.latest-insights-grid--four .latest-insight-category {
  left: .8rem;
  bottom: .8rem;
  min-height: 27px;
  padding: .3rem .55rem;
  font-size: .62rem;
}
.latest-insights-grid--four .latest-insight-meta { margin-bottom: .55rem; font-size: .63rem; }
.latest-insights-grid--four .latest-insight-link { font-size: .75rem; }
.latest-insights-grid--four .latest-insight-card:hover {
  transform: translateY(-5px);
}
.latest-insights-empty {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border: 1px solid rgba(18,61,42,.10);
  border-radius: 22px;
  background: #fff;
  text-align: center;
  box-shadow: 0 16px 40px rgba(18,61,42,.06);
}
.latest-insights-empty__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(201,154,61,.12);
  color: #B17E24;
}
.latest-insights-empty h3 { margin: 0 0 .4rem; color: #123D2A; }
.latest-insights-empty p { margin: 0 0 1.2rem; color: #65716A; }
.latest-insights-empty .latest-insights-view-all { display: inline-flex; }

/* Single blog post */
.single-post-page { padding-top: clamp(3rem, 5vw, 5.5rem); }
.single-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: clamp(2rem, 4vw, 4.5rem);
  max-width: 1180px;
  margin: 0 auto;
}
.single-post-main { min-width: 0; }
.single-post-header {
  max-width: 900px;
  margin-bottom: 2rem;
}
.single-post-category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .35rem .7rem;
  border: 1px solid rgba(47,107,63,.13);
  border-radius: 999px;
  background: rgba(47,107,63,.07);
  color: #2F6B3F;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
.single-post-header h1 {
  margin: .8rem 0 .9rem;
  color: #10271B;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  color: #718078;
  font-size: .78rem;
}
.single-post-featured-image {
  overflow: hidden;
  margin: 0 0 2.25rem;
  border: 1px solid rgba(18,61,42,.09);
  border-radius: 22px;
  background: #eef3ef;
  box-shadow: 0 18px 48px rgba(18,61,42,.08);
}
.single-post-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
}
.single-post-content {
  max-width: 850px;
  color: #34443B;
  font-size: 1.04rem;
  line-height: 1.9;
}
.single-post-content > *:first-child { margin-top: 0; }
.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  margin-top: 2rem;
  color: #123D2A;
  line-height: 1.25;
}
.single-post-content a { color: #2F6B3F; }
.single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}
.single-post-content blockquote {
  margin: 1.8rem 0;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid #C99A3D;
  border-radius: 0 12px 12px 0;
  background: #f7f9f7;
  color: #274234;
}
.single-post-footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(18,61,42,.10);
}
.single-post-back {
  color: #2F6B3F;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
}
.single-post-back:hover { color: #123D2A; }

.single-post-sidebar {
  position: sticky;
  top: 1.5rem;
  display: grid;
  gap: 1rem;
}
.blog-sidebar-card {
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(18,61,42,.10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18,61,42,.055);
}
.blog-sidebar-label {
  display: block;
  margin-bottom: .45rem;
  color: #8A6A2A;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.blog-sidebar-card h2,
.blog-sidebar-cta h2 {
  margin: 0 0 1rem;
  color: #123D2A;
  font-size: 1.15rem;
  line-height: 1.25;
}
.blog-sidebar-search form {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(18,61,42,.14);
  border-radius: 12px;
  background: #f9fbf9;
}
.blog-sidebar-search input {
  min-width: 0;
  flex: 1;
  padding: .78rem .8rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: #123D2A;
  font-size: .82rem;
}
.blog-sidebar-search button {
  width: 45px;
  border: 0;
  background: #123D2A;
  color: #fff;
  cursor: pointer;
  font-size: 1.05rem;
}
.blog-sidebar-posts { display: grid; gap: .2rem; }
.blog-sidebar-post {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) auto;
  align-items: center;
  gap: .75rem;
  padding: .7rem .2rem;
  border-bottom: 1px solid rgba(18,61,42,.08);
  color: inherit;
  text-decoration: none;
}
.blog-sidebar-post:last-child { border-bottom: 0; }
.blog-sidebar-post__thumb {
  display: grid;
  width: 58px;
  height: 48px;
  overflow: hidden;
  place-items: center;
  border-radius: 9px;
  background: #edf3ee;
  color: #2F6B3F;
}
.blog-sidebar-post__thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-sidebar-post__copy { min-width: 0; }
.blog-sidebar-post__copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #173426;
  font-size: .76rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.blog-sidebar-post__copy small { display: block; margin-top: .28rem; color: #87928B; font-size: .62rem; }
.blog-sidebar-post__num { color: #B4BDB7; font-size: .65rem; font-weight: 800; }
.blog-sidebar-categories { display: grid; gap: .45rem; }
.blog-sidebar-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem .65rem;
  border-radius: 9px;
  color: #415148;
  font-size: .76rem;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}
.blog-sidebar-categories a:hover { background: rgba(47,107,63,.07); color: #2F6B3F; }
.blog-sidebar-categories b {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #f0f4f0;
  color: #627068;
  font-size: .62rem;
}
.blog-sidebar-cta {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border-radius: 18px;
  background: #123D2A;
  color: #fff;
  box-shadow: 0 18px 42px rgba(18,61,42,.15);
}
.blog-sidebar-cta::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -80px;
  border-radius: 50%;
  background: rgba(201,154,61,.13);
}
.blog-sidebar-cta__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 1.1rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.blog-sidebar-cta .blog-sidebar-label,
.blog-sidebar-cta h2,
.blog-sidebar-cta p,
.blog-sidebar-cta a { position: relative; z-index: 1; }
.blog-sidebar-cta .blog-sidebar-label { color: #E0B85E; }
.blog-sidebar-cta h2 { color: #fff; font-size: 1.35rem; }
.blog-sidebar-cta p { margin: 0 0 1.15rem; color: #C9D7CE; font-size: .78rem; line-height: 1.65; }
.blog-sidebar-cta > a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
}
.blog-sidebar-cta > a span { transition: transform .2s ease; }
.blog-sidebar-cta > a:hover span { transform: translateX(4px); }
.blog-sidebar-muted { margin: 0; color: #77837C; font-size: .8rem; }

@media (max-width: 1100px) {
  .latest-insights-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .single-post-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 2rem; }
}
@media (max-width: 820px) {
  .latest-insights-header { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .latest-insights-view-all { width: fit-content; }
  .single-post-layout { grid-template-columns: 1fr; }
  .single-post-sidebar { position: static; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .blog-sidebar-cta { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .latest-insights-section { padding: 3.25rem 0; }
  .latest-insights-grid--four { grid-template-columns: 1fr; gap: .85rem; }
  .latest-insights-grid--four .latest-insight-card { border-radius: 16px; }
  .latest-insights-grid--four .latest-insight-media { aspect-ratio: 16 / 9; }
  .latest-insights-heading-group h2 { font-size: clamp(1.9rem, 10vw, 2.45rem); }
  .latest-insights-view-all { width: 100%; justify-content: space-between; }
  .single-post-page { padding-top: 2.5rem; }
  .single-post-header h1 { font-size: clamp(1.9rem, 9vw, 2.55rem); }
  .single-post-meta { font-size: .7rem; }
  .single-post-featured-image { margin-bottom: 1.6rem; border-radius: 16px; }
  .single-post-content { font-size: .96rem; line-height: 1.8; }
  .single-post-sidebar { grid-template-columns: 1fr; }
  .blog-sidebar-cta { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .latest-insight-card,
  .latest-insight-media img,
  .latest-insight-link span,
  .blog-sidebar-categories a,
  .blog-sidebar-cta > a span { transition: none; }
}


/* ==========================================================================\n   CONTACT PAGE — PREMIUM CORPORATE REFRESH v1.0.16\n   ========================================================================== */\n.contact-page-wrapper {\n  --contact-ink: #082318;\n  --contact-muted: #607067;\n  --contact-green: #0a4b2c;\n  --contact-green-2: #176b42;\n  --contact-gold: #d4a84f;\n  --contact-line: #dfe8e2;\n  background: #fff;\n  overflow: hidden;\n}\n\n.contact-page-wrapper .section {\n  position: relative;\n}\n\n.contact-hero-section {\n  position: relative;\n  padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);\n  background:\n    radial-gradient(circle at 82% 22%, rgba(212,168,79,.16), transparent 28%),\n    radial-gradient(circle at 8% 100%, rgba(23,107,66,.12), transparent 32%),\n    linear-gradient(135deg, #f8fbf8 0%, #eef6f0 58%, #f9f7ef 100%);\n  border-bottom: 1px solid #e3ebe5;\n}\n\n.contact-hero-section::before {\n  content: "";\n  position: absolute; inset: 0; pointer-events: none; opacity: .42;\n  background-image: linear-gradient(rgba(10,75,44,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(10,75,44,.035) 1px, transparent 1px);\n  background-size: 42px 42px;\n  mask-image: linear-gradient(to bottom, black, transparent 82%);\n}\n\n.contact-hero-container {\n  position: relative; z-index: 1;\n  display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);\n  gap: clamp(2.5rem, 6vw, 6rem); align-items: center;\n}\n\n.contact-hero-copy { max-width: 780px; }\n.contact-hero-eyebrow {\n  display: inline-flex; align-items: center; gap: 10px;\n  color: var(--contact-green-2); font-size: .78rem; font-weight: 800;\n  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.15rem;\n}\n.contact-hero-eyebrow .eyebrow-line { width: 34px; height: 2px; border-radius: 999px; background: var(--contact-gold); display: inline-block; }\n.contact-hero-heading {\n  margin: 0 0 1.15rem; color: var(--contact-ink);\n  font-size: clamp(2.65rem, 5.2vw, 5rem); line-height: .99; letter-spacing: -.045em;\n  max-width: 780px;\n}\n.contact-hero-sub {\n  max-width: 700px; margin: 0; color: var(--contact-muted);\n  font-size: clamp(1rem, 1.35vw, 1.15rem); line-height: 1.75;\n}\n.contact-hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 2rem; max-width: 700px; }\n.contact-hero-action {\n  display: flex; align-items: center; gap: 12px; min-width: 0; padding: 13px 15px;\n  border: 1px solid rgba(10,75,44,.12); border-radius: 16px; background: rgba(255,255,255,.76);\n  color: var(--contact-ink); text-decoration: none; box-shadow: 0 10px 30px rgba(8,35,24,.05);\n  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;\n}\n.contact-hero-action:hover { transform: translateY(-3px); border-color: rgba(212,168,79,.55); box-shadow: 0 16px 34px rgba(8,35,24,.09); }\n.contact-hero-action-icon { width: 40px; height: 40px; border-radius: 12px; flex: 0 0 40px; display:grid; place-items:center; background:#e7f2ea; color:var(--contact-green); font-weight:800; }\n.contact-hero-action small { display:block; color:#77857d; font-size:.7rem; text-transform:uppercase; letter-spacing:.07em; font-weight:700; margin-bottom:3px; }\n.contact-hero-action strong { display:block; font-size:.9rem; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }\n\n.contact-hero-panel {\n  padding: clamp(1.5rem, 3vw, 2.35rem); border-radius: 26px; color:#fff;\n  background: linear-gradient(145deg, #07351f 0%, #0b4d2e 65%, #0a4228 100%);\n  box-shadow: 0 24px 60px rgba(4,38,23,.20); border: 1px solid rgba(255,255,255,.10);\n  position: relative; overflow: hidden;\n}\n.contact-hero-panel::after { content:""; position:absolute; width:180px; height:180px; right:-80px; top:-80px; border-radius:50%; border:1px solid rgba(212,168,79,.30); box-shadow:0 0 0 20px rgba(212,168,79,.04),0 0 0 40px rgba(212,168,79,.025); }\n.contact-hero-panel-kicker { color:#e3bf70; font-size:.7rem; font-weight:800; letter-spacing:.14em; }\n.contact-hero-panel h2 { margin:.7rem 0 .7rem; color:#fff; font-size:clamp(1.45rem,2.4vw,2.1rem); line-height:1.15; }\n.contact-hero-panel p { margin:0; color:rgba(255,255,255,.72); line-height:1.65; font-size:.94rem; }\n.contact-hero-panel-list { display:grid; gap:9px; margin-top:1.35rem; }\n.contact-hero-panel-list span { display:flex; align-items:center; gap:9px; font-size:.86rem; color:rgba(255,255,255,.9); }\n.contact-hero-panel-list span::before { content:""; width:7px; height:7px; border-radius:50%; background:#d9ad57; box-shadow:0 0 0 4px rgba(217,173,87,.10); flex:0 0 7px; }\n\n#contact-channels { background:#fff; }\n#contact-channels .section-header-center, #office-location .section-header-center, #contact-faq .section-header-center { max-width:760px; margin-left:auto; margin-right:auto; }\n#contact-channels .section-header-center h2, #office-location .section-header-center h2, #contact-faq .section-header-center h2 { font-size:clamp(2rem,3.4vw,3rem); letter-spacing:-.035em; }\n\n.contact-channels-grid { display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:18px; }\n.contact-channel-card {\n  position:relative; padding:1.65rem; min-height:275px; display:flex; flex-direction:column;\n  border:1px solid #e2eae4; border-radius:22px; background:linear-gradient(180deg,#fff 0%,#f9fbf9 100%);\n  box-shadow:0 8px 28px rgba(8,35,24,.045); overflow:hidden;\n  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;\n}\n.contact-channel-card::before { content:""; position:absolute; left:0; top:0; width:100%; height:3px; background:linear-gradient(90deg,var(--contact-green),var(--contact-gold)); transform:scaleX(0); transform-origin:left; transition:transform .28s ease; }\n.contact-channel-card:hover { transform:translateY(-7px); border-color:#cfded4; box-shadow:0 20px 45px rgba(8,35,24,.10); }\n.contact-channel-card:hover::before { transform:scaleX(1); }\n.contact-channel-icon { width:50px; height:50px; border-radius:15px; display:grid; place-items:center; background:#edf6ef; border:1px solid #d9e9dc; font-size:1.35rem; margin-bottom:1.2rem; }\n.contact-channel-card h3 { margin:0 0 .55rem; font-size:1.08rem; color:var(--contact-ink); }\n.contact-channel-card p { margin:0; color:#68776f; font-size:.88rem; line-height:1.65; }\n.contact-channel-btn { margin-top:auto; padding-top:1.2rem; color:var(--contact-green); font-size:.82rem; font-weight:800; text-decoration:none; }\n.contact-channel-btn:hover { color:#0b6a3e; }\n\n#contact-details-form { background:linear-gradient(180deg,#f5f8f5 0%,#eef4ef 100%); }\n#contact-details-form .grid.grid-cols-2 { align-items:stretch; }\n.contact-info-card, .contact-form-panel { border-radius:26px; }\n.contact-info-card { padding:clamp(1.5rem,3vw,2.5rem); background:linear-gradient(150deg,#07351f,#0b4b2d); color:#fff; border:1px solid rgba(255,255,255,.08); box-shadow:0 20px 50px rgba(4,38,23,.14); }\n.contact-info-header h2 { color:#fff; font-size:clamp(1.65rem,2.5vw,2.15rem); letter-spacing:-.025em; }\n.contact-info-header p { color:rgba(255,255,255,.70); }\n.contact-info-list { gap:1rem; margin-top:1.6rem; }\n.contact-info-item { padding:13px 0; border-bottom:1px solid rgba(255,255,255,.09); }\n.contact-info-item:last-child { border-bottom:0; }\n.contact-info-icon-box { width:42px; height:42px; border-radius:13px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); color:#e3bf70; }\n.contact-info-label { color:rgba(255,255,255,.55); font-size:.67rem; }\n.contact-info-value, .contact-info-value a { color:#fff; }\n.contact-info-value a:hover { color:#e3bf70; }\n.contact-hours-box { margin-top:1.3rem; background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.11); }\n.contact-hours-day { color:#fff; }\n.contact-hours-time { color:rgba(255,255,255,.68); }\n\n.contact-form-panel { padding:clamp(1.5rem,3vw,2.6rem); box-shadow:0 18px 45px rgba(8,35,24,.08); border-color:#dce7df; }\n.contact-form-header h2 { font-size:clamp(1.55rem,2.5vw,2rem); letter-spacing:-.025em; }\n.contact-form-grid { gap:1rem; }\n.form-input, .form-select, .form-textarea { border-radius:12px; border-color:#d7e2da; background:#fbfdfb; }\n.form-input, .form-select { height:54px; line-height:54px; }\n.form-textarea { min-height:145px; }\n.form-input:hover, .form-select:hover, .form-textarea:hover { border-color:#b9ccbf; }\n.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:#176b42; box-shadow:0 0 0 4px rgba(23,107,66,.10); background:#fff; }\n.form-submit-btn { height:54px; border-radius:13px; background:linear-gradient(135deg,#07351f,#0d5b36); }\n\n#office-location { background:#fff; }\n.contact-map-card { border-radius:26px; box-shadow:0 18px 50px rgba(8,35,24,.08); border-color:#dce6df; }\n.contact-map-embed-wrap { height:clamp(300px,42vw,500px); }\n.contact-map-footer-info { padding:1.25rem clamp(1.2rem,3vw,2rem); }\n\n#contact-faq { background:#f6f9f6; }\n.contact-faq-wrapper { max-width:900px; }\n.faq-accordion-item { border-radius:16px; border-color:#dce6df; box-shadow:0 5px 20px rgba(8,35,24,.035); }\n.faq-trigger { padding:1.2rem 1.35rem; font-size:1rem; }\n\n.contact-page-wrapper a:focus-visible, .contact-page-wrapper button:focus-visible, .contact-page-wrapper input:focus-visible, .contact-page-wrapper select:focus-visible, .contact-page-wrapper textarea:focus-visible { outline:3px solid rgba(212,168,79,.75); outline-offset:3px; }\n\n@media (max-width: 1100px) {\n  .contact-channels-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }\n  .contact-hero-container { grid-template-columns:minmax(0,1fr) minmax(280px,.72fr); gap:2.5rem; }\n}\n@media (max-width: 820px) {\n  .contact-hero-container { grid-template-columns:1fr; }\n  .contact-hero-copy { max-width:720px; }\n  .contact-hero-panel { max-width:720px; }\n  #contact-details-form .grid.grid-cols-2 { grid-template-columns:1fr; }\n  .contact-map-footer-info { flex-direction:column; align-items:flex-start; }\n}\n@media (max-width: 640px) {\n  .contact-hero-section { padding:3.5rem 0 3rem; }\n  .contact-hero-heading { font-size:clamp(2.35rem,11vw,3.25rem); }\n  .contact-hero-sub { font-size:.96rem; line-height:1.65; }\n  .contact-hero-actions { grid-template-columns:1fr; }\n  .contact-hero-action { padding:12px; }\n  .contact-hero-panel { padding:1.35rem; border-radius:20px; }\n  .contact-channels-grid { grid-template-columns:1fr; gap:14px; }\n  .contact-channel-card { min-height:0; padding:1.35rem; border-radius:18px; }\n  .contact-info-card, .contact-form-panel, .contact-map-card { border-radius:20px; }\n  .contact-info-card, .contact-form-panel { padding:1.3rem; }\n  .contact-info-item { gap:.8rem; }\n  .contact-info-value { font-size:.9rem; overflow-wrap:anywhere; }\n  #contact-details-form .grid.grid-cols-2.gap-4 { grid-template-columns:1fr; }\n  .contact-form-grid { gap:.9rem; }\n  .form-input, .form-select { height:52px; line-height:52px; }\n  .contact-map-embed-wrap { height:280px; }\n  .contact-map-footer-info .flex.gap-3 { width:100%; flex-direction:column; }\n  .contact-map-footer-info .btn { width:100%; justify-content:center; }\n  .faq-trigger { padding:1rem; font-size:.93rem; }\n  .faq-content { padding-left:1rem; padding-right:1rem; font-size:.88rem; }\n}\n@media (prefers-reduced-motion: reduce) {\n  .contact-hero-action, .contact-channel-card, .contact-channel-card::before { transition:none !important; }\n}\n
/* ==========================================================================
   CONTACT HERO — CORPORATE CONTACT ENHANCEMENT v1.0.18
   ========================================================================== */
.contact-hero-section {
  isolation: isolate;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.contact-hero-section::after {
  content: "";
  position: absolute;
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  right: -15vw;
  top: -24vw;
  border: 1px solid rgba(10,75,44,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(10,75,44,.018), 0 0 0 140px rgba(212,168,79,.014);
  pointer-events: none;
}
.contact-hero-copy { position: relative; z-index: 2; }
.contact-hero-eyebrow {
  padding: 8px 12px 8px 10px;
  border: 1px solid rgba(212,168,79,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 8px 24px rgba(8,35,24,.035);
}
.contact-hero-eyebrow .eyebrow-line { width: 28px; }
.contact-hero-heading { max-width: 760px; text-wrap: balance; }
.contact-hero-sub { max-width: 650px; }
.contact-hero-actions { gap: 14px; }
.contact-hero-action {
  min-height: 70px;
  padding: 13px 16px;
  backdrop-filter: blur(12px);
}
.contact-hero-action-icon {
  width: 44px; height: 44px; flex-basis: 44px; border-radius: 13px;
}

.contact-hero-panel {
  min-height: 390px;
  padding: clamp(1.55rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(212,168,79,.16), transparent 26%),
    linear-gradient(145deg, #052d1b 0%, #083d25 55%, #0b5131 100%);
  box-shadow: 0 30px 80px rgba(4,38,23,.22), inset 0 1px 0 rgba(255,255,255,.08);
}
.contact-hero-panel-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -110px;
  bottom: -130px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,79,.25);
  box-shadow: 0 0 0 18px rgba(212,168,79,.025), 0 0 0 42px rgba(212,168,79,.018);
  pointer-events: none;
}
.contact-hero-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}
.contact-hero-panel-top > div:first-child { display: grid; gap: 7px; }
.contact-hero-panel-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.56);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.contact-hero-panel-status i {
  width: 7px; height: 7px; border-radius: 50%; background: #79c98d;
  box-shadow: 0 0 0 4px rgba(121,201,141,.10);
}
.contact-hero-panel-mark {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  color: #e1bc6d;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
}
.contact-hero-panel-mark svg { width: 25px; height: 25px; }
.contact-hero-panel h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.06;
  letter-spacing: -.035em;
  margin: .15rem 0 .9rem;
}
.contact-hero-panel h2 span { color: #e3bf70; }
.contact-hero-panel p { max-width: 430px; }
.contact-hero-panel-list {
  position: relative;
  z-index: 1;
  gap: 0;
  margin-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,.10);
}
.contact-hero-panel-list span {
  min-height: 42px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.075);
  font-size: .82rem;
}
.contact-hero-panel-list span b {
  width: 22px;
  color: rgba(227,191,112,.78);
  font-size: .62rem;
  letter-spacing: .08em;
  font-weight: 800;
}
.contact-hero-panel-list span::before { display: none; }
.contact-hero-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  color: rgba(255,255,255,.42);
  font-size: .68rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 700;
}
.contact-hero-panel-footer-dot {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, #d4a84f, transparent);
}

@media (max-width: 1100px) {
  .contact-hero-section { min-height: 0; }
  .contact-hero-container { gap: 2.25rem; }
  .contact-hero-heading { font-size: clamp(2.55rem, 5vw, 4.25rem); }
  .contact-hero-panel { min-height: 360px; }
}
@media (max-width: 820px) {
  .contact-hero-section { padding: 4.25rem 0 3.75rem; }
  .contact-hero-section::after { width: 420px; height: 420px; right: -260px; top: -210px; }
  .contact-hero-container { gap: 1.75rem; }
  .contact-hero-panel { min-height: 0; }
}
@media (max-width: 640px) {
  .contact-hero-section { padding: 3rem 0 2.75rem; }
  .contact-hero-eyebrow { font-size: .67rem; letter-spacing: .12em; }
  .contact-hero-heading { font-size: clamp(2.15rem, 11vw, 3.1rem); line-height: 1.01; }
  .contact-hero-actions { margin-top: 1.45rem; }
  .contact-hero-action { min-height: 64px; border-radius: 14px; }
  .contact-hero-panel { padding: 1.35rem; border-radius: 22px; }
  .contact-hero-panel h2 { font-size: 1.65rem; }
  .contact-hero-panel-mark { width: 40px; height: 40px; border-radius: 12px; }
  .contact-hero-panel-list span { font-size: .78rem; }
}
@media (prefers-reduced-motion: reduce) {
  .contact-hero-section::after { display: none; }
}

/* ========================================================================== 
   CONTACT PAGE — REFINED CORPORATE PALETTE v1.0.19
   Purpose: softer premium palette; less heavy green/gold contrast.
   ========================================================================== */
.contact-page-wrapper {
  --contact-ink: #173126;
  --contact-muted: #64736b;
  --contact-green: #174f35;
  --contact-green-2: #2d6a49;
  --contact-gold: #b88a3a;
  --contact-line: #dfe7e1;
}

/* Corporate Contact / Hero */
.contact-hero-section {
  background:
    radial-gradient(circle at 92% 18%, rgba(184,138,58,.10), transparent 24%),
    radial-gradient(circle at 5% 92%, rgba(45,106,73,.09), transparent 30%),
    linear-gradient(135deg, #fbfaf6 0%, #f3f7f2 58%, #faf8f1 100%);
  border-bottom: 1px solid #e2e8e2;
}
.contact-hero-section::before {
  background-image: linear-gradient(rgba(23,79,53,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(23,79,53,.025) 1px, transparent 1px);
}
.contact-hero-eyebrow {
  color: #315f47;
  border-color: rgba(184,138,58,.30);
  background: rgba(255,255,255,.72);
}
.contact-hero-eyebrow .eyebrow-line { background: #b88a3a; }
.contact-hero-heading { color: #102b20; }
.contact-hero-sub { color: #66756d; }
.contact-hero-action {
  background: rgba(255,255,255,.90);
  border-color: #dce5de;
  box-shadow: 0 8px 24px rgba(22,49,38,.045);
}
.contact-hero-action:hover {
  border-color: rgba(184,138,58,.48);
  box-shadow: 0 14px 30px rgba(22,49,38,.08);
}
.contact-hero-action-icon {
  background: #edf4ee;
  color: #174f35;
  border: 1px solid #dce9df;
}

/* Replace the heavy dark panel with a premium light editorial panel. */
.contact-hero-panel {
  color: #173126;
  background:
    radial-gradient(circle at 92% 8%, rgba(184,138,58,.13), transparent 24%),
    linear-gradient(145deg, #edf4ee 0%, #e4efe7 100%);
  border: 1px solid #d2e0d6;
  box-shadow: 0 24px 60px rgba(23,79,53,.10), inset 0 1px 0 rgba(255,255,255,.85);
}
.contact-hero-panel::after {
  border-color: rgba(184,138,58,.25);
  box-shadow: 0 0 0 20px rgba(184,138,58,.025), 0 0 0 40px rgba(184,138,58,.015);
}
.contact-hero-panel-glow {
  border-color: rgba(184,138,58,.24);
  box-shadow: 0 0 0 18px rgba(184,138,58,.025), 0 0 0 42px rgba(184,138,58,.015);
}
.contact-hero-panel-kicker { color: #9a702b; }
.contact-hero-panel-status { color: #62746a; }
.contact-hero-panel-status i {
  background: #3f8a5f;
  box-shadow: 0 0 0 4px rgba(63,138,95,.10);
}
.contact-hero-panel-mark {
  color: #a77b30;
  background: rgba(255,255,255,.62);
  border-color: #d4e1d8;
}
.contact-hero-panel h2 { color: #163328; }
.contact-hero-panel h2 span { color: #a77b30; }
.contact-hero-panel p { color: #66766d; }
.contact-hero-panel-list { border-top-color: #d5e1d8; }
.contact-hero-panel-list span { color: #29473a; border-bottom-color: #d9e4dc; }
.contact-hero-panel-list span b { color: #a77b30; }
.contact-hero-panel-footer { color: #718078; }
.contact-hero-panel-footer-dot { background: linear-gradient(90deg, #b88a3a, transparent); }

/* Business desks */
#contact-channels { background: #fff; }
.contact-channel-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
  border-color: #dfe7e1;
  box-shadow: 0 7px 24px rgba(23,49,38,.045);
}
.contact-channel-card::before { background: linear-gradient(90deg, #174f35, #c39a50); }
.contact-channel-card:hover {
  border-color: #c9d9ce;
  box-shadow: 0 18px 40px rgba(23,49,38,.085);
}
.contact-channel-icon {
  background: #eef5ef;
  border-color: #dbe8de;
}
.contact-channel-card h3 { color: #173126; }
.contact-channel-card p { color: #6a7770; }
.contact-channel-btn { color: #174f35; }
.contact-channel-btn:hover { color: #2d6a49; }

/* Contact details / form */
#contact-details-form {
  background: linear-gradient(180deg, #f5f7f4 0%, #eef3ef 100%);
}
.contact-info-card {
  background: linear-gradient(145deg, #174f35 0%, #1e6041 100%);
  box-shadow: 0 20px 50px rgba(23,79,53,.12);
}
.contact-info-icon-box {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.14);
  color: #dfbc72;
}
.contact-info-value a:hover { color: #e0bd73; }
.contact-hours-box { background: rgba(255,255,255,.065); }
.contact-form-panel {
  background: #ffffff;
  border-color: #dce5df;
  box-shadow: 0 16px 42px rgba(23,49,38,.065);
}
.form-input, .form-select, .form-textarea {
  border-color: #d8e2db;
  background: #fcfdfc;
}
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color: #b9cbbf; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #2d6a49;
  box-shadow: 0 0 0 4px rgba(45,106,73,.10);
}
.form-submit-btn {
  background: linear-gradient(135deg, #174f35, #236444);
  box-shadow: 0 10px 24px rgba(23,79,53,.16);
}
.form-submit-btn:hover {
  background: linear-gradient(135deg, #123f2a, #1f5a3d);
}

/* Location / FAQ */
.contact-map-card { border-color: #dce5df; box-shadow: 0 16px 42px rgba(23,49,38,.065); }
#contact-faq { background: #f5f7f4; }

@media (max-width: 640px) {
  .contact-hero-panel {
    background: linear-gradient(145deg, #edf4ee 0%, #e7f0e9 100%);
    box-shadow: 0 16px 34px rgba(23,79,53,.08);
  }
  .contact-hero-action { background: #fff; }
}
