/* ==========================================
   ARAVAA GLOBAL - EXPORT PROCESS PAGE CSS
   ========================================== */

/* ==========================================
   EXPORT PROCESS HERO SECTION
   ========================================== */
.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding-top: 170px;
  padding-bottom: 110px;
  background-color: var(--dark-navy);
  color: var(--text-white);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) contrast(1.15);
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(3, 12, 26, 0.6) 0%,
    rgba(3, 12, 26, 0.75) 60%,
    rgba(3, 12, 26, 0.95) 100%
  );
  z-index: 2;
}

/* Centered hero content for Export Process page */
.page-hero .container {
  position: relative;
  z-index: 3;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(2.4rem, 4vw + 0.8rem, 3.75rem);
  margin-bottom: 24px;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.page-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* The Export Pipeline 6-Step Horizontal Row */
.pipeline-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.pipeline-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 32px 20px 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pipeline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(29, 97, 231, 0.3);
}

.pipeline-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--dark-navy);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(3, 12, 26, 0.25);
}

.pipeline-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pipeline-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pipeline-title {
  font-size: 1.1rem;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.pipeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Certified Precision Split Section */
.precision-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.lab-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(3, 12, 26, 0.08);
  min-height: 380px;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.lab-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.lab-card-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 36px 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 12, 26, 0.88) 100%);
  color: var(--text-white);
}

.lab-card-overlay h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.25;
}

.lab-card-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.qc-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 40px 36px;
  box-shadow: 0 4px 16px rgba(3, 12, 26, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.qc-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--dark-navy);
  margin-bottom: 28px;
  line-height: 1.2;
}

.qc-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.qc-icon-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.qc-icon-badge svg {
  width: 14px;
  height: 14px;
  stroke: #FFFFFF;
}

.qc-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.qc-item-body h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark-navy);
  margin: 0;
  line-height: 1.25;
}

.qc-item-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Global Markets Section */
.global-markets-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.region-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.region-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark-navy);
  box-shadow: var(--shadow-sm);
}

.global-map-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 24px;
}

.global-map-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* Export Responsive Layout */
@media (max-width: 1200px) {
  .pipeline-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .precision-split,
  .global-markets-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 576px) {
  .pipeline-row {
    grid-template-columns: 1fr;
  }
}
