/* ============================================================
   INNER PAGES SHARED STYLES
   ============================================================ */

/* Page Hero */
.page-hero {
  position: relative;
  padding: 140px 0 90px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 26, 18, 0.92) 0%, rgba(38, 119, 60, 0.75) 100%);
  z-index: 0;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: var(--rad-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.page-hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 28px;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 0;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--rad-sm);
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-item {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #fff;
}

.breadcrumb-item.active {
  color: var(--yellow);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  line-height: 1;
}

/* ===== STATISTICS SECTION REDESIGN ===== */
.stat-card {
  background: #ffffff;
  border-radius: var(--rad-xl);
  padding: 40px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(38, 119, 60, 0.08);
  border-color: var(--green-lt);
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: var(--green-lt);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--trans);
}

.stat-card:hover .stat-icon {
  background: var(--green);
  color: #fff;
  transform: scale(1.1);
}

.stat-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* ===== FOUNDER QUOTE BOX ===== */
.founder-quote-box {
  background: #ffffff;
  border-left: 5px solid var(--green);
  padding: 40px;
  border-radius: 0 var(--rad-xl) var(--rad-xl) 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.founder-quote-box p {
  color: var(--body-clr) !important;
  font-size: 1.05rem;
  line-height: 1.85;
  font-style: italic;
}

.founder-badge {
  transform: translateY(20px);
  transition: all var(--trans);
}

.founder-img-wrapper:hover .founder-badge {
  transform: translateY(10px);
}

@media (max-width: 991.98px) {
  .founder-badge {
    right: 20px !important;
    bottom: 20px !important;
    transform: none !important;
  }
}

/* ===== TIMELINE LAYOUT REDESIGN ===== */
.timeline-container {
  position: relative;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  width: 2px;
  background: rgba(142, 176, 62, 0.25);
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 70px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 44px;
  height: 44px;
  background: var(--green);
  border: 4px solid var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(38, 119, 60, 0.2);
  transition: all var(--trans);
  color: #fff;
  z-index: 2;
}

.timeline-item:hover .timeline-dot {
  background: var(--yellow);
  color: var(--dark);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(243, 233, 15, 0.3);
}

.timeline-content-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rad-lg);
  padding: 24px 28px;
  transition: all var(--trans);
  height: 100%;
}

.timeline-content-card h4 {
  color: var(--yellow) !important;
}

.timeline-content-card p {
  color: rgba(255, 255, 255, 0.85) !important;
}

.timeline-item:hover .timeline-content-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(142, 176, 62, 0.35);
}

.timeline-item img {
  border-radius: var(--rad-lg);
  box-shadow: var(--sh-md);
  transition: all var(--trans);
}

.timeline-item:hover img {
  transform: scale(1.03);
  box-shadow: var(--sh-lg);
}

@media (max-width: 767.98px) {
  .timeline-line {
    left: 20px !important;
  }
  .timeline-dot {
    margin: 0 !important;
  }
  .timeline-item .col-md-2 {
    position: absolute;
    left: -2px;
    top: 0;
    z-index: 2;
  }
  .timeline-item .col-md-5 {
    padding-left: 56px !important;
    text-align: left !important;
  }
  .timeline-item img {
    margin-top: 16px;
  }
}

/* ===== VISION & MISSION CARD REDESIGN ===== */
.vision-mission-card {
  background: #ffffff;
  border-radius: var(--rad-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  transition: all var(--trans);
}

.vision-mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--green-lt);
}

.vision-mission-card img {
  transition: transform 0.6s ease;
}

.vision-mission-card:hover img {
  transform: scale(1.05);
}

.icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--green-lt);
  color: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--trans);
}

.vision-mission-card:hover .icon-wrap {
  background: var(--green);
  color: #fff;
  transform: rotateY(180deg);
}

/* ===== COMPANY PROFILE SPECIFIC ===== */

/* At a Glance Card */
.glance-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--rad-xl);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.glance-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--green-lt);
  padding-bottom: 10px;
}

.glance-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}

.glance-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.glance-label {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.glance-value {
  font-weight: 700;
  color: var(--dark);
  text-align: right;
  font-size: 0.9rem;
}

/* Business Process (Horizontal Flow) */
.process-flow-container {
  display: flex;
  align-items: stretch;
  gap: 12px;
  overflow-x: auto;
  padding: 24px 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.process-flow-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 30px 16px;
  border-radius: var(--rad-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.process-flow-step:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 12px 25px rgba(38, 119, 60, 0.08);
}

.process-flow-number {
  width: 36px;
  height: 36px;
  background: var(--green-lt);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 0.9rem;
  transition: all var(--trans);
}

.process-flow-step:hover .process-flow-number {
  background: var(--green);
  color: #fff;
}

.process-flow-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
  line-height: 1.3;
}

.process-flow-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green2);
  font-size: 1.25rem;
}

/* FAQ Accordion Styling */
.faq-accordion .accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--rad-lg) !important;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01) !important;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--dark);
  padding: 20px 24px;
  background: #ffffff;
  border: none;
  font-size: 1rem;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--green-lt);
  color: var(--green);
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 20px 24px;
  color: var(--body-clr);
  line-height: 1.75;
  background: #ffffff;
  font-size: 0.9375rem;
}

/* Glassmorphism Cards for Core Values */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--rad-xl);
  padding: 36px 24px;
  transition: all var(--trans);
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(38, 119, 60, 0.08);
  border-color: var(--green-lt);
}

/* Sustainability Overlay and Cards */
.sustainability-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 26, 18, 0.92) 0%, rgba(15, 45, 25, 0.88) 100%) !important;
  z-index: 1;
}

.sustainability-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--rad-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--trans);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sustainability-card:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--yellow) !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.sustainability-card h5 {
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 8px;
}

/* ===== INTERACTIVE MAP SPECIFIC ===== */
.map-section {
  position: relative;
  background: #0b1a12;
  border-radius: var(--rad-xl);
  padding: 40px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.map-svg-container {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
  user-select: none;
}

.map-base-path {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 0.5px;
}

.map-pin {
  cursor: pointer;
}

.map-pin circle.pin-core {
  transition: all 0.3s var(--ease);
}

.map-pin:hover circle.pin-core {
  r: 8px;
}

.map-pin.export-pin circle.pin-core {
  fill: var(--green2);
}

.map-pin.export-pin circle.pin-glow {
  fill: var(--green2);
  opacity: 0.45;
  animation: pinGlowPulse 2.2s infinite ease-out;
  transform-origin: center;
}

.map-pin.import-pin circle.pin-core {
  fill: #FCB614;
}

.map-pin.import-pin circle.pin-glow {
  fill: #FCB614;
  opacity: 0.45;
  animation: pinGlowPulse 2.2s infinite ease-out;
  transform-origin: center;
}

@keyframes pinGlowPulse {
  0% {
    r: 4px;
    opacity: 0.7;
  }
  100% {
    r: 22px;
    opacity: 0;
  }
}

.map-tooltip {
  position: absolute;
  background: rgba(11, 26, 18, 0.95);
  border: 1.5px solid var(--green2);
  border-radius: var(--rad-md);
  padding: 12px 16px;
  color: #ffffff;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  width: 250px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -105%);
}

.map-tooltip.show {
  opacity: 1;
}

.map-tooltip h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 6px;
}

.map-tooltip p {
  font-size: 0.8125rem;
  margin-bottom: 4px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.map-tooltip .tooltip-status {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
  display: block;
}

.map-tooltip .tooltip-status.active {
  color: var(--green2);
}

.map-tooltip .tooltip-status.expanding {
  color: #FCB614;
}

/* Dark Glance Card Statistics Contrast Fix */
.glance-card.bg-dark {
  background: var(--dark-bg) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.glance-card.bg-dark h4 {
  color: var(--orange) !important;
}

.glance-card.bg-dark .glance-title {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

/* Brand Text Color Utilities */
.text-yellow-brand {
  color: var(--yellow) !important;
}

.text-orange-brand {
  color: var(--orange) !important;
}






