/* ============================================================
   MEILS – CUSTOMS CLEARANCE PAGE
============================================================ */

/* ── Hero ── */
.cc-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 55%, #1a8080 100%);
  padding: 110px 48px 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; min-height: 420px;
  position: relative; overflow: hidden;
}
.cc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(62,201,110,.13) 0%, transparent 60%);
}
.cc-hero-content { position: relative; z-index: 1; max-width: 580px; }

.cc-hero-content h1 {
  font-size: 2.6rem; font-weight: 800; color: #fff;
  line-height: 1.2; margin: 14px 0 12px;
}
.cc-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 24px; line-height: 1.6;
}

.cc-hero-benefits {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.cc-hero-benefits li {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: rgba(255,255,255,.9);
}
.cc-hero-benefits li i { color: var(--green-bright); font-size: .9rem; }

.cc-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual */
.cc-hero-visual {
  position: relative; z-index: 1; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cc-hero-icon-wrap {
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 2px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cc-hero-icon-wrap > i {
  font-size: 5rem; color: rgba(255,255,255,.3);
}
.cc-hero-badge {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 6px 14px; border-radius: 999px;
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}

/* ── Container ── */
.cc-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── Section head ── */
.cc-label {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal-mid);
  background: rgba(15,94,94,.08); padding: 4px 12px;
  border-radius: 999px; margin-bottom: 14px;
}
.cc-section-head { text-align: center; margin-bottom: 44px; }
.cc-section-head h2 {
  font-size: 1.7rem; font-weight: 800; color: var(--text-dark); margin-bottom: 10px;
}
.cc-section-head p {
  font-size: .9rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.7;
}

/* ── Service Highlights ── */
.cc-highlights { padding: 72px 0; background: #fff; }
.cc-highlights-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.cc-highlight-card {
  border: 1.5px solid var(--gray-border); border-radius: var(--radius);
  padding: 24px 20px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.cc-highlight-card:hover {
  border-color: var(--teal-mid);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.cc-hi-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(15,94,94,.08); color: var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.cc-highlight-card h4 { font-size: .88rem; font-weight: 700; color: var(--text-dark); }
.cc-highlight-card p  { font-size: .78rem; color: var(--text-muted); line-height: 1.65; }

/* ── Expertise ── */
.cc-expertise { padding: 72px 0; background: var(--gray-bg); }
.cc-expertise-inner {
  display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center;
}
.cc-expertise-text .cc-label { margin-bottom: 16px; }

.cc-quote {
  font-size: 1.05rem; color: var(--text-dark); line-height: 1.75;
  font-style: italic; border-left: 4px solid var(--teal-mid);
  padding-left: 20px; margin: 0 0 32px;
}

.cc-expertise-stats { display: flex; align-items: center; gap: 0; }
.cc-exp-stat { display: flex; flex-direction: column; align-items: center; padding: 0 28px; }
.cc-exp-stat:first-child { padding-left: 0; }
.cc-exp-num   { font-size: 2rem; font-weight: 800; color: var(--teal-mid); line-height: 1; }
.cc-exp-label { font-size: .72rem; color: var(--text-muted); margin-top: 4px; text-align: center; }
.cc-exp-divider { width: 1px; height: 48px; background: var(--gray-border); flex-shrink: 0; }

/* Expertise card */
.cc-exp-card {
  background: #fff; border-radius: var(--radius);
  border: 1.5px solid var(--gray-border);
  padding: 28px 24px;
}
.cc-exp-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(15,94,94,.08); color: var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.cc-exp-card h4 {
  font-size: .92rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-border);
}
.cc-exp-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cc-exp-card li {
  font-size: .8rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
}
.cc-exp-card li i { color: var(--green); flex-shrink: 0; }

/* ── Industries ── */
.cc-industries { padding: 72px 0; background: #fff; }
.cc-industries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.cc-industry-card {
  border: 1.5px solid var(--gray-border); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.cc-industry-card:hover {
  border-color: var(--teal-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.cc-ind-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
}
.cc-ind-pharma { background: linear-gradient(135deg, var(--teal-mid), var(--teal-light)); }
.cc-ind-chem   { background: linear-gradient(135deg, #1a6a2a, var(--green)); }
.cc-ind-tech   { background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid)); }

.cc-industry-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); }
.cc-industry-card p  { font-size: .82rem; color: var(--text-muted); line-height: 1.7; flex: 1; }

.cc-explore-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; color: var(--cta-orange);
  text-decoration: none; margin-top: 4px;
  transition: gap .2s, color .2s;
}
.cc-explore-btn:hover { gap: 12px; color: #e07800; }

/* ── CTA ── */
.cc-cta {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  padding: 72px 24px; position: relative; overflow: hidden;
}
.cc-cta-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(62,201,110,.15) 0%, transparent 60%);
}
.cc-cta-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cc-cta-text h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cc-cta-text p  { font-size: .9rem; color: rgba(255,255,255,.8); max-width: 500px; line-height: 1.7; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .cc-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-expertise-inner { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .cc-industries-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .cc-hero { padding: 100px 24px 56px; flex-direction: column; gap: 32px; }
  .cc-hero-content h1 { font-size: 1.9rem; }
  .cc-hero-visual { display: none; }
  .cc-highlights-grid { grid-template-columns: 1fr; }
  .cc-cta-content { flex-direction: column; text-align: center; }
  .cc-expertise-stats { justify-content: center; }
}
