/* ===== PAGE HERO ===== */
.page-hero {
  background-color: var(--navy-deep);
  padding: 72px 0 84px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,32,46,0.94) 0%, rgba(13,40,57,0.82) 38%, rgba(18,58,82,0.42) 78%, rgba(18,58,82,0.28) 100%);
  pointer-events: none;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(11,32,46,0) 0%, rgba(11,32,46,0.72) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--on-navy-muted);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--on-navy-muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span:last-child { color: var(--white); font-weight: 600; }
.page-hero-content h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.035em;
  line-height: 1.06;
}
.page-hero-content .highlight { color: var(--white); }
.page-hero-content p {
  font-size: 19px;
  color: var(--on-navy-body);
  max-width: 540px;
  line-height: 1.6;
}

/* ===== TABS ===== */
.service-tabs-section {
  background: var(--white);
  border-bottom: 1px solid var(--gray200);
  position: sticky;
  top: 76px;
  z-index: 40;
}
.tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex-shrink: 0;
  padding: 22px 26px 19px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.15s;
  white-space: nowrap;
}
.tab:hover { color: var(--navy); }
.tab.active {
  color: var(--navy);
  border-bottom-color: var(--orange);
}

/* ===== SERVICE DETAIL ===== */
.service-details { padding: 80px 0; }

.detail-block { display: none; }
.detail-block.active { display: block; }

.detail-inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 72px;
  align-items: start;
}

.detail-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.detail-content h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--gray900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.detail-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.detail-features {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
}
.df-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--text);
  position: relative;
  padding: 15px 0 15px 23px;
  border-bottom: 1px solid var(--border);
}
.df-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--orange);
}
.df-icon { display: none; }

.detail-times {
  display: flex;
  gap: 48px;
  margin-bottom: 36px;
  padding: 20px 0;
  border-top: 1px solid var(--gray200);
  border-bottom: 1px solid var(--gray200);
}
.dt-item { display: flex; flex-direction: column; gap: 2px; }
.dt-label { font-size: 13px; color: var(--gray500); }
.dt-val { font-size: 17px; font-weight: 600; color: var(--gray900); }

/* ===== VISUAL CARD (navy) ===== */
.visual-card {
  border: none;
  padding: 44px 40px 40px;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: var(--white);
}
.sea-card, .rail-card, .road-card, .roro-card {
  background: var(--navy);
}
.visual-card::before, .visual-card::after { display: none; }

.visual-icon { display: none; }

.visual-stats {
  display: flex;
  flex-direction: column;
}
.vs-item {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}
.vs-item:first-child { padding-top: 0; }
.vs-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.vs-label { font-size: 15px; color: var(--on-navy-muted); }

.route-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  padding-top: 20px;
}
.route-arrow { color: var(--orange); }

/* ===== PROCESS ===== */
.process-section {
  padding: 88px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.process-step {
  text-align: left;
  padding: 18px 0 0;
  border-top: 2px solid var(--navy);
}
.step-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--faint);
  margin-bottom: 10px;
}
.step-icon { display: none; }
.process-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray900);
  margin-bottom: 6px;
}
.process-step p {
  font-size: 13px;
  color: var(--gray500);
  line-height: 1.6;
}
.process-arrow { display: none; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--bg);
  padding: 96px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.cta-content { display: flex; flex-direction: column; gap: 14px; }
.cta-content h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.cta-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.cta-content .contact-list { margin-top: 10px; }
.cta-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray200);
  border-radius: var(--radius);
  padding: 36px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .detail-features { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .tab { padding: 14px 16px; font-size: 13px; }
  .detail-times { flex-direction: column; gap: 16px; }
  .cta-form-wrap { padding: 24px 20px; }
}
