/* ═══════════════════════════════════════════════
   ACTIVITIES (Import / Export panels) — Redesigned
   ─────────────────────────────────────────────
   Import = white panel with left green accent border
   Export = dark green panel with gold text — visual
   contrast from the START, no hover required.
   ═══════════════════════════════════════════════ */
#activities { background: var(--cream); padding: 5.5rem; }

.activities-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 4rem;
}

/* ── SHARED panel ── */
.activity-panel {
  padding: 3.5rem;
  position: relative; overflow: hidden;
}
/* Ghost watermark label */
.activity-panel::before {
  content: attr(data-label);
  position: absolute; top: -2rem; right: 1.5rem;
  font-family: var(--font-display); font-size: 7rem; font-weight: 700;
  line-height: 1; pointer-events: none; transition: color 0.4s;
}

/* ── IMPORT panel — white, bordered ── */
.activity-panel[data-label="IMPORT"] {
  background: var(--white);
  border-left: 4px solid var(--green);
  box-shadow: 0 2px 24px rgba(26,61,48,0.07);
}
.activity-panel[data-label="IMPORT"]::before {
  color: rgba(26, 61, 48, 0.04);
}
.activity-panel[data-label="IMPORT"]:hover {
  background: var(--cream);
  border-left-color: var(--gold);
}

/* ── EXPORT panel — dark green with gold accents ── */
.activity-panel[data-label="EXPORT"] {
  background: var(--green-mid);
  border-left: 4px solid var(--gold);
}
.activity-panel[data-label="EXPORT"]::before {
  color: rgba(196, 168, 74, 0.07);
}
.activity-panel[data-label="EXPORT"] .activity-title,
.activity-panel[data-label="EXPORT"] .activity-direction { color: var(--gold-lt); }
.activity-panel[data-label="EXPORT"] .activity-desc      { color: rgba(255,255,255,0.60); }
.activity-panel[data-label="EXPORT"] .activity-list li   {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.10);
}
.activity-panel[data-label="EXPORT"]:hover {
  background: var(--green);
}

.activity-direction {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.activity-direction::before {
  content: ''; width: 1.5rem; height: 1px;
  background: currentColor; flex-shrink: 0;
}

.activity-title {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 300;
  color: var(--green); line-height: 1.05; margin-bottom: 1rem;
  transition: color 0.4s;
}
.activity-panel[data-label="IMPORT"]:hover .activity-title { color: var(--green-lt); }

.activity-desc {
  font-size: 0.9rem; font-weight: 300; color: var(--gray2);
  line-height: 1.8; margin-bottom: 2.5rem;
  max-width: 420px; transition: color 0.4s;
}

.activity-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.activity-list li {
  font-size: 0.85rem; font-weight: 300; color: var(--black);
  display: flex; align-items: center; gap: 0.8rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--gray3);
  transition: color 0.4s, border-color 0.4s;
}
.activity-panel[data-label="IMPORT"]:hover .activity-list li { color: var(--green); }
.activity-list li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   SERVICES (3-column grid)
   ═══════════════════════════════════════════════ */
#services { background: var(--white); padding: 5.5rem; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 4rem;
  background: var(--gray3);
}

.service-card {
  background: var(--white); padding: 2.8rem 2.5rem;
  position: relative; transition: background 0.4s; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.5s var(--ease);
}
.service-card:hover::after { width: 100%; }
.service-card:hover        { background: var(--cream); }

.service-num {
  font-family: var(--font-display); font-size: 0.8rem;
  color: var(--gray3); font-weight: 300; margin-bottom: 2rem;
}
.service-icon  { font-size: 1.6rem; margin-bottom: 1.5rem; display: block; }
.service-name {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  color: var(--green); margin-bottom: 0.8rem; line-height: 1.2;
}
.service-desc { font-size: 0.85rem; font-weight: 300; color: var(--gray2); line-height: 1.7; }
